]> git.saurik.com Git - bison.git/blob - ChangeLog
853777a15331095bddfd22cdff2ba16fea87d102
[bison.git] / ChangeLog
1 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
2
3 Use locale when quoting.
4 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
5 quote rather than implementing quoting here.
6
7 2009-08-20 Eric Blake <ebb9@byu.net>
8
9 Make previous patch more robust.
10 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
11 argmatch.h.
12 (output_skeleton): Use it.
13 Suggested by Akim Demaille.
14
15 Import latest m4/m4.m4.
16 * submodules/autoconf: Update to autoconf 2.64.
17 * configure.ac (M4_GNU_OPTION): New define.
18 * src/output.c (output_skeleton): Use it to resolve FIXME.
19 * NEWS: Mention this.
20
21 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
22
23 Fix complaints about escape sequences.
24 Discussed starting at
25 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
26 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
27 For a \0 and similar escape sequences meaning the null
28 character, report an invalid escape sequence instead of an
29 invalid null character because the latter does not actually
30 appear in the user's input.
31 In all escape sequence complaints, don't escape the initial
32 backslash, and don't quote when the sequence appears at the end
33 of the complaint line unless there's whitespace that quotearg
34 won't escape.
35 Consistently say "invalid" not "unrecognized".
36 Consistently prefer "empty character literal" over "extra
37 characters in character literal" warning for invalid escape
38 sequences; that is, consistently discard those sequences.
39 * tests/input.at (Bad escapes in literals): New.
40
41 2009-08-19 Akim Demaille <demaille@gostai.com>
42
43 doc: fixes.
44 * doc/bison.texinfo: Fix minor Texinfo errors.
45
46 2009-08-19 Akim Demaille <demaille@gostai.com>
47
48 doc: %initial-action to initialize yylloc.
49 Reported by Bill Allombert.
50 * doc/bison.texinfo: Set fill-column to 76.
51 (Location Type): Document the use of %initial-action to initialize
52 yylloc.
53
54 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
55
56 maint: update for gnulib's recent update-copyright changes
57 * gnulib: Update.
58 * .x-update-copyright (COPYING): Add as it's no longer implied
59 when .x-update-copyright is present.
60 * cfg.mk (update-copyright-local): Remove, now ignored.
61 (update-copyright): Declare update-b4-copyright as a dependency.
62
63 2009-08-17 Akim Demaille <demaille@gostai.com>
64
65 build: require gettext 0.17.
66
67 Suggested by Bruno Haible.
68 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
69 * configure.ac: require gettext 0.17 to ensure compatibility with
70 gnulib.
71
72 2009-08-17 Akim Demaille <demaille@gostai.com>
73
74 build: lower gettext requirements.
75
76 Bison was uselessly requiring the formatstring macros from
77 gettext, which resulted in mo files not being installed on systems
78 that perfectly supported Bison mo files. Lower the requirement.
79 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
80
81 * configure.ac: Require need-ngettext instead of
82 need-formatstring-macros.
83 Reported by Martin Jabocs.
84 Suggested by Bruno Haible.
85 * INSTALL: Restructure.
86 (Internationalization): New.
87
88 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
89
90 maint: fix use of copyright year intervals.
91 * gnulib: Update.
92 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
93 as now recommended in gnulib/NEWS.
94 * build-aux/update-b4-copyright: Fix.
95 * cfg.mk (update-copyright-env): Configure update-copyright.
96
97 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
98
99 Make it easier to write deterministic tests.
100 Continues Akim's work from his 2009-06-10 commits.
101 * src/reader.c (check_and_convert_grammar): Don't add any
102 symbols after the first symbols_do invocation.
103 * src/symtab.c (symbols_sorted): New static global.
104 (user_token_number_redeclaration): Update comments.
105 (symbol_from_uniqstr): If a new symbol is being created, assert
106 that symbols_sorted hasn't been allocated yet.
107 (symbols_free): Free symbols_sorted.
108 (symbols_cmp, symbols_cmp_qsort): New functions.
109 (symbols_do): Sort symbol_table into symbols_sorted on first
110 invocation.
111 * tests/input.at (Numbered tokens): Recombine tests now that the
112 output should be deterministic across multiple numbers.
113
114 2009-08-12 Akim Demaille <demaille@gostai.com>
115
116 distcheck: fix.
117
118 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
119
120 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
121
122 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
123
124 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
125
126 Miscellaneous code readability improvements.
127
128 * src/reader.c (reader): Move %define front-end variable
129 defaults and checking into...
130 (prepare_percent_define_front_end_variables): ... this new
131 function.
132
133 * src/scan-gram.l (INITIAL): For consistency with string
134 literals, don't store open quote on character literal. It's
135 discarded before returning anyway.
136 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
137 Make length test more readable, and make the character stored
138 for an empty literal more obvious while consistent with the
139 previous behavior.
140
141 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
142 USER_NUMBER_HAS_STRING_ALIAS throughout.
143 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
144 that is repeated in symtab.h. Improve argument names to make it
145 clear which side of the symbol-string alias pair is which.
146 (symbol_check_alias_consistency): Improve local variable names
147 for the same purpose.
148 * src/symtab.h (struct symbol): Make comments about aliases
149 clearer.
150 (symbol_make_alias): Improve comments and argument name.
151 * src/output.c (token_definitions_output): Update for rename to
152 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
153
154 2009-08-08 Alex Rozenman <rozenman@gmail.com>
155
156 Convert "misleading reference" messages to warnings.
157 * src/scan-code.l: New function 'show_sub_messages', more
158 factoring.
159 * tests/named-ref.at: Adjust tests.
160
161 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
162
163 maint: run "make update-copyright"
164
165 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
166
167 maint: make update-b4-copyright easier to use
168 * build-aux/update-b4-copyright: In warnings, report line
169 numbers rather than character positions.
170 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
171 that update-copyright runs it.
172 * gnulib: Update.
173
174 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
175
176 maint: clean up update-b4-copyright code
177 * build-aux/update-b4-copyright: Do not accept 2-digit
178 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
179 Don't accept a `[' in a b4_copyright argument.
180 Format code more consistently.
181 Don't assume b4*copyright never occurs.
182
183 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
184
185 maint: automate b4_copyright updates.
186 * Makefile.am (update-b4-copyright): New target rule.
187 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
188 * build-aux/update-b4-copyright: New.
189 * data/yacc.c: Remove stray characters around b4_copyright
190 invocations.
191
192 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
193
194 maint: automate annual package-wide copyright-year update.
195 * .x-update-copyright: New.
196 * Makefile.am (EXTRA_DIST): Remove maint.mk.
197 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
198 update-copyright. Remove gnumakefile, which is implied by
199 maintainer-makefile.
200 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
201 * gnulib: Update.
202 * maint.mk: Remove, now copied from gnulib.
203 * examples/extexi: Add missing "(C)" in copyright statement so
204 update-copyright can recognize it.
205 * src/LR0.h: Likewise.
206 * src/print.h: Likewise.
207 * src/print_graph.h: Likewise.
208 * src/gram.c: Add missing comma in copyright statement.
209 * src/gram.h: Likewise.
210
211 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
212
213 Fix "make distcheck".
214 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
215 of just calc.stamp.
216
217 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
218
219 Pacify "gcc -Wunused" for the input function from Flex.
220 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
221 and later.
222 * src/scan-code.l: Add "%option noinput", which I cannot find in
223 the Flex manual, but which Flex has supported since at least as
224 far back as 2.5.4. However, if any of our developers still use
225 Flex 2.5.4, they'll need to stop configuring with
226 --enable-gcc-warnings because "%option noinput" didn't work
227 correctly until Flex 2.5.6.
228 * src/scan-gram.l: Likewise.
229 * src/scan-skel.l: Likewise.
230
231 2009-07-31 Alex Rozenman <rozenman@gmail.com>
232
233 Fix --enable-gcc-warnings problems.
234 * src/reader.c: Adjust variable names.
235 * src/scan-code.l: Fix prototypes and adjust names.
236 * src/named-ref.c: Remove redundant "if".
237
238 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
239
240 Fix a --enable-gcc-warnings problem.
241 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
242 variable.
243
244 2009-07-24 Alex Rozenman <rozenman@gmail.com>
245
246 Fix some memory leaks.
247 * src/named-ref.c: Add a pointer check (named_ref_free).
248 * src/scan-code.l: New function (variant_table_free). Called in
249 code_scanner_free.
250 * src/symlist.c: Call to named_ref_free (symbol_list_free).
251
252 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
253
254 Warn about character literals not of length one.
255 * NEWS (2.5): Document.
256 * src/scan-gram.l (INITIAL): Remove comment that we don't check
257 the length.
258 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
259 * tests/input.at (Bad character literals): New test group.
260
261 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
262
263 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
264
265 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
266
267 Some M4 cleanup in the testsuite.
268 Suggested by Eric Blake at
269 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
270 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
271 complicate the code by distinguishing between a missing value
272 and an empty string value for an optional argument. This fix is
273 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
274 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
275 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
276 arguments are not needed because of the following changes.
277 Fix stale comments.
278 Bison developers should use GNU M4 and should not use
279 POSIXLY_CORRECT when building the test suite, so do not
280 complicate the code by avoiding $10 and above.
281 Do not quote an empty string value for an optional argument, and
282 do not distinguish between a missing value and an empty string
283 value.
284
285 2009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
286
287 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
288
289 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
290
291 Revert unnecessary column realignment in --help output.
292 Reported by Akim Demaille at
293 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
294 * src/getargs.c (usage): Here.
295
296 2009-07-04 Alex Rozenman <rozenman@gmail.com>
297
298 Alphabetical order in src/Makefile.am.
299 * src/Makefile.am: Adjust.
300
301 2009-07-04 Alex Rozenman <rozenman@gmail.com>
302
303 Style changes and factoring.
304 * src/named-ref.h: Add comments.
305 * src/parse-gram.y: Readability and style changes.
306 * src/reader.c: Factoring: assign_named_ref function.
307 * src/scan-code.l: Factoring and style changes. Rename
308 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
309 Use "unsigned" type for variant index. Improve readablity.
310 * src/scan-gram.l: Change error messages and add comments.
311 * src/symlist.h: symbol_list_null: New function decl.
312 * src/symlist.c: symbol_list_null: Implement here.
313 * tests/named-refs.at: Adjust for new error messages.
314
315 2009-06-29 Eric Blake <ebb9@byu.net>
316
317 scan-code: avoid compiler warnings
318 * src/scan-code.l (parse_named_ref): Use correct specifiers.
319
320 2009-06-29 Akim Demaille <demaille@gostai.com>
321
322 build: avoid concurrent extraction of calc++.
323 * examples/calc++/Makefile.am (calc.stamp): New.
324 Depend on it to create the sources of calc++ so that concurrent
325 builds don't launch several "extexi" in parallel.
326 Not only this is inefficient, this also builds incorrect sources
327 with several extractions mixed together.
328
329 2009-06-27 Alex Rozenman <rozenman@gmail.com>
330
331 Implement support for named symbol references.
332 * src/parse-gram.y: Add new syntax (named_ref.opt).
333 * src/reader.c: Store named refs in symbol lists.
334 * src/reader.h: New argument for symbol_append and
335 action_append functions.
336 * src/scan-code.h: Add new field (named_ref) into
337 code_props data structure. Keeps named ref of midrule
338 actions.
339 * src/scan-code.l: Support for named refs in semantic
340 action code. New function 'parse_named_ref'.
341 * src/scan-gram.l: Support bracketed id.
342 * src/symlist.c: Store named refs in symbol lists.
343 * src/symlist.h: New field in symbol list: named_ref.
344 * src/named-ref.h: New file, a struct for named_ref.
345 * src/named-ref.cp: New file, named_ref_new function.
346 * src/local.mk: Add two new files.
347 * tests/testsuite.at: Include new test group:
348 * tests/named-refs.at: this new file.
349
350 2009-06-25 Akim Demaille <demaille@gostai.com>
351
352 hash: check insertion for memory exhaustion.
353 * src/uniqstr.c (uniqstr_new): New.
354
355 2009-06-11 Akim Demaille <demaille@gostai.com>
356
357 style changes.
358 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
359 * src/print-xml.c: Style changes.
360 * tests/conflicts.at: Comment changes.
361
362 2009-06-11 Akim Demaille <demaille@gostai.com>
363
364 xml: beware of user strings used to give a %prec to rules.
365 * tests/conflicts.at (%prec with user strings): New.
366 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
367 XML output.
368
369 2009-06-11 Akim Demaille <demaille@gostai.com>
370
371 hash: check insertion for memory exhaustion.
372 * src/muscle-tab.c (muscle_insert, muscle_grow)
373 * src/state.c (state_hash_insert): Check the return value of
374 hash_insert.
375
376 2009-06-10 Akim Demaille <demaille@gostai.com>
377
378 deterministic test suite.
379 Some consistency checks on symbols are performed after all the
380 symbols were read, by an iteration over the symbol table. This
381 traversal is nondeterministic, which can be a problem for test
382 cases.
383 Avoid this.
384 Addresses another form of nondeterminism reported by Joel E. Denny.
385 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
386
387 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
388 test in two.
389 Use different file names for the three tests to make the
390 maintenance easier.
391
392 2009-06-10 Akim Demaille <demaille@gostai.com>
393
394 deterministic user-token-number redeclaration errors.
395 Address nondeterminism reported by Joel E. Denny.
396 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
397
398 * src/uniqstr.h: Comment changes.
399 * src/location.h (boundary_cmp, location_cmp): New.
400 * src/symtab.c (user_token_number_redeclaration): New.
401 (symbol_translation): Use it.
402 * tests/input.at (Numbered tokens): Adjust the expected output.
403
404 2009-05-25 Akim Demaille <demaille@gostai.com>
405
406 gnulib: update.
407 * gnulib: Update to latest.
408 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
409 * m4/.gitignore: Regen.
410 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
411 Call xalloc_die on hash_insert failures.
412 Requested by the new __warn_unused_result__ attribute of
413 hash_insert.
414
415 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
416
417 Convert multiple variable definition warnings to complaints.
418 * NEWS (2.5): Add a new entry for that change.
419 * doc/bison.texinfo (Decl Summary): Update %define entry.
420 (Bison Options): Update -D/--define/-F/--force-define entry.
421 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
422 * src/muscle_tab.h (muscle_percent_define_insert): Update
423 comments.
424 * tests/input.at (`%define errors'): Update.
425 (`%define, --define, --force-define'): Update.
426
427 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
428
429 -F/--force-define and relative %define/-D/--define priorities.
430 * NEWS (2.5): Add documentation to -D/--define entry.
431 * build-aux/cross-options.pl: Hard-code association of
432 --force-define with %define.
433 * doc/bison.texinfo (Decl Summary): In %define entry,
434 cross-reference command-line options.
435 (Bison Options): Add documentation to -D/--define entry.
436 (Option Cross Key): Widen column for --force-define row.
437 * src/getargs.c (usage): Document -F/--force-define. Realign
438 options in output.
439 (short_options, long_options, getargs): Parse -F/--force-define,
440 and update muscle_percent_define_insert invocation.
441 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
442 (muscle_percent_define_insert): Add argument with that type.
443 * src/muscle_tab.c (muscle_percent_define_insert): Implement
444 -F/--force-define behavior and priorities.
445 * src/parse-gram.y (prologue_declaration): Update
446 muscle_percent_define_insert invocations.
447 * tests/input.at (`%define, --define'): Rename to...
448 (`%define, --define, --force-define'): ... this and extend.
449
450 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
451
452 Update some comments to make sense for -D.
453 * data/bison.m4 (b4_check_user_names): In header comments, say
454 "user occurrence" instead of "grammar occurrence".
455 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
456 (muscle_percent_code_grow): Likewise just for consistency.
457
458 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
459
460 * data/c++.m4: Update copyright year.
461
462 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
463
464 * data/c++.m4 (b4_namespace_close): Simplify slightly.
465
466 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
467
468 Handle a trailing `:' in a user-supplied C++ namespace better.
469 * data/c++.m4 (b4_namespace_close): Don't let it be printed
470 among the closing braces here. This fix might make the
471 generated code easier to debug, but otherwise it should be
472 insignificant because a trailing `:' is a C++ error already.
473
474 2009-05-19 Akim Demaille <demaille@gostai.com>
475
476 remove useless variable.
477 * src/getargs.c (skeleton_arg): Remove now useless variable.
478 Should help the compiler see that this printf-like call is sane.
479
480 2009-05-11 Akim Demaille <demaille@gostai.com>
481
482 doc: use C++ headers.
483 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
484 headers.
485
486 2009-05-05 Akim Demaille <demaille@gostai.com>
487
488 fix hexadecimal token number support.
489 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
490
491 2009-05-05 Akim Demaille <demaille@gostai.com>
492
493 tests: check token numbers.
494 * tests/input.at (Numbered tokens): New.
495
496 2009-05-04 Akim Demaille <demaille@gostai.com>
497
498 bison: catch bad symbol names.
499 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
500 * tests/input.at: Adjust.
501
502 2009-05-04 Akim Demaille <demaille@gostai.com>
503
504 space changes.
505 * src/scan-gram.l: Untabify to be robust to zealous editors.
506
507 2009-05-04 Akim Demaille <demaille@gostai.com>
508
509 identifiers: dashes are letters.
510 Dashes can now start identifiers (symbols and directives).
511
512 * src/scan-gram.l ({letter}): Add dash.
513 ({id}): Remove it.
514 * tests/input.at (Symbols): Adjust.
515 Remove stray comment.
516 * tests/regression.at (Invalid inputs): Adjust error message.
517 * doc/bison.texinfo (Symbols): Update.
518
519 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
520
521 Declare %code to be a permanent feature.
522 * NEWS (2.4.2): Here.
523 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
524 experimental.
525 (Decl Summary): Likewise.
526
527 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
528
529 Convert underscores to dashes in some %define variable names.
530 For now, just api.push-pull and lr.keep-unreachable-states.
531 Maintain old names for backward compatibility.
532 * NEWS (2.5): Document.
533 * data/c.m4 (b4_identification): Update comment.
534 * data/yacc.c: Update access.
535 * doc/bison.texinfo: Update.
536 * etc/bench.pl.in (bench_grammar): Update use.
537 * src/files.c (tr): Move to...
538 * src/getargs.c, src/getargs.h (tr): ... here because I can't
539 think of a better place to expose it. My logic is that, for all
540 uses of tr so far, command-line arguments can be involved, and
541 getargs.h is already included.
542 * src/main.c (main): Update access.
543 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
544 variable names to new variable names before assigning value.
545 * src/reader.c (reader): Update setting default.
546 * tests/calc.at: Update uses.
547 * tests/conflicts.at (Unreachable States After Conflict
548 Resolution): Update use.
549 * tests/input.at (%define enum variables): Update use.
550 (%define backward compatibility): New test group.
551 * tests/push.at: Update uses.
552 * tests/reduce.at: Update uses.
553 * tests/torture.at: Update uses.
554
555 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
556
557 Set all front-end %define defaults in one place.
558 * src/main.c (main): Move lr.keep_unreachable_states default...
559 * src/reader.c (reader): ... to here.
560
561 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
562
563 Rename lr.default_reductions to lr.default-reductions.
564 * NEWS (2.5): Here.
565 * doc/bison.texinfo: Here.
566 * src/lalr.c (initialize_LA): Here.
567 * src/print.c (print_reductions): Here.
568 * src/reader.c (reader): Here.
569 * src/tables.c (action_row): Here.
570 * tests/input.at (%define enum variables): Here.
571 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
572
573 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
574
575 Pacify ./configure --enable-gcc-warnings.
576 * tests/input.at (Symbols): Prototype yyerror and yylex.
577
578 2009-04-21 Akim Demaille <demaille@gostai.com>
579
580 tests: check the use of dashes and periods in symbols.
581 * tests/input.at (Symbol): New test group.
582
583 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
584
585 Document how `%define "var" "value"' is not M4-friendly.
586 * src/parse-gram.y (variable): In comments here.
587
588 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
589
590 Add copyright updates missed during previous cherry pick.
591 * src/output.c: Here.
592 * src/parse-gram.y: Here.
593 * src/scan-gram.l: Here.
594
595 2009-04-20 Akim Demaille <demaille@gostai.com>
596
597 variables: accept dashes.
598 * src/scan-gram.l ({id}): Also accept dashes after the initial
599 letter.
600 ({directive}): Use {id}.
601 * src/parse-gram.y: Comment and formatting changes.
602 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
603 symbols.
604 * src/complain.h, src/complain.c (yacc_at): New.
605 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
606 symbol names.
607 * src/output.c (token_definitions_output): Do not #define token
608 names with dashes.
609
610 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
611
612 Clean up recent patches a little.
613 Reported by Akim Demaille.
614 * doc/bison.texinfo (Understanding): Fix typos.
615 * src/print.c (print_reductions): Don't use negated variable.
616
617 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
618
619 List accepted values for a %define enum variable with an invalid value.
620 Suggested by Akim Demaille at
621 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
622 * data/bison.m4 (_b4_percent_define_check_values): Implement.
623 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
624 * tests/input.at (%define lr.default_reductions invalid values): Merge
625 into...
626 (%define enum variables): ... here, and update output.
627
628 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
629
630 Rename "default rule" to "default reduction".
631 This includes changing variable names in code, changing
632 comments, and renaming %define lr.default_rules to %define
633 lr.default_reductions.
634 * NEWS (2.5): Update IELR documentation.
635 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
636 Adjust YYDEFACT and yydefact_ documentation.
637 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
638 and lr.type documentation. Make some other wording
639 improvements.
640 (Glossary): Adjust cross-references and Default Reduction
641 definition.
642 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
643 Remove a confusing comment pointed out by Akim Demaille.
644 (initialize_LA): Adjust code.
645 * src/print-xml.c (print_reductions): Adjust code.
646 * src/print.c (print_reductions): Adjust code.
647 * src/reader.c (reader): Adjust code.
648 * src/tables.c (action_row): Adjust code.
649 (token_actions): Adjust code.
650 * src/tables.h: Adjust YYDEFACT documentation.
651 * tests/input.at (%define lr.default_rules invalid values):
652 Rename test group to...
653 (%define lr.default_reductions invalid values): ... this, and
654 update grammar file and expected output.
655 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
656 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
657
658 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
659
660 Document %define lr.type and lr.default_rules.
661 * NEWS (2.5): Add an entry.
662 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
663 besides just LALR(1) and GLR(1).
664 * doc/bison.texinfo (Introduction): Likewise.
665 (Language and Grammar): Bison is no longer limited to LALR(1)
666 restrictions.
667 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
668 when trying to distinguish from GLR. Talk about LR(1) grammars
669 rather than LALR(1) grammars.
670 (Decl Summary): In %define api.push_pull entry, say it applies
671 to deterministic parsers in C rather than LALR(1) parsers in C.
672 Add lr.default_rules entry.
673 Add lr.type entry.
674 (Mystery Conflicts): Bison is no longer limited to LALR(1)
675 restrictions.
676 (Generalized LR Parsing): Same changes as for the previous GLR
677 section.
678 (Memory Management): Say deterministic rather than LALR(1).
679 (Understanding): Correct some bison output.
680 Index discussion of "accepting state".
681 Say deterministic rather than LALR(1).
682 (Bison Options): In --yacc entry, say deterministic rather than
683 LALR(1).
684 In --report, --graph, and --xml entries, just don't mention
685 LALR(1).
686 (C++ Parsers): Say deterministic rather than LALR(1).
687 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
688 (Glossary): Add Accepting State, Consistent State, Default Rule,
689 and IELR(1) definitions.
690 In Generalized LR (GLR) definition, make same changes as in
691 previous GLR sections.
692 In LALR(1) definition, say Bison uses LALR(1) by default rather
693 than implying Bison is limited to LALR(1).
694 (LocalWords): Add IELR.
695
696 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
697
698 Finish implementing %define lr.type.
699 Its value can be "LALR", "IELR", or "canonical LR".
700 * lib/timevar.def (TV_IELR_PHASE1): New var.
701 (TV_IELR_PHASE2): New var.
702 (TV_IELR_PHASE3): New var.
703 (TV_IELR_PHASE4): New var.
704 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
705 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
706 Sbitset.h, ielr.h, and ielr.c.
707 * src/getargs.h, src/getargs.c (enum trace, trace_args,
708 trace_types): Add trace_ielr.
709 * src/lalr.h, src/lalr.c (ngotos): Export it.
710 (F): Rename to...
711 (goto_follows): ... this, update all uses, and export it.
712 (set_goto_map): Export it.
713 (map_goto): Export it.
714 (compute_lookahead_tokens): Don't free goto_follows yet. Now
715 handled in ielr.
716 (initialize_LA): Export it. Move lookback allocation to...
717 (lalr): ... here because, for canonical LR, initialize_LA must
718 be invoked but lookback and much of the rest of LALR isn't
719 needed.
720 * main.c (main): Instead of lalr, invoke ielr, which invokes
721 lalr.
722 * src/reader.c (reader): Default lr.type to "LALR".
723 Default lr.default_rules to "accepting" if lr.type is "canonical
724 LR". Leave the default as "all" otherwise.
725 Check for a valid lr.type value.
726 * src/state.h, src/state.c (struct state_list): Add state_list
727 member.
728 (state_new): Initialize state_list member to NULL.
729 (state_new_isocore): New function, exported.
730 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
731 exercises all values of lr.type.
732 (GNU AWK Grammar): Rename test group to...
733 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
734 AT_TEST_EXISTING_GRAMMAR.
735 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
736 (GNU pic Grammar): Rename test group to...
737 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
738 AT_TEST_EXISTING_GRAMMAR.
739 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
740 all values of lr.type.
741 (Single State Split): New test groups using AT_TEST_LR_TYPE.
742 (Lane Split): Likewise.
743 (Complex Lane Split): Likewise.
744 (Split During Added Lookahead Propagation): Likewise.
745
746 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
747
748 Add new files for IELR and canonical LR implementation.
749 * src/AnnotationList.c: New.
750 * src/AnnotationList.h: New.
751 * src/InadequacyList.c: New.
752 * src/InadequacyList.h: New.
753 * src/Sbitset.c: New.
754 * src/Sbitset.h: New.
755 * src/ielr.c: New.
756 * src/ielr.h: New.
757
758 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
759
760 Implement %define lr.default_rules.
761 Its value describes the states that are permitted to contain
762 default rules: "all", "consistent", or "accepting".
763 * src/reader.c (reader): Default lr.default_rules to "all".
764 Check for a valid lr.default_rules value.
765 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
766 is "accepting", then only mark the accepting state as
767 consistent.
768 (initialize_LA): Tell state_lookahead_tokens_count whether
769 lr.default_rules is "accepting".
770 * src/tables.c (action_row): If lr.default_rules is not "all",
771 then disable default rules in inconsistent states.
772 * src/print.c (print_reductions): Use this opportunity to
773 perform some assertions about whether lr.default_rules was
774 obeyed correctly.
775 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
776 helps with checking the parser tables for a grammar.
777 * tests/input.at (%define lr.default_rules invalid values): New
778 test group.
779 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
780 AT_TEST_TABLES_AND_PARSE.
781 (`no %define lr.default_rules'): New test group generated by
782 AT_TEST_LR_DEFAULT_RULES.
783 (`%define lr.default_rules "all"'): Likewise.
784 (`%define lr.default_rules "consistent"'): Likewise.
785 (`%define lr.default_rules "accepting"'): Likewise.
786
787 2009-04-20 Akim Demaille <demaille@gostai.com>
788
789 Consistently refer to Yacc, not YACC.
790 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
791
792 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
793
794 Pacify make maintainer-check-posix.
795 * tests/input.at (%define, --define): Move bison command-line
796 options before grammar file name.
797
798 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
799
800 Document semicolon warnings.
801 * NEWS (2.5): Here.
802
803 2008-12-08 Akim Demaille <demaille@gostai.com>
804
805 Fix portability issue in the test suite.
806 * tests/local.at (AT_MATCHES_CHECK): New.
807 Based on Perl instead of Sed. Sed has too many portability
808 pitfalls, not ever Sed is GNU Sed.
809 * tests/actions.at (Fix user actions without a trailing semicolon):
810 Use it.
811
812 2008-12-07 Di-an Jan <dianj@freeshell.org>
813
814 Implement the FIXME that ends an user action with a semicolon
815 if it seems necessary.
816 * src/scan-code.l (flex rules section): Flag cpp directive from
817 any `#' to the first unescaped end-of-line. Semicolon is not
818 needed after `;', `{', '}', or cpp directives and is needed after
819 any other token (whitespaces and comments have no effect).
820 * tests/actions.at (Fix user actions without a trailing semicolon):
821 New test.
822 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
823 to make user actions complete statements.
824 Adjust column numbers in error messages.
825 * tests/regression.at (Fix user actions without a trailing semicolon):
826 Remove. Covered by new test.
827
828 2009-04-14 Akim Demaille <demaille@gostai.com>
829
830 doc: minor fixes.
831 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
832 (Table of Symbols): Remove duplicate entry for %debug.
833
834 2009-04-10 Eric Blake <ebb9@byu.net>
835
836 submodules: update to latest
837 * submodules/autoconf: Use latest upstream Autoconf.
838
839 2009-04-06 Eric Blake <ebb9@byu.net>
840
841 Work around autoconf 2.63b bug in testsuite.
842 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
843 autoconf bug related to # in test.
844
845 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
846
847 * NEWS (2.5): Describe new -D/--define feature.
848
849 2008-11-10 Akim Demaille <demaille@gostai.com>
850
851 --trace=muscles
852 * src/getargs.h, src/getargs.c (trace_muscle): New.
853 (trace_types, trace_args): Support it.
854 * src/output.c (output_skeleton): Use it.
855
856 2008-11-10 Akim Demaille <demaille@gostai.com>
857
858 muscles_output.
859 * src/output.c (muscles_output): New, extracted from...
860 (output_skeleton): here.
861 Adjust.
862
863 2008-11-21 Akim Demaille <demaille@gostai.com>
864
865 Display the changes in cross-options.texi.
866 * build-aux/cross-options.pl ($sep): New, to separate items.
867 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
868 the changes.
869
870 2008-11-20 Di-an Jan <dianj@freeshell.org>
871
872 Improves options in the manual.
873 * doc/bison.texinfo (-g, -x): Add space before argument.
874 (Option Cross Key): Implement FIXME: listing directives also.
875 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
876 (Short Option): Special case -d. Put arguments inside @option.
877 (Bison Directive): Add column, automatically extracted from
878 src/scan-gram.l (actual name passed as the first argument)
879 with special case for %define.
880 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
881 to build-aux/cross-options.pl.
882 * src/getargs.c (usage): Document limitations of cross-options.pl.
883 * src/scan-gram.l: Likewise.
884
885 2009-02-25 Akim Demaille <demaille@gostai.com>
886
887 Copyright years.
888 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
889
890 2008-12-08 Akim Demaille <demaille@gostai.com>
891
892 Install autoconf as a submodule to get m4sugar.
893 * .gitmodules: Add submodules/autoconf.
894 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
895 submodules/autoconf.
896
897 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
898
899 Simplify last patch slightly.
900 * src/getargs.c (getargs): Here.
901
902 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
903
904 Fix last warning from --enable-gcc-warnings.
905 * src/getargs.c (getargs): Don't assign const address to non-const
906 pointer.
907
908 2008-11-17 Di-an Jan <dianj@freeshell.org>
909
910 Handle --enable-gcc-warnings.
911 * src/getargs.c (command_line_location): Set parameters to void.
912
913 2008-11-11 Akim Demaille <demaille@gostai.com>
914
915 AT_FULL_COMPILE.
916 * tests/actions.at, tests/regression.at: Use it.
917
918 2008-11-07 Akim Demaille <demaille@gostai.com>
919
920 Pass command line location to skeleton_arg and language_argmatch.
921 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
922 The location argument is now mandatory.
923 Adjust all dependencies.
924 (getargs): Use command_line_location.
925
926 2008-11-07 Akim Demaille <demaille@gostai.com>
927
928 -D, --define.
929 * src/getargs.c (usage): Document -D.
930 Fix help string for --locations.
931 (command_line_location): New.
932 (short_options, long_options, getargs): Support -D, --define.
933 (getargs): Move -d support at the right place.
934 * doc/bison.texinfo (Bison Options): Update.
935 * tests/input.at (%define, --define): New.
936
937 2008-11-07 Akim Demaille <demaille@gostai.com>
938
939 Initialize the muscle table before parsing the command line.
940 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
941 (getargs): Define file_name.
942 * src/main.c (main): Initialize muscle_tab before calling
943 getargs.
944 * src/muscle_tab.c (muscle_init): No longer define file_name, as
945 its value is not available yet.
946
947 2008-11-09 Akim Demaille <demaille@gostai.com>
948
949 Require the generation of parse-gram.output.
950 * src/Makefile.am (YACC): Pass --report=all.
951
952 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
953
954 * NEWS (2.5): New stub.
955
956 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
957
958 Fix options documentation.
959 * build-aux/cross-options.pl: As in --help output, write optional
960 arguments as [=ARG] not =[ARG].
961 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
962
963 2008-11-07 Akim Demaille <demaille@gostai.com>
964
965 Fix --help.
966 * src/getargs.c (usage): Fix help string for -W.
967
968 2008-11-07 Akim Demaille <demaille@gostai.com>
969
970 Handle more general types of option arguments.
971 * build-aux/cross-options.pl: The argument ends at the first
972 space, not the first non-symbol character.
973 Use @var for each word appearing the argument description.
974
975 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
976
977 Remove spurious initial empty lines.
978 * data/location.cc: End the @output lines with an @.
979
980 2008-11-04 Akim Demaille <demaille@gostai.com>
981
982 Remove spurious initial empty lines.
983 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
984 * data/yacc.c: End the @output lines with an @.
985
986 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
987
988 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
989 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
990 requirements for a correct m4 are stricter.
991 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
992 * configure.ac: Update to use AC_PROG_GNU_M4.
993 Reported by Eric Blake.
994
995 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
996
997 Help with updating web manual.
998 * HACKING: Incorporate instructions from gnulib/doc/README.
999 * bootstrap.conf (gnulib_modules): Add gendocs.
1000
1001 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1002
1003 Fix strange %define locations for default values.
1004 Reported by Akim Demaille at
1005 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1006 and discussed again starting at
1007 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1008 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1009 because location information is bogus.
1010 Use angle brackets to delimit fake file name because square brackets
1011 look like underexpanded m4. Choose a better fake file name.
1012 Use negative line numbers.
1013 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1014 * src/location.c (location_print): If line for a boundary is negative,
1015 only print that boundary's file name.
1016 * src/location.h: Document that.
1017 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1018 defaults): Update output.
1019
1020 2008-11-07 Akim Demaille <demaille@gostai.com>
1021
1022 Locations without columns for command line arguments.
1023 * src/location.c (location_print): Don't display negative columns.
1024 * src/location.h: Document this.
1025
1026 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1027
1028 Add reminder about uploading public key to keys.gnupg.net.
1029 * HACKING (Release Procedure): Here.
1030
1031 2009-03-31 Akim Demaille <demaille@gostai.com>
1032
1033 bootstrap: --help to stdout.
1034 * bootstrap (usage): Don't send --help to stderr.
1035 Use a here doc instead of a long string.
1036
1037 2009-03-31 Akim Demaille <demaille@gostai.com>
1038
1039 bootstrap: README-hacking no longer exists
1040 * bootstrap (checkout_only_file): Set to HACKING.
1041
1042 2009-03-26 Akim Demaille <demaille@gostai.com>
1043
1044 doc: merge HACKING and README-hacking.
1045 Two files is confusing.
1046 Reported by Alexandre Duret-Lutz.
1047
1048 * README-hacking: Merge into...
1049 * HACKING (Working from the repository): here.
1050
1051 2009-03-26 Akim Demaille <demaille@gostai.com>
1052
1053 doc: update README-hacking.
1054 * README-hacking: We now use git and git submodules.
1055 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1056
1057 2009-03-26 Akim Demaille <demaille@gostai.com>
1058
1059 lalr1.cc: avoid GCC 4.3 warnings.
1060 GCC 4.3 now warns about "a || b && c" and asks for explicit
1061 parentheses.
1062 Reported by Alexandre Duret-Lutz.
1063 * data/location.cc: Update copyright years.
1064 (Position::operator==): Use parens to make precedence explicit.
1065 Compare lines and columns first, as they are more likely to be
1066 different, and they are faster to compare.
1067
1068 2009-03-26 Akim Demaille <demaille@gostai.com>
1069
1070 gnulib: update.
1071 * gnulib: Update to latest.
1072 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
1073 use +=.
1074
1075 2009-01-08 Akim Demaille <demaille@gostai.com>
1076
1077 Fix grep portability issues.
1078 Grep on Solaris does not support -q.
1079 Reported by Summum Bonum.
1080
1081 * NEWS: Add a stub for 2.4.2.
1082 * THANKS: Add Summum Bonum.
1083 * tests/atlocal.in (EGREP): New.
1084 (CC, CXX, XSLTPROC): Make it possible to override them via
1085 envvars.
1086 * tests/java.at: Use $EGREP instead of egrep.
1087 Use AT_CHECK's ignore instead of grep's -q.
1088
1089 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1090
1091 Version 2.4.1.
1092 * NEWS: Set version and date.
1093 * lib/Makefile.am: Update copyright year.
1094 * tests/atlocal.in: Update copyright year.
1095
1096 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1097
1098 Semicolon feature removal is not about future language support.
1099 * NEWS: The semicolon feature is no longer active for newer languages,
1100 so don't claim that it causes trouble for them.
1101
1102 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1103
1104 * gnulib: Update submodule to HEAD.
1105
1106 2008-12-09 Akim Demaille <demaille@gostai.com>
1107
1108 Update data/README.
1109 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1110
1111 2008-12-05 Eric Blake <ebb9@byu.net>
1112
1113 Build testsuite with newer autoconf.
1114 * tests/output.at (m4_expand): Don't override in newer autoconf,
1115 where the underlying implementation changed.
1116 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1117 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1118 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1119 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1120 since some of them contain unbalanced ')'.
1121
1122 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1123
1124 * NEWS: Clarify a little.
1125
1126 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1127
1128 * NEWS: Update for recent changes.
1129
1130 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1131
1132 Fix unexpanded macros in GLR defines file.
1133 Reported by Csaba Raduly at
1134 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1135 * THANKS (Csaba Raduly): Add.
1136 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1137 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1138 lexer in a separate module that includes the defines file.
1139 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
1140 source.
1141 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1142 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1143 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1144 (AT_DATA_SOURCE_PROLOGUE): New.
1145 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1146 (AT_DATA_SOURCE): New.
1147 (AT_FULL_COMPILE): New, copied from master branch and extended to
1148 support an additional source file.
1149
1150 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1151
1152 Don't let maintainer-*-check targets force a version update.
1153 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1154 handled.
1155
1156 2008-11-17 Di-an Jan <dianj@freeshell.org>
1157
1158 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1159 Align menus. Adjust word wrapping. Use node names for menu names.
1160 (Examples): Don't abbreviate node names.
1161 (LocalWords): Remove abbreviations.
1162 (Copying): Make description a sentence.
1163 (Java Action Features): Remove period to match the rest of menu.
1164
1165 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1166
1167 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1168 * configure.ac: Adjust usage.
1169 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1170 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1171 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1172
1173 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1174
1175 Don't add a semicolon to actions for %skeleton or %language.
1176 It breaks Java test cases as reported by Akim Demaille.
1177 * src/scan-code.l: Implement.
1178
1179 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1180
1181 Clean up %skeleton and %language priority implementation.
1182 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1183 remove static qualifier because others will soon need to see it.
1184 (language_prio): Likewise.
1185 (getargs): Use command_line_prio rather than 0.
1186 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1187 enum fields.
1188 (skeleton_prio): Extern it.
1189 (language_prio): Extern it.
1190 * src/parse-gram.y: Use grammar_prio rather than 1.
1191
1192 2008-11-04 Akim Demaille <demaille@gostai.com>
1193
1194 * NEWS: Mention the trailing semicolon in action.
1195
1196 2008-11-04 Akim Demaille <demaille@gostai.com>
1197
1198 Reformat NEWS.
1199 * NEWS: Use more outline-mode markup.
1200 Suggested by Jim Meyering.
1201
1202 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1203
1204 Fix user actions without a trailing semicolon.
1205 Reported by Sergei Steshenko at
1206 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1207 * THANKS (Sergei Steshenko): Add.
1208 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1209 * tests/regression.at (Fix user actions without a trailing semicolon):
1210 New test case.
1211
1212 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1213
1214 Initiate further development.
1215 * NEWS: Create an empty section for new entries.
1216 * gnulib: Update submodule to HEAD.
1217
1218 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1219
1220 * NEWS: Version 2.4.
1221
1222 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1223
1224 Prepare for next release.
1225 * NEWS: Briefly mention changes since 2.3b.
1226 * README: Say GNU m4 1.4.6, which we've been requiring in release
1227 announcements already, not 1.4.3, which breaks the build.
1228
1229 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1230
1231 Say %language is experimental.
1232 We're thinking of extending it's effect on output file naming. See the
1233 thread at
1234 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1235 * NEWS: Say it's experimental.
1236 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1237 recommend it over %skeleton for now.
1238 (Bison Options): Likewise.
1239 (C++ Bison Interface): Use %skeleton not %language.
1240 (Calc++ Parser): Use %skeleton not %language.
1241 * src/getargs.c (usage): Say it's experimental.
1242
1243 2008-11-01 Di-an Jan <dianj@freeshell.org>
1244 Paolo Bonzini <bonzini@gnu.org>
1245
1246 Support all Java parser class modifiers.
1247 * data/java.m4 (b4_percent_define_get3): New.
1248 (b4_final_if, b4_strictfp_if): New.
1249 * data/lalr1.java (final, strictfp, extends, implements): Support.
1250 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1251 documentation.
1252 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1253 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1254 (AT_CHECK_JAVA_GREP): New.
1255 (Java parser class modifiers): New test.
1256 (Java parser class extends and implements): New test.
1257
1258 Model exception propagation better with throws and lex_throws.
1259 * data/java.m4 (b4_list2): New.
1260 (throws): Change default.
1261 * data/lalr1.java (yyaction): Add throws.
1262 (parse): Add lex_throws in addition to throws.
1263 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1264 * tests/java.at (Java throws specifications): New test.
1265
1266 Improve documentation for Java parsers.
1267 * doc/bison.texinfo (Java Parsers): Add subsections.
1268 Don't quote first argument of %define.
1269 (Java Bison Interface): Document output files. Move documentation
1270 of parser class and merge into Java Parser Interface. Document
1271 features that error out. Document directives with no effect.
1272 Move note about Javadoc higher.
1273 (Java Semantic Values): Explicitly mention stype.
1274 Document that generic types cannot be used.
1275 (Java Location Values): Use @deftypeivar. Document constructors.
1276 Correct return value for toString.
1277 (Java Parser Interface): List undocumented constants/fields.
1278 Move documentation of fields added by %parse-param closer to list
1279 of members. Document that token names are added as fields.
1280 Document constructors accurately. Remove error method.
1281 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1282 Interface. Describe %code lexer and yylex accutately.
1283 Remove documentation that does not match the code.
1284 (Java Action Features): New.
1285 (Java Differences): Add reference. Add item on semantic values.
1286 Add note about @{ ... @}. Clarify %% epilogue placement.
1287 (Java Declarations Summary): New.
1288
1289 Fix Java skeleton.
1290 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1291 (b4_remove_comma): Quote test argument.
1292 (b4_identification): Remove "bison" field.
1293 * tests/java.at (Java parser class and package names): New test.
1294 (Java %parse-param and %lex-param): New test.
1295 (Java stype, position_class and location_class): New test.
1296
1297 2008-10-31 Di-an Jan <dianj@freeshell.org>
1298
1299 * data/lalr1.jave: Update copyright years.
1300 (YYParser): Correct name of "generated from" file in Javadoc:
1301 use b4_file_name instead of @ofile@.
1302 (Location constructor): Correct Javadoc parameter name.
1303 (yylloc): Add missing opening m4 quote after b4_location_if.
1304 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1305 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1306 (YYParser constructor): Correct Javadoc parameter name.
1307
1308 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1309
1310 Always put auxiliary code files in the same dir as other output files.
1311 * src/files.c (compute_file_name_parts): When the user specifies
1312 --output but not --file-prefix, extract the directory prefix from the
1313 file prefix not from the grammar file name. This affects the location
1314 of files like location.hh generated by the C++ skeleton. The includes
1315 in the other output files require this fix.
1316 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1317 for expected output files.
1318 (Output files): Add a test for the above.
1319
1320 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1321
1322 * gnulib: Update submodule to HEAD.
1323
1324 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1325
1326 Update copyright year.
1327 * src/files.c: Here.
1328
1329 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1330
1331 Don't overwrite the input file.
1332 * src/files.c (output_file_name_check): Fatal error if using input file
1333 for output.
1334 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1335 argument.
1336 (Conflicting output files): Add test.
1337
1338 2008-10-28 Akim Demaille <demaille@gostai.com>
1339
1340 Space changes.
1341 * data/lalr1.cc: Formatting changes.
1342
1343 2008-10-28 Akim Demaille <demaille@gostai.com>
1344
1345 Don't define debugging functions when !YYDEBUG.
1346 * data/lalr1.cc (debug_stream, set_debug_stream)
1347 (debug_level_type, debug_level, set_debug_level): Don't
1348 declare them when YYDEBUG is not defined.
1349 The implementation are already YYDEBUG-aware.
1350
1351 2008-10-28 Akim Demaille <demaille@gostai.com>
1352
1353 Prefer "continue" for empty loop bodies.
1354 * etc/bench.pl.in: Use "continue" instead of {}.
1355
1356 2008-10-28 Akim Demaille <demaille@gostai.com>
1357
1358 Space and comments changes.
1359 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1360 * data/c.m4, data/lalr1.cc: Space changes.
1361
1362 2008-10-28 Akim Demaille <demaille@gostai.com>
1363
1364 Make gnulib a submodule.
1365 * gnulib: New.
1366 * .gitmodules (gnulib): New.
1367
1368 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1369
1370 Fix yyerror_range for user-defined location type in C++. Reported by
1371 Georg Sauthoff at
1372 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1373 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1374 * THANKS (Georg Sauthoff): Add.
1375
1376 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1377
1378 Update several administrative files mainly to facilitate releasing.
1379 * HACKING (Administrivia): Make the git-merge-changelog notes more
1380 helpful.
1381 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1382 (Release Procedure): Update for git and add numerous details that were
1383 previously missing.
1384 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1385 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1386 that announcements don't claim we bootstrapped with whatever bison
1387 happened to be in PATH. Add flex as a bootstrap tool.
1388 * Makefile.maint: Remove, previously replaced by maint.mk.
1389 * Makefile.cfg: Remove, and migrate settings to...
1390 * cfg.mk: ... here for the sake of `make announcement'.
1391 * bootstrap.conf (gnulib_modules): Add announce-gen.
1392 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1393 Berry.
1394
1395 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1396
1397 Small but important bugfixes for the Java skeleton.
1398 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1399 (yy_symbol_print): Call toString on yyvaluep.
1400
1401 2008-08-29 Akim Demaille <demaille@gostai.com>
1402
1403 Clarify UPDATED use.
1404 * doc/bison.texinfo: It refers to the last edition of this file,
1405 not to the release date of Bison.
1406 Reported by Joel E. Denny.
1407
1408 2008-08-29 Akim Demaille <demaille@gostai.com>
1409
1410 * README: Update FAQ pointer.
1411 Reported by Joel E. Denny.
1412
1413 2008-08-27 Eric Blake <ebb9@byu.net>
1414
1415 Resync m4sugar from autoconf.
1416 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1417 (m4_init): Adjust to latest m4.git changes.
1418 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1419 effects.
1420 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1421 (_m4_list_cmp): Reduce side effects.
1422
1423 2008-08-27 Akim Demaille <demaille@gostai.com>
1424
1425 Check yyerrok in calc.at.
1426 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1427 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1428 expected.
1429
1430 2008-08-27 Akim Demaille <demaille@gostai.com>
1431
1432 Support yyerrok in lalr1.cc.
1433 YYBACKUP is still to import back into lalr1.cc.
1434 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1435
1436 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1437
1438 For maintainer-check*, don't recompile for a $(VERSION) update.
1439 * cfg.mk: New file.
1440 (_is-dist-target): Override the one in GNUmakefile.
1441 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1442
1443 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1444
1445 Update for recent change to gnulib.
1446 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1447 string.h now.
1448
1449 2008-08-15 Eric Blake <ebb9@byu.net>
1450
1451 Remaining m4sugar merge from autoconf.
1452 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1453 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1454 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1455 * src/output.c (output_skeleton): Tell m4 how to find it.
1456
1457 Partial m4sugar merge from autoconf: m4_map.
1458 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1459 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1460 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1461 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1462 for empty list.
1463 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1464 Likewise.
1465 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1466 declares it.
1467
1468 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1469
1470 Keep .version and PACKAGE_VERSION in sync.
1471 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1472 dependency, and add comments justifying this in more detail. Discussed
1473 starting at
1474 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1475
1476 2008-08-06 Eric Blake <ebb9@byu.net>
1477
1478 Partial m4sugar merge from autoconf: m4_shiftn.
1479 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1480 (m4_shift2, m4_shift3): New macros.
1481 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1482 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1483 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1484 * data/java.m4 (b4_remove_comma): Likewise.
1485
1486 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1487 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1488 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1489 (m4_init): Consolidate wrapped text into single m4_wrap.
1490 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1491 in wrapped text.
1492
1493 2008-08-05 Eric Blake <ebb9@byu.net>
1494
1495 Partial m4sugar merge from autoconf: builtins, version.m4.
1496 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1497 (m4_prepend): Remove, as it is unused and inherently quadratic,
1498 whereas m4_append is linear in newer m4.
1499 (m4_mkstemp): New builtin.
1500 (m4_symbols): Make rename conditional.
1501 (m4_version_prereq): Ensure fatal error if used in bison, which
1502 intentionally lacks version.m4.
1503
1504 Fix comments in m4sugar.
1505 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1506
1507 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1508
1509 Update for recent .gitignore fix in Gnulib.
1510 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1511 anchored .gitignore entries.
1512
1513 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1514
1515 Set gnu or gnits strictness.
1516 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1517 development and gnits strictness for releases. Based on Eric Blake's
1518 suggestion at
1519 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1520
1521 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1522
1523 * NEWS: Clarify documentation of %language.
1524
1525 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1526
1527 Support usage of git-merge-changelog.
1528 * .gitattributes: New.
1529 * HACKING: Document usage of git-merge-changelog.
1530 * bootstrap: Install git-merge-changelog entries in .git/config
1531 if appropriate.
1532
1533 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1534
1535 Remove remaining dependence on CVS Id keyword.
1536 * ChangeLog: For the sake of people still using CVS, don't use dollars
1537 when mentioning Id.
1538 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1539 unusual anyway.
1540 * data/xslt/xml2dot.xsl: Likewise.
1541 * data/xslt/xml2text.xsl: Likewise.
1542 * data/xslt/xml2xhtml.xsl: Likewise.
1543 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1544 * doc/Makefile.am (neutralize): Remove, no longer needed.
1545 (.x.1): Don't use neutralize.
1546 (edit): Don't substitute for ID.
1547 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1548
1549 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1550
1551 Fix dependence on computed configure variables.
1552 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1553 $(top_srcdir)/configure.ac so that changes to computed variables, such
1554 as PACKAGE_VERSION, are seen.
1555 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1556
1557 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1558
1559 Update copyright dates for recent changes.
1560 * Makefile.am: Here.
1561 * src/Makefile.am: Here.
1562 * src/reduce.c: Here.
1563 * tests/reduce.at: Here.
1564
1565 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1566
1567 Use git-version-gen for version names between releases.
1568 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1569 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1570 * .prev-version: New.
1571 * .version.in: Remove.
1572 * ChangeLog: Remove the Id previously used for capturing the CVS
1573 revision.
1574 * GNUmakefile: Remove, now copied from Gnulib.
1575 * Makefile.am: Add code suggested by comments in
1576 build-aux/git-version-gen.
1577 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1578 .prev-version, and .version.
1579 * NEWS (2.3b+): Rename to...
1580 (?.?): ... this because we're dropping the "+" version naming scheme,
1581 but, in general, we still can't be sure of our next release name.
1582 * bootstrap: Add a quick hack to remove from .gitignore the
1583 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1584 entry. This should really be fixed in gnulib instead.
1585 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1586 * configure.ac (AC_INIT): Set version name by invoking
1587 build-aux/git-version-gen.
1588 (AC_CONFIG_FILES): Remove .version, now generated by
1589 build-aux/git-version-gen.
1590 * maint.mk: New, copied from coreutils.
1591 * doc/.cvsignore (bison.1): Add.
1592 * doc/.gitignore (/bison.1): Add.
1593 * doc/bison.1: Remove, generated.
1594 * src/.cvsignore (revision.c): Remove.
1595 * src/.gitignore (/revision.c): Remove.
1596 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1597 (BUILT_SOURCES): Remove revision.c.
1598 (revision.c): Remove.
1599 * src/getargs.c (version): Don't print revision after the VERSION.
1600 * src/revision.h: Remove.
1601
1602 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1603
1604 Fix untranslatable composition of sentences. Reported by Goran
1605 Uddeborg at
1606 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1607 * THANKS (Goran Uddeborg): Add.
1608 * src/reduce.c (reduce_print): Report the number of nonterminals and
1609 rules useless in the grammar in separate sentences.
1610 * tests/reduce.at (Useless Rules): Update output.
1611 (Reduced Automaton): Likewise.
1612 (Underivable Rules): Likewise.
1613 (Empty Language): Likewise.
1614
1615 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1616
1617 Fix some .gitignore and .cvsignore problems.
1618 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1619 (insert_vc_ignore): ... this new function, which prepends `/' to all
1620 .gitignore entries before passing them to insert_sorted_if_absent.
1621 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1622 .cvsignore files are maintained even though Bison developers run
1623 bootstrap while using Git.
1624 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1625 unneeded by Bison.
1626 (gnulib): Add.
1627 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1628 unneeded. Reported by Eric Blake.
1629 * lib/.gitignore (/*~): Add.
1630 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1631 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1632 Blake.
1633 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1634
1635 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1636
1637 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1638 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1639 * bootstrap.conf (gnulib_modules): Add unsetenv.
1640 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1641 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1642 (/setenv.m4): Add.
1643 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1644 the first argument because it may become position-dependent, and unset
1645 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1646 Add comments explaining these issues in more detail.
1647
1648 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1649
1650 Add .gitignore everywhere based on .cvsignore.
1651 * .gitignore: New.
1652 * build-aux/.gitignore: New.
1653 * data/.gitignore: New.
1654 * doc/.gitignore: New.
1655 * etc/.gitignore: New.
1656 * examples/.gitignore: New.
1657 * examples/calc++/.gitignore: New.
1658 * lib/.gitignore: New.
1659 * m4/.gitignore: New.
1660 * po/.gitignore: New.
1661 * runtime-po/.gitignore: New.
1662 * src/.gitignore: New.
1663 * tests/.gitignore: New.
1664
1665 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1666
1667 * NEWS (2.3b+): New section, empty for now.
1668 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1669
1670 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1671
1672 * NEWS (2.3b): Update release date since there has been a delay in
1673 getting the announcements and tarballs out.
1674
1675 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1676
1677 * NEWS: Version 2.3b.
1678 * configure.ac (AC_INIT): Likewise.
1679 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1680
1681 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1682
1683 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1684 been doing it for years.
1685 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1686 (Release Procedure): Add FIXME about make alpha being unmaintained.
1687
1688 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1689
1690 * data/yacc.c: Reformat m4 a little for readability.
1691 * src/lalr.c (build_relations): Correct comment.
1692
1693 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1694
1695 DJGPP specific issue.
1696 * djgpp/config.sed: Fixes required to run configure scripts generated
1697 by autoconf 2.62.
1698
1699 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1700
1701 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1702 coordinator@translationproject.org.
1703
1704 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1705
1706 * THANKS: Add Eric Blake.
1707
1708 2008-04-23 Eric Blake <ebb9@byu.net>
1709
1710 Revert prior patch, by working around autoconf regression.
1711 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1712 ("Output file name: ("): Uncomment test.
1713 ("Output file name: )"): Likewise.
1714 Based on an idea from Noah Misch.
1715
1716 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1717
1718 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1719 2.61. Reported by Juan Manuel Guerrero at
1720 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1721 * tests/output.at ("Output file name: ("): Comment out test case for
1722 now.
1723 ("Output file name: )"): Likewise.
1724
1725 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1726
1727 * GNUmakefile: Update git-version-gen invocation so make dist
1728 succeeds.
1729
1730 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1731
1732 Update to the current gnulib CVS repository, and fix trigraph handling
1733 in Bison.
1734 * bootstrap: Update gnulib CVS repository URL.
1735 (symlink_to_dir): Encapsulate the code that guarantees the destination
1736 directory exists into...
1737 (check_dst_dir): ... this new function, and...
1738 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1739 fail when copying files into lib/uniwidth/.
1740 * src/output.c (prepare_symbols): When writing yytname muscles, where
1741 symbol names will be encoded in C-string literals, tell quotearg to
1742 escape trigraphs. This used to be the default in gnulib.
1743 * tests/regression.at (Token definitions): Because of the change in
1744 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1745 escapes trigraphs in symbol names. Thus, yytname no longer has
1746 trigraphs unnecessarily doubly escaped. Update test case output.
1747 Extend test case to be sure Bison's own error messages will no longer
1748 have trigraphs in symbol names unnecessarily escaped once.
1749
1750 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1751
1752 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1753 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1754 * .cvsignore: Add .version.
1755 * .version.in: New.
1756 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1757 * configure.ac (AC_CONFIG_FILES): Add .version.
1758 * build-aux/.cvsignore: Add git-version-gen.
1759
1760 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1761
1762 * NEWS (2.3a+): Mention that -g now takes an argument.
1763 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1764 consistency. Update the -g and -x entries now that they take
1765 arguments. Use brackets to indicate optional arguments.
1766 * src/getargs.c (usage): Explain the relationship between arguments of
1767 long and short options more completely. Document --defines and -d
1768 separately since the former takes an argument but, for POSIX Yacc, the
1769 latter does not.
1770 (short_options): Let -W take an optional argument like --warnings.
1771 (getargs): Sort cases.
1772
1773 2008-02-28 Akim Demaille <demaille@gostai.com>
1774
1775 * doc/bison.texinfo: Fix a few typos.
1776
1777 2008-02-28 Akim Demaille <akim@epita.fr>
1778
1779 * doc/bison.texinfo (Bison Options): Document -W.
1780 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1781
1782 2008-02-28 Akim Demaille <akim@epita.fr>
1783
1784 * src/getargs.c (short_options): Split and sort for readability.
1785 -g and -x take optional arguments, just like their long options.
1786 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1787 understand.
1788 Fix the handling of $opt which resulted in all the argument to be
1789 considered as optional.
1790
1791 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1792
1793 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1794 say its interface is experimental.
1795 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1796 Java.
1797 (Bison Options): In the -L and --language entry, mention Java.
1798 (Java Bison Interface): Say the interface is experimental.
1799 * src/getargs.c (usage): Mention -L and --language.
1800
1801 * NEWS (2.3a+): Say the push parsing interface is experimental.
1802 * doc/bison.texinfo (Push Decl): Likewise.
1803 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1804 (Push Parser Function): Likewise.
1805 (Pull Parser Function): Likewise.
1806 (Parser Create Function): Likewise.
1807 (Parser Delete Function): Likewise.
1808 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1809 yypull_parse, and yypush_parse entries.
1810
1811 * NEWS (2.3a+): Mention XML support, and say the schema is
1812 experimental.
1813 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1814 * src/getargs.c (usage): Say the XML schema is experimental.
1815
1816 * NEWS (2.3a+): Say option instead of flag.
1817
1818 2008-02-21 Wojciech Polak <polak@gnu.org>
1819
1820 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1821 text.
1822
1823 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1824
1825 Fix impure push parser compile error reported by Bob Rossi at
1826 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1827 * data/yacc.c: Clean up whitespace in the output a little.
1828 (yypstate_allocated): Define for impure push parsers regardless of
1829 whether the pull interface is also requested.
1830 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1831 check impure push parsers without the pull interface.
1832
1833 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1834 yyerror takes arguments specified by %parse-param while yypstate_new
1835 does not.
1836 * doc/bison.texinfo (Parser Create Function): Document that
1837 yypstate_new returns 0 for multiple impure parser instances.
1838 * tests/push.at (Push Parsing: Multiple impure instances): Update
1839 expected stderr output.
1840
1841 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1842
1843 * runtime-po/POTFILES.in (push.c): Remove.
1844
1845 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1846
1847 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1848 * data/push.c: Rename to...
1849 * data/yacc.c: ... this, overwriting it.
1850 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1851 `%push-pull-parser' -> `%define api.push_pull "both"'.
1852 Remove old yacc.c tests, and update push.c tests to yacc.c.
1853
1854 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1855
1856 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1857 `"%code top" blocks' instead of `%code "top" blocks'.
1858 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1859 Clean up whitespace in the output a little.
1860
1861 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1862
1863 Fix documentation problems reported by Tim Josling at
1864 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1865 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1866 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1867 integers. Explain the effect of literal string aliases on error
1868 messages. Copy token 0 documentation from the C++ skeleton
1869 documentation.
1870
1871 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1872
1873 Accept a token number in a %left, %right, or %nonassoc for POSIX
1874 conformance. Reported by Tim Josling at
1875 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1876 * NEWS (2.3a+): Mention.
1877 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1878 and code numbers are treated by precedence declarations.
1879 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1880 of symbols.1.
1881 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1882 of symbol.
1883 (symbol.prec): New, just like symbol but allows INT.
1884 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1885 longer holds.
1886 * tests/regression.at (Token number in precedence declaration): New
1887 test case.
1888
1889 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1890
1891 DJGPP specific issues.
1892 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1893 be changed. Copyright timestamp adjusted.
1894 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1895 be changed. Copyright timestamp adjusted.
1896 * djgpp/config.site: Copyright timestamp adjusted.
1897 * djgpp/config_h.sed: Copyright timestamp adjusted.
1898 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1899 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1900 filename translation list.
1901 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1902 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1903 files shall be created. Before trying to use the temp dir where the
1904 environment variable points to check that the dir really exists. If
1905 not default to the cwd as temp dir. Copyright timestamp adjusted.
1906 * djgpp/subpipe.h: Copyright timestamp adjusted.
1907 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1908
1909 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1910
1911 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1912
1913 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1914
1915 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1916 Problem reported by Claudio Saavedra in
1917 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1918
1919 2008-01-05 Wojciech Polak <polak@gnu.org>
1920
1921 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1922 document's title with the input grammar file name.
1923
1924 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1925
1926 Automate regression testing of the XML/XSLT implementation. Discussed
1927 starting at
1928 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1929 * configure.ac (XSLTPROC): New substitution.
1930 * Makefile.am (maintainer-xml-check): New phony target invoking...
1931 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1932 invoking make maintainer-check with BISON_TEST_XML=1.
1933 * tests/atlocal.in (XSLTPROC): New.
1934 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1935 not to report reachable memory when Bison is expected to have a
1936 non-zero exit status and (2) to compare XML/XSLT output with --graph
1937 and --report=all output for every working grammar when
1938 BISON_TEST_XML=1.
1939 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1940 (AT_BISON_CHECK_XML): New.
1941 (AT_QUELL_VALGRIND): New.
1942 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1943 (AT_CHECK): ... don't redefine this since this was the old way to
1944 quell Valgrind.
1945 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1946 AT_BISON_CHECK invocations.
1947 * tests/c++.at: Likewise.
1948 * tests/calc.at: Likewise.
1949 * tests/conflicts.at: Likewise.
1950 * tests/cxx-type.at: Likewise.
1951 * tests/existing.at: Likewise.
1952 * tests/glr-regression.at: Likewise.
1953 * tests/headers.at: Likewise.
1954 * tests/input.at: Likewise.
1955 * tests/java.at: Likewise.
1956 * tests/output.at: Likewise.
1957 * tests/push.at: Likewise.
1958 * tests/reduce.at: Likewise.
1959 * tests/regression.at: Likewise.
1960 * tests/sets.at: Likewise.
1961 * tests/skeletons.at: Likewise.
1962 * tests/synclines.at: Likewise.
1963 * tests/torture.at: Likewise.
1964 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1965 tends to hang xsltproc.
1966 (Big horizontal): Likewise.
1967
1968 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1969
1970 In XML output, remove redundant class attribute on symbol element.
1971 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1972 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1973 look up a symbol to determine whether it's a nonterminal or terminal.
1974 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1975 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1976
1977 Add prec/assoc information to XML output.
1978 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1979 %prec, add a percent_prec attribute.
1980 * src/print-xml.c (print_grammar): For each terminal that has a
1981 precedence or associativity, add a prec or assoc attribute.
1982 (xml_indent): New.
1983 (xml_puts): Use xml_indent.
1984 (xml_printf): Use xml_indent.
1985 * src/print-xml.h (xml_indent): Prototype.
1986
1987 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1988 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1989
1990 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1991
1992 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1993 (bison:ruleByNumber): ... this for clarity.
1994 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1995 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1996 (xsl:template match="reduction"): Update.
1997 (xsl:template match="item"): Update.
1998 (xsl:template match="reduction"): Update.
1999
2000 In the XML output, don't print the list of rules where symbols appear.
2001 Compute it in XSLT instead. Discussed at
2002 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2003 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2004 (bison:ruleByRhs): New.
2005 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2006 bison:ruleByRhs.
2007 (xsl:template match="terminal/rule"): Remove.
2008 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2009 bison:ruleByRhs.
2010 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2011 Remove.
2012 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2013 bison:ruleByRhs and mode="number-link" for rule template.
2014 (xsl:template match="terminal/rule"): Remove.
2015 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2016 bison:ruleByRhs and mode="number-link" for rule template.
2017 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2018 Rewrite as...
2019 (xsl:template match="rule" mode="number-link"): ... this.
2020 * src/print-xml.c (print_grammar): Don't print the list of rules.
2021
2022 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2023
2024 Don't let --report affect XML output; always print all information.
2025 Discussed at
2026 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2027 * src/conflicts.c (log_resolution): Implement.
2028 * src/print-xml.c (print_core): Implement.
2029 (print_state): Implement.
2030 (print_xml): Implement.
2031
2032 * NEWS (2.3a+): Fix quotes.
2033 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2034 don't let %verbose clear the list specified by --report.
2035
2036 2007-11-26 Akim Demaille <akim@epita.fr>
2037
2038 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2039
2040 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2041
2042 In the XML output, list useless and unused symbols and rules with the
2043 useful ones and add a "usefulness" attribute. Discussed starting at
2044 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2045 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2046 (grammar_rules_print_xml): Print all rules instead of just those
2047 useful in the grammar, and add a "usefulness" attribute.
2048 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2049 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2050 (print_grammar): Print all nonterminals instead of just useful ones,
2051 and add a "usefulness" attribute to nonterminals and terminals.
2052 (print_xml): Don't print a separate "reductions" or
2053 "rules-useless-in-parser" element.
2054 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2055 (reduce_xml): Remove.
2056 (reduce_token_unused_in_grammar): New.
2057 (reduce_nonterminal_useless_in_grammar): New.
2058 * src/reduce.h (reduce_xml): Remove prototype.
2059 (reduce_token_unused_in_grammar): Add prototype.
2060 (reduce_nonterminal_useless_in_grammar): Add prototype.
2061 * data/xslt/xml2text.xsl: Update for XML changes.
2062 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2063 * tests/reduce.at (Useless Terminals): Update output.
2064 (Useless Rules): Update output.
2065 (Reduced Automaton): Update output.
2066
2067 Say "Terminals unused in grammar" instead of "Unused terminals".
2068 * NEWS (2.3a+): Update.
2069 * doc/bison.texinfo (Understanding): Update example output.
2070 * src/reduce.c (reduce_output): Implement.
2071 * data/xslt/xml2text.xsl: Implement.
2072 * data/xslt/xml2xhtml.xsl: Implement.
2073
2074 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2075
2076 Accept --report-file=FILE to override the default `.output' filename.
2077 * NEWS (2.3a+): Mention.
2078 * doc/bison.texinfo (Bison Options): Add an entry.
2079 * src/files.c (compute_output_file_names): Don't override
2080 spec_verbose_file if already set.
2081 * src/getargs.c (usage): Document --report-file.
2082 (REPORT_FILE_OPTION): New anonymous enum member.
2083 (long_options): Add entry for it.
2084 (getargs): Add case for it setting spec_verbose_file.
2085
2086 * build-aux/cross-options.pl: Don't record a short option just because
2087 there's an arg.
2088 * doc/.cvsignore: Add yacc.1.
2089
2090 2007-11-14 Akim Demaille <akim@epita.fr>
2091
2092 * doc/yacc.1.in: New.
2093 * configure.ac, doc/Makefile.am: Adjust.
2094 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2095 config.h symbol.
2096 Use AC_SUBST for assignments too.
2097 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2098
2099 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2100
2101 * src/gram.c: Remove comments that duplicate comments in gram.h.
2102
2103 When reporting useless rules and nonterminals, say "useless in grammar"
2104 instead of "useless", and say "useless in parser" instead of "never
2105 reduced". Discussed starting at
2106 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2107 * NEWS (2.3a+): Mention this change.
2108 * data/xslt/xml2text.xsl: Update output text and expected input XML
2109 element names to match changes below.
2110 * data/xslt/xml2xhtml.xsl: Likewise.
2111 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2112 Contents: "Rules useless in parser due to conflicts".
2113 * doc/bison.texinfo (Decl Summary): Reword a little.
2114 (Understanding): Update example output for changes below.
2115 * src/gram.c: (rule_useful_p): Rename to...
2116 (rule_useful_in_grammar_p): ... this.
2117 (rule_useless_p): Rename to...
2118 (rule_useless_in_grammar_p): ... this.
2119 (rule_never_reduced_p): Rename to...
2120 (rule_useless_in_parser_p): ... this.
2121 (grammar_rules_print): Update for renames.
2122 (grammar_rules_print_xml): Update for renames.
2123 (grammar_rules_never_reduced_report): Rename to...
2124 (grammar_rules_useless_report): ... this since it is used for either
2125 kind of useless rule.
2126 * src/gram.h: Reword comments and update function names in prototypes.
2127 * src/main.c (main): Say "rule useless in parser due to conflicts".
2128 * src/print-xml.c (print_rules_never_reduced): Rename to...
2129 (print_rules_useless_in_parser): ... this, and rename output XML
2130 element "rules-never-reduced" to "rules-useless-in-parser".
2131 (print_xml): Update for rename.
2132 * src/print.c (print_results): Say "Rules useless in parser due to
2133 conflicts".
2134 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2135 (nonterminals_reduce): Say "nonterminal useless in grammar".
2136 (reduce_output): Say "Nonterminals useless in grammar".
2137 Say "Rules useless in grammar".
2138 (reduce_xml): Rename output XML element "useless" to
2139 "useless-in-grammar".
2140 (reduce_print): Don't report the count of grammatically useless rules
2141 as "rules never reduced" just because %yacc is specified.
2142 In the correct report of this count, say nonterminal(s) and rule(s)
2143 "useless in grammar".
2144 * tests/conflicts.at (S/R in initial): Update expected output.
2145 (Defaulted Conflicted Reduction): Likewise.
2146 (Unreachable States After Conflict Resolution): Likewise.
2147 * tests/existing.at (GNU pic Grammar): Likewise.
2148 * tests/reduce.at (Useless Nonterminals): Likewise.
2149 (Useless Rules): Likewise.
2150 (Reduced Automaton): Likewise.
2151 (Underivable Rules): Likewise.
2152 (Empty Language): Likewise.
2153
2154 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2155
2156 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2157 here document and before the EOF so that BSD's implementation of Bourne
2158 shell doesn't parse the delimiter as part of the here document.
2159 * doc/.cvsignore: Add cross-options.texi.
2160 * src/getargs.c (usage): Add a blank line after the warning categories.
2161
2162 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2163
2164 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2165
2166 2007-11-05 Akim Demaille <akim@epita.fr>
2167
2168 Remove Id: from bison.1.
2169 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2170 (perl -0777 -pi -e 's/\.PP\nId): New.
2171 (.x.1): Use it to ignore the version control revision.
2172
2173 2007-11-05 Akim Demaille <demaille@gostai.com>
2174
2175 * build-aux/Makefile.am: Ship cross-options.pl.
2176 * doc/Makefile.am: Always refer to cross-options.texi with
2177 $(srcdir).
2178 (MAINTAINERCLEANFILES): Add it.
2179
2180 2007-11-04 Akim Demaille <demaille@gostai.com>
2181
2182 Generate the long/short option cross-table.
2183 * build-aux/cross-options.pl: New.
2184 * doc/Makefile.am (cross-options.texi): New.
2185 * doc/bison.texinfo: Use it.
2186
2187 2007-11-04 Akim Demaille <demaille@gostai.com>
2188
2189 Generate bison.1 using help2man.
2190 * doc/common.x, doc/bison.x: New.
2191 * doc/Makefile.am (bison.1, .x.1): New.
2192 The code is taken from autoconf-2.61/man/Makefile.am.
2193 * configure.ac: Look for help2man.
2194
2195 2007-11-04 Akim Demaille <demaille@gostai.com>
2196
2197 Complete --help.
2198 * src/getargs.c (usage): Document -W, make it clear that -d,
2199 -g and -x have optional arguments.
2200
2201 2007-11-04 Akim Demaille <demaille@gostai.com>
2202
2203 Find sha1sum when named gsha1sum.
2204 * bootstrap (find_tool): New.
2205 ($SHA1SUM): New.
2206
2207 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2208
2209 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2210 at
2211 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2212 * NEWS (2.3a+): Mention.
2213 * data/bison.m4 (b4_pure_if): Don't define it here.
2214 * data/c.m4 (b4_identification): Depend on individual skeletons to
2215 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2216 values of the %define variables api.pure or api.push_pull. Define
2217 YYPURE, YYPUSH, and YYPULL accordingly.
2218 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2219 glr.cc has already defined b4_pure_flag.
2220 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2221 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2222 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2223 * doc/bison.texinfo (Pure Decl): Update.
2224 (Push Decl): Update.
2225 (Decl Summary): Add api.pure to %define entry.
2226 In %pure-parser entry, say it's deprecated and reference %define.
2227 (Pure Calling): Update.
2228 (Error Reporting): Update.
2229 (C++ Scanner Interface): Update.
2230 (How Can I Reset the Parser): Update.
2231 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2232 reference %define.
2233 * src/getargs.c (pure_parser): Remove global variable.
2234 * src/getargs.h (pure_parser): Remove extern.
2235 * src/output.c (prepare): Don't define pure_flag muscle.
2236 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2237 wrapper around `%define api.pure'.
2238 * tests/calc.at (Simple LALR Calculator): Update.
2239 (Simple GLR Calculator): Update.
2240 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2241 Update.
2242 (GLR: Resolve ambiguity, pure, locations): Update.
2243 (GLR: Merge conflicting parses, pure, no locations): Update.
2244 (GLR: Merge conflicting parses, pure, locations): Update.
2245 * tests/glr-regression.at (Uninitialized location when reporting
2246 ambiguity): Update
2247 * tests/input.at (Unused %define api.pure): New test case.
2248 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2249 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2250 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2251
2252 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2253
2254 %define push_pull -> %define api.push_pull. Discussed starting at
2255 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2256 * data/push.c: Expect the new name.
2257 * data/yacc.c: Likewise.
2258 * doc/bison.texinfo (Push Decl): Update.
2259 (Decl Summary): Update %define entry.
2260 (Push Parser Function): Update.
2261 (Pull Parser Function): Update.
2262 (Parser Create Function): Update.
2263 (Parser Delete Function): Update.
2264 * tests/calc.at (Simple LALR Calculator): Update.
2265 * tests/input.at (%define enum variables): Update.
2266 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2267 (Push Parsing: Multiple impure instances): Update.
2268 (Push Parsing: Unsupported Skeletons): Update.
2269 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2270 (Exploding the Stack Size with Malloc): Update.
2271
2272 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2273 other entries some.
2274
2275 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2276
2277 For the XML output's terminal element, rename @number to @token-number,
2278 and add @symbol-number. In the nonterminal element, rename @number to
2279 @symbol-number. Discussed starting at
2280 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2281 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2282 renames.
2283 (xsl:template match="nonterminal"): Likewise.
2284 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2285 (xsl:template match="nonterminal"): Likewise.
2286 * src/print-xml.c (print_grammar): Implement.
2287
2288 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2289
2290 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2291 2007-10-11 change, the child elements here are items not rules.
2292 (xsl:template match="item"): New.
2293 (xsl:template match="rule"): Update for new reduced itemset.
2294 (xsl:template match="point"): Remove.
2295 (xsl:template match="empty"): For consistency with --graph, don't
2296 output "/* empty */".
2297 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2298 line-wrap, don't pass a negative value as first-line-length since this
2299 won't work with the following changes.
2300 (xsl:template name="line-wrap"): Simplify slightly.
2301 (xsl:template name="ws-search"): Eliminate recursion.
2302 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2303 set next to an item whose dot is not at the end of the RHS even if it
2304 happens to be associated with the same rule.
2305
2306 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2307
2308 Add %define lr.keep_unreachable_states.
2309 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2310 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2311 * src/main.c (main): Implement it.
2312 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2313 Extend to test it, and fix a typo.
2314
2315 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2316
2317 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2318 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2319 the example .output text.
2320 * tests/regression.at (Extra lookahead sets in report): Improve wording
2321 of comments.
2322
2323 2007-10-17 Wojciech Polak <polak@gnu.org>
2324
2325 * src/print-xml.c (print_grammar): Renamed
2326 <terminal> and <nonterminal> attributes:
2327 "type" to "number" and "symbol" to "name".
2328 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2329 Use new attribute names.
2330 (xsl:template match="nonterminal"): Likewise.
2331 * data/xslt/xml2xhtml.xsl: Likewise.
2332
2333 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2334
2335 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2336 (Option Cross Key): Likewise.
2337
2338 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2339 next to an item whose dot is not at the end of the RHS even if it
2340 happens to be associated with the same rule.
2341 * src/print.c (print_core): Likewise.
2342 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2343 (Resolved SR Conflicts): Update output.
2344 * tests/regression.at (Extra lookahead sets in report): New test case.
2345
2346 2007-10-11 Wojciech Polak <polak@gnu.org>
2347
2348 * src/print-xml.c (print_core): Remove item set
2349 redundancy.
2350 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2351 Improve processing time. Suggested by Joel E. Denny.
2352 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2353 Write xsl:param "required" attribute as comment.
2354 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2355 (xsl:template match="rule"): Support new reduced itemset.
2356 (xsl:template match="point"): Remove.
2357 * data/xslt/xml2xhtml.xsl: Likewise.
2358
2359 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2360
2361 * src/getargs.c (version): Update copyright year.
2362
2363 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2364
2365 Make xml2dot.xsl and --graph produce the same output.
2366 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2367 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2368 escaped later.
2369 (xsl:template name="output-node"): Use the new escape template instead
2370 of the string-replace template directly.
2371 (xsl:template name="output-edge"): Likewise.
2372 (xsl:template name="escape"): New, escapes backslashes and newlines in
2373 addition to quotation marks.
2374 * src/graphviz.c (start_graph, output_node, output_edge): Add
2375 whitespace to output for legibility.
2376
2377 Make xml2text.xsl and --report produce the same output, and remove the
2378 XML "conflicts" element since a conflict summary is easily extracted
2379 from the automaton.
2380 * data/xslt/bison.xsl: New.
2381 (xsl:template match="state" mode="bison:count-conflicts): New.
2382 * data/xslt/xml2text.xsl: Import bison.xsl.
2383 (xsl:template match="bison-xml-report"): Instead of styling the
2384 "conflicts" element, style the "automaton" element with mode
2385 "conflicts". Unlike the former, the latter lists S/R and R/R
2386 conflicts for a state on the same line.
2387 (xsl:template match="conflicts"): Remove.
2388 (xsl:template match="conflict"): Remove.
2389 (xsl:template match="terminal"): Line-wrap the list of rules in which
2390 the terminal is used.
2391 (xsl:template match="nonterminal"): Likewise for nonterminals.
2392 (xsl:template match="automaton" mode="conflicts"): New.
2393 (xsl:template match="state" mode="conflicts"): New.
2394 (xsl:template name="line-wrap"): New.
2395 (xsl:template name="ws-search"): New.
2396 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2397 (xsl:template match="bison-xml-report"): Instead of styling the
2398 "conflicts" element, style the "automaton" element with mode
2399 "conflicts."
2400 (xsl:template match="conflicts"): Remove.
2401 (xsl:template match="conflict"): Remove.
2402 (xsl:template match="automaton" mode="conflicts"): New.
2403 (xsl:template match="state" mode="conflicts): New.
2404 * src/conflicts.c (conflicts_output_xml): Remove.
2405 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2406 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2407 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2408 the corresponding XSLT is easier. Also, never wrap between a word and
2409 the comma that follows it.
2410
2411 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2412
2413 Improve C++ namespace support. Discussed starting at
2414 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2415 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2416 b4_namespace_close): New macros that interpret the %define variable
2417 "namespace" so its value can contain "::" to indicate nested
2418 namespaces.
2419 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2420 the above macros.
2421 * data/lalr1.cc (b4_namespace): Likewise.
2422 * data/location.cc (b4_namespace): Likewise.
2423 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2424 inside a new table in the general %define entry. Document `%define
2425 namespace' there as well. Point the %name-prefix entry to it since it
2426 explains it more completely in the case of C++.
2427 (C++ Bison Interface): Mention `%define namespace' instead of
2428 %name-prefix.
2429 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2430 entry suffices.
2431 * tests/c++.at (Relative namespace references): New test case.
2432 (Absolute namespace references): New test case.
2433 (Syntactically invalid namespace references): New test case.
2434 * tests/input.at (C++ namespace reference errors): New test case.
2435
2436 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2437
2438 Add syncline support and location accessor to internal %define
2439 interfaces.
2440 * data/bison.m4 (b4_percent_define_get_loc): New.
2441 (b4_percent_define_get_syncline): New.
2442 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2443 (b4_percent_define_default): Record defining location as line 1 rather
2444 than 0 for the sake of synchronizing #line's, and define
2445 b4_percent_define_syncline(VARIABLE).
2446 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2447 * src/muscle_tab.c (muscle_syncline_grow): New.
2448 (muscle_code_grow): Use muscle_syncline_grow.
2449 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2450 define b4_percent_define_syncline(VARIABLE).
2451 (muscle_percent_define_get_loc): New.
2452 (muscle_percent_define_get_syncline): New.
2453 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2454 remove some unused variables.
2455 (muscle_percent_define_default): Record defining location as line 1
2456 rather than 0 for the sake of synchronizing #line's, and define
2457 b4_percent_define_syncline(VARIABLE).
2458 (muscle_percent_define_check_values): Use
2459 muscle_percent_define_get_loc.
2460 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2461 (muscle_percent_define_get_syncline): Prototype.
2462 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2463 defaults): Update output for location change.
2464 (Complaining during macro argument expansion): Extend to test
2465 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2466
2467 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2468
2469 Fix some error-reporting macro bugs.
2470 * data/bison.m4 (b4_cat): New.
2471 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2472 to stdout so they don't become arguments to other macros. Update
2473 comments and add examples.
2474 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2475 add examples.
2476 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2477 after printing the error directive so that M4 doesn't report subsequent
2478 problems that are induced by this problem.
2479 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2480 instead of just in them. Recognize @\n in both places. Both expand to
2481 the empty string. Needed by b4_cat.
2482 * tests/skeletons.at (Complaining during macro argument expansion):
2483 New test case.
2484 (Fatal errors make M4 exit immediately): New test case.
2485
2486 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2487
2488 Implement --print-datadir.
2489 * src/getargs.c (usage): Mention.
2490 (PRINT_DATADIR_OPTION): New anonymous enum member.
2491 (long_options): Add entry for it.
2492 (getargs): Add case for it calling compute_pkgdatadir.
2493 * src/output.c (output_skeleton): Encapsulate data directory
2494 computation from here...
2495 (prepare): ... and from here...
2496 (compute_pkgdatadir): ... into this new function.
2497 * src/output.h (compute_pkgdatadir): Prototype.
2498
2499 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2500
2501 * src/print-xml.c (escape_bufs): New static global variable
2502 replacing...
2503 (xml_escape_n): ... the static local variable buf here.
2504 (print_xml): Free memory for escape_bufs.
2505 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2506
2507 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2508
2509 Replace `%push-parser' and `%push-pull-parser' with
2510 `%define push_pull "push"' and `%define push_pull "both"'.
2511 `%define push_pull "pull"' is the default.
2512 * doc/bison.texinfo (Push Decl, Push Parser Function,
2513 Pull Parser Function, Parser Create Function, Parser Delete Function):
2514 Update declarations.
2515 (Decl Summary, Table of Symbols): Replace %push-parser and
2516 %push-pull-parser entries with a %define push_pull entry.
2517 * data/bison.m4 (b4_percent_define_check_values): New macro.
2518 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2519 definitions...
2520 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2521 definitions...
2522 * data/push.c: ... to here and compute them from the value of the
2523 %define variable push_pull.
2524 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2525 parsing requests here...
2526 * data/yacc.c: ... hack this to switch to push.c any time
2527 b4_use_push_pull_flag or the %define variable push_pull is set. This
2528 will go away when we mv push.c yacc.c.
2529 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2530 push parsing is not supported since unused %define variables are
2531 reported anyway.
2532 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2533 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2534 comments for consistency with b4_percent_define_check_values.
2535 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2536 muscles.
2537 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2538 Remove.
2539 (prologue_declaration): Remove %push-parser and %push-pull-parser
2540 rules.
2541 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2542 * tests/calc.at: Update declarations.
2543 * tests/input.at (%define enum variables): New test case.
2544 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2545 declaration.
2546 (Push Parsing: Multiple impure instances): Update declaration.
2547 (Push Parsing: Unsupported Skeletons): New test case.
2548 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2549 declaration.
2550 (Exploding the Stack Size with Malloc): Update declaration.
2551
2552 2007-09-24 Wojciech Polak <polak@gnu.org>
2553
2554 Add XSLT transformations.
2555
2556 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2557 * data/xslt/xml2text.xsl: Transform XML into plain text.
2558 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2559 * data/Makefile.am (xsltdir): New variable.
2560 (dist_xslt_DATA): Add xslt/*.xsl files.
2561
2562 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2563
2564 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2565 Problem reported by Wojciech Polak.
2566 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2567 (xml_printf): Undo change I made on 21 September; that is,
2568 indent 2 spaces, not 1.
2569
2570 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2571
2572 Pacify ./configure --enable-gcc-warnings.
2573 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2574 `char const *' instead of `char *'.
2575 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2576 local variable `sep'.
2577
2578 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2579
2580 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2581 elsewhere.
2582 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2583 (xml_printf): Indent just 1 space for level.
2584 (e_char, xlate_char): Remove.
2585 (xml_escape_string): Rewrite to avoid undefined behavior (used
2586 storage that was freed from the stack).
2587 (xml_escape_n): Don't bother checking for subscript error.
2588
2589 2007-09-21 Wojciech Polak <polak@gnu.org>
2590
2591 Add Bison XML Automaton Report.
2592
2593 Add support for an -x option to generate an XML report.
2594 It is not documented yet.
2595 * src/print-xml.c: New file.
2596 * src/print-xml.h: Likewise.
2597 * lib/timevar.def (TV_XML): New var.
2598 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2599 * src/conflicts.c: Include print-xml.h.
2600 (solved_conflicts_xml_obstack): New var.
2601 (log_resolution, conflicts_solve, conflicts_free):
2602 Add support for XML report.
2603 (conflicts_output_val): New function.
2604 * src/conflicts.h (conflicts_output_val): New decl.
2605 * src/files.c (spec_xml_file): New var.
2606 (compute_output_file_names, output_file_names_free): Add XML support.
2607 * src/files.h (spec_xml_file): New decl.
2608 * src/getargs.c (xml_flag): New var.
2609 (usage, short_options, long_options, getargs): Add XML support.
2610 * src/getargs.h (xml_flag): New decl.
2611 * src/gram.c: Include print-xml.h.
2612 (rule_lhs_print_xml, rule_rhs_print_xml):
2613 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2614 New functions.
2615 * src/gram.h: Declare external ones.
2616 * src/main.c: Include print-xml.h.
2617 (main): Add XML support.
2618 * src/reduce.c: Include print-xml.h.
2619 (reduce_xml): New function.
2620 * src/reduce.h: Declare it.
2621 * src/state.c: Include print-xml.h.
2622 (state_new): Add XML support.
2623 (state_rule_lookahead_tokens_print_xml): New function.
2624 * src/state.h: Declare it.
2625 (struct state): New member solved_conflicts_xml.
2626 * src/symtab.c (symbol_class_get_string): New function.
2627 * src/symtab.h: Declare it.
2628
2629 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2630
2631 * GNUmakefile: Switch to coreutils's version.
2632 * bootstrap: Likewise.
2633 * Makefile.cfg: Adjust to new GNUmakefile.
2634 * README-hacking: Likewise.
2635
2636 Import from gnulib:
2637
2638 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2639 Bruno Haible <bruno@clisp.org>
2640
2641 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2642 and is a script that invokes bison. Tighten the code. Add comments.
2643
2644 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2645
2646 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2647 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2648 * doc/bison.texinfo (Decl Summary): Fix.
2649 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2650 * tests/input.at (Boolean %define variables): Update output.
2651 * tests/skeletons.at (%define boolean variables: invalid skeleton
2652 defaults): Rename to...
2653 (%define Boolean variables: invalid skeleton defaults): ... this and
2654 update output.
2655
2656 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2657
2658 In impure push mode, don't allow more than one yypstate to be allocated
2659 since multiple impure parsers would corrupt yynerrs.
2660 * data/push.c (yypstate_allocated): New static global variable
2661 initialized to 0.
2662 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2663 exhaustion if yypstate_allocated is 1, but still return 2.
2664 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2665 already 1. Otherwise, set it to 1.
2666 (yypstate_delete): Set it to 0.
2667 * tests/push.at (Push Parsing: Multiple impure instances): New test
2668 case.
2669
2670 2007-08-17 Bob Rossi <bob@brasko.net>
2671
2672 * doc/bison.texinfo (Push Decl): Document the push parser.
2673 (Table of Symbols): Ditto.
2674 (Pure Decl): Ditto.
2675 (Decl Summary): Ditto.
2676 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2677 Parser Create Function, Parser Delete Function):
2678 Add new push parser symbols.
2679 (Table of Symbols): Document push-parser, push-pull-parser,
2680 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2681
2682 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2683
2684 Update to GPLv3.
2685 * doc/gpl-3.0.texi: New file.
2686 * doc/gpl.texi: Remove.
2687 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2688 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2689 * README-hacking, TODO, bootstrap, bootstrap.conf:
2690 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2691 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2692 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2693 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2694 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2695 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2696 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2697 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2698 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2699 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2700 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2701 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2702 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2703 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2704 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2705 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2706 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2707 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2708 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2709 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2710 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2711 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2712 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2713 * src/complain.c, src/complain.h, src/conflicts.c:
2714 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2715 * src/files.h, src/flex-scanner.h, src/getargs.c:
2716 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2717 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2718 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2719 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2720 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2721 * src/print.c, src/print.h, src/print_graph.c:
2722 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2723 * src/reduce.h, src/relation.c, src/relation.h:
2724 * src/revision.h, src/scan-code.h, src/scan-code.l:
2725 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2726 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2727 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2728 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2729 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2730 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2731 * tests/existing.at, tests/glr-regression.at:
2732 * tests/headers.at, tests/input.at, tests/java.at:
2733 * tests/local.at, tests/output.at, tests/push.at:
2734 * tests/reduce.at, tests/regression.at, tests/sets.at:
2735 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2736 * tests/torture.at:
2737 Update to GPLv3.
2738
2739 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2740
2741 Get rid of broken %no-parser, -n, and --no-parser implementation and
2742 documentation.
2743 * TODO: Don't mention them.
2744 * doc/bison.1: Likewise.
2745 * doc/bison.texinfo (Decl Summary): Likewise.
2746 (Bison Options): Likewise.
2747 (Option Cross Key): Likewise.
2748 * src/getargs.c (no_parser_flag): Remove global variable.
2749 (usage): Don't print description of -n and --no-parser.
2750 (long_options): Remove --no-parser entry here.
2751 (getargs): Remove -n case in the switch here.
2752 * src/getargs.h (no_parser_flag): Remove extern.
2753 * tests/regression.at (Web2c Actions): Remove comment that mentions
2754 --no-parser.
2755
2756 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2757
2758 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2759 name user variables starting with `yy'. Just pass NULL instead of a
2760 dummy local &yylval to yypush_parse.
2761 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2762 starting with `yy'.
2763
2764 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2765
2766 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2767 true since it's then always used regardless of whether yyoverflow is
2768 defined. Reported by Christian Burger at
2769 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2770 * THANKS: Add Christian Burger.
2771
2772 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2773 node names: say "Decl Summary" not "Bison Declaration Summary".
2774
2775 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2776
2777 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2778 determine whether this function has already complained about an invalid
2779 value for a %define boolean variable, don't check whether Bison has
2780 ever examined the value. As written, the check was a tautology.
2781 Instead, record and check for this complaint using a separate muscle.
2782
2783 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2784
2785 Fix push parsing memory leak reported by Brandon Lucia at
2786 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2787 * THANKS: Add Brandon Lucia.
2788 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2789 but the parse never completed and thus freed it.
2790 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2791 * tests/testsuite.at: Include push.at.
2792 * test/push.at: New.
2793 (Push Parsing: Memory Leak for Early Deletion): New test case.
2794
2795 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2796
2797 Improve handling of multiple S/R conflicts in the same state and of S/R
2798 conflicts involving multiple reductions.
2799 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2800 set for a state here or Bison will abort if it is reassigned on a
2801 later conflicted reduction in the same state.
2802 Similarly, don't finalize and assign the solved conflicts report here
2803 or it will be lost if it is reassigned on a later conflicted reduction
2804 in the same state.
2805 (set_conflicts): Instead, assign them both here after all S/R conflicts
2806 in the state have been fully examined.
2807 * src/print.c (shift_set): Rename to...
2808 (no_reduce_set): ... this.
2809 (print_reductions): Update for rename, and add %nonassoc error action
2810 tokens to no_reduce_set so that, when printing the first remaining
2811 reduction on an error action token, the reduction is enclosed in
2812 brackets.
2813 (print_results): Update for rename.
2814 * tests/conflicts.at (Solved conflicts report for multiple reductions
2815 in a state): New test case.
2816 (%nonassoc error actions for multiple reductions in a state): New test
2817 case.
2818
2819 * src/main.c (main): Don't depend on C99 features.
2820
2821 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2822
2823 * build-aux/.cvsignore: Add compile.
2824 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2825 uniwidth.
2826
2827 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2828
2829 * bootstrap (slurp): Create target directories that don't exist.
2830 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2831
2832 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2833
2834 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2835 than item number.
2836 * closure.c (closure): Likewise.
2837 * state.h (reductions): Comment sorting of rules.
2838 (state): Comment sorting of items.
2839
2840 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2841
2842 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2843 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2844 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2845 definition in order to avoid Gnulib headers since we don't use config.h
2846 here.
2847 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2848 rather than AT_DATA so that config.h is included.
2849
2850 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2851
2852 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2853 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2854 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2855 and so that YYFPRINTF is guaranteed to be defined here.
2856
2857 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2858
2859 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2860 with...
2861 (muscle_percent_define_check_values): ... this more helpful function.
2862 Again, it's not used yet, but it will be.
2863 * src/muscle_tab.h: Likewise.
2864
2865 Improve some comments in parser table construction.
2866 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2867 (generate_states): Don't mention ruleset, which is internal to closure.
2868 * src/closure.c (closure): Explain sorting of core and itemset, which
2869 is required for this function to behave correctly.
2870 * src/closure.h (closure): Mention sorting.
2871
2872 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2873
2874 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2875 move the check for disabled transitions to an aver since conflict
2876 resolution hasn't happened yet.
2877
2878 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2879 labels a state as inconsistent just because it has error transitions.
2880 The original form of this check appeared in revision 1.1 of lalr.c,
2881 which was committed on 1991-12-21. Now (at least), changing the
2882 consistency label on such a state appears to have no useful effect in
2883 any of the places it is examined, which I enumerate below. The key
2884 point to understanding each item in this enumeration is that a state
2885 with an error transition is labelled consistent in the first place only
2886 if it has no rules, so the check cannot matter for states that have
2887 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2888 to try to identify its conflicts, and a state must have *rules* to have
2889 conflicts. (2) Labelling a state as inconsistent will affect how
2890 action_row sets the default *rule* for the state. (3) Labelling a
2891 state as inconsistent will cause build_relations to add lookback edges
2892 to *rules* in that state.
2893 * src/state.h (struct state): Word the comment for member consistent
2894 more carefully.
2895
2896 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2897
2898 Don't depend on C99 features.
2899 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2900 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2901 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2902 * src/state.c (state_mark_reachable_states): Fix for-loop.
2903 (state_remove_unreachable_states): Fix for-loop.
2904
2905 Don't widen struct state with member reachable just to temporarily
2906 record reachability. Instead, use a local bitset.
2907 * src/state.h (struct state): Remove member.
2908 * src/state.c (state_new): Don't initialize it.
2909 (state_mark_reachable_states): Rename to...
2910 (state_record_reachable_states): ... this, and use bitset.
2911 (state_remove_unreachable_states): Use bitset.
2912
2913 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2914
2915 * src/Makefile.am (yacc): Quote target action commands properly so
2916 that the yacc script isn't corrupt. Reported by Hans Aberg at
2917 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2918
2919 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2920 the case of pure parsers. Reported by Frans Englich at
2921 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2922 * THANKS: Add Frans Englich.
2923
2924 * NEWS (2.3a+): In the %code entry, reference section `Bison
2925 Declaration Summary' from the manual now since the %code summary has
2926 moved there.
2927 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2928 in the rules section must be terminated by semicolons.
2929
2930 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2931
2932 Extend the front-end API for %define variables to more completely
2933 mirror the back-end. This will be useful in the future.
2934 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2935 Update comments to mention the new front-end counterparts of these
2936 macros.
2937 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2938 for muscle_string_decode and muscle_location_decode.
2939 (muscle_string_decode): New static function.
2940 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2941 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2942 functions.
2943 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2944 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2945 implementation more closely.
2946 (muscle_percent_define_invalid_value): New function.
2947 * src/muscle_tab.h (muscle_percent_define_get,
2948 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2949 Prototype.
2950
2951 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2952
2953 * NEWS (2.3a+): Mention yesterday's state-removal change.
2954 (2.3a): Remove the %language entry, which was added after 2.3a.
2955 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2956 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2957 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2958 tests/existing.at: Update copyright date.
2959
2960 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2961
2962 If conflict resolution makes states unreachable, remove those states,
2963 report rules that are then unused, and don't report conflicts in those
2964 states.
2965 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2966 New global function.
2967 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2968 function.
2969 * src/main.c (main): After conflict resolution, remove the unreachable
2970 states and update all data structures that reference states by number.
2971 * src/state.c (state_new): Initialize each state's reachable member to
2972 false.
2973 (state_mark_reachable_states): New static function.
2974 (state_remove_unreachable_states): New global function.
2975 * src/state.h (struct state): Add member bool reachable.
2976 (state_remove_unreachable_states): Prototype.
2977 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2978 New test case.
2979 * tests/existing.at (GNU pic Grammar): Update test case output now that
2980 an unused rule is discovered.
2981
2982 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2983
2984 Minor code cleanup in parser table construction.
2985 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2986 (new_itemsets, save_reductions): Update for rename to nitemset.
2987 * src/closure.c (nritemset): Rename to...
2988 (nitemset): ... this since the "r" appears to meaningless and isn't
2989 used in the comments.
2990 (closure): Update for rename.
2991 * src/closure.h (nritemset): Update extern to...
2992 (nitemset): ... this.
2993 * src/lalr.c (LA): Fix a typo in comments.
2994 * src/print.c (print_core): Update for rename to nitemset.
2995 * src/print_graph.c (print_graph): Likewise.
2996 * src/state.h: Fix some typos in header comments.
2997
2998 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2999
3000 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3001 still sticks to ASCII. Sorry!
3002
3003 * README-hacking: New file, taken mostly from coreutils, with changes
3004 for Bison. Contains much of the contents of:
3005 * README-cvs: Remove.
3006 * bootstrap: Sync from gnulib.
3007 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3008 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3009
3010 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3011
3012 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3013 Setzer.
3014 (Java Differences): Fix some typos.
3015 * THANKS: Add Sebastian Setzer.
3016
3017 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3018
3019 * data/java.m4 (b4_single_class_if): Remove.
3020 (b4_abstract_if): Look at "%define abstract".
3021 (b4_lexer_if): New.
3022 (b4_union_name): Rename...
3023 (b4_yystype): ... to this. Map to "%define stype".
3024 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3025 b4_maybe_throws): Fix quoting.
3026 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3027 * data/lalr1.java (Lexer interface): Always define.
3028 (Lexer interface within parser class): Remove.
3029 (YYLexer class): New, used when "%code lexer" is present.
3030 (constructor): When "%code lexer" is used, pass %lex-param
3031 to the lexer constructor.
3032 (yylex, yyparse): Remove %lex-param from method invocations
3033 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3034
3035 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3036 abstract". Rename "%define union_name" to "%define stype".
3037 Rename method names according to previous patch.
3038 (Java Scanner Interface): Describe "%code lexer" instead of
3039 "%pure-parser" and "%define single_class".
3040 (Java Differences): Mention "%code lexer".
3041
3042 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3043 Include scanner here, using macros from tests/local.at.
3044 (AT_DATA_CALC_Y): Remove final argument.
3045 (_AT_CHECK_JAVA_CALC): Likewise.
3046 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3047 of %locations and %error-verbose.
3048 (main): Test with and without %lex-param.
3049 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3050 (AT_BISON_OPTION_POPDEFS): Pop it.
3051
3052 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3053
3054 DJGPP spefic issue. Inhibit the use of disallowed characters for
3055 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3056 and concern testsuite case 46.
3057 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3058 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3059 * djgpp/config.bat: Inhibit the use of disallowed characters.
3060
3061 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3062
3063 Miscellaneous %define and %code cleanup.
3064 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3065 values are interpreted.
3066 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3067 documentation a little more.
3068 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3069 muscle_percent_define_insert, muscle_percent_code_grow): New
3070 functions/macros.
3071 * src/muscle_tab.h (muscle_percent_define_insert,
3072 muscle_percent_code_grow): Prototype.
3073 * src/parse-gram.y (prologue_declaration): Use
3074 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3075 %define and %code directives.
3076
3077 Make it easy to share %define boolean variables between the front-end
3078 and back-end. Though not used yet, this will be useful in the future.
3079 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3080 Bison uses of names rather than just skeleton uses of names.
3081 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3082 b4_percent_define_skeleton_variables(VARIABLE) to
3083 b4_percent_define_bison_variables(VARIABLE).
3084 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3085 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3086 b4_percent_code_bison_qualifiers(QUALIFIER).
3087 (b4_check_user_names_wrap): Update for renames.
3088 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3089 muscle_percent_define_default): New functions mimicking
3090 b4_percent_define_flag_if and b4_percent_define_default.
3091
3092 For %define variables, report locations for invalid values and
3093 redefinitions.
3094 * data/bison.m4 (b4_percent_define_flag_if): Read
3095 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3096 value for VARIABLE.
3097 (b4_percent_define_default): Save a special location in
3098 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3099 must later be reported as invalid.
3100 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3101 functions.
3102 (muscle_percent_define_insert): Record the location of VARIABLE in
3103 muscle percent_define_loc(VARIABLE), and use it to report the previous
3104 location for a redefinition.
3105 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3106 (muscle_percent_define_default): Update like b4_percent_define_default.
3107 (muscle_grow_user_name_list): Rename to...
3108 (muscle_user_name_list_grow): ... this for consistency and use
3109 muscle_location_grow.
3110 * src/muscle_tab.h (muscle_location_grow): Prototype.
3111 * tests/input.at (%define errors): Update expected output.
3112 * tests/skeletons.at (%define boolean variables: invalid skeleton
3113 defaults): New test case.
3114
3115 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3116
3117 * src/print.c (lookahead_set, state_default_rule): Remove.
3118 (print_reductions): Replace state_default_rule invocation with
3119 equivalent use of yydefact, which was computed in token_actions in
3120 tables.c.
3121 (print_results): Don't allocate lookahead_set.
3122
3123 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3124
3125 * data/lalr1.java: Prefix all private members with yy.
3126
3127 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3128
3129 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3130 Sebastien Fricker at
3131 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3132 * THANKS: Add Sebastien Fricker.
3133 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3134 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3135 accept a variable number of arguments.
3136
3137 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3138
3139 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3140
3141 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3142
3143 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3144 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3145 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3146
3147 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3148
3149 Undo my 2007-02-07 change, switching back to the c-strcase module
3150 introduced in the 2007-02-03 change. Bruno Haible reported that
3151 the 2007-02-07 change would be dangerous in Turkish if we add a
3152 language whose name contains "i", since "i" is not lowercase "I"
3153 in Turkish.
3154 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3155 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3156 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3157 * m4/.cvsignore: Remove strcase.m4.
3158 * src/getargs.c: Revert 2007-02-07 change, as follows.
3159 Include c-strcase.h.
3160 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3161
3162 2007-02-11 Bruno Haible <bruno@clisp.org>
3163
3164 Enable the Java related testsuite tests when the only Java compiler
3165 found is a gcj < 4.3. Discussed at
3166 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3167 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3168
3169 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3170
3171 * data/Makefile.am: Update copyright date.
3172 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3173 yypstate_new returns NULL.
3174 (yypstate_new): Return NULL if malloc does.
3175 * src/reader.c (packgram): Move translation of rule actions from the
3176 beginning of packgram to...
3177 (check_and_convert_grammar): ... here right before packgram is invoked
3178 so it's easier to write more complete comments, and remove redundant
3179 code.
3180
3181 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3182
3183 As in semantic actions, make @$ in %initial-action, %destructor, and
3184 %printer imply %locations.
3185 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3186 scanning @$.
3187 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3188 (@$ in %initial-action implies %locations,
3189 @$ in %destructor implies %locations,
3190 @$ in %printer implies %locations): ... these new test cases.
3191
3192 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3193
3194 Undo most of the 2007-02-03 change, switching to the strcase module
3195 now that gnulib strcase has been fixed.
3196 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3197 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3198 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3199 * m4/.cvsignore: Add strcase.m4.
3200 * src/getargs.c: Revert 2007-02-03 change, as follows.
3201 Don't include c-strcase.h.
3202 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3203 strcasecmp has "unspecified behavior" outside the POSIX locale,
3204 but it works fine in practice if at least one argument is ASCII,
3205 as is the case in Bison.
3206
3207 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3208
3209 * tests/java.at: Skip tests if only one of javac/java is present.
3210 Reported by Joel E. Denny.
3211 * tests/atlocal.in: Adjust copyright years.
3212
3213 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3214
3215 * data/lalr1.java (Stack): Work around old verifiers that disallow
3216 access to the private fields of an inner class, from the outer class.
3217 We can make Stack's fields public because user code doesn't have access
3218 to the instance of Stack used by parse(). Reported by Paul Eggert.
3219
3220 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3221
3222 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3223 the right spot for these files?
3224 * bootstrap.conf (gnulib_modules): Add c-strcase.
3225 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3226 c-strncasecmp.c.
3227 * src/getargs.c: Include c-strcase.h.
3228 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3229 to avoid unspecified behavior.
3230
3231 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3232
3233 * doc/bison.texinfo (Decl Summary): Correct typo.
3234
3235 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3236
3237 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3238 Complain if the value does not match empty, "true" or "false".
3239 * data/c++.m4: Adjust default definitions of %define variables.
3240 * data/java.m4: Adjust default definitions of %define variables.
3241 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3242 to above behavior.
3243 * tests/input.at (Boolean %define variables): Test new behavior.
3244
3245 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3246
3247 * NEWS: Mention java.
3248 * TODO: Remove things that are done.
3249 * bootstrap.conf: Add javacomp-script and javaexec-script.
3250 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3251
3252 * data/Makefile.am: Add new files.
3253 * data/java-skel.m4: New.
3254 * data/java.m4: New.
3255 * data/lalr1.java: New.
3256
3257 * doc/bison.texinfo: Put "A Complete C++ Example" under
3258 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3259 under Other Languages.
3260
3261 * src/getargs.c (valid_languages): Add Java.
3262 * src/getargs.h (struct bison_language): Update size of string fields.
3263
3264 * tests/Makefile.am: Add java.at.
3265 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3266 * tests/java.at: New.
3267 * tests/testsuite.at: Include it.
3268
3269 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3270
3271 Clean up.
3272 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3273 at_directive_argv arguments so these no longer have to be global
3274 variables. Also, update the implementation for the following changes.
3275 (fail_for_at_directive_too_many_args,
3276 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3277 (at_directive_name): Remove as at_directive_argv[0] will be used for
3278 this now.
3279 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3280 for the directive name.
3281 (at_directive_argc, at_directive_argv): Make these local within
3282 skel_lex instead of global.
3283 (INITIAL): Update directive start action for above changes.
3284 (SC_AT_DIRECTIVE_ARG): Rename to...
3285 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3286 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3287 (scan_skel): Move yylex_destroy to...
3288 (skel_scanner_free): ... here.
3289 * tests/skeletons.at (installed skeleton file name): Rename to...
3290 (installed skeleton file names): ... this.
3291
3292 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3293
3294 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3295 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3296 Summary" not "Directives".
3297 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3298 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3299 since the former is now the more complete one.
3300 (Prologue Alternatives): Likewise and do the same for %defines.
3301 (Table of Symbols): Add summary of %code, add summary of %define, and
3302 move full %code documentation to...
3303 (Decl Summary): ... here for consistency with other entries in these
3304 sections.
3305 Move %define entry in order to keep this list alphabetized.
3306 Reword %define entry a little to put less emphasis on the skeleton
3307 concept, which most users shouldn't have to think about.
3308
3309 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3310
3311 Adjust to recent gnulib changes.
3312 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3313 Add string.h, string_.h, unistd_.h, wchar_.h.
3314 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3315 * src/system.h: Don't include <stpcpy.h>; this is now done by
3316 <string.h>.
3317
3318 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3319
3320 Simplify implementation of unqualified %code, implement macros for
3321 uniform treatment of boolean %define flags. Document %define.
3322 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3323 b4_percent_code_ifdef): New.
3324 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3325 * data/c++.m4: Define default value for global_tokens_and_yystype.
3326 * data/glr.cc: Likewise.
3327 * data/location.cc: Use b4_percent_define_flag_if.
3328
3329 * doc/bison.texinfo (Decl Summary): Document %define.
3330
3331 * src/parse-gram.y (Unqualified %code): Change muscle name to
3332 b4_percent_code().
3333 (content.opt): Default to empty.
3334
3335 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3336
3337 Implement support for relative and absolute skeleton file names.
3338 Discussed starting at
3339 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3340 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3341 (Bison Options): Document in --skeleton entry.
3342 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3343 full_skeleton can't necessarily hold all of pkgdatadir.
3344 If the specified skeleton file name contains a `/', don't prepend
3345 pkgdatadir.
3346 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3347 file name contains a `/', prepend the grammar file directory.
3348 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3349 * skeletons.at: New file.
3350 (relative skeleton file names): New test case.
3351 (installed skeleton file names): New test case.
3352 * tests/testsuite.at: Include skeletons.at.
3353
3354 * bootstrap: Update copyright to 2007.
3355
3356 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3357
3358 * bootstrap: Remove occurrences of .#bootmp from the files.
3359
3360 2007-01-17 Akim Demaille <akim@epita.fr>
3361
3362 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3363 nonterminals.
3364 Use per-type %printer.
3365
3366 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3367
3368 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3369 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3370 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3371 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3372 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3373 tests/glr-regression.at, tests/input.at, tests/local.at,
3374 tests/output.at, tests/torture.at: Update copyright to 2007.
3375
3376 2007-01-16 Akim Demaille <akim@epita.fr>
3377
3378 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3379 error code.
3380 (Calc++ Scanner): Exit with failure if we can't open the input
3381 file.
3382 Accept "-" standing for stdin.
3383 (Calc++ Top Level): Print the result only if the parsing was
3384 successful.
3385
3386 2007-01-16 Akim Demaille <akim@epita.fr>
3387
3388 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3389
3390 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3391 and Joel E. Denny <jdenny@ces.clemson.edu>
3392
3393 Clean up %define and %code implementation in M4 some. Most
3394 importantly, rename all related macros to be in the b4_percent_define
3395 and b4_percent_code namespaces. Also, complete support for `.' in
3396 %define variable names and %code qualifiers.
3397 * data/bison.m4 (b4_check_user_names): Check for special
3398 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3399 m4_foreach loops.
3400 (b4_get_percent_define, b4_get_percent_code): Rename to...
3401 (b4_percent_define_get, b4_percent_code_get): ... these.
3402 Extend documentation with examples.
3403 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3404 b4_percent_define_skeleton_variables and
3405 b4_percent_code_skeleton_qualifiers.
3406 Expect any value for the %define variable `foo' to be stored in the
3407 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3408 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3409 expect any unqualified %code blocks to be stored in a macro named
3410 `b4_percent_code_unqualified'.
3411 Use m4_indir so that %define variable names and %code qualifiers can
3412 contain `.', which is allowed by the grammar parser.
3413 (b4_percent_define_default): New macro to set a default value for a
3414 %define variable.
3415 (m4_wrap): Update wrapped code, and fix some underquoting.
3416 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3417 Expect grammar uses of %define variables and %code qualifiers to be
3418 defined in b4_percent_define_user_variables and
3419 b4_percent_code_user_qualifiers.
3420 * data/c++.m4: Use b4_percent_define_default rather than
3421 m4_define_default. Fix some underquoting. Skeleton usage of %define
3422 variable define_location_comparison now implies skeleton usage of
3423 %define variable filename_type.
3424 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3425 data/push.c, data/yacc.c: Update macro names.
3426 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3427 muscle names.
3428
3429 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3430
3431 DJGPP specific issues.
3432
3433 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3434 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3435
3436 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3437
3438 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3439 run parsers in all tests so that Valgrind is invoked during
3440 maintainer-check-valgrind.
3441 (Duplicate representation of merged trees): Free all semantic values.
3442 (Duplicated user destructor for lookahead): Likewise.
3443
3444 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3445
3446 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3447 command-line prefix.
3448 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3449 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3450 miss Valgrind messages.
3451 (Exploding the Stack Size with Malloc): Likewise.
3452
3453 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3454
3455 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3456 locals. Reported by Juan Manuel Guerrero at
3457 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3458 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3459 Fix some indentation also.
3460 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3461 explaining this issue.
3462
3463 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3464 and Joel E. Denny <jdenny@ces.clemson.edu>
3465
3466 Simplify union and prologue handling, and escape union and lex/parse
3467 params with digraphs.
3468 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3469 values to the empty string since these are no longer guaranteed
3470 initialized by the front-end.
3471 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3472 braces around b4_user_stype since this is no longer done by the
3473 front-end.
3474 * src/files.c, src/files.h (pre_prologue_obstack,
3475 post_prologue_obstack): Remove.
3476 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3477 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3478 with digraphs. This fixes lex params and parse params.
3479 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3480 * src/output.c (prepare): Remove muscle insertion of the prologues.
3481 (output): Remove freeing of pre_prologue_obstack and
3482 post_prologue_obstack.
3483 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3484 than prologue_augment for prologue parsing so you don't need prologue
3485 obstacks.
3486 (grammar_declaration): For %union RHS, use `braceless' instead of
3487 "{...}" so that braces are already stripped and code is escaped with
3488 digraphs.
3489 * src/reader.c (prologue_augment): Remove.
3490 (reader): Remove initialization of pre_prologue_obstack and
3491 post_prologue_obstack.
3492 * src/reader.h (prologue_augment): Remove.
3493
3494 * data/c.m4: Remove stray parenthesis.
3495
3496 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3497
3498 Remove quotes from variables names in %define directives and from
3499 qualifiers in %code directives, and restrict the characters that are
3500 allowed in them to M4-friendly ones. For %define, continue to support
3501 the quoted form as a deprecated feature. Discussed starting at
3502 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3503 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3504 %code.
3505 * doc/bison.texinfo (Prologue Alternatives): Update.
3506 (Decl Summary): In %defines entry, update mention of `%code requires'
3507 and `%code provides'.
3508 (C++ Location Values): Update %define uses.
3509 (Calc++ Parser Interface): Likewise.
3510 (Calc++ Parser): Likewise, and update `%code requires' uses.
3511 (Table of Symbols): Update %code documentation.
3512 * src/parse-gram.y (prologue_declaration): For %define variables, use
3513 `variable' instead of `STRING'.
3514 (grammar_declaration): For %code qualifiers, use `ID' instead of
3515 `STRING'.
3516 (variable): New nonterminal that takes an `ID' or a `STRING'.
3517 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3518 and %define uses.
3519 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3520 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3521 (%define errors): Update %define uses.
3522
3523 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3524
3525 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3526 instead of muscle_insert for %define values so that M4-special
3527 characters are replaced with digraphs.
3528 * tests/input.at (%define errors): Extend to check weird values.
3529
3530 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3531
3532 Instead of having skeletons declare all valid %define variables and
3533 %code qualifiers, provide macros that retrieve the associated values
3534 and build these lists automatically. Thus Bison will now warn when a
3535 variable or qualifier is not used by the skeleton in the current
3536 invocation regardless of whether it might sometimes be used by that
3537 skeleton in other invocations. Also, move all %define value macros to
3538 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3539 form, which is replaced by %code.
3540 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3541 (b4_check_user_names): ... this, and change the series of valid name
3542 arguments to a single list argument for names used in the skeleton
3543 similar to the existing list argument for names used in the grammar.
3544 Warn instead of complaining.
3545 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3546 values and %code code, to format %code code properly, and to build
3547 lists of all %define variables and %code qualifiers used in the
3548 skeleton: b4_skeleton_percent_define_variables and
3549 b4_skeleton_percent_code_qualifiers.
3550 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3551 Remove, and...
3552 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3553 the skeleton names lists can finish building first. In place of
3554 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3555 expect the lists b4_user_percent_define_variables and
3556 b4_user_percent_code_qualifiers.
3557 * data/c++.m4: Where setting default values for b4_parser_class_name,
3558 b4_location_type, b4_filename_type, b4_namespace, and
3559 b4_define_location_comparison, update their names to the
3560 b4_percent_define_ namespace.
3561 * data/glr.c: Don't use b4_check_percent_define_variables and
3562 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3563 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3564 (b4_parser_class_name, b4_namespace): Define these using
3565 b4_get_percent_define for parser_class_name and namespace.
3566 * data/location.cc: Use b4_get_percent_define.
3567 * data/push.c: Don't use b4_check_percent_define_variables and
3568 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3569 * data/yacc.c: Likewise, and don't call m4_exit in
3570 b4_use_push_for_pull_if or m4_wrap code will never execute.
3571 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3572 Rename to...
3573 (muscle_grow_user_name_list): ... this for consistency with the
3574 terminology used in bison.m4.
3575 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3576 %define variable names, and rename muscle used_percent_define_variables
3577 to user_percent_define_variables.
3578 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3579 user_percent_code_qualifiers.
3580 (content): Remove.
3581 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3582 {CODE} form is no longer accepted.
3583 * tests/input.at (Reject bad %code qualifiers): Rename to...
3584 (Reject unused %code qualifiers): ... this, and update test output.
3585 (%define error): Update test output.
3586
3587 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3588
3589 Check for unrecognized %define variables similar to checking for
3590 unrecognized %code qualifiers. Check for redefined %define variables.
3591 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3592 generalizes...
3593 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3594 (b4_check_percent_define_variables): New, also wraps it.
3595 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3596 variables using b4_check_percent_define_variables.
3597 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3598 all those exercised in the test suite and all those listed in the
3599 `Default values' section of c++.m4. Are there others?
3600 * data/push.c, data/yacc.c: Declare no valid %define variables.
3601 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3602 similar to muscle_find, but it works even when the muscle stores a
3603 const value.
3604 (muscle_grow_used_name_list): New function for constructing the used
3605 name list muscles that b4_check_for_unrecognized_names requires.
3606 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3607 %define'd more than once. Define the b4_used_percent_define_variables
3608 muscle with muscle_grow_used_name_list.
3609 (grammar_declaration): Abbreviate %code code with
3610 muscle_grow_used_name_list.
3611 * tests/input.at (%define errors): New.
3612
3613 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3614
3615 Provide warn_at, complain_at, and fatal_at function callbacks to the
3616 skeletons, and use this for %code qualifier complaints.
3617 * data/bison.m4 (b4_error_at): New, invoked by...
3618 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3619 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3620 @fatal_at(...@) directives.
3621 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3622 qualifiers in b4_used_percent_code_qualifiers and to use
3623 b4_complain_at.
3624 * src/location.c, src/location.h (boundary_set_from_string): New global
3625 function.
3626 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3627 function.
3628 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3629 to b4_used_percent_code_qualifiers.
3630 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3631 function.
3632 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3633 (lineno): Rename to...
3634 (out_lineno): ... this so I don't misunderstand it again.
3635 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3636 here; these newlines are in the input but not the output file.
3637 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3638 (at_directive_perform): ... this new static function, and add handling
3639 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3640 directives.
3641 * tests/input.at (Reject bad %code qualifiers): Update test output with
3642 locations and extend.
3643
3644 * tests/output.at (Output file name: [, Output file name: ]): Remove
3645 bogus comment about these tests failing.
3646
3647 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3648
3649 Clean up b4_check_percent_code_qualifiers a little.
3650 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3651 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3652 documentation and add examples.
3653 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3654 qualifiers here.
3655
3656 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3657
3658 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3659 unreliable -- especially when they're hidden inside another macro.
3660 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3661 data/c.m4: Remove m4_divert(-1).
3662 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3663 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3664 m4_divert_push(0) and m4_divert_pop(0).
3665 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3666 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3667 pushed and popped by m4sugar, should be first on the stack.
3668
3669 Provide warn, complain, and fatal function callbacks to the skeletons.
3670 This provides more flexibility than m4_fatal, improves the error
3671 message format, and captures messages for translation. Discussed
3672 starting at
3673 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3674 * data/bison.m4 (b4_error): New, invoked by...
3675 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3676 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3677 directives. Because these M4 macros might be called when the current
3678 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3679 the previous removal of uses of m4_divert, which caused trouble.
3680 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3681 m4_fatal to report unrecognized %code qualifiers.
3682 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3683 push parser requests.
3684 * data/glr.c: Use b4_complain instead of m4_fatal to report
3685 non-deterministic push parser requests.
3686 Update @output usage to @output(...@) form.
3687 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3688 report missing %defines. Update @output usage to @output(...@) form.
3689 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3690 @output(...@) form.
3691 * src/main.c (main): Invoke skel_scanner_free.
3692 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3693 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3694 obstack_for_string from flex-scanner.h.
3695 (YY_DECL): Use to declare skel_lex static.
3696 (decode_at_digraphs): Remove; now handled in the new
3697 SC_AT_DIRECTIVE_ARG start condition.
3698 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3699 functions.
3700 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3701 at_directive_argv): New static globals.
3702 (INITIAL): Use fail_for_invalid_at.
3703 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3704 recognize the start of a generalized `@directive(...@)' form and
3705 start...
3706 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3707 directive args (using the new obstack_for_string), to decode the
3708 contained @ diagraphs, and to perform the directive. It recognizes
3709 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3710 @output(...@).
3711 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3712 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3713 `@,'.
3714 (scan_skel): Initialize obstack_for_string on the first call.
3715 (skel_scanner_free): New function to free obstack_for_string.
3716 * tests/input.at (Reject bad %code qualifiers): Update test output.
3717
3718 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3719
3720 Consolidate the 4 prologue alternative directives (%code, %requires,
3721 %provides, and %code-top) into a single %code directive with an
3722 optional qualifier field. Discussed at
3723 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3724 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3725 alternatives.
3726 * doc/bison.texinfo (Prologue Alternatives): Update.
3727 (Decl Summary): Update to %code "requires" and %code "provides".
3728 (Calc++ Parser): Update to %code "requires".
3729 (Table of Symbols): Remove entries for %requires, %provides, and
3730 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3731 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3732 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3733 which are skeleton-specific.
3734 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3735 declare what %code qualifiers it supports and to complain if any other
3736 qualifiers were used in the grammar.
3737 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3738 and b4_user_code([b4_percent_code_provides]) in place of
3739 b4_user_requires and b4_user_provides.
3740 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3741 Add b4_user_code([b4_percent_code_top]) and
3742 b4_user_code([b4_percent_code]).
3743 Invoke b4_check_percent_code_qualifiers.
3744 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3745 PERCENT_REQUIRES): Remove.
3746 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3747 %requires. Rewrite the %code RHS as the unqualified form defining the
3748 muscle b4_percent_code. Add another RHS for the qualified %code form,
3749 which defines muscles of the form b4_percent_code_QUALIFIER and the
3750 b4_used_percent_code_qualifiers muscle.
3751 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3752 PERCENT_REQUIRES): Remove.
3753 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3754 %code "requires" and %code "provides".
3755 * tests/input.at (Reject bad %code qualifiers): New.
3756
3757 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3758
3759 Use the new code_props interface for destructors and printers.
3760 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3761 printer_location members, and change the type of the destructor and
3762 printer members to code_props.
3763 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3764 symbol_printer_get, semantic_type_destructor_set,
3765 semantic_type_printer_set, default_tagged_destructor_set,
3766 default_tagless_destructor_set, default_tagged_printer_set,
3767 default_tagless_printer_set): Use code_props in arguments and return
3768 types in place of char const * and location.
3769 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3770 since the locations are now contained in the return of
3771 symbol_destructor_get and symbol_printer_get.
3772 * src/output.c (symbol_destructors_output, symbol_printers_output):
3773 Replace with...
3774 (symbol_code_props_output): ... this to eliminate duplicate code.
3775 (output_skeleton): Update to use symbol_code_props_output.
3776 * src/reader.c (symbol_should_be_used): Update use of
3777 symbol_destructor_get.
3778 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3779 Update uses of the various _destructor_set and _printer_set functions.
3780 * src/symtab.c: (default_tagged_destructor_location,
3781 default_tagless_destructor_location, default_tagged_printer_location,
3782 default_tagless_printer_location): Remove since we...
3783 (default_tagged_destructor, default_tagless_destructor,
3784 default_tagged_printer, default_tagless_printer): ... change the type
3785 of these to code_props.
3786 (symbol_new, semantic_type_new, symbol_destructor_set,
3787 semantic_type_destructor_set, symbol_destructor_get,
3788 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3789 symbol_check_alias_consistency, default_tagged_destructor_set,
3790 default_tagless_destructor_set, default_tagged_printer_set,
3791 default_tagless_printer_set): Update.
3792 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3793 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3794 code_props members.
3795 (symbol_print): Use SYMBOL_CODE_PRINT.
3796
3797 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3798
3799 Use the new code_props interface for rule actions.
3800 * src/symlist.h (symbol_list): Replace action, action_location, and
3801 used members with a code_props action_props member.
3802 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3803 grammar_midrule_action, grammar_current_rule_merge_set,
3804 grammar_current_rule_symbol_append, packgram): Update.
3805 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3806 * src/scan-code.l (handle_action_dollar): Update.
3807 (translate_rule_action): Remove, no longer used.
3808 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3809
3810 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3811
3812 Use the new code_props interface in parse-gram.y.
3813 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3814 Update all uses of translate_* functions to use the new code_props
3815 interface and to use gram_scanner_last_string_free and
3816 code_scanner_last_string_free where possible.
3817 (grammar_declaration): symbol_list_destructor_set and
3818 symbol_list_printer_set now perform the translation, so don't do it
3819 here. Use gram_scanner_last_string_free where possible.
3820 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3821 translate_code): Remove, no longer used.
3822 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3823 symbol_list_printer_set): Perform code translation here rather than
3824 depending on the caller to do so.
3825
3826 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3827 * src/scan-gram.h (gram_last_string): Remove declaration.
3828 * src/scan-gram.l (last_string): Declare it static.
3829
3830 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3831
3832 Encapsulate code properties and related functionality for the various
3833 destructors, printers, and actions into a code_props structure and
3834 interface. This patch merely implements code_props in scan-code.h and
3835 scan-code.l. Future patches will rewrite other modules to use it.
3836 Discussed starting at
3837 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3838 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3839 consistently initialize const structs that have an empty location
3840 field.
3841 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3842 to ensure consistency.
3843 * src/scan-code.h (code_props): New structure.
3844 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3845 function, macro, and const global variable for initializing a
3846 code_props with no code.
3847 (code_props_plain_init, code_props_symbol_action_init,
3848 code_props_rule_action_init, code_props_translate_code): The rest of
3849 the new code_props functional interface. Among other things, the init
3850 functions set the code_props kind field so that
3851 code_props_translate_code will know whether to behave like
3852 translate_symbol_action, translate_rule_action, or translate_code.
3853 These old translate functions must remain until all other modules are
3854 updated to use the new code_props interface.
3855 (code_scanner_last_string_free): New function similar to
3856 gram_scanner_last_string_free.
3857 (code_scanner_free): Add documentation.
3858 * src/scan-code.l: Implement the new interface.
3859 (code_lex): Make it static, add a code_props* argument, and remove the
3860 rule argument.
3861 (last_string): New static global similar to the one in scan-gram.l.
3862 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3863 instead of rule.
3864 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3865 code_props since Bison may one day use this information for destructors
3866 and printers.
3867 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3868 (handle_action_dollar): Use symbol_list_n_get and set used flag
3869 directly since symbol_list_n_used_set is removed.
3870 (translate_action): Add a code_props* argument and remove the rule,
3871 action, and location arguments. Pass the code_props* on to code_lex.
3872 (translate_rule_action, translate_symbol_action, translate_code):
3873 Rewrite as wrappers around the new code_props interface.
3874 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3875 it would eventually need to break the encapsulation of code_props.
3876
3877 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3878
3879 * etc/.cvsignore: New.
3880
3881 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3882
3883 Add maintainer-push-check to run maintainer-check using push parsing in
3884 place of pull parsing where available.
3885 * Makefile.am (maintainer-push-check): New.
3886 * data/bison.m4 (b4_use_push_for_pull_if): New.
3887 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3888 appropriately based on their existing values.
3889 (yypush_parse): Don't print push-parser-specific diagnostics if push
3890 parsing is being used in place of pull parsing.
3891 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3892 push.c.
3893 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3894 variable, and insert b4_use_push_for_pull_flag into muscles.
3895 * tests/Makefile.am (maintainer-push-check): New.
3896
3897 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3898
3899 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3900 (whether successful or failed) so that yypush_parse can be invoked
3901 again to start a new parse using the same yypstate.
3902 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3903 check multiple yypull_parse invocations on the same yypstate. For pull
3904 mode, extend to check multiple yyparse invocations.
3905 (Exploding the Stack Size with Alloca): Extend to try with
3906 %push-pull-parser.
3907 (Exploding the Stack Size with Malloc): Likewise.
3908
3909 * tests/calc.at (Simple LALR Calculator): Don't specify
3910 %skeleton "push.c" since %push-pull-parser implies that now.
3911 * tests/headers.at (export YYLTYPE): Don't check for the push
3912 declarations. Otherwise, this test case can't be used to see if push
3913 mode can truly emulate pull mode.
3914 * tests/input.at (Torturing the Scanner): Likewise.
3915 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3916 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3917 AT_YACC_IF, which now includes the case of push mode since %skeleton
3918 need not be used for push mode. This will be more intuitive once
3919 push.c is renamed to yacc.c.
3920
3921 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3922
3923 For push mode, convert yyparse from a macro to a function, invoke yylex
3924 instead of passing a yylexp argument to yypull_parse, and don't
3925 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3926 Discussed starting at
3927 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3928 * data/bison.m4 (b4_pull_if): New.
3929 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3930 * data/push.c: Improve M4 quoting a little.
3931 (b4_generate_macro_args, b4_parenthesize): Remove.
3932 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3933 any time a pull parser is requested.
3934 Don't #define this as a wrapper around yypull_parse. Instead, when
3935 both push and pull are requested, make it a function that does that
3936 same thing.
3937 (yypull_parse): If there's a b4_prefix, #define this to
3938 b4_prefix[pull_parse] when both push and pull are requested.
3939 Don't define this as a function unless both push and pull are
3940 requested.
3941 Remove the yylexp argument and hard-code yylex invocation instead.
3942 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3943 %push-parser.
3944 * src/getargs.c (pull_parser): New global initialized to true.
3945 * getargs.h (pull_parser): extern it.
3946 * src/output.c (prepare): Insert pull_flag muscle.
3947 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3948 (prologue_declaration): Set both push_parser and pull_parser = true for
3949 %push-pull-parser. Set push_parser = true and pull_parser = false for
3950 %push-parser.
3951 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3952 %push-parser since there's no backward-compatibility concern here.
3953 Scan %push-pull-parser.
3954 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3955 instead of %push-parser.
3956 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3957 prototype it in the module that calls yyparse.
3958 * tests/input.at (Torturing the Scanner): Likewise.
3959 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3960
3961 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3962
3963 Update etc/bench.pl. Optimize push mode a little (the yyn change
3964 deserves most of the credit).
3965 * Makefile.am (SUBDIRS): Add etc subdirectory.
3966 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3967 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3968 yytoken, yyval, and yyloc declarations to...
3969 (yyparse or yypush_parse): ... here to improve performance. For
3970 yypush_parse invocations after the first, be sure to assign yyn its old
3971 value again.
3972 (yypstate_new): Don't bother initializing the yyresult field since the
3973 initial value isn't used.
3974 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3975 remove the #define that, in push mode, set it to yyps->NAME.
3976 * etc/Makefile.am: New.
3977 * etc/bench.pl: Remove and build it instead from...
3978 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3979 "tests/bison" from the build directory by default rather than just
3980 invoking "bison" from $PATH.
3981 (calc_grammar): Update push parser code: don't declare yylval globally,
3982 don't define yyparse_wrapper, and don't #define yyparse.
3983 (bench_grammar): Update to check all working combinations of yacc.c,
3984 push.c, impure, pure, pull, and push.
3985
3986 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3987
3988 For push mode, add pull wrappers around yypush_parse.
3989 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3990 (yypull_parse): New function wrapping yypush_parse.
3991 (yyparse): New #define wrapping yypull_parse.
3992 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3993 is declared.
3994 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3995 prototype yylex in the module that calls yyparse, and don't prototype
3996 yyparse there. Otherwise, the yyparse expansion won't compile.
3997 * tests/input.at (Torturing the Scanner): Likewise.
3998
3999 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4000
4001 Enable push parsers to operate in impure mode. Thus, %push-parser no
4002 longer implies %pure-parser. The point of this change is to move
4003 towards being able to test the push parser code by running the entire
4004 test suite as if %push-parser had been declared.
4005 * data/push.c (yypush_parse): For impure mode, remove the
4006 yypushed_char, yypushed_val, and yypushed_loc arguments.
4007 Instead, declare these as local variables initialized to the global
4008 yychar, yylval, and yylloc.
4009 For the first yypush_parse invocation only, restore the initial values
4010 of these global variables when it's time to read a token since they
4011 have been overwritten.
4012 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4013 %push-parser.
4014 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4015 %pure-parser along with %push-parser since this test case was designed
4016 for pure push parsers.
4017 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4018 (AT_YACC_OR_PUSH_IF): New.
4019 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4020 add a note that it's still wrong for some cases (as it has been for a
4021 while).
4022 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4023 %push-parser no longer implies %pure-parser.
4024
4025 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4026
4027 Remove some unnecessary differences between the pull parser code and
4028 the push parser code. This patch enables yynerrs in push mode.
4029 * data/push.c: Reformat M4 a little.
4030 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4031 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4032 because push mode is on. Instead, if pure mode is on, move yynerrs
4033 to...
4034 (b4_declare_parser_state_variables): ... here.
4035 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4036 to yyps->NAME so it can be used in yypush_parse.
4037 (yypush_parse): Don't omit uses of yynerrs in push mode.
4038
4039 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4040
4041 Fix bug such that the first pushed token's value and location are
4042 sometimes overwritten (sometimes by %initial-action) before being used.
4043 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4044 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4045 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4046 more closely mimic the pull parser logic.
4047 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4048 time to read a token, which is after any initialization of yylval and
4049 yylloc.
4050 (gottoken): Rename label to...
4051 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4052 user namespace.
4053
4054 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4055
4056 Rearrange initialization of the parser state variables so that the
4057 skeleton doesn't have to have a copy for pull mode and another for push
4058 mode. This patch also fixes at least a bug such that yylloc was not
4059 initialized (with b4_location_initial_line and
4060 b4_location_initial_column) upon calling yypush_parse. However, that
4061 initialization now overwrites the first token's location;
4062 %initial-action assigning @$ already did the same thing, and both bugs
4063 will be fixed in a later patch.
4064 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4065 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4066 yyss, yyvs, yyls, and yystacksize.
4067 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4068 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4069 yylsp.
4070 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4071 yyps->NAME so it can be used in yypush_parse.
4072 (yyparse or yypush_parse): For yypush_parse, don't print the
4073 "Starting parse" diagnostic for invocations after the first.
4074 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4075 yypush_parse, only do it for the first invocation.
4076 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4077 initialization to occur in yypush_parse but only on the first
4078 invocation.
4079
4080 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4081
4082 * data/push.c: Add CPP guards around push parser declarations in both
4083 the header and the code file.
4084 In the code file, move the push parser declarations to the same place
4085 they appear in the header file.
4086 Clean up the M4 some, especially the inconsistent underquoting in
4087 some b4_c_function_def and b4_c_function_decl uses.
4088
4089 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4090
4091 Encapsulate the push parser state variables into an M4 macro so the
4092 push skeleton doesn't have to list them again for pull mode's yyparse.
4093 For push mode, remove yypush_parse's local equivalents of these
4094 variables to eliminate unnecessary copying between the two sets at
4095 run-time. This patch also fixes at least a bug related to multiple
4096 %initial-action invocations in push mode.
4097 * data/push.c (b4_declare_parser_variables): Rename to...
4098 (b4_declare_scanner_communication_variables): ... this for clarity and
4099 update both uses.
4100 (b4_declare_yyparse_variables): Remove and move its contents to the one
4101 spot where it was invoked.
4102 (b4_declare_parser_state_variables): New macro containing the parser
4103 state variables required by push mode.
4104 (struct yypstate): Replace all fields but yynew with
4105 b4_declare_parser_state_variables.
4106 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4107 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4108 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4109 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4110 parser state variable declarations with
4111 b4_declare_parser_state_variables.
4112 Don't initialize parser state variables when calling yypush_parse since
4113 yypstate_new already does that.
4114 Invoke the user's initial action only upon the first yypush_parse
4115 invocation.
4116 Remove all code that copies between the local parser state variables
4117 and the yypstate.
4118
4119 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4120
4121 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4122 prevent a name collision in a future patch where these names will
4123 sometimes be #define'd.
4124 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4125 since it no longer has the same name as the existing argument.
4126 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4127
4128 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4129 and Joel E. Denny <jdenny@ces.clemson.edu>
4130
4131 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4132 that the argument is case-insensitive, and there's no `=' here.
4133 For the %skeleton entry, mention that %language is better.
4134 (Bison Options): Likewise for --language and --skeleton. Move the
4135 --skeleton entry so that the `Tuning the parser' section is sorted
4136 alphabetically on long options.
4137 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4138 %language directive in detail here; cross-reference the %language
4139 documentation instead.
4140 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4141 `%require "2.3b"' so that the example is always up-to-date.
4142 (Table of Symbols): Add entries for %language and %skeleton.
4143 * examples/extexi (normalize): Instead of replacing every %require
4144 argument with the current Bison version, just substitute for
4145 `@value{VERSION}'. This guarantees that we're testing what actually
4146 appears in the documentation.
4147 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4148 rather than `@VERSION@'.
4149
4150 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4151
4152 * NEWS: Reword the %language news a bit, and put it earlier.
4153
4154 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4155 Rewrite to simplify the logic.
4156 (language_argmatch): Likewise.
4157 (program_name): We now own this var.
4158 * src/getargs.h (struct bison_language): Use char[] rather than
4159 const char *.
4160
4161 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4162 Java is supported.
4163 * src/complain.c (program_name): Remove decl; no longer needed.
4164 * src/main.c (program_name): Remove; now belongs to getargs.
4165
4166 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4167
4168 * NEWS: Document %language.
4169
4170 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4171
4172 * data/c-skel.m4, data/c++-skel.m4: New files.
4173 * data/glr.c: Complain on push parsers.
4174
4175 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4176 over %skeleton.
4177 (Decl Summary): Document %language and %skeleton.
4178 (Command line): Document -L.
4179
4180 * examples/extexi: Rewrite %require directive.
4181 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4182
4183 * src/files.c (compute_exts_from_gc): Look in language structure
4184 for .y extension.
4185 (compute_file_name_parts): Check whether .tab should be added.
4186 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4187 (language, skeleton_arg, language_argmatch): New.
4188 (long_options): Add --language.
4189 (getargs): Use skeleton_arg, add -L/--language.
4190 * src/getargs.h: Include location.h.
4191 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4192 * src/output.c (prepare): Pick default skeleton from struct language.
4193 Don't dispatch C skeletons here.
4194 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4195 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4196 * src/scan-gram.l ("%language"): New rule.
4197
4198 * tests/calc.at: Test %skeleton and %language.
4199 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4200 (AT_GLR_IF): Look for %skeleton "glr.cc".
4201 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4202 (AT_YACC_IF): Reject %language.
4203
4204 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4205
4206 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4207 since it wasn't used; only the typedef name 'semantic_type' is needed.
4208 Also, omit trailing white space.
4209
4210 * bootstrap: Sync from coreutils.
4211 (gnulib_extra_files): Add build-aux/announce.gen.
4212 (slurp): Adjust .gitignore files like .cvsignore files.
4213 * build-aux/announce-gen: Remove from CVS, since bootstrap
4214 now creates this.
4215
4216 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4217
4218 Make %push-parser imply %pure-parser. This fixes several bugs; see
4219 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4220 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4221 pure_parser = true.
4222 * data/push.c: Don't bother testing b4_push_if when deciding whether
4223 to expand b4_declare_parser_variables globally.
4224 (yypush_parse): Likewise in here.
4225
4226 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4227 (yy_reduce_print): Reformat M4 for readability.
4228
4229 2006-12-15 Bob Rossi <bob@brasko.net>
4230 and Joel Denny <jdenny@ces.clemson.edu>
4231
4232 * data/push.c (yypstate): Add typedef, and update all uses of
4233 struct yypstate to just yypstate.
4234 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4235
4236 2006-12-14 Bob Rossi <bob@brasko.net>
4237
4238 * data/push.c (yypush_parse): Declare prototype regardless of
4239 %locations option.
4240
4241 2006-12-14 Bob Rossi <bob@brasko.net>
4242
4243 * data/push.c (yyparse): Remove the prototype and the #define when in
4244 push-parser mode.
4245
4246 2006-12-13 Bob Rossi <bob@brasko.net>
4247
4248 * data/push.c (yypstate_init): Rename to...
4249 (yypstate_new): ... this and use b4_c_function_def.
4250 (yypstate_delete): New.
4251 (yypush_parse): Change parameters yynval and yynlloc to be const.
4252 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4253 yypstate_delete functions.
4254
4255 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4256
4257 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4258 strange test case titles. Reported by Bob Rossi.
4259
4260 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4261
4262 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4263 of potential ambiguities in GLR grammers.
4264
4265 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4266
4267 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4268 `bison ', use m4_index instead of m4_substr since chopping up a string
4269 containing M4-special characters causes problems here.
4270
4271 Fix a couple of bugs related to special characters in user-specified
4272 file names, and make it easier for skeletons to compute output file
4273 names with the same file name prefix as Bison-computed output file
4274 names.
4275 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4276 b4_parser_file_name and b4_spec_defines_file instead of
4277 @output_parser_name@ and @output_header_name@, which are now redundant.
4278 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4279 b4_parser_file_name, b4_spec_defines_file, and the new
4280 @basename(FILENAME@) instead of @output_parser_name@ and
4281 @output_header_name@, which inappropriately escaped the file names as
4282 C string literals.
4283 * src/files.c (all_but_ext): Remove static qualifier.
4284 (compute_output_file_names): Move `free (all_but_ext)' to...
4285 (output_file_names_free): ... here since all_but_ext is needed later.
4286 * src/files.h (all_but_ext): Extern.
4287 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4288 exactly what MUSCLE_INSERT_STRING used to do.
4289 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4290 characters are escaped properly.
4291 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4292 all_but_ext.
4293 For pkgdatadir muscle, maintain previous functionality by using
4294 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4295 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4296 digraphs would never be expanded. Hopefully no one has M4-special
4297 characters in his Bison installation path.
4298 * src/scan-skel.l: Don't parse @output_header_name@ and
4299 @output_parser_name@ anymore since they're now redundant.
4300 In @output, use decode_at_digraphs.
4301 Parse a new @basename command that invokes last_component.
4302 (decode_at_digraphs): New.
4303 (BASE_QPUTS): Remove unused.
4304 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4305 (Output file name): New tests.
4306
4307 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4308
4309 Warn about output files that are generated by the skeletons and that
4310 conflict with other output files.
4311 * data/glr.c: Don't generate the header file here when glr.cc does.
4312 * src/files.c (file_names, file_names_count): New static globals.
4313 (compute_output_file_names): Invoke output_file_name_check for files
4314 not generated by the skeletons and remove existing checks.
4315 (output_file_name_check): New function that warns about conflicting
4316 output file names.
4317 (output_file_names_free): Free file_names.
4318 * src/files.h (output_file_name_check): Declare.
4319 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4320 the skeletons.
4321 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4322 (Conflicting output files): New tests.
4323
4324 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4325
4326 * doc/bison.texinfo: Fix a couple of typos.
4327
4328 2006-12-08 Bob Rossi <bob@brasko.net>
4329
4330 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4331 Rename to...
4332 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4333 update all uses.
4334 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4335 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4336 local pv.
4337 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4338 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4339
4340 2006-12-07 Bob Rossi <bob@brasko.net>
4341 and Joel Denny <jdenny@ces.clemson.edu>
4342
4343 * data/push.c (yypvarsinit): Change return type from void* to struct
4344 yypvars*. No longer cast to void* on return.
4345 (struct yypvars): Remove yylen since it need not be remembered between
4346 yypushparse invocations.
4347 (yypushparse): Don't copy between yylen and pv->yylen.
4348
4349 2006-12-05 Bob Rossi <bob@brasko.net>
4350
4351 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4352 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4353 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4354 (struct yypvars): Remove b4_declare_parser_variables.
4355 (yypvarsinit): Remove init code for removed variables.
4356 (global scope): Do not declare b4_declare_parser_variables if
4357 push or pure mode.
4358 (yypushparse): Add b4_declare_parser_variables.
4359 Init new local variables, and remove init code for removed
4360 yypvars variables.
4361 (yyparse): Delete.
4362 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4363 and yyparse for other modes.
4364 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4365 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4366 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4367 (AT_PURE_LEX_IF): True if pure or push parser.
4368
4369 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4370
4371 Document Yacc prologue alternatives and default %destructor's and
4372 %printer's as experimental. Don't mention Java yet. Discussed at
4373 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4374 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4375 (2.3a): Annotate this entry to say the old forms of these features were
4376 also experimental.
4377 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4378 Table of Symbols): Say they're experimental. Comment out any mention
4379 of Java (we'll want this back eventually).
4380
4381 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4382
4383 Support a file name argument to %defines. Deprecate `=' in
4384 %file-prefix, %name-prefix, and %output. Discussed at
4385 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4386 * NEWS (2.3a+): Mention.
4387 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4388 form of %defines, and remove `=' from entries for %file-prefix,
4389 %name-prefix, and %output.
4390 * src/parse-gram.y (prologue_declaration): Implement.
4391 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4392 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4393 all but one occurrence of %name-prefix.
4394 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4395 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4396 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4397 occurrence of each of %file-prefix and %output. Add check for %defines
4398 with argument.
4399 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4400 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4401 Remove the `=' from %output.
4402
4403 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4404
4405 Don't escape $ in test case titles since Autoconf 2.61 now does that
4406 correctly.
4407 * tests/actions.at (Default %printer and %destructor are not for error
4408 or $undefined): Here.
4409 (Default %printer and %destructor are not for $accept): Here.
4410 * tests/input.at (Invalid $n and @n): Here.
4411
4412 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4413
4414 Rename <!> to <>. Discussed starting at
4415 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4416 * NEWS (2.3a+): Update.
4417 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4418 Update.
4419 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4420 * src/scan-gram.l (INITIAL): Implement.
4421 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4422 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4423 comment.
4424 * tests/actions.at (Default tagless %printer and %destructor,
4425 Default tagged and per-type %printer and %destructor,
4426 Default %printer and %destructor are not for error or $undefined,
4427 Default %printer and %destructor are not for $accept,
4428 Default %printer and %destructor for mid-rule values): Update.
4429 * tests/input.at (Default %printer and %destructor redeclared,
4430 Unused values with default %destructor): Update.
4431
4432 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4433
4434 Don't let %prec take a nonterminal.
4435 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4436 token.
4437 * tests/input.at (%prec takes a token): New test checking that %prec
4438 won't take a nonterminal.
4439
4440 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4441
4442 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4443 it was double-quoted.
4444 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4445 grammar is maintained with Bison's highest standards.
4446 * src/getargs.c: Fix some typos in Doxygen comments.
4447
4448 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4449
4450 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4451 later. Reported by Paul Eggert in
4452 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4453 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4454 * src/scan-code.l (translate_action): Don't bother invoking
4455 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4456 (code_scanner_free): Instead of invoking
4457 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4458 which frees more.
4459 * src/scan-gram.l (gram_scanner_free): Likewise.
4460 * src/scan-skel.l (scan_skel): Likewise.
4461
4462 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4463
4464 * src/files.c (tr): Change return type to void.
4465 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4466 has been called previously for the same key.
4467 (muscle_find): Return storage instead of value so that
4468 --enable-gcc-warnings doesn't produce warnings that the return discards
4469 const. aver that the value and storage are the same since storage
4470 could potentially be NULL when value is not.
4471 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4472 same as 0.
4473
4474 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4475
4476 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4477 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4478 us a slightly cleaner distribution, and also works.
4479 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4480 gnulib changes.
4481
4482 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4483 and Paul Eggert <eggert@cs.ucla.edu>
4484
4485 Don't let Bison leak memory except when it complains.
4486 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4487 (spec_defines_file, dir_prefix): Now char *, not const char *,
4488 since they are freed.
4489 * src/files.c: Likewise.
4490 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4491 Likewise.
4492 (tr): Now operates in-place. All uses changed.
4493 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4494 values.
4495 (compute_file_name_parts, compute_output_file_names): Don't store
4496 read-only data in variables that will be freed.
4497 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4498 src_extension, and header_extension.
4499 (output_file_names_free): New public function to free
4500 spec_verbose_file, spec_graph_file, spec_defines_file,
4501 parser_file_name, and dir_prefix.
4502 * src/getargs.c (getargs): Don't store read-only data in variables that
4503 will be freed.
4504 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4505 (which previously existed but was unused), and quotearg_free.
4506 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4507 * src/muscle_tab.c: Likewise.
4508 (muscle_entry): Make the value char const *,
4509 and add a new storage member that is char * and can be freed.
4510 (muscle_entry_free): New private function.
4511 (muscle_init): Use it instead of free.
4512 (muscle_insert, muscle_grow): Update and use new storage member.
4513 (muscle_code_grow): Free the string passed to muscle_grow
4514 since it's not needed anymore.
4515 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4516 add a new `char *code' member.
4517 ("{...}"): Declare semantic type as code.
4518 * src/scan-code.h (translate_rule_action):
4519 (translate_symbol_action, translate_code, translate_action): Return
4520 `char const *' rather than `char *' since external code should not free
4521 these strings.
4522 * src/scan-code.l: Likewise.
4523 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4524 which is "{...}" in the parser.
4525 * tests/Makefile.am (maintainer-check-valgrind): Set
4526 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4527 Valgrind.
4528 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4529 complain.
4530 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4531 expecting a non-zero exit status sets --leak-check=summary and
4532 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4533 this case, and we don't want to hear about it.
4534
4535 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4536
4537 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4538 instead of from the template, to simplify configuration a bit.
4539 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4540 and m4/wint_t.m4, as they are needed with the latest gnulib.
4541
4542 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4543
4544 Disable unset/unused mid-rule value warnings by default, and recognize
4545 --warnings=midrule-values to enable them. Discussed starting at
4546 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4547 * NEWS (2.3a+): Mention.
4548 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4549 warnings): Add entry for midrule-values subargument.
4550 * src/reader.c (symbol_should_be_used): Don't return true just because
4551 the value is a set/used mid-rule value unless
4552 --warnings=midrule-values was specified.
4553 * tests/input.at (Unused values, Unused values before symbol
4554 declarations): Run tests with and without --warnings=midrule-values.
4555
4556 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4557 than LIST_FREE directly.
4558
4559 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4560
4561 Finish implementing --warnings=error, which should not be implied by
4562 --warnings=all (or by its synonyms -W and --warnings without
4563 subarguments).
4564 * src/complain.c (set_warning_issued): New function to report that
4565 warnings are being treated as errors and to record an error if so.
4566 Invoke...
4567 (warn_at, warn): ... here.
4568 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4569 "error - warnings are errors" does not appear above "all - all of the
4570 above".
4571 (getargs): For -W and --warnings without subarguments, don't let
4572 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4573 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4574
4575 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4576
4577 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4578 empty subargument list. For example: `bison --warnings= parser.y'.
4579
4580 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4581
4582 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4583 the parser header file so that gcc doesn't warn.
4584
4585 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4586
4587 Split the default %destructor/%printer into two kinds: <*> and <!>.
4588 Discussed starting at
4589 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4590 * NEWS (2.3a+): Mention.
4591 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4592 previous change today related to mid-rules.
4593 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4594 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4595 (TYPE_TAG_ANY): Add as <*>.
4596 (TYPE_TAG_NONE): Add as <!>.
4597 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4598 for <*> and <!>.
4599 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4600 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4601 * src/symlist.c (symbol_list_default_new): Split into tagged and
4602 tagless versions.
4603 (symbol_list_destructor_set, symbol_list_printer_set): Split
4604 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4605 SYMLIST_DEFAULT_TAGLESS.
4606 * src/symlist.h: Update symbol_list_default*_new prototypes.
4607 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4608 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4609 * src/symtab.c (default_destructor, default_destructor_location,
4610 default_printer, default_printer_location): Split each into tagged and
4611 tagless versions.
4612 (symbol_destructor_get, symbol_destructor_location_get,
4613 symbol_printer_get, symbol_printer_location_get): Implement tagged
4614 default and tagless default cases.
4615 (default_destructor_set, default_printer_set): Split each into tagged
4616 and tagless versions.
4617 * src/symtab.h: Update prototypes.
4618 * tests/actions.at (Default %printer and %destructor): Rename to...
4619 (Default tagless %printer and %destructor): ... this, and extend.
4620 (Per-type %printer and %destructor): Rename to...
4621 (Default tagged and per-type %printer and %destructor): ... this, and
4622 extend.
4623 (Default %printer and %destructor for user-defined end token): Extend.
4624 (Default %printer and %destructor are not for error or $undefined):
4625 Update.
4626 (Default %printer and %destructor are not for $accept): Update.
4627 (Default %printer and %destructor for mid-rule values): Extend.
4628 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4629 (Unused values with default %destructor): Extend.
4630
4631 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 Don't apply the default %destructor/%printer to an unreferenced midrule
4634 value. Mentioned at
4635 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4636 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4637 like $@n instead of just @n so that the default %destructor/%printer
4638 logic doesn't see them as user-defined symbols.
4639 (symbol_is_dummy): Check for both forms of the name.
4640 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4641 name for which the midrule value is referenced in any action.
4642 * tests/actions.at (Default %printer and %destructor for mid-rule
4643 values): New test.
4644 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4645 for change to dummy symbol names.
4646
4647 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4648
4649 Warn about unset midrule $$ if the corresponding $n is used.
4650 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4651 $n usage.
4652 (packgram): Before invoking grammar_rule_check on any rule, make sure
4653 all actions have already been scanned in order to set `used' flags.
4654 Otherwise, checking that a midrule's $$ is set will not always work
4655 properly because the midrule check must forward-reference the midrule's
4656 parent rule.
4657 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4658 warning.
4659
4660 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4661
4662 More improvements to the documentation of the prologue alternatives:
4663 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4664 Bison manual.
4665 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4666 some text to clarify the relative importance of the new directives and
4667 to show how these directives may be viewed as code labels.
4668
4669 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4670
4671 Similar to the recently removed %before-header, add %code-top as the
4672 alternative to the pre-prologue. Mentioned at
4673 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4674 Also, let the prologue alternatives appear in the grammar section.
4675 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4676 (prologue_declaration): Move the existing prologue alternatives to...
4677 (grammar_declaration): ... here and add %code-top.
4678 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4679
4680 Clean up and extend documentation for the prologue alternatives.
4681 * NEWS (2.3a+): Describe prologue alternatives.
4682 * doc/bison.texinfo (Prologue): Move discussion of prologue
4683 alternatives to...
4684 (Prologue Alternatives): ... this new section, and extend it to discuss
4685 all 4 directives in detail.
4686 (Table of Symbols): Clean up discussion of prologue alternatives and
4687 add %code-top.
4688
4689 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4690
4691 DJGPP specific issues.
4692
4693 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4694 config.bat accordingly.
4695 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4696 * djgpp/config.site: Likewise.
4697
4698 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4699
4700 Replace %*-header with %provides, %requires, %code. See discussion at
4701 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4702
4703 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4704 (b4_user_start_header): Remove.
4705 * data/glr.c: Use new macros instead of b4_*start_header
4706 and b4_*end_header.
4707 * data/glr.cc: Likewise.
4708 * data/lalr1.cc: Likewise.
4709 * data/push.c: Likewise.
4710 * data/yacc.c: Likewise.
4711
4712 * doc/bison.texinfo: Remove %before-header, rename
4713 %{start,end,after}-header to %requires, %provides, %code.
4714
4715 * src/parse-gram.y: Likewise (also rename token names accordingly).
4716 * src/scan-gram.l: Likewise.
4717 * tests/actions.at: Likewise.
4718
4719 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4720
4721 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4722 Problem reported by Joel E. Denny.
4723
4724 2006-10-14 Jim Meyering <jim@meyering.net>
4725
4726 (Sync from coreutils.)
4727 Work also when the working directory (with e.g. coreutils sources)
4728 is version controlled with git, rather than CVS.
4729 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4730 rather than CVS.
4731 In messages and comments, say e.g., "checked-out sources",
4732 rather than "CVS sources".
4733 (version_controlled_file): New function. Work for git as well as
4734 for CVS. Don't use grep's -q option.
4735 (slurp): Call it here, in place of CVS-specific code.
4736
4737 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4738
4739 Fix testsuite for ./configure --enable-gcc-warnings:
4740 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4741 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4742 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4743 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4744 * test/regression.at (Diagnostic that expects two alternatives):
4745 Likewise.
4746
4747 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4748
4749 * bootstrap.conf (gnulib_modules): Add config-h.
4750 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4751 worry about HAVE_CONFIG_H.
4752 * lib/abitset.c: Likewise.
4753 * lib/bitset.c: Likewise.
4754 * lib/bitset_stats.c: Likewise.
4755 * lib/bitsetv-print.c: Likewise.
4756 * lib/bitsetv.c: Likewise.
4757 * lib/ebitset.c: Likewise.
4758 * lib/get-errno.c: Likewise.
4759 * lib/lbitset.c: Likewise.
4760 * lib/subpipe.c: Likewise.
4761 * lib/timevar.c: Likewise.
4762 * lib/vbitset.c: Likewise.
4763 * lib/bitset.c: Include "bitset.h" first, to test interface.
4764 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4765 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4766 * lib/bitsetv.c: Include "bitsetv.h" first.
4767 * lib/get-errno.c: Include "get-errno.h" first.
4768 * m4/.cvsignore: Add config-h.m4.
4769 * tests/actions.at (Default %printer and %destructor for ...):
4770 Adjust expected line numbers in output to reflect removal of #if
4771 HAVE_CONFIG_H lines.
4772 * tests/glr-regression.at (Missed %merge type warnings when ...):
4773 Likewise.
4774 * tests/regression.at (Braced code in declaration in rules section):
4775 Likewise.
4776 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4777 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4778 Include <config.h> unconditionally.
4779
4780 * bootstrap: Sync from coreutils, as follows:
4781
4782 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4783
4784 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4785 variable was sometimes used without being initialized. This
4786 messed up the installation of the INSTALL file in some cases.
4787
4788 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4789
4790 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4791 --copy. Inspired by a suggestion from Bruno Haible.
4792
4793 2006-10-03 Jim Meyering <jim@meyering.net>
4794
4795 * bootstrap: Undo last change to this file, since now gnulib-tool
4796 sticks with the automake default in generating dependencies.
4797
4798 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4799
4800 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4801 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4802
4803 * doc/bison.1: Add copyright notice.
4804
4805 * data/glr.c: Don't include <stdarg.h>; not used.
4806
4807 * NEWS: The -g and --graph options now output graphs in Graphviz
4808 DOT format, not VCG format.
4809 * doc/bison.1: Likewise.
4810 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4811 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4812 of this change in
4813 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4814 * TODO: Remove Graphviz entry.
4815 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4816 remove vcg.c, vcg.h, vcg_defaults.h.
4817 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4818 * src/graphviz.c, src/graphviz.h: New files.
4819 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4820 * src/files.h: Make comment more generic.
4821 * src/main.c (main): Likewise.
4822 * src/print_graph.h: Likewise.
4823 * src/getargs.c (usage): Make usage description more generic.
4824 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4825 (static_graph, fgraph): Remove. All uses changed to pass
4826 arguments instead of sharing a static var.
4827 (print_core, print_actions, print_state, print_graph):
4828 Output graphviz format rather than VCG format.
4829 * tests/.cvsignore: Remove *.vcg; add *.dot.
4830 * tests/output.at: Expect *.dot files, not *.vcg files.
4831
4832 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4833 accommodates the 2006-10-08 change.
4834
4835 2006-10-11 Bob Rossi <bob@brasko.net>
4836
4837 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4838 (b4_yyssa, b4_yyerror_range): New macros.
4839 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4840 (yypvarsinit): Remove init of removed fields.
4841 (yypushparse): Remove use of removed fields; use new macros instead.
4842
4843 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4844
4845 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4846 in a push parser. Reindent slightly to match yacc.c better.
4847
4848 2006-10-11 Bob Rossi <bob@brasko.net>
4849
4850 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4851 yymsg_alloc fields.
4852 (yypvarsinit, yypushparse): Remove init of removed fields.
4853 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4854
4855 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4856
4857 * THANKS: Add Paolo Bonzini and Bob Rossi.
4858
4859 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4860
4861 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4862 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4863 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4864 b4_define_user_cde and uses): Remove.
4865 (b4_comment, b4_prefix, b4_sync_start): New.
4866 * data/bison.m4: New file, with most of the content removed from c.m4.
4867 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4868 * src/output.c (output_skeleton): Pass bison.m4.
4869 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4870 only if specified.
4871
4872 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4873
4874 Fix test failure reported by Tom Lane in
4875 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4876 and try to make such failures easier to catch in the future.
4877 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4878 that's now the caller's responsibility.
4879 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4880 Set yychar = YYEOF if it's negative.
4881 * tests/actions.at (yylex): Abort if asked to read past EOF.
4882 * tests/conflicts.at (yylex): Likewise.
4883 * tests/cxx-type.at (yylex): Likewise.
4884 * tests/glr-regression.at (yylex): Likewise.
4885 * tests/input.at (yylex): Likewise.
4886 * tests/regression.at (yylex): Likewise.
4887 * tests/torture.at (yylex): Likewise.
4888
4889 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4890
4891 Fix problems with translating English-language diagnostics.
4892 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4893 respect to bison-runtime pot generation. The YY_ stuff
4894 wasn't being captured.
4895 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4896 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4897 * runtime-po/POTFILES.in: Add data/push.c.
4898
4899 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4900
4901 Merge bootstrap changes from coreutils.
4902
4903 2006-09-28 Jim Meyering <jim@meyering.net>
4904
4905 Automatically generated dependencies are important even
4906 when all of the sources in a directory come from gnulib.
4907 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4908 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4909
4910 2006-09-23 Jim Meyering <jim@meyering.net>
4911
4912 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4913
4914 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4915
4916 * bootstrap: Add support for --force.
4917 (usage): New function. Describe usage less tersely.
4918 (CVS_only_file): New var.
4919
4920 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4921
4922 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4923 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4924 Adjust white space and comments to match GNU style better.
4925
4926 2006-09-20 Bob Rossi <bob@brasko.net>
4927
4928 * data/push.c (yyresult_get): Remove function.
4929 (YYPUSH_MORE): Add #define.
4930 (yypushparse): Modify return value.
4931
4932 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4933
4934 * stamp-h.in: Remove; no longer needed.
4935 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4936 Remove config.h, config.hin, intl (no longer created).
4937 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4938 stamp-h1.
4939
4940 Sync bootstrap from coreutils, as follows:
4941
4942 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4943
4944 * bootstrap (symlink_to_gnulib): New function.
4945 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4946 to copies-of-gnulib.
4947 (cp_mark_as_generated, slurp, gnulib_files):
4948 Avoid making a copy if it's the same as the old version.
4949 (gnulib_files): Add support for this variable (used by Bison).
4950
4951 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4952
4953 * src/getargs.c (usage): Rework to use conventions similar to
4954 coreutils, to make translation a bit easier and the code a bit
4955 smaller. Problem reported by Tim Van Holder.
4956
4957 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4958
4959 Use some of gnulib's new modules, taken from coreutils.
4960
4961 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4962 * bootstrap.conf: New file.
4963 (gnulib_modules): Add configmake, inttypes, unistd.
4964 (XGETTEXT_OPTIONS): Add complain, complain_at,
4965 fatal, fatal_at, warn, warn_at, unexpected_end.
4966 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4967 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4968 (gl_EARLY): Add.
4969 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4970 (gl_INIT): Add
4971 (GNULIB_AUTOCONF_SNIPPET): Remove.
4972 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4973 the pickiest.
4974 * lib/.cvsignore: Add inttypes_.h.
4975 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4976 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4977 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4978 no-longer-necessary initializations.
4979 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4980 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4981 use the unistd module.
4982 * src/system.h: Likewise.
4983 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4984 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4985 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4986 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4987 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4988 * src/system.h: Include inttypes.h unconditionally, now that we
4989 use the inttypes module. Don't bother to include stdint.h, since
4990 inttypes.h now does that for us.
4991 (LOCALEDIR): Remove, now that we use the configmake module.
4992 * src/getargs.c: Include configmake.h.
4993 * src/main.c: Likewise.
4994 * src/output.c: Likewise.
4995 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4996 not from $abs_top_builddir, since config.h moved.
4997
4998
4999 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5000 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5001
5002 * src/parse-gram.y (symbol_declaration): Don't put statements
5003 before declarations; it's not portable to C89.
5004 * src/scan-code.l (handle_action_at): Likewise.
5005
5006 * src/scan-code.l: Always initialize braces_level; the old code
5007 left it uninitialized and therefore had undefined behavior.
5008
5009 Don't attempt to redefine 'assert', since it runs afoul of
5010 systems where standard headers (mistakenly) include <assert.h>.
5011 Instead, define and use our own alternative, called 'aver'.
5012 * src/reader.c: Don't include assert.h, since we no longer
5013 use assert.
5014 * src/scan-code.l: Likewise.
5015 * src/system.h (assert): Remove, replacing with....
5016 (aver): New function, taking a bool arg. All uses changed.
5017 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5018 not merely an integer.
5019
5020 2006-09-15 Bob Rossi <bob@brasko.net>
5021
5022 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5023 * data/c.m4 (YYPUSH): New.
5024 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5025 * src/getargs.c (push_parser): New var.
5026 * src/getargs.h (push_parser): New declaration.
5027 * src/output.c (prepare): Add macro insertion of `push_flag'.
5028 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5029 (prologue_declaration): Parse %push-parser.
5030 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5031 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5032 list of removed lines from the traces observed.
5033 (AT_CHECK_CALC_LALR): Added push parser tests.
5034
5035 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5036
5037 * NEWS: Version 2.3a.
5038 * configure.ac (AC_INIT): Likewise.
5039
5040 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5041 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5042 due to header ordering dependencies. I don't know why the #define
5043 was there.
5044
5045 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5046 runtime cost when YYDEBUG is not defined, and so that some tests
5047 that used to fail now work. Problem and initial suggestion by
5048 Paolo Bonzini.
5049 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5050 * data/glr.cc (b4_parser_class_name):
5051 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5052 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5053 (yydebug_) [YYDEBUG]: New member.
5054 (yycdebug_): Now defined only if YYDEBUG.
5055 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5056 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5057 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5058 if YYYDEBUG.
5059 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5060 Define only if YYDEBUG.
5061 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5062 set_debug_level.
5063 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5064 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5065 AT_CHECK_CALC_GLR_CC that are working now.
5066
5067 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5068
5069 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5070 We don't need them in glr.cc, and glr.c defines them.
5071 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5072 assumes that defining it to anything is the same as defining
5073 it to 1. Problem reported by Paolo Bonzini.
5074
5075 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5076
5077 * data/c.m4 (b4_null, b4_case): Define.
5078 * src/output.c (prepare_symbols): Use b4_null.
5079 (user_actions_output): Use b4_case.
5080
5081 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5082
5083 * data/glr.c (b4_shared_declarations): Put start-header first,
5084 before any #includes that we generate, so that feature-test
5085 macros work. Problem reported by Michael Deutschmann in
5086 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5087 * data/lalr1.cc: Likewise.
5088 * doc/bison.texinfo (Prologue): Document that feature-test macros
5089 should be defined before any Bison declarations.
5090 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5091 that depend on location.hh after, not before, Bison decls, since
5092 we now include location.hh after the first user prologue.
5093
5094 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5095 Sander Brandenburg in
5096 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5097 Also, fix minor white space and comment issues.
5098 (Prologue): Mention that it's better to define feature-test macros
5099 before Bison declarations. Problem reported by Michael Deutschmann.
5100
5101 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5102 by Jim Meyering.
5103 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5104 This adjusts to recent gnulib changes.
5105
5106 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5107
5108 Finish implementation of per-type %destructor/%printer. Discussed
5109 starting at
5110 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5111 and
5112 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5113 * NEWS (2.3+): Add a description of this feature to the default
5114 %destructor/%printer description.
5115 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5116 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5117 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5118 list node contains a semantic type.
5119 * src/symtab.c, src/symtab.h: Extend with a table that associates
5120 semantic types with their %destructor's and %printer's.
5121 (semantic_type_from_uniqstr, semantic_type_get,
5122 semantic_type_destructor_set, semantic_type_printer_set): New functions
5123 composing the public interface of that table.
5124 (symbol_destructor_get, symbol_destructor_location_get,
5125 symbol_printer_get, symbol_printer_location_get): If there's no
5126 per-symbol %destructor/%printer, look up the per-type before trying
5127 the default.
5128 * tests/actions.at (Per-type %printer and %destructor): New test case.
5129 * tests/input.at (Default %printer and %destructor redeclared):
5130 Extend to check that multiple occurrences of %symbol-default in a
5131 single %destructor/%printer declaration is an error.
5132 (Per-type %printer and %destructor redeclared, Unused values with
5133 per-type %destructor): New test cases.
5134
5135 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5136
5137 Require default %destructor/%printer to be declared using
5138 %symbol-default instead of an empty symbol list, and start working on
5139 new per-type %destructor/%printer. Discussed at
5140 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5141 * NEWS (2.3+): Add %symbol-default to example.
5142 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5143 (Table of Symbols): Add entry for %symbol-default.
5144 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5145 (generic_symlist, generic_symlist_item): New nonterminals for creating
5146 a list in which each item is a symbol, semantic type, or
5147 %symbol-default.
5148 (grammar_declaration): Use generic_symlist in %destructor and %printer
5149 declarations instead of symbols.1 or an empty list.
5150 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5151 for changes to symbol_list.
5152 * src/reader.c: Update for changes to symbol_list.
5153 * src/scan-code.l: Likewise.
5154 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5155 * src/symlist.c, src/symlist.h: Extend such that a list node may
5156 represent a semantic type or a %symbol-default in addition to just an
5157 ordinary symbol. Add switched functions for setting %destructor's and
5158 %printer's.
5159 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5160 %destructor/%printer declarations.
5161
5162 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5163
5164 Whether the default %destructor/%printer applies to a particular symbol
5165 isn't a question of whether the user *declares* that symbol (in %token,
5166 for example). It's a question of whether the user by any means
5167 *defines* the symbol at all (by simply using a char token, for
5168 example). $end is defined by Bison whereas any other token with token
5169 number 0 is defined by the user. The error token is always defined by
5170 Bison regardless of whether the user declares it with %token, but we
5171 may one day let the user define error as a nonterminal instead.
5172 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5173 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5174 the meaning of "user-defined".
5175 * tests/actions.at (Default %printer and %destructor for user-declared
5176 end token): Rename to...
5177 (Default %printer and %destructor for user-defined end token): ...
5178 this.
5179
5180 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5181 computation of whether to apply the default, don't maintain a list of
5182 every Bison-defined symbol. Instead, just check for a first character
5183 of '$', which a user symbol cannot have, and check for the error token.
5184
5185 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5186
5187 Don't apply the default %destructor or %printer to the error token,
5188 $undefined, or $accept. This change fits the general rule that the
5189 default %destructor and %printer are only for user-declared symbols,
5190 and it solves several difficulties that are described in the new test
5191 cases listed below.
5192 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5193 * tests/actions.at (Default %printer and %destructor are not for error
5194 or $undefined, Default %printer and %destructor are not for $accept):
5195 New test cases.
5196
5197 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5198
5199 Allow %start after the first rule.
5200 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5201 when parsing the first rule.
5202 (check_and_convert_grammar): Search for it here after all grammar
5203 declarations have been parsed. Skip midrules, which have dummy LHS
5204 nonterminals.
5205 * src/symtab.c (symbol_is_dummy): New function.
5206 * src/symtab.h (symbol_is_dummy): Declare it.
5207 * tests/input.at (%start after first rule): New test.
5208
5209 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5210
5211 Redo some of the previous commit: add back the ability to use
5212 non-aliased/undeclared string literals since it might be useful to
5213 those declaring %token-table.
5214 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5215 commit: don't worry about complaints from symbols_pack.
5216 * src/symtab.c (symbol_new, symbol_class_set,
5217 symbol_check_alias_consistency): Undo changes in previous commit: count
5218 each string literal as a new symbol and token, assign it a symbol
5219 number, and don't complain about non-aliased string literals.
5220 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5221 and token counts but does still set aliased tokens to the same number,
5222 symbol_pack_processor now leaves empty slots in the symbols array.
5223 Remove those slots.
5224 * tests/regression.at (Undeclared string literal): Remove test case
5225 added in previous commit since non-aliased string literals are allowed
5226 again.
5227 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5228 remove unnecessary string literal declarations.
5229 * tests/sets.at (Firsts): Likewise.
5230
5231 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5232
5233 Don't allow an undeclared string literal, but allow a string literal to
5234 be used before its declaration.
5235 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5236 symbols_pack complained.
5237 * src/symtab.c (symbol_new): Don't count a string literal as a new
5238 symbol.
5239 (symbol_class_set): Don't count a string literal as a new token, and
5240 don't assign it a symbol number since symbol_make_alias does that.
5241 (symbol_make_alias): It's not necessary to decrement the symbol and
5242 token counts anymore. Don't assume that an alias declaration occurs
5243 before any uses of the identifier or string, and thus don't assert that
5244 one of them has the highest symbol number so far.
5245 (symbol_check_alias_consistency): Complain if there's a string literal
5246 that wasn't declared as an alias.
5247 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5248 symbol_pack asserts that every token has been assigned a symbol number
5249 although undeclared string literals have not.
5250 * tests/regression.at (String alias declared after use, Undeclared
5251 string literal): New test cases.
5252 (Characters Escapes, Web2c Actions): Declare string literals as
5253 aliases.
5254 * tests/sets.at (Firsts): Likewise.
5255
5256 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5257
5258 In the grammar scanner, STRING_FINISH unclosed constructs and return
5259 them to the parser in order to improve error messages.
5260 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5261 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5262 * tests/input.at (Unclosed constructs): New test case.
5263 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5264 seen.
5265
5266 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5267 unused global.
5268
5269 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5270
5271 Handle string aliases for character tokens correctly.
5272 * src/symtab.c (symbol_user_token_number_set): If the token has an
5273 alias, check and set its alias's user token number instead of its own,
5274 which is set to indicate the alias. Previously, every occurrence of
5275 the character token in the grammar overwrote that alias indicator with
5276 the character code.
5277 * tests/input.at (String aliases for character tokens): New test.
5278
5279 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5280
5281 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5282
5283 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5284
5285 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5286 to prevent failures when building on older platforms.
5287 Check for autopoint failure.
5288 Set XGETTEXT_OPTIONS to values that check for C format strings,
5289 so that translators are warned about them (this also helps
5290 prevent core dumps).
5291
5292 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5293 function, since it simplifies our code a bit.
5294
5295 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5296 rather than -W, so we don't get bogus warnings about sign comparisons.
5297 Add -Wpointer-arith, since that warning is useful (it reports code
5298 that does not conform to C89 and that some compilers reject).
5299 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5300 since it's no longer needed.
5301
5302 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5303
5304 Clean up scanners a bit.
5305 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5306 definitions so gcc won't warn when obstack_for_string is unused.
5307 * src/scan-code.l: config.h and system.h are already #include'd by
5308 scan-code-c.c, so get rid of them here.
5309 * src/scan-gram.l: Likewise.
5310 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5311 definitions rather than duplicating the rest of it.
5312 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5313
5314 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5315
5316 Suppress signed/unsigned comparison warnings for yycheck.
5317 * data/c.m4 (b4_safest_int_type): New macro.
5318 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5319 a signed int type, cast it to b4_safest_int_type first.
5320 * data/yacc.c: Likewise.
5321 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5322 also overwritten.
5323
5324 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5325
5326 * doc/bison.texinfo: Fix some typos.
5327
5328 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5329
5330 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5331 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5332
5333 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5334 the latest gnulib does this a different way.
5335 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5336 translation was patched, so stop omitting it.
5337
5338 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5339
5340 Enable declaration of default %printer/%destructor. Make the parser
5341 use these for all user-declared grammar symbols for which the user does
5342 not declare a specific %printer/%destructor. Thus, the parser uses it
5343 for token 0 if the user declares it but not if Bison generates it as
5344 $end. Discussed starting at
5345 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5346 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5347 and
5348 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5349 * NEWS (2.3+): Mention.
5350 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5351 declare a %destructor for a mid-rule's semantic value. It's just
5352 impossible to declare one specific to it.
5353 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5354 code. Describe default %destructor form.
5355 * src/parse-gram.y (grammar_declaration): Parse default
5356 %printer/%destructor declarations.
5357 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5358 and symbol_destructor_location_get rather than accessing the destructor
5359 and destructor_location members of struct symbol.
5360 (symbol_printers_output): Likewise but for %printer's.
5361 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5362 again.
5363 * src/symtab.c (default_destructor, default_destructor_location,
5364 default_printer, default_printer_location): New static global
5365 variables to record the default %destructor and %printer.
5366 (symbol_destructor_get, symbol_destructor_location_get,
5367 symbol_printer_get, symbol_printer_location_get): New functions to
5368 compute the appropriate %destructor and %printer for a symbol.
5369 (default_destructor_set, default_printer_set): New functions to set the
5370 default %destructor and %printer.
5371 * src/symtab.h: Prototype all those new functions.
5372 * tests/actions.at (Default %printer and %destructor): New test to
5373 check that the right %printer and %destructor are called, that they're
5374 not called for $end, and that $$ and @$ work correctly.
5375 (Default %printer and %destructor for user-declared end token): New
5376 test to check that the default %printer and %destructor are called for
5377 a user-declared end token.
5378 * tests/input.at (Default %printer and %destructor redeclared, Unused
5379 values with default %destructor): New tests to check related grammar
5380 warnings and errors.
5381
5382 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5383
5384 Clean up handling of %destructor for the end token (token 0).
5385 Discussed starting at
5386 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5387 and
5388 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5389
5390 Make the skeletons consistent in how they pop the end token and invoke
5391 its %destructor.
5392 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5393 state, which has token number 0, since this would invoke the
5394 %destructor for the end token.
5395 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5396 until after shifting the end token, or else it won't be popped.
5397 * data/yacc.c (yyparse): Likewise.
5398
5399 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5400 it's the end token. Upon termination, destroy an unshifted lookahead
5401 even when it's the end token.
5402 * data/lalr1.cc (yy::parser::parse): Likewise.
5403 * data/yacc.c (yyparse): Likewise.
5404
5405 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5406 value warnings for the end token when the user gives the end token a
5407 %destructor.
5408
5409 * tests/actions.at (Printers and Destructors): Test all the above.
5410
5411 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5412
5413 Update to latest gnulib and gettext versions.
5414 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5415 Add fopen-safer.
5416 (gnulib_files): Add m4/warning.m4. Don't worry about files
5417 overwritten by autopoint.
5418 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5419 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5420 rejects them.
5421 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5422 so that we can remove the intl files at a better time.
5423 (intl_files_to_remove): Remove aclocal.m4, since it gets
5424 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5425 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5426 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5427 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5428 Remove datarootdir hack; no longer needed.
5429 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5430 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5431 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5432 strdup.h.
5433 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5434 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5435
5436 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5437
5438 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5439 it with --assume-autoconf='latest-stable'.
5440
5441 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5442
5443 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5444 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5445 YYSTYPE' and `{'.
5446 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5447 those from muscle_tab.c since the old ones are misleading.
5448
5449 2006-07-13 Akim Demaille <akim@epita.fr>
5450
5451 Support %define "KEY" {VALUE}.
5452 * src/scan-code.h, src/scan-code.l (translate_action)
5453 (translate_rule_action, translate_symbol_action, translate_code):
5454 Return char *, not const char *.
5455 * src/parse-gram.y (declaration): Rename as...
5456 (prologue_declaration): this.
5457 (string_content): Remove this nonterminal, use STRING.
5458 (braceless, content, content.opt): New nonterminal.
5459 Use them.
5460 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5461 as value.
5462 * src/scan-gram.l (getargs.h): Don't include it.
5463
5464 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5465
5466 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5467 rather than a for-loop that declares a local bool variable. This
5468 should work around a compatibility problem with a Cray x1e C++
5469 compiler reported by Hung Nguyen in
5470 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5471 The for-loop was introduced in the 2004-11-17 change but I don't
5472 know why it was needed.
5473
5474 2006-07-12 Akim Demaille <akim@epita.fr>
5475
5476 * data/c.m4: Comment changes.
5477
5478 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5479
5480 * src/complain.c (error_message, ERROR_MESSAGE): New.
5481 To factor...
5482 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5483 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5484
5485 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5486
5487 * NEWS: Instead of %union, you can define and use your own union type
5488 YYSTYPE if your grammar contains at least one <type> tag.
5489 Your YYSTYPE need not be a macro; it can be a typedef.
5490 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5491 (Union Decl, Decl Summary): Document this.
5492 * data/glr.c (YYSTYPE): Implement this.
5493 * data/glr.cc (YYSTYPE): Likewise.
5494 * data/lalr1.cc (YYSTYPE): Likewise.
5495 * data/yacc.c (YYSTYPE): Likewise.
5496 * src/output.c (prepare): Output tag_seen_flag.
5497 * src/parse-gram.y (declaration, grammar_declaration):
5498 Use 'union_seen' rather than 'typed' to determine whether
5499 %union has been seen, since grammars can now be typed without
5500 %union.
5501 (symbol_declaration, type.opt, symbol_def):
5502 Keep track of whether a tag has been seen.
5503 * src/reader.c (union_seen, tag_seen): New vars.
5504 (typed): remove.
5505 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5506 * src/scan-code.l (untyped_var_seen): New variable.
5507 (handle_action_dollar): Adjust to above changes.
5508 (handle_action_dollar, handle_action_at):
5509 Improve overflow checking for outlandish numbers.
5510 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5511 avoid new diagnostics generated by above changes.
5512 * tests/regression.at (YYSTYPE typedef): Add test to check
5513 for type tags without %union.
5514
5515 * src/symlist.c (symbol_list_length): Return int, not unsigned
5516 int, since callers expect int. This may need to get revisited
5517 once we have proper integer overflow checking.
5518
5519 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5520 object is now static.
5521
5522 * src/getargs.c (flags_argmatch): Return void, not int,
5523 to pacify ./configure --enable-gcc-warnings.
5524
5525 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5526 since last_string is already defined to FLEX_PREFIX (last_string).
5527
5528 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5529
5530 Implement --warnings/-W.
5531 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5532 replaced by...
5533 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5534 Adjust callers.
5535 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5536 (warnings_args, warnings_types): New.
5537 (getargs, short_options, long_options): Accept -W/--warnings.
5538 Sort the options by alphabetical order, upper case letter right
5539 before its lower case.
5540
5541 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5542
5543 Change %merge result type clash warnings to errors. Discussed at
5544 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5545 * src/reader.c (record_merge_function_type): Use complain_at.
5546 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5547 declared later): Update test case results.
5548
5549 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5550
5551 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5552 to be in alphabetical order.
5553 (trace_args): Spelling fixes.
5554
5555 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5556
5557 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5558 so they don't collide with user-defined macros.
5559 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5560 this was never guaranteed, and now that we're using gnulib stdint,
5561 which defines int_fast16_t to long int, the problem is exposed.
5562
5563 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5564
5565 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5566 need the full POSIX semantics (and weren't implementing them
5567 anyway).
5568
5569 Adjust to Autoconf 2.60 and today's gnulib.
5570 * bootstrap (gnulib_modules): Add stdint.
5571 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5572 no longer copies it.
5573 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5574 since stdint needs the former and wcwidth (which is now required
5575 by mbswidth) needs the latter.
5576 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5577 work around a compatibility glitch between gettext 0.14.6 and
5578 Autoconf 2.60.
5579 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5580 Do not check for uintptr_t, since new stdint module does the right
5581 thing.
5582 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5583 Add stdint.h, stdint_.h, wcwidth.h.
5584 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5585 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5586 stdint.m4, wchar_t.m4, wcwidth.m4.
5587 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5588 usual order for ../lib/*.h files.
5589 (file_name_split): Use last_component, not base_name, to adjust
5590 to gnulib changes.
5591 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5592 for ../lib/*.h files.
5593 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5594 Define unconditionally, since we now assume the stdint module.
5595 * src/scan-skel.l: Include <dirname.h>.
5596 (BASE_QPUTS): Use last_component, not base_name.
5597 * src/system.h: Include <unlocked-io.h> in the usual order
5598 for ../lib/*.h files. Include <stdint.h> unconditionally,
5599 since we now use the stdint module.
5600 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5601 HAVE_UINTPTR_T, since we now use the stdint module.
5602 (base_name): Remove decl, since files now include <dirname.h>
5603 to get the decl.
5604
5605 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5606
5607 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5608 New, default to 1.
5609 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5610 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5611 default.
5612 * tests/calc.at: Adjust.
5613
5614 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5615
5616 * data/c.m4 (b4_basename): New.
5617 (b4_syncline): Also output the location of its invocation (from
5618 the skeleton).
5619 (b4_user_action, b4_define_user_action, b4_user_actions)
5620 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5621 (b4_user_stype): New.
5622 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5623
5624 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5625
5626 In the grammar file, the first column is 1 not 0 on the first line as
5627 on every other line.
5628 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5629 * tests/input.at (Torturing the Scanner): Update output.
5630
5631 * src/scan-gram.l (scanner_cursor): Declare it static.
5632
5633 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5634
5635 In warnings, say "previous declaration" rather than "first
5636 declaration".
5637 * src/symtab.c (redeclaration): Do that here.
5638 * src/reader.c (record_merge_function_type): In the case of a result
5639 type clash, report the previous declaration rather than the very first
5640 one in the grammar file.
5641 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5642 declared later): Add a third declaration to check this behavior.
5643 * tests/input.at (Incompatible Aliases): Update output.
5644
5645 2006-06-27 Akim Demaille <akim@epita.fr>
5646
5647 * doc/Doxyfile.in: New.
5648 * doc/Makefile.am: Use it.
5649 * src/lalr.h, src/symtab.h: Initial doxygenation.
5650
5651 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5652
5653 Don't miss %merge result type warnings just because the LHS types are
5654 declared after the %merge. This continues the effort of the previous
5655 patch.
5656 * src/reader.c (get_merge_function): Don't set the merger type yet.
5657 (record_merge_function_type): New function for setting the merger type
5658 and checking for clashes.
5659 (grammar_current_rule_merge_set): Set the location of the %merge for
5660 the current rule.
5661 (packgram): Invoke record_merge_function_type for each rule now that
5662 all symbol type declarations have been parsed.
5663 * src/reader.h (merger_list.type_declaration_location): New member
5664 storing the location of the first %merge from which the type for this
5665 merging function was derived.
5666 * src/symlist.h (symbol_list.merger_declaration_location): New member
5667 storing the location of a rule's %merge, if any.
5668 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5669 declared later): New test to catch the error fixed by the above patch.
5670
5671 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5672
5673 Get action warnings (grammar_rule_check) right even when symbol
5674 declarations appear after the rules. Discussed at
5675 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5676 and
5677 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5678 Don't mistake the type of $$ in a midrule to be that of its parent
5679 rule's $$.
5680 * src/reader.c (grammar_current_rule_end): Don't invoke
5681 grammar_rule_check yet since not all symbol declarations may have been
5682 parsed yet.
5683 (grammar_midrule_action): Likewise.
5684 Don't record whether the midrule's $$ has been used yet since actions
5685 haven't been translated yet.
5686 Record the midrule's parent rule and its RHS index within the parent
5687 rule.
5688 (grammar_current_rule_action_append): Don't translate the action yet
5689 since not all symbol declarations may have been parsed yet and, thus,
5690 warnings about types for $$, $n, @$, and @n can't be reported yet.
5691 (packgram): Translate the action and invoke grammar_rule_check now that
5692 all symbol declarations have been parsed.
5693 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5694 after parsing the entire grammar file, the symbol list here in the case
5695 of a midrule is actually the midrule's empty RHS, so reference its
5696 parent rule's RHS where necessary.
5697 On the other hand, now that you can already know it's a midrule, you
5698 aren't forced to think $$ has the same type as its parent rule's $$.
5699 (handle_action_at): In the case of a midrule, reference the parent rule
5700 where necessary.
5701 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5702 members.
5703 (symbol_list_length): Now that this is invoked after all rules have
5704 been parsed, a NULL symbol (rather than a NULL symbol list node)
5705 terminates a rule. symbol_list_print already does this correctly.
5706 * src/symlist.h (symbol_list.midrule_parent_rule,
5707 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5708 remember their relationships with their parents.
5709 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5710 fixed by the above patch.
5711 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5712 implementing...
5713 (Unused values): ... this old test case and...
5714 (Unused values before symbol declarations): ... this new test case.
5715 This one is the same as `Unused values' except that all symbol
5716 declarations appear after the rules in order to catch the rest of the
5717 errors fixed by the above patch.
5718
5719 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5720
5721 More cleanup.
5722 * src/reader.c (current_rule): Declare it static since it's no longer
5723 used outside this file.
5724 (grammar_current_rule_action_append): Remove redundant arguments from
5725 translate_rule_action invocation.
5726 * src/reader.h (current_rule): Remove this unused extern.
5727 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5728 * src/scan-code.l (translate_rule_action): Likewise.
5729
5730 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5731
5732 Clean up yesterday's patch.
5733 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5734 to...
5735 * src/reader.c (grammar_current_rule_action_append): ... here for
5736 consistency with grammar_current_rule_symbol_append.
5737 * tests/regression.at (Braced code in declaration in rules section):
5738 Make yyerror and yylex static as usual.
5739
5740 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5741
5742 Fix bug that mistakes braced code in a declaration in the rules section
5743 to be a rule action. Mentioned at
5744 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5745 * src/scan-gram.l: Move midrule action detection from the start of the
5746 scanning of any braced code to...
5747 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5748 action. For readability, use $2 and @2 rather than the equivalent
5749 global variables.
5750 * tests/regression.at (Braced code in declaration in rules section):
5751 New test to catch the error fixed by the above patch.
5752
5753 Work on code readability some.
5754 * src/scan-code.l (current_rule): Get rid of this misleading and
5755 redundant declaration: it's actually extern'ed in reader.h.
5756 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5757 translate_action): Add a rule argument and use it instead of the global
5758 current_rule.
5759 (translate_rule_action): This already receives current_rule through an
5760 argument, so pass it on to translate_action instead of assigning
5761 current_rule to current_rule.
5762 (translate_symbol_action, translate_code): Pass rule = NULL to
5763 translate_action.
5764
5765 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5766
5767 Rename %before-definitions to %start-header and %after-definitions to
5768 %end-header. Don't use these declarations to separate pre-prologue
5769 blocks from post-prologue blocks. Add new order-independent
5770 declarations %before-header and %after-header as alternatives to the
5771 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5772 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5773 * NEWS (2.3+): Update for these changes.
5774 * data/glr.c (b4_before_definitions): Update to...
5775 (b4_start_header): ... this.
5776 (b4_after_definitions): Update to...
5777 (b4_end_header): ... this.
5778 * data/glr.cc: Likewise.
5779 * data/lalr1.cc: Likewise.
5780 * data/yacc.c: Likewise.
5781 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5782 prologue blocks with %*-header declarations.
5783 (Calc++ Parser): Likewise.
5784 (Decl Summary): Update names.
5785 (Table of Symbols): Update description.
5786 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5787 (PERCENT_END_HEADER): ... this.
5788 (PERCENT_BEFORE_DEFINITIONS): Update to...
5789 (PERCENT_START_HEADER): ... this.
5790 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5791 (declaration): Update token names and m4 macro names.
5792 When parsing %end-header and %start-header, invoke translate_code
5793 before muscle_code_grow, and no longer set global booleans to remember
5794 whether these declarations have been seen.
5795 Parse new %after-header and %before-header.
5796 * src/reader.c (before_definitions, after_definitions): Remove.
5797 (prologue_augment): Accept a new bool argument to specify whether to
5798 augment the pre-prologue or post-prologue.
5799 * src/reader.h (before_definitions, after_definitions): Remove these
5800 extern's.
5801 (prologue_augment): Add new bool argument.
5802 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5803 (PERCENT_END_HEADER): ... this.
5804 (PERCENT_BEFORE_DEFINITIONS): Update to...
5805 (PERCENT_START_HEADER): ... this.
5806 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5807 * tests/actions.at (Printers and Destructors): Update names.
5808
5809 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5810
5811 Add comparison operators for C++ location classes. Discussed at
5812 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5813 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5814 declaration indicating whether filename_type has an operator==. If
5815 filename_type is `std::string', it defaults to `1', `0' otherwise.
5816 * data/location.cc: Iff b4_define_location_comparison is `1', add
5817 operator== and operator!= for class position and for class location.
5818
5819 Some minor fixes.
5820 * src/scan-action.l: Remove unused file.
5821 * src/symtab.c (symbol_printer_set): Use printer_location not
5822 destructor_location.
5823 * src/symtab.h (struct symbol): Replace incorrect source comment for
5824 printer members.
5825 * tests/input.at (Incompatible Aliases): Update output with correct
5826 printer location.
5827
5828 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5829
5830 Don't put the pre-prologue in the header file. For the yacc.c code
5831 file and the glr.c header and code files, move the pre-prologue before
5832 the token definitions. Add new %before-definitions and
5833 %after-definitions to declare code that will go in both the header file
5834 and code file. Discussed at
5835 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5836 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5837 and
5838 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5839 * NEWS (2.3+): Describe these changes.
5840 * data/glr.c (b4_pre_prologue): Move from within to before...
5841 (b4_shared_declarations): ... this.
5842 Add new b4_before_definitions before b4_token_enums.
5843 Add new b4_after_definitions at the end.
5844 * data/glr.cc (b4_pre_prologue): Replace with...
5845 (b4_before_definitions): ... this in the header file.
5846 (b4_after_definitions): New near the end of the header file.
5847 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5848 code file right before including the header file.
5849 (b4_before_definitions): New in the previous position of
5850 b4_pre_prologue in the header file.
5851 (b4_after_definitions): New near the end of the header file.
5852 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5853 (b4_token_enums_defines): In the code file, move to right before
5854 YYSTYPE for consistency with the header file.
5855 (b4_before_definitions): New right before b4_token_enums_defines in
5856 both the header and code file.
5857 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5858 header and code file.
5859 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5860 of prologues for %union dependencies.
5861 (Decl Summary): In %defines description, mention the effect of
5862 %before-definitions and %after-definitions on the header file.
5863 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5864 than in the pre-prologue so that make check succeeds.
5865 (Table of Symbols): Add entries for %before-definitions and
5866 %after-definitions.
5867 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5868 %before-definitions.
5869 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5870 (declaration): Parse those declarations and append to
5871 b4_before_definitions and b4_after_definitions, respectively.
5872 * src/reader.c (before_definitions, after_definitions): New bools to
5873 track whether those declarations have been seen.
5874 (prologue_augment): Add to the post-prologue if %union,
5875 %before-definitions, or %after-definitions has been seen.
5876 * src/reader.h (before_definitions, after_definitions): New extern's.
5877 * src/scan-gram.l: Scan the new declarations.
5878 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5879 prologue block in a %before-definitions or a %after-definitions based
5880 on whether the %union is declared.
5881 * tests/regression.at (Early token definitions with --yacc, Early token
5882 definitions without --yacc): Move tests for token definitions into the
5883 post-prologue since token names are no longer defined in the
5884 pre-prologue.
5885
5886 2006-06-20 Akim Demaille <akim@epita.fr>
5887
5888 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5889 (symbol_get): Use it.
5890 * src/parse-gram.y: Use it.
5891
5892 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5893
5894 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5895 build succeeds when configured with --enable-gcc-warnings.
5896
5897 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5898
5899 * src/parse-gram.y (char_name): New function.
5900 (CHAR, STRING, string_content): For %printer, properly escape.
5901 (ID): Prefer fputs to fprintf.
5902 (id): Reindent to be consistent with other rules.
5903 Properly quote char.
5904
5905 The Translation Project changed its way of publishing translations
5906 to maintainers. I haven't received any responses to my request
5907 for supporting the old way, or for documenting the new way. I
5908 have modified 'bootstrap' to use screen scraping
5909 (in this case, HTML scraping). This is unreliable and inelegant,
5910 but I don't see any better way. Yuck.
5911 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5912 (get_translations): New function, which uses HTML scraping to
5913 deduce locations of latest translations.
5914 Use this function to grab both bison and bison-runtime .po files.
5915 Don't bother priming the pump for the runtime-po domain any more,
5916 as it's now translated better than bison is.
5917
5918 2006-06-19 Akim Demaille <akim@epita.fr>
5919
5920 * src/scan-gram.l: No longer "parse" things after `%union' until
5921 `{'. Rather, return a single "%union" token.
5922 No longer make symbols: return strings, and leave the conversion
5923 to symbols to the parser.
5924 (SC_PRE_CODE, token_type): Remove.
5925 * src/parse-gram.y (%union): New field `character'.
5926 Sort tokens.
5927 (CHAR): New token.
5928 (ID, ID_COLON): Now that the scanner no longer makes them
5929 identifiers, adjust all uses to invoke symbol_get.
5930 (id_colon): New, wraps the conversion from string to symbol.
5931 (%union): Accept a possible union_name.
5932 (symbol): Now can be a char.
5933 * data/c.m4 (b4_union_name): Leave a default value.
5934 * data/glr.c, data/yacc.c: Use it.
5935
5936 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5937
5938 For associating token numbers with token names for "yacc.c", don't use
5939 #define statements unless `--yacc' is specified; always use enum
5940 yytokentype. Most important discussions start at:
5941 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5942 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5943 and
5944 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5945 * NEWS (2.3+): Mention.
5946 * data/c.m4 (b4_yacc_if): New.
5947 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5948 token #define's.
5949 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5950 on token name definitions.
5951 * src/getargs.c (usage): Capitalize `Yacc' in English.
5952 * src/output.c (prepare): Define b4_yacc_flag.
5953 * tests/regression.at (Early token definitions): Test that tokens names
5954 are defined before the pre-prologue not just before the post-prologue.
5955 Remove this test case and copy to...
5956 (Early token definitions with --yacc): ... this to test #define's.
5957 (Early token definitions without --yacc): ... and this to test enums.
5958
5959 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5960
5961 * NEWS: Reword the post-2.3 change to not be so optimistic about
5962 removing the old "look-ahead" spelling.
5963 Update previous look-ahead/lookahead change reports.
5964 * REFERENCES: look-ahead -> lookahead (since that's
5965 what he actually wrote).
5966 * doc/refcard.tex: look ahead -> lookahead,
5967 look-ahead -> lookahead
5968
5969 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5970
5971 For consistency, use `lookahead' instead of `look-ahead' or
5972 `look_ahead'. Discussed starting at
5973 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5974 and then at
5975 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5976 * NEWS: For the next release, note the change to `--report'.
5977 * TODO, doc/bison.1: Update English.
5978 * doc/bison.texinfo: Update English.
5979 (Understanding Your Parser, Bison Options): Document as
5980 `--report=lookahead' rather than `--report=look-ahead'.
5981 * src/conflicts.c: Update English in comments.
5982 (lookahead_set): Rename from look_ahead_set.
5983 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5984 (resolve_sr_conflict): Rename local look_ahead_tokens to
5985 lookahead_tokens, and update other uses.
5986 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5987 count_rr_conflicts, conflicts_free): Update uses.
5988 * src/getargs.c (report_args): Move "lookahead" before alternate
5989 spellings.
5990 (report_types): Update uses.
5991 (usage): For `--report' usage description, state `lookahead' spelling
5992 rather than `look-ahead'.
5993 * src/getargs.h (report.report_lookahead_tokens): Rename from
5994 report_look_ahead_tokens.
5995 * src/lalr.c: Update English in comments.
5996 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5997 (state_lookahead_tokens_count): Rename from
5998 state_look_ahead_tokens_count.
5999 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6000 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6001 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6002 Update other uses.
6003 Update English in output.
6004 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6005 * src/print.c: Update English in comments.
6006 (lookahead_set): Rename from look_ahead_set.
6007 (print_reduction): Rename argument lookahead_token from
6008 look_ahead_token.
6009 (print_core, state_default_rule, print_reductions, print_results):
6010 Update uses.
6011 * src/print_graph.c: Update English in comments.
6012 (print_core): Update uses.
6013 * src/state.c: Update English in comments.
6014 (reductions_new): Update uses.
6015 (state_rule_lookahead_tokens_print): Rename from
6016 state_rule_look_ahead_tokens_print, and update other uses.
6017 * src/state.h: Update English in comments.
6018 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6019 (state_rule_lookahead_tokens_print): Rename from
6020 state_rule_look_ahead_tokens_print.
6021 * src/tables.c: Update English in comments.
6022 (conflict_row, action_row): Update uses.
6023 * tests/glr-regression.at
6024 (Incorrect lookahead during deterministic GLR,
6025 Incorrect lookahead during nondeterministic GLR): Rename
6026 print_look_ahead to print_lookahead.
6027 * tests/torture.at: Update English in comments.
6028 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6029 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6030 (Many lookahead tokens): Update uses.
6031 * data/glr.c: Update English in comments.
6032 * lalr1.cc: Likewise.
6033 * yacc.c: Likewise.
6034 * src/conflicts.h: Likewise.
6035 * src/lalr.h: Likewise.
6036 * src/main.c: Likewise.
6037 * src/output.c: Likewise.
6038 * src/parse-gram.c: Likewise.
6039 * src/tables.h: Likewise.
6040 * tests/calc.at: Likewise.
6041
6042 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6043
6044 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6045
6046 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6047
6048 * TODO: Add request from Nelson H. F. Beebe to be able to install
6049 Bison without installing the yacc script.
6050
6051 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6052
6053 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6054 and yytext if they're already #define'd.
6055 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6056 * src/scan-code-c.c: ... here.
6057 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6058 <config.h>.
6059
6060 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6061
6062 Get Bison to build again when configured with --enable-gcc-warnings.
6063 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6064 missing #include's.
6065 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6066 loc argument as it shadows a global.
6067 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6068 invocation.
6069
6070 * src/.cvsignore: Add scan-code.c.
6071
6072 2006-06-07 Akim Demaille <akim@epita.fr>
6073
6074 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6075 to...
6076 * src/scan-code.l: here.
6077 * tests/input.at (Torturing the Scanner): Fix another location
6078 error.
6079
6080 2006-06-07 Akim Demaille <akim@epita.fr>
6081
6082 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6083
6084 2006-06-06 Akim Demaille <akim@epita.fr>
6085
6086 Extract the parsing of user actions from the grammar scanner.
6087 As a consequence, the relation between the grammar scanner and
6088 parser is much simpler. We can also split "composite tokens" back
6089 into simple tokens.
6090 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6091 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6092 rename as...
6093 * src/location.h, src/location.c (add_column_width)
6094 (location_compute): these.
6095 Fix the column count: the initial column is 0.
6096 (location_print): Be robust to ending column being 0.
6097 * src/location.h (boundary_set): New.
6098 * src/main.c: Adjust to scanner_free being renamed as
6099 gram_scanner_free.
6100 * src/output.c: Include scan-code.h.
6101 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6102 Use boundary_set.
6103 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6104 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6105 which is now, again, a separate token.
6106 Adjust all dependencies.
6107 Whereever actions with $ and @ are used, use translate_code.
6108 (action): Remove this nonterminal which is now useless.
6109 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6110 (grammar_current_rule_action_append): Use translate_code.
6111 (packgram): Bound check ruleno, itemno, and rule_length.
6112 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6113 (last_string, last_braced_code_loc, max_left_semantic_context)
6114 (scanner_initialize, scanner_free, scanner_last_string_free)
6115 (gram_out, gram_lineno, YY_DECL_): Move to...
6116 * src/scan-gram.h: this new file.
6117 (YY_DECL): Rename as...
6118 (GRAM_DECL): this.
6119 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6120 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6121 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6122 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6123 Move these declarations, and...
6124 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6125 these to...
6126 * src/flex-scanner.h: this new file.
6127 * src/scan-gram.l (rule_length, rule_length_overflow)
6128 (increment_rule_length): Remove.
6129 (last_braced_code_loc): Rename as...
6130 (gram_last_braced_code_loc): this.
6131 Adjust to the changes of the parser.
6132 Move all the handling of $ and @ into...
6133 * src/scan-code.l: here.
6134 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6135 (handle_action_dollar, handle_action_at): Move to...
6136 * src/scan-code.l: here.
6137 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6138 scan-code.h, scan-code-c.c, scan-gram.h.
6139 (EXTRA_bison_SOURCES): Add scan-code.l.
6140 (BUILT_SOURCES): Add scan-code.c.
6141 (yacc): Be robust to white spaces.
6142
6143 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6144 * tests/regression.at: Adjust the column numbers.
6145 * tests/regression.at: Adjust the error message.
6146
6147 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6148
6149 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6150 Use Akim's wording from
6151 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6152
6153 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6154
6155 Between Bison releases, manually append `+' to the previous Bison
6156 release number, and use that as a signal to automatically print the
6157 ChangeLog's CVS Id keyword from --version. Discussed starting at
6158 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6159 * ChangeLog: Add Id header.
6160 * configure.ac (AC_INIT): Append `+' to `2.3'.
6161 * src/.cvsignore: Add revision.c.
6162 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6163 (BUILT_SOURCES): Add revision.c.
6164 (revision.c): New target rule. This file defines a new global variable
6165 named revision. It initializes it with either the Id from ChangeLog
6166 or, if VERSION doesn't contain `+', with the empty string.
6167 * src/getargs.c (version): Print the value of revision.
6168 * src/revision.h: Extern revision.
6169
6170 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6171
6172 * NEWS: Version 2.3.
6173 * configure.ac (AC_INIT): Likewise.
6174
6175 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6176
6177 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6178 with no arguments, not as an object-like macro. This is for
6179 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6180 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6181 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6182 Document this.
6183
6184 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6185
6186 * src/getargs.c (usage): Back out yesterday's modification of the
6187 --help output so that we don't have to wait for translation before
6188 releasing 2.3.
6189
6190 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6191
6192 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6193 Problem reported by Akim Demaille.
6194
6195 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6196
6197 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6198
6199 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6200
6201 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6202 generated source code. Problem reported by Frans Englich in
6203 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6204
6205 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6206
6207 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6208 shell, not within 'make', so that 'make' by an ordinary builder
6209 (using GNU make) does not worry about configuring gzip. This also
6210 works around a bug reported independently by Keith Thompson and by
6211 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6212 stderr rather than stdout, messing up the build logs.
6213
6214 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6215
6216 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6217 to make sure that YYID will never be unused. This fixes a 'make
6218 maintainer-check' failure caused by the recent changes to the 'Trivial
6219 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6220 not used.
6221 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6222
6223 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6224
6225 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6226 state before an empty RHS is always resolved here. Only the location
6227 of that state is guaranteed to be resolved, and that's enough. This
6228 fixes the remaining bug reported by Derek M. Jones in
6229 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6230 * tests/glr-regression.at (Uninitialized location when reporting
6231 ambiguity): Test the above case.
6232 Also, the embedded comments in this test case claim it checks the case
6233 of an empty RHS that has inherited the initial location. However, the
6234 corresponding LHS was already resolved, so yyresolveLocations didn't
6235 actually have reason to modify it. Fix this by forcing
6236 nondeterministic operation at the beginning of the parse.
6237
6238 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6239
6240 * data/c.m4 (b4_yy_symbol_print_generate):
6241 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6242 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6243 of the bugs reported today by Derek M Jones in
6244 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6245 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6246 defined to be a type name without parens or brackets.
6247 (Location Type): Similarly for YYLTYPE.
6248 * tests/regression.at (Trivial grammars): Put in a test for this
6249 bug that will be caught by 'make maintainer-check' (though not,
6250 alas, by 'make check' unless your compiler is picky).
6251
6252 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6253
6254 * NEWS: Version 2.2.
6255 * configure.ac (AC_INIT): Likewise.
6256
6257 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6258
6259 * data/glr.c (yyreportTree): Make room in yystates for the state
6260 preceding the RHS. This fixes the segmentation fault reported by Derek
6261 M. Jones in
6262 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6263 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6264 to the user. Reported for yyreportTree by Derek M. Jones later in the
6265 same thread.
6266 * THANKS: Add Derek M. Jones.
6267 Update my email address.
6268 Fix typo in Steve Murphy's name.
6269
6270 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6271
6272 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6273 checking against YYLAST that caused the parser to miss a potential
6274 alternative in its diagnostic.
6275 Problem reported by Maria Jose Moron Fernandez in
6276 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6277 * data/lalr1.cc (yysyntax_error_): Likewise.
6278 * data/yacc.c (yysyntax_error): Likewise.
6279 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6280 tokens, in case we run into an older C compiler.
6281 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6282 Use them to check for the off-by-one error fixed above.
6283
6284 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6285 YYSIZE_T, not size_t.
6286 * tests/regression.at (Trivial grammars): New test, to catch
6287 the error fixed by the above patch.
6288
6289 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6290
6291 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6292 scheme.
6293 Reported by Steve Murphy.
6294
6295 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6296
6297 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6298 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6299
6300 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6301
6302 Implement --trace=m4.
6303 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6304 * src/output.c (output_skeleton): When set, pass -dV to m4.
6305
6306 Factor the handling of flags in m4.
6307 * src/output.c (prepare): Rename the muscle names debug, defines,
6308 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6309 * data/c.m4: Adjust.
6310 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6311 Use b4_define_flag_if to define other b4_FLAG_if macros.
6312 (b4_location_if): As a consequence, rename as...
6313 (b4_locations_if): this, for consistency.
6314 Adjust all the skeletons.
6315
6316 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6317
6318 * etc/bench.pm: Shorten bench names.
6319
6320 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6321
6322 * src/output.h, src/output.c (error_verbose): Move to...
6323 * src/getargs.h, src/getargs.c: here.
6324 Sort the flags.
6325 Adjust dependencies.
6326
6327 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6328
6329 * data/c.m4 (b4_copyright): Put the special exception for Bison
6330 skeletons here, so we don't have to put it in each skeleton. All
6331 uses changed. Suggested by Akim Demaille. Also, wrap the
6332 copyright notice, in case it is longer than 80 columns. Replace
6333 comma by newline after title.
6334
6335 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6336
6337 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6338 incompatibility, not a bug. Mention that it wasn't fixed as of
6339 flex 2.5.33.
6340
6341 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6342
6343 * examples/extexi: Enforce the precedence of concatenation over
6344 >>.
6345 Reported by Tommy Nordgren.
6346
6347 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6348
6349 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6350 with the member "token".
6351 Reported by Martin Nylin.
6352
6353 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6354
6355 * data/glr.c: Switch to Bison 2.2 special-exception language in
6356 the copyright notice. Use more-regular format for titles and
6357 copyright notices.
6358 * data/glr.cc: Likewise.
6359 * data/location.cc: Likewise.
6360 * data/yacc.cc: Likewise.
6361 * doc/bison.texinfo (Conditions): Document this.
6362 * NEWS: likewise. Upgrade version to 2.2.
6363
6364 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6365
6366 * data/glr.cc: Remove dead code.
6367
6368 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6369
6370 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6371 that variable and the line breaks the bootstrap. Problem reported
6372 by Juan M. Guerrero.
6373
6374 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6375
6376 * doc/bison.texinfo (Multiple start-symbols): New.
6377
6378 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6379
6380 * etc/README, etc/bench.pl: New.
6381
6382 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6383
6384 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6385 rule.
6386 Reported by Mickael Labau.
6387 * tests/input.at (Torturing the Scanner): Test it.
6388
6389 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6390
6391 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6392 Problem reported by Bob Rossi.
6393
6394 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6395
6396 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6397 and didn't really work.
6398 For the index, use @ifnotinfo, not @iftex.
6399 Minor cleanups of spacing and terminology.
6400
6401 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6402
6403 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6404 of AT_NAME_PREFIX when %name-prefix is not used.
6405
6406 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6407
6408 Apply --prefix to C++ skeletons too: they change the namespace.
6409 The test suite already exercize these cases.
6410 * data/c++.m4 (b4_namespace): New.
6411 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6412 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6413 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6414 * doc/bison.texinfo: Document it.
6415 (Option Cross Key): Use @multitable in all formats. It looks
6416 nicer, even in TeX outputs.
6417 (Rules): Use the same code whatever the output type is.
6418 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6419 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6420 * tests/calc.at: Use it, instead of hard coding `yy'.
6421
6422 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6423
6424 * TODO: Remove dead items.
6425
6426 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6427
6428 * doc/FAQ: Remove, merged into...
6429 * doc/bison.texinfo (FAQ): this.
6430 * doc/Makefile.am (EXTRA_DIST): Adjust.
6431
6432 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6433
6434 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6435 even if empty.
6436 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6437 * doc/bison.texinfo (Calc++ Scanner): Use it.
6438
6439 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6440
6441 Fix two nits reported by twlevo, plus one more that I discovered.
6442
6443 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6444 this is the usual Bison style.
6445 * src/location.h (location_print): Likewise.
6446
6447 * src/reader.h (token_name): Likewise.
6448
6449 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6450
6451 Fix some nits reported by twlevo.
6452 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6453 and "POSIX". Use more-modern syntax for URLs. Mention C++
6454 and ask for Java. Don't hardwire OS version numbers. Add
6455 copyright notice.
6456 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6457 * src/conflicts.c (solved_conflicts_obstack): Now static.
6458
6459 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6460
6461 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6462 page. Say "you can use it" not "you may use it" as on the web page;
6463 we're describing capabilities not granting permission.
6464
6465 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6466
6467 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6468 shadowing warnings. Use usual patter for iterating through RHS.
6469 * tests/glr-regression.at
6470 (Uninitialized location when reporting ambiguity):
6471 Modify yylex so that it uses its argument, rather than trying
6472 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6473 const char -> char const.
6474
6475 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6476 Don't use tabs inside commands; it messes up 'ps'.
6477 Problem reported by twlevo.
6478
6479 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6480
6481 * tests/glr-regression.at (Uninitialized location when reporting
6482 ambiguity): New test case.
6483 * data/glr.c (yyresolveLocations): New function, which uses
6484 YYLLOC_DEFAULT.
6485 (yyresolveValue): Invoke yyresolveLocations before reporting an
6486 ambiguity.
6487 * doc/bison.texinfo (Default Action for Locations): Note
6488 YYLLOC_DEFAULT's usage for ambiguity locations.
6489 (GLR Semantic Actions): Cross-reference those notes.
6490
6491 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6492
6493 * tests/glr-regression.at (Leaked semantic values when reporting
6494 ambiguity): Remove unnecessary union and type declarations.
6495 (Leaked lookahead after nondeterministic parse syntax error): New test
6496 case.
6497 * data/glr.c (yyparse): Check for zero stacks remaining before
6498 attempting to shift the lookahead so that you don't lose it.
6499
6500 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6501
6502 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6503 * tests/glr-regression.at (Leaked semantic values when reporting
6504 ambiguity): New test case.
6505 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6506 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6507 now unnecessary yystackp parameter.
6508 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6509 destructors can be called.
6510
6511 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6512 in existing testcases.
6513
6514 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6515
6516 Don't leak semantic values for parent RHS when a user action cuts the
6517 parser, and clean up related code a bit.
6518 * tests/glr-regression.at (Leaked merged semantic value if user action
6519 cuts parse): Rename to...
6520 (Leaked semantic values if user action cuts parse): ... this. Add check
6521 for leaked parent RHS values.
6522 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6523 between an unresolved state (non-empty chain of semantic options) and
6524 an incomplete one (signaled by an empty chain).
6525 (yyresolveStates): Document the interface. Move all manipulation of a
6526 successfully or unsuccessfully resolved yyGLRState to...
6527 (yyresolveValue): ... here so that yyresolveValue always leaves a
6528 yyGLRState with consistent data and thus is easier to understand.
6529 Remove the yyvalp and yylocp parameters since they are always just
6530 taken from the yys parameter. When reporting a discarded merged value
6531 in debugging output, note that it is incompletely merged. Document the
6532 interface.
6533 (yyresolveAction): If resolving any of the RHS states fails, destroy
6534 them all rather than leaking them. Thus, as long as user actions are
6535 written to clean up the RHS correctly, yyresolveAction always cleans up
6536 the RHS of a semantic option. Document the interface.
6537
6538 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6539
6540 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6541 led to a segmentation fault in GNU Pascal. Problem reported
6542 by Waldek Hebisch.
6543
6544 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6545
6546 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6547 mid-rule action inside a nonterminal symbol in order to declare a
6548 destructor for its semantic value.
6549
6550 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6551
6552 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6553 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6554 __cplusplus && ! defined _STDLIB_H && !
6555 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6556 defined free))]: Include <stdlib.h> rather than rolling our own
6557 declarations of malloc and free, to avoid problems with
6558 incompatible declarations (using 'throw') C++'s stdlib.h. This
6559 should fix Debian bug 340012
6560 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6561 reported by Guillaume Melquiond.
6562
6563 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6564
6565 * NEWS: Clarify symbols versus types in unused-value warnings.
6566
6567 * configure.ac (AC_INIT): Bump version number.
6568
6569 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6570
6571 * NEWS: Version 2.1a.
6572 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6573 since C99 requires this.
6574
6575 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6576
6577 * m4/c-working.m4: New file.
6578 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6579
6580 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6581
6582 * Makefile.maint: Merge from coreutils.
6583
6584 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6585
6586 More portability fixes for problems summarized by Nelson H. F. Beebe.
6587
6588 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6589 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6590 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6591 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6592 messes up because C++ code is compiled in 32-bit mode but linked
6593 in 64-bit mode.
6594
6595 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6596
6597 More portability fixes for problems summarized by Nelson H. F. Beebe.
6598
6599 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6600 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6601
6602 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6603 nodist_PROGRAMS, since we don't need to actually compile the
6604 example if we're just doing a plain 'make'. This avoids bothering
6605 the installer unnecessarily about problems due to weird C++
6606 compilers.
6607
6608 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6609
6610 More portability fixes for problems summarized by Nelson H. F. Beebe.
6611
6612 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6613 than #include "...", and compile with -I'.'. The old method was
6614 not portable, according to Posix and the C standard, and it does
6615 not work with Sun C 5.7, where previous #line directives affect
6616 the working directory used in later #include "..." directives.
6617
6618 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6619
6620 Various DJGGP specific issues in /djgpp
6621
6622 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6623
6624 More portability fixes for problems summarized by Nelson H. F. Beebe.
6625
6626 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6627 '#include <map>' works and that you can apply ++ to iterators.
6628
6629 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6630
6631 Work around portability problems summarized by Nelson H. F. Beebe in
6632 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6633
6634 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6635 that '#include <string>' works.
6636
6637 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6638 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6639 "warning: sorry: semantics of inline function static data `const
6640 unsigned char translate_table[262]' are wrong (you'll wind up with
6641 multiple copies)".
6642
6643 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6644 or, xor to not_, and_, or_, and xor_, respectively. This works
6645 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6646 random system header somewhere that includes the equivalent of
6647 <iso646.h>.
6648
6649 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6650 -E" works; it apparently doesn't work with PathScale EKO Compiler
6651 Suite Version 2.0.
6652
6653 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6654
6655 During deterministic GLR operation, user actions should be able to
6656 influence the parse by changing yychar. To make this easier to fix and
6657 to make glr.c easier to evolve in general, don't maintain yytoken in
6658 parallel with yychar; just compute yytoken when needed.
6659 * tests/glr-regression.at (Incorrect lookahead during deterministic
6660 GLR): Check that setting yychar in a user action has the intended
6661 effect.
6662 * data/glr.c (yyGLRStack): Remove yytokenp member.
6663 (yyclearin): Don't set *yytokenp.
6664 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6665 yychar rather than *yytokenp to determine the current lookahead.
6666 Compute yytoken locally when needed.
6667 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6668 point to.
6669
6670 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6671 after `--report' documentation.
6672
6673 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6674
6675 * src/parse-gram.y (grammar_declaration): Location of printer
6676 symbol is @1, not list->location. Bug reported by twlevo.
6677 * tests/input.at (Incompatible Aliases): Adjust to above change.
6678
6679 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6680
6681 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6682 all the test at once. This makes the output easier to read in the
6683 normal case.
6684
6685 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6686 got from <http://bro-ids.org/download.html>. The bug is that
6687 when two actions appeared in succession, the second one was
6688 scanned before the first one was added to the grammar rule
6689 as a midrule action. Bison then output the incorrect warning
6690 "parse.y:905.17-906.36: warning: unused value: $3".
6691 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6692 associated with a value.
6693 (rhs): Don't invoke grammar_current_rule_action_append.
6694 (action): Invoke it here instead.
6695 * src/reader.c (grammar_midrule_action): Now extern.
6696 (grammar_current_rule_action_append): Don't invoke
6697 grammar_midrule_action; that is now the scanner's job.
6698 * src/reader.h (last_string, last_braced_code_loc):
6699 (grammar_midrule_action): New decls.
6700 * src/scan-gram.l (last_string): Now extern, sigh.
6701 (last_braced_code_loc): New extern variable.
6702 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6703 rule already has an action.
6704 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6705 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6706 Add some tests to check that the above changes fixed the bug.
6707
6708 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6709
6710 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6711 All used changed. Check whether the symbol has a destructor,
6712 not whether it is typed.
6713 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6714 that the values are still reported as unused. All line numbers
6715 adjusted.
6716
6717 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6718
6719 Work around a bug in bro 0.8, which underparenthesizes its
6720 definition of YYLLOC_DEFAULT.
6721 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6722 their arguments.
6723 * data/lalr1.cc: Likewise.
6724 * data/yacc.cc: Likewise.
6725
6726 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6727
6728 Work around a bug in Pike 7.0, and give the Pike folks a
6729 better way to override the usual int widths.
6730 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6731 user can override the types.
6732 (short): #undef, to work around a bug in Pike 7.0.
6733 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6734 (union yyalloc.yyss): Use yytype_int16 rather than short.
6735 All uses changed.
6736 (yysigned_char): Remove.
6737 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6738 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6739 * tests/regression.at (Web2c Actions): Adjust to above changes.
6740
6741 * src/reader.c (check_and_convert_grammar): New function.
6742 (reader): Close the input file even if something went wrong during
6743 parsing. Minor file descriptor leak reported by twlevo.
6744
6745 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6746 to pacify gcc -Wswitch-default.
6747 * src/scan-gram.l (adjust_location): Use a default: break; case
6748 to pacify gcc -Wswitch-default.
6749 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6750 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6751 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6752 Move these decls to scan-skel.l, since they don't need to be
6753 visible elsewhere.
6754 * src/scan-skel.l: Accept the above decls.
6755 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6756 is used.
6757
6758 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6759
6760 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6761 since we don't want to insist on a version number at the start
6762 of the changelog every time.
6763 * Makefile.maint: Sync from coreutils a bit better.
6764 (sc_trailing_blank): Renamed from sc_trailing_space.
6765 All uses changed.
6766 (sc_no_if_have_config_h, sc_require_config_h):
6767 (sc_prohibit_assert_without_use): New rules.
6768 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6769 (sc_dd_max_sym_length): Fix leading spaces in rule.
6770 (sc_system_h_headers): Prefix with @.
6771 (sc_useless_cpp_parens, m4-check): Output line numbers.
6772 (changelog-check): Allow version only in head.
6773 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6774 satisfy new Makefile.maint rule.
6775 * data/glr.c: Likewise.
6776 * data/glr.cc: Likewise.
6777 * data/lalr1.cc: Likewise.
6778 * data/yacc.c: Likewise.
6779 * lib/ebitsetv.c: Likewise.
6780 * lib/lbitset.c: Likewise.
6781 * lib/subpipe.c: Likewise.
6782 * lib/timevar.c: Likewise.
6783 * src/system.h: Likewise.
6784 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6785 * djgpp/Makefile.maint: Add copyright notice.
6786 * djgpp/README.in: Likewise.
6787 * djgpp/config.bat: Likewise.
6788 * djgpp/config.site: Likewise.
6789 * djgpp/config_h.sed: Likewise.
6790 * djgpp/djunpack.bat: Likewise.
6791 * djgpp/config.sed: Fix copyright notice to match standard format.
6792 * djgpp/subpipe.h: Likewise.
6793 * lib/bitsetv-print.c: Likewise.
6794 * lib/bitsetv.c: Likewise.
6795 * lib/subpipe.h: Likewise.
6796 * lib/timevar.c: Likewise.
6797 * lib/timevar.h: Likewise.
6798 * djgpp/subpipe.c: Use standard recipe for config.h.
6799 * lib/abitset.c: Likewise.
6800 * lib/bitset.c: Likewise.
6801 * lib/bitset_stats.c: Likewise.
6802 * lib/bitsetv-print.c: Likewise.
6803 * lib/bitsetv.c: Likewise.
6804 * lib/ebitsetv.c: Likewise.
6805 * lib/get-errno.c: Likewise.
6806 * lib/lbitset.c: Likewise.
6807 * lib/subpipe.c: Likewise.
6808 * lib/timevar.c: Likewise.
6809 * lib/vbitset.c: Likewise.
6810 * tests/local.at: Likewise.
6811 * src/scan-gram.l: Don't include verify.h, since system.h does
6812 that for us.
6813 * .x-sc_require_config_h: New file.
6814 * .x-sc_unmarked_diagnostics: New file.
6815
6816 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6817
6818 Be a bit more systematic about using 'abort'.
6819 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6820 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6821 Put 'default: abort ();' before some other case, to satisfy older
6822 pedantic compilers.
6823 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6824 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6825 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6826 * src/conflicts.c (resolve_sr_conflict): Likewise.
6827 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6828 (get_decision_str, get_orientation_str, get_node_alignment_str):
6829 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6830 (get_linestyle_str, get_arrowstyle_str): Likewise.
6831 * src/conflicts.c (resolve_sr_conflict):
6832 Use a default case rather than one for the one remaining enum
6833 value, to catch invalid enum values as well.
6834 * src/lalr.c (set_goto_map, map_goto):
6835 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6836 * src/nullable.c (nullable_compute, token_definitions_output):
6837 Likewise.
6838 * src/reader.c (packgram, reader): Likewise.
6839 * src/state.c (transitions_to, state_new, state_reduction_find):
6840 Likewise.
6841 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6842 (symbol_pack): Likewise.
6843 * src/tables.c (conflict_row, pack_vector): Likewise.
6844 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6845 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6846 * src/system.h: Don't include <assert.h>.
6847 (assert): New macro.
6848
6849 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6850 (Destructor Decl, Parser Function, Pure Calling):
6851 Describe rules for braces inside C code more carefully.
6852
6853 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6854
6855 Fix some porting glitches found by Nelson H. F. Beebe.
6856 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6857 compilers that don't understand that abort () does not return.
6858 * src/state.c (transitions_to): Likewise.
6859 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6860 that '#include <cstdlib>' works.
6861 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6862 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6863 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6864 for the benefit of some pre-C99 compilers.
6865
6866 * bootstrap: Undo changes to gnulib files that autoreconf made.
6867
6868 Minor fixups to get 'make maintainer-check' to work.
6869 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6870 with the new verify.h implementation.
6871 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6872 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6873 * data/yacc.c (YYUSE): Likewise.
6874 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6875 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6876 * src/parse-gram.y (declaration): Don't pass a string constant
6877 to a function that expects char *, since GCC might complain
6878 about the constant value.
6879 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6880 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6881 before #defining them.
6882 * tests/glr-regression.at
6883 (Incorrectly initialized location for empty right-hand side in GLR):
6884 In yyerror, use the msg arg.
6885 (Corrupted semantic options if user action cuts parse):
6886 (Incorrect lookahead during deterministic GLR):
6887 (Incorrect lookahead during nondeterministic GLR):
6888 Don't name a local var 'index'; it shadows string.h's 'index'.
6889
6890 2006-01-19 Akim Demaille <akim@epita.fr>
6891
6892 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6893 location, not just parts of it.
6894
6895 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6896
6897 * NEWS: Document the fact that multiple %unions are now allowed.
6898 * doc/bison.texinfo (Union Decl): Likewise.
6899 * TODO: This feature is now implemented, so remove it from
6900 the wishlist.
6901
6902 * Makefile.maint: Merge with coreutils Makefile.maint.
6903 (CVS_LIST): Use build-aux version if available.
6904 (VERSION_REGEXP): New macro.
6905 (syntax-check-rules): Add sc_no_if_have_config_h,
6906 sc_prohibit_assert_without_use, sc_require_config_h,
6907 sc_useless_cpp_parens.
6908 (sc_obsolete_symbols): Check for O_NDELAY.
6909 (sc_dd_max_sym_length): Track coreutils.
6910 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6911 (sc_useless_cpp_parens): New rule.
6912 (news-date-check): Look for version or today's date.
6913 (changelog-check): Don't require version number near head.
6914 (copyright-check): Use current year instead of hardwiring 2005.
6915 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6916 (announcement): Add --gpg-key-ID.
6917
6918 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6919 with "file system".
6920
6921 Avoid undefined behavior that addressed just before the start of an
6922 array. Problem reported by twlevo.
6923 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6924 * src/lalr.c (build_relations): Rely on new sentinel.
6925 * src/gram.c (gram_free): Adjust to new sentinel.
6926
6927 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6928
6929 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6930 yylookaheadNeeds. All uses updated.
6931 (yysplitStack): Rename local yynewLookaheadStatuses to
6932 yynewLookaheadNeeds.
6933 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6934 GLR): In comments, change `lookahead status' to `lookahead need'.
6935
6936 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6937
6938 * data/glr.c (yysplitStack): A little stylistic rewrite.
6939
6940 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6941
6942 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6943
6944 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6945
6946 * doc/bison.texinfo: Fix some typos.
6947 (GLR Semantic Actions): New subsection discussing special
6948 considerations because GLR semantic actions might be deferred.
6949 (Actions): Mention look-ahead usage of yylval.
6950 (Actions and Locations): Mention look-ahead usage of yylloc.
6951 (Special Features for Use in Actions): Add YYEOF entry and mention it
6952 in the yychar entry.
6953 In the yychar entry, remove mention of the local yychar case (pure
6954 parser) since this is irrelevant information when writing semantic
6955 actions and since it's already discussed in `Table of Symbols' where
6956 yychar is otherwise described as an external variable.
6957 In the yychar entry, don't call it the `current' look-ahead since it
6958 isn't when semantic actions are deferred.
6959 In the yychar and yyclearin entries, add note about deferred semantic
6960 actions.
6961 Add yylloc and yylval entries discussing look-ahead usage.
6962 (Look-Ahead Tokens): When discussing yychar, don't call it the
6963 `current' look-ahead, and do mention yylval and yylloc.
6964 (Error Recovery): Cross-reference `Action Features' when mentioning
6965 yyclearin.
6966 (Table of Symbols): In the yychar entry, don't call it the `current'
6967 look-ahead.
6968 In the yylloc and yylval entries, mention look-ahead usage.
6969
6970 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6971
6972 * tests/glr-regression.at: Update copyright year to 2006.
6973
6974 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6975
6976 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6977 use during nondeterministic operation to track which stacks have
6978 actually needed the current lookahead.
6979 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6980 Allocate, deallocate, resize, and otherwise shuffle space for
6981 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6982 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6983 appropriately during nondeterministic operation.
6984 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6985 members to store the current lookahead to be used by the deferred
6986 user action.
6987 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6988 from which the RHS is taken. Set the lookahead members of the new
6989 yySemanticOption according to the lookahead status for stack yyk.
6990 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6991 yyaddDeferredAction.
6992 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6993 members of yySemanticOption before invoking yyuserAction, and then set
6994 them back to their current values afterward.
6995 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6996 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6997 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6998 titles for consistency.
6999 (Leaked merged semantic value if user action cuts parse): In order to
7000 suppress lint warnings, use arguments in merge function, and assign
7001 char value < 128 in main.
7002 (Incorrect lookahead during deterministic GLR): New test case.
7003 (Incorrect lookahead during nondeterministic GLR): New test case.
7004
7005 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7006
7007 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7008 !yyvaluep as signal that no semantic value is available to print.
7009 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7010 to print a semantic value.
7011
7012 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7013
7014 * tests/glr-regression.at: For consistency with my newer test cases,
7015 don't thank myself.
7016
7017 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7018
7019 * data/glr.c (yyresolveValue): When merging semantic options, if at
7020 least one user action succeeds but a later one cuts the parse, then
7021 destroy the semantic value before returning rather than leaking it.
7022 (yyresolveStates): If a user action cuts the parse and thus
7023 yyresolveValue fails, ignore the (unset) semantic value rather than
7024 corrupting the yyGLRState, and empty the semantic options list since
7025 the user actions should have called all necessary destructors.
7026 Simplify code with YYCHK.
7027 * tests/glr-regression.at (Corrupted semantic options if user action
7028 cuts parse): New test case.
7029 (Undesirable destructors if user action cuts parse): New test case.
7030 Before applying any of this patch, this test case never actually failed
7031 for me... but only because the corrupted semantic options usually
7032 masked this bug.
7033 (Leaked merged semantic value if user action cuts parse): New test
7034 case.
7035
7036 2006-01-05 Akim Demaille <akim@epita.fr>
7037
7038 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7039
7040 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7041
7042 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7043 _MSC_VER. Problem reported by Cenzato Marco.
7044 (b4_c_function_def): Use it.
7045 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7046 b4_c_modern.
7047 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7048 than rolling our own.
7049
7050 2006-01-04 Akim Demaille <akim@epita.fr>
7051
7052 Also warn about non-used mid-rule values.
7053 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7054 member.
7055 (symbol_list_new): Adjust.
7056 * src/reader.c (symbol_typed_p): New.
7057 (grammar_rule_check): Use it.
7058 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7059 Check its rule.
7060 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7061 Use it.
7062 * tests/actions.at (Exotic Dollars): Adjust.
7063
7064 2006-01-04 Akim Demaille <akim@epita.fr>
7065
7066 * src/reader.c (grammar_midrule_action): If $$ is set in a
7067 mid-rule, move the `used' bit to its lhs.
7068 * tests/input.at (Unused values): New.
7069 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7070
7071 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7072
7073 * doc/bison.texinfo (Bison Options): Say more accurately what
7074 --yacc does.
7075 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7076 about declarations in the grammar when in Yacc mode, as POSIX does
7077 not require a diagnostic when the grammar uses extensions.
7078
7079 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7080
7081 Warn about dubious constructions like "%token T T".
7082 Reported by twlevo.
7083 * src/symtab.h (struct symbol.declared): New member.
7084 * src/symtab.c (symbol_new): Initialize it to false.
7085 (symbol_class_set): New arg DECLARING, specifying whether
7086 this is a declaration that we want to warn about, if there
7087 is more than one of them. All uses changed.
7088
7089 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7090 Allow multiple %union directives, whose contents concatenate.
7091 * src/parse-gram.y (grammar_declaration): Likewise.
7092 Use muscle_code_grow, so that we don't need stype_line any more.
7093 All uses changed.
7094
7095 * src/muscle_tab.c (muscle_grow): Fix comment.
7096
7097 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7098 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7099 Update copyright year to 2006.
7100
7101 2006-01-03 Akim Demaille <akim@epita.fr>
7102
7103 Have glr.cc pass (some of) the calc.at tests.
7104 * data/glr.cc (b4_parse_param_orig): New.
7105 (b4_parse_param): Improve its definition, and bound it more
7106 clearly in the skeleton.
7107 (b4_epilogue): Append, instead of prepending, in order to keep
7108 #line consistency.
7109 Simplify the generation of auxiliary functions: locations and
7110 purity are mandated.
7111 (b4_global_tokens_and_yystype): Honor it.
7112 * data/location.cc (c++.m4): Don't include it.
7113 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7114 and AT_SKEL_CC_IF.
7115 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7116 AT_LALR1_CC_IF.
7117 Be sure to initialize the first position's filename.
7118 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7119 mandated anyway.
7120 (AT_CHECK_CALC_GLR_CC): New.
7121 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7122
7123 2006-01-02 Akim Demaille <akim@epita.fr>
7124
7125 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7126 c.m4.
7127 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7128 * data/glr.cc: Do not include stack.hh.
7129
7130 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7131
7132 * data/glr.c: Reformat whitespace with tabs.
7133 (b4_lpure_formals): Remove this unused m4 macro.
7134 * tests/cxx-type.at: Reformat whitespace with tabs.
7135 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7136 since it's a member. Rename type to isNterm for clarity.
7137
7138 2005-12-29 Akim <akim@sulaco.local>
7139
7140 Let glr.cc catch up with symbol_value_print.
7141 * data/glr.cc (b4_yysymprint_generate): Replace by...
7142 (b4_yy_symbol_print_generate): this.
7143 (yy_symbol_print, yy_symbol_value_print): Declare them.
7144
7145 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7146
7147 * src/location.h (boundary): Note that a line or column equal
7148 to INT_MAX indicates an overflow.
7149 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7150 (rule_length_overflow, increment_rule_length, add_column_width):
7151 New functions.
7152 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7153 (<SC_BRACED_CODE>"}"):
7154 Use increment_rule_length rather than incrementing it by hand.
7155 (adjust_location, handle_syncline): Diagnose overflow.
7156 (handle_action_dollar, handle_action_at):
7157 Fix bug with monstrosities like $-2147483648.
7158 Remove now-unnecessary checks.
7159 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7160 (convert_ucn_to_byte): Verify assumptions.
7161 (handle_syncline): New arg LOC. All callers changed.
7162 Don't store through a value derived from char const * pointer.
7163
7164 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7165 GCC warnings.
7166
7167 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7168
7169 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7170 Remove unnecessary forward static decls.
7171
7172 2005-12-27 Akim Demaille <akim@epita.fr>
7173
7174 * src/reader.c (grammar_current_rule_check): Also check that $$
7175 is used.
7176 Take the rule to check as argument, hence rename as...
7177 (grammar_rule_check): this.
7178 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7179 Rename as...
7180 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7181 (grammar_midrule_action, grammar_symbol_append): Now static.
7182 * tests/torture.at (input): Don't rely on the default action
7183 being always performed.
7184 * tests/calc.at: "Set" $$ even when the action is "cut" with
7185 YYERROR or other.
7186 * tests/actions.at (Exotic Dollars): Instead of using unused
7187 values, check that the warning is issued.
7188
7189 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7190
7191 * NEWS: Improve wording for unused-value warnings.
7192
7193 2005-12-22 Akim Demaille <akim@epita.fr>
7194
7195 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7196 (b4_yysymprint_generate): Rename as...
7197 (b4_yy_symbol_print_generate): this.
7198 Generate yy_symbol_print instead of yysymprint.
7199 Generate also yy_symbol_value_print, and use it.
7200
7201 2005-12-22 Akim Demaille <akim@epita.fr>
7202
7203 * NEWS: Warn about unused values.
7204 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7205 a `used' member.
7206 (symbol_list_n_get, symbol_list_n_used_set): New.
7207 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7208 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7209 * src/reader.c (grammar_current_rule_check): Check that values are
7210 used.
7211 * src/symtab.c (symbol_print): Accept 0.
7212 * tests/existing.at: Remove the type information.
7213 Empty the actions.
7214 Remove useless actions (beware of mid-rule actions: perl -000
7215 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7216 * tests/actions.at (Exotic Dollars): Use unused values.
7217 * tests/calc.at: Likewise.
7218 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7219 Likewise.
7220
7221 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7222 rule_useful_p.
7223
7224 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7225
7226 Undo 2005-12-01 tentative license wording change. The wording is
7227 still being reviewed by the lawyers, and we don't want to wait for
7228 them before publishing a test release. For now, revert to the
7229 previous wording.
7230 * NEWS: Undo 2005-12-01 change.
7231 * data/glr.c: Revert to previous license wording.
7232 * data/glr.cc: Likewise.
7233 * data/lalr1.cc: Likewise.
7234 * data/location.cc: Likewise.
7235 * data/yacc.c: Likewise.
7236
7237 * NEWS: Reword %destructor vs YYABORT etc.
7238 * data/glr.c: Use American spacing, for consistency.
7239 * data/glr.cc: Likewise.
7240 * data/lalr1.cc: Likewise.
7241 * data/yacc.c: Likewise.
7242 * data/yacc.c: Reformat comments slightly.
7243 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7244 for consistency. Fix some spelling errors and reword recently-included
7245 text slightly.
7246 * tests/cxx-type.at: Cast results of malloc, for C++.
7247
7248 2005-12-21 Joel E. Denny <address@hidden>
7249
7250 * tests/cxx-type.at: Construct a tree, count the parents of shared
7251 nodes, and free each node once and only once. Previously, the memory
7252 for semantic values was leaked instead.
7253
7254 2005-12-21 Joel E. Denny <address@hidden>
7255
7256 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7257 (yylval, yylloc): If pure, #define to yystackp->yyval and
7258 yystackp->yyloc similar to yychar and yynerrs.
7259 (yyparse): If pure, remove local yylval and yylloc. Add local
7260 yystackp to accommodate pure definitions of yylval and yylloc.
7261 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7262 yylvalp and yyllocp to &yylval and &yylloc.
7263 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7264 namespace. Previously, nerrs and char were missing, but lval and lloc
7265 weren't necessary.
7266 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7267 yylvalp and yyllocp parameters since, if pure, these are now always
7268 accessible through yystackp. If not pure, they are still accessible
7269 globally.
7270 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7271 `if (YYID (N))' to pacify lint.
7272
7273 2005-12-21 Akim Demaille <akim@epita.fr>
7274
7275 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7276 destroy the RHS symbols of a rule.
7277 * data/yacc.c (yylen): Initialize to 0.
7278 Keep its value to the number of items to possibly shift.
7279 In particular, a regular successful parse that ends on YYFINAL by
7280 a (internal) YYACCEPT must not have yylen != 0.
7281 (yyerrorlab, yyreturn): Pop the RHS.
7282 Reorder a bit to emphasize the `shifting' bits of code.
7283 (YYPOPSTACK): Now accept a number of items to pop.
7284 * data/lalr1.cc: Likewise.
7285 * data/glr.c: Formatting changes.
7286 Use goto instead of fall through.
7287 * doc/bison.texinfo (Destructor Decl): Complete.
7288
7289 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7290
7291 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7292 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7293 * djgpp/config.bat: Replace every occurence of the file name
7294 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7295 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7296 * djgpp/config.sed: Replace every occurence of the file name
7297 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7298 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7299 * djgpp/djunpack.bat: DJGPP specific file.
7300 * djgpp/fnchange.lst: DJGPP specific file.
7301 * djgpp/README.in: Add new information about how to unpack the bison
7302 source on MSDOS and other systems which have 8.3 file name restrictions
7303 using djunpack.bat and fnchange.lst.
7304
7305 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7306
7307 * bootstrap (build_cvs_prefix): Remove; unused.
7308 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7309 when getting gnulib.
7310
7311 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7312
7313 * data/glr.c: Reorder typedef declarations for structs to match order
7314 of struct declarations.
7315 Rename yystack everywhere to yystackp except in yyparse where it's not
7316 a pointer.
7317 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7318 consistency.
7319 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7320 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7321 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7322 lint.
7323
7324 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7325
7326 * tests/sets.at (Accept): Fix typos in regular expression used to
7327 sed out the final state number.
7328
7329 Work around portability problem on Solaris 10: flex-generated
7330 files include <stdio.h> before <config.h>, which messes up
7331 because the latter defines __EXTENSIONS__. Address the problem
7332 by creating two new little files that include <config.h> first,
7333 then include the flex-generated files. Rewrite everyone else
7334 to include <config.h> first, as well.
7335 * lib/timevar.c: Always include "config.h".
7336 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7337 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7338 (EXTRA_bison_SOURCES): New macro.
7339 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7340 * src/system.h: Don't include config.h.
7341 * src/LR0.c: Include <config.h> first.
7342 * src/assoc.c: Likewise.
7343 * src/closure.c: Likewise.
7344 * src/complain.c: Likewise.
7345 * src/conflicts.c: Likewise.
7346 * src/derives.c: Likewise.
7347 * src/files.c: Likewise.
7348 * src/getargs.c: Likewise.
7349 * src/gram.c: Likewise.
7350 * src/lalr.c: Likewise.
7351 * src/location.c: Likewise.
7352 * src/main.c: Likewise.
7353 * src/muscle_tab.c: Likewise.
7354 * src/nullable.c: Likewise.
7355 * src/output.c: Likewise.
7356 * src/parse-gram.y: Likewise.
7357 * src/print.c: Likewise.
7358 * src/print_graph.c: Likewise.
7359 * src/reader.c: Likewise.
7360 * src/reduce.c: Likewise.
7361 * src/relation.c: Likewise.
7362 * src/state.c: Likewise.
7363 * src/symlist.c: Likewise.
7364 * src/symtab.c: Likewise.
7365 * src/tables.c: Likewise.
7366 * src/uniqstr.c: Likewise.
7367 * src/vcg.c: Likewise.
7368
7369 * src/parse-gram.y: Fix minor problems uncovered by lint.
7370 (current_lhs, current_lhs_location): Now static.
7371 (current_assoc): Remove unused variable.
7372
7373 Cleanups so that Bison-generated parsers have less lint.
7374 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7375 Prepend /*ARGSUSED*/, for lint's sake.
7376 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7377 definition if 'lint' is defined.
7378 (YYID): New macro (or function, if lint).
7379 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7380 * data/yacc.c: Likewise.
7381 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7382 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7383 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7384 is C++ only.
7385 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7386 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7387 Use YYID(0) rather than 0, for lint.
7388 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7389 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7390
7391 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7392
7393 * tests/glr-regression.at
7394 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7395 Close memory leak reported by twlevo.
7396
7397 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7398
7399 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7400 all stacks.
7401 (yyparse): Iterate another stack in order to call user destructors.
7402 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7403 New test case.
7404 (Duplicated user destructor for lookahead): This test now is expected
7405 to succeed.
7406
7407 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7408
7409 * NEWS: Document the following change.
7410 * data/yacc.c: Say "parser skeleton" rather than "file", since
7411 it's no longer just a file.
7412 * data/glr.c: Grant a special exception for C GLR parsers, that
7413 reads like the already-existing exception for C LALR(1) parsers.
7414 * data/glr.cc: Likewise.
7415 * data/lalr1.cc: Likewise.
7416 * data/location.cc: Likewise.
7417 * data/yacc.c: Reword the "written by" statement to clarify that
7418 it was the parser skeleton, not the entire output file.
7419 * data/glr.c: Written by Paul Hilfinger.
7420 * data/glr.cc: Written by Akim Demaille.
7421 * data/lalr1.cc: Likewise.
7422
7423 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7424
7425 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7426 Fix typos in previous change that broke 'make check'.
7427 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7428 supported in C.
7429 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7430 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7431 We can revert this once things settle down.
7432
7433 * src/conflicts.c (conflicts_print): Don't print file name twice
7434 when %expect fails because there were no conflicts.
7435 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7436 change.
7437 * tests/conflicts.at (%expect not enough, %expect too much):
7438 (%expect with reduce conflicts): Adjust to new behavior.
7439
7440 2005-11-18 Akim Demaille <akim@epita.fr>
7441
7442 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7443 errors.
7444 * NEWS: Document this.
7445 * doc/bison.texinfo (Expect Decl): Likewise.
7446
7447 2005-11-16 Akim Demaille <akim@epita.fr>
7448
7449 Generalize the display of semantic values and locations in traces.
7450 * data/glr.c (yy_reduce_print): Fix indices (again).
7451 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7452 literal integers.
7453 * data/lalr1.cc (yyreduce_print): Rename as...
7454 (yy_reduce_print): this.
7455 Display values and locations.
7456 * data/yacc.c (yy_reduce_print): Likewise.
7457 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7458 (yysymprint): Move higher to be visible from yy_reduce_print).
7459 (yyparse): Adjust.
7460 * tests/calc.at: Adjust the expected length of the traces.
7461
7462 2005-11-14 Akim Demaille <akim@epita.fr>
7463
7464 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7465 from 1 to N, while values and location start at 0.
7466 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7467
7468 2005-11-14 Akim Demaille <akim@epita.fr>
7469
7470 * data/glr.c (yy_reduce_print): Fix the $ number.
7471
7472 2005-11-14 Akim Demaille <akim@epita.fr>
7473
7474 "Use" parse parameters.
7475 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7476 * data/glr.c, data/glr.cc: Use them.
7477 * data/glr.c (YYUSE): Have a C++ definition that supports
7478 non-pointer types.
7479
7480 2005-11-14 Akim Demaille <akim@epita.fr>
7481
7482 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7483
7484 2005-11-14 Akim Demaille <akim@epita.fr>
7485
7486 * data/glr.cc: New.
7487 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7488
7489 2005-11-12 Akim Demaille <akim@epita.fr>
7490
7491 Let position and location be PODs.
7492 * data/location.cc (position::initialize, location::initialize): New.
7493 (position::position, location::location): Define only if
7494 b4_location_constructors is defined.
7495 * data/lalr1.cc (b4_location_constructors): Define it for backward
7496 compatibility.
7497 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7498
7499 2005-11-12 Akim Demaille <akim@epita.fr>
7500
7501 * data/lalr1.cc: Move the body of the ctor and dtor into the
7502 parser file (instead of the header).
7503 Wrap the implementations in a "namespace yy".
7504
7505 2005-11-12 Akim Demaille <akim@epita.fr>
7506
7507 Have glr.c include its header file when created.
7508 * data/glr.c (b4_shared_declarations): New.
7509 Output them verbatim in the parser if !%defines, otherwise
7510 output then in the header file, and include it instead.
7511
7512 2005-11-11 Akim Demaille <akim@epita.fr>
7513
7514 * data/glr.c: Comment changes.
7515
7516 2005-11-11 Akim Demaille <akim@epita.fr>
7517
7518 When yydebug, report semantic and location values for reductions.
7519 * data/glr.c (yy_reduce_print): Report the semantic values and the
7520 locations.
7521 (YY_REDUCE_PRINT): Adjust.
7522 (yyglrReduce): Use them.
7523 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7524 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7525 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7526 traces.
7527
7528 2005-11-10 Akim Demaille <akim@epita.fr>
7529
7530 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7531 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7532 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7533
7534 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7535
7536 * m4/cxx.m4, examples/Makefile.am: Don't build
7537 examples/calc++ if no C++ compiler is available. (trivial change)
7538
7539 2005-11-09 Akim Demaille <akim@epita.fr>
7540
7541 * src/scan-skel.l: Use a couple of asserts.
7542
7543 2005-11-03 Akim Demaille <akim@epita.fr>
7544
7545 In some (weird) cases, the final state number is incorrect.
7546 Reported by Alexandre Duret-Lutz.
7547 * src/LR0.c (state_list_append): Remove the computation of
7548 final_state.
7549 (save_reductions): Do it here.
7550 (get_state): Alpha conversion.
7551 (generate_states): Use a for loop.
7552 * src/gram.h (item_number_is_rule_number)
7553 (item_number_is_symbol_number): New.
7554 * src/state.c: Use assert.
7555 * src/system.h: Include assert.h.
7556 * tests/sets.at (Accept): New.
7557
7558 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7559
7560 * data/glr.c (yyfill): Adjust comment.
7561 (yyresolveAction): Initialize default location properly
7562 for empty right-hand sides.
7563 (yydoAction): Ditto.
7564 Add comment explaining apparently dead code.
7565 * tests/glr-regression.at
7566 (Incorrectly initialized location for empty right-hand side in GLR):
7567 New test.
7568
7569 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7570
7571 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7572 gnulib when interrupted. This fixes some race conditions and
7573 works around some portability problems (one noted by Paul
7574 Hilfinger).
7575
7576 2005-10-22 Akim <akim@epita.fr>
7577
7578 * Makefile.cfg: Adjust to config -> build-aux.
7579 Reported by twledo.
7580
7581 2005-10-21 Akim Demaille <akim@epita.fr>
7582
7583 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7584 the %parse-params.
7585 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7586 * data/yacc.c (b4_Pure_if): Rename as...
7587 (b4_yacc_pure_if): this.
7588 (YY_SYMBOL_PRINT, yyparse): Adjust.
7589 * doc/bison.texinfo: Formatting changes.
7590
7591 2005-10-21 Akim Demaille <akim@epita.fr>
7592
7593 Finish the transition config -> build-aux.
7594 * configure.ac, Makefile.am: Use build-aux.
7595 * config/prev-version, config/announce-gen, config/Makefile.am:
7596 Move to...
7597 * build-aux/prev-version, build-aux/announce-gen,
7598 * build-aux/Makefile.am: here.
7599
7600 2005-10-14 Akim Demaille <akim@epita.fr>
7601
7602 * examples/calc++/test: Use set -x only when VERBOSE.
7603
7604 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7605
7606 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7607 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7608
7609 2005-10-13 Akim Demaille <akim@epita.fr>
7610
7611 * src/scan-skel.l: Output the base name parts of the parser and
7612 header file names.
7613 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7614 additional checks.
7615 Use this to exercise C++ outputs in subdirs.
7616 Reported by Oleg Smolsky.
7617
7618 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7619
7620 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7621 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7622 Problem reported by John P. Hartmann.
7623 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7624 already defined it.
7625
7626 2005-10-12 Akim Demaille <akim@epita.fr>
7627
7628 * src/parse-gram.y (version_check): Exit 63 to please missing
7629 (stands for "version mismatch).
7630 * tests/input.at, doc/bison.texinfo: Adjust.
7631
7632 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7633
7634 Work around portability problems with Visual Age C compiler
7635 (xlc and xlC_r) reported by John P. Hartmann.
7636 * data/location.cc (initial_column, initial_line): Remove.
7637 All uses replaced by 0 and 1.
7638 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7639 that xlc complains about.
7640 * src/scan-skel.l (skel_wrap): Likewise.
7641 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7642 as __STDC__.
7643 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7644 __STDC_VERSION__. Use it everywhere instead of looking at
7645 __STDC__ and __cplusplus.
7646
7647 2005-10-10 Akim Demaille <akim@epita.fr>
7648
7649 * examples/calc++/test: Be quiet unless VERBOSE.
7650
7651 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7652
7653 * data/c.m4 (yydestruct, yysymprint):
7654 Use YYUSE instead of casting to void.
7655 * data/glr.c (YYUSE): New macro.
7656 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7657 Use it instead of rolling our own.
7658 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7659 (YYCHK1):
7660 Use /*CONSTCOND*/ to suppress lint warnings.
7661 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7662 (YY_STACK_PRINT): Use 'false' not '0'.
7663 (YYUSE): New macro.
7664 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7665 * data/yacc.c (YYUSE): New macro.
7666 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7667 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7668 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7669
7670
7671 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7672 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7673
7674 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7675
7676 Undo the parts of the unlocked-I/O change that substituted
7677 putc or puts for printf. This might hurt performance a bit,
7678 but some people prefer the printf style.
7679 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7680 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7681 All uses replaced by YYFPRINTF and YYDPRINTF.
7682 * data/yacc.c: Likewise.
7683 * lib/bitset.c (bitset_print): Likewise.
7684 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7685 putc and puts.
7686 * lib/lbitset.c (debug_lbitset): Likewise.
7687 * src/closure.c (print_firsts, print_fderives): Likewise.
7688 * src/gram.c (grammar_dump): Likewise.
7689 * src/lalr.c (look_ahead_tokens_print): Likewise.
7690 * src/output.c (escaped_output): Likewise.
7691 (user_actions_output): Break apart two printfs.
7692 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7693 * src/reduce.c (reduce_print): Likewise.
7694 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7695 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7696
7697 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7698 Use assignments rather than casts-to-void to suppress
7699 unused-variable warnings. This pacifies 'lint'.
7700 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7701 unused-variable warnings.
7702
7703 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7704
7705 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7706
7707 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7708
7709 Use unlocked I/O for a minor performance improvement on hosts like
7710 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7711 is to use the gnlib unlocked-io module, and to prefer putc and
7712 puts to printf when either will work (since the latter doesn't
7713 come in an unlocked flavor).
7714 * bootstrap (gnulib_modules): Add unlocked-io.
7715 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7716 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7717 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7718 and similarly for puts and putc and printf.
7719 * data/yacc.c: Likewise.
7720 * lib/bitset.c (bitset_print): Likewise.
7721 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7722 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7723 to printf.
7724 * lib/lbitset.c (debug_lbitset): Likewise.
7725 * src/closure.c (print_firsts, print_fderives): Likewise.
7726 * src/gram.c (grammar_dump): Likewise.
7727 * src/lalr.c (look_ahead_tokens_print): Likewise.
7728 * src/output.c (escaped_output): Likewise.
7729 (user_actions_output): Coalesce two printfs.
7730 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7731 * src/reduce.c (reduce_print): Likewise.
7732 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7733 * src/system.h: Include unlocked-io.h rather than stdio.h.
7734
7735 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7736 this confuses xgettext.
7737
7738 2005-10-02 Akim Demaille <akim@epita.fr>
7739
7740 * bootstrap (gnulib_modules): Add strverscmp.
7741 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7742 * m4/.cvsignore: Add strverscmp.m4.
7743 * src/parse-gram.y (%require): New token, new rule.
7744 (version_check): New.
7745 * src/scan-gram.l (%require): Adjust.
7746 * tests/input.at (AT_REQUIRE): New.
7747 Use it.
7748 * doc/bison.texinfo (Require Decl): New.
7749 (Calc++ Parser): Use %require.
7750
7751 2005-10-02 Akim Demaille <akim@epita.fr>
7752
7753 * data/location.cc: New.
7754
7755 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7756 Akim Demaille <akim@epita.fr>
7757
7758 Make sure -odir/foo.cc creates dir/location.hh etc.
7759 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7760 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7761 (spec_defines_file): Now const.
7762 (dir_prefix): New.
7763 (short_base_name): Remove.
7764 * src/files.c: Adjust.
7765 (dirname.h): Include.
7766 (base_name): Don't prototype it.
7767 (finput): Remove, duplicates gram_in.
7768 (full_base_name, short_base_name): Replace by...
7769 (all_but_ext, all_but_tab_ext): these.
7770 (compute_base_names): Rename as...
7771 (compute_file_name_parts): this.
7772 Update to compute the new variables, including dir_prefix.
7773 Adjust dependencies.
7774 * src/output.c (prepare): Output them.
7775 * src/reader.c: Adjust to use gram_in, not finput.
7776 * src/scan-skel.l (@dir_prefix@): New.
7777
7778 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7779
7780 * lib/subpipe.c: New function end_of_output_subpipe() added
7781 to allow support for non-posix systems. This is a no-op function
7782 for posix systems.
7783
7784 * lib/subpipe.h: New function end_of_output_subpipe() added
7785 to allow support for non-posix systems. This is a no-op function
7786 for posix systems.
7787
7788 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7789 handle the lack of pipe/fork functionality on non-posix systems.
7790
7791 * djgpp/Makefile.maint: DJGPP specific file.
7792
7793 * djgpp/README.in: DJGPP specific file.
7794
7795 * djgpp/config.bat: DJGPP specific configuration file.
7796
7797 * djgpp/config.sed: DJGPP specific configuration file.
7798
7799 * djgpp/config.site: DJGPP specific configuration file.
7800
7801 * djgpp/config_h.sed: DJGPP specific configuration file.
7802
7803 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7804
7805 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7806
7807 2005-10-02 Akim Demaille <akim@epita.fr>
7808
7809 * data/location.cc: New, extract from...
7810 * data/lalr1.cc: here.
7811 (location.hh): Include it after the user prologue, in case the
7812 filename type is defined by the user.
7813 Forward declation location and position before the pre-prologue.
7814 (yyresult_): Rename as...
7815 (yyresult): this, it's a local variable, not an attribute.
7816 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7817
7818 2005-10-01 Akim Demaille <akim@epita.fr>
7819
7820 * examples/extexi: Restore the #line generation.
7821
7822 2005-09-30 Akim Demaille <akim@epita.fr>,
7823 Alexandre Duret-Lutz <adl@gnu.org>
7824
7825 Move the token type and YYSTYPE in the parser class.
7826 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7827 (parser::token): New, from the moved free definition of tokens.
7828 (parser::semantic_value): Now a full definition instead of an
7829 indirection to YYSTYPE.
7830 (b4_post_prologue): No longer included in the header file, but
7831 in the implementation file.
7832 * doc/bison.texi (C+ Language Interface): Update.
7833 * src/parse-gram.y: Support unary %define.
7834 * tests/actions.at: Define global_tokens_and_yystype for backward
7835 compatibility until we update the tests.
7836 * tests/calc.at: Idem.
7837 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7838 to simplify the code.
7839
7840 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7841
7842 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7843 Ah, the good old days! Problem reported by Peter Klein.
7844 * bootstrap (gnulib_modules): Add strerror, strtoul.
7845 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7846 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7847
7848 2005-09-29 Akim Demaille <akim@epita.fr>
7849
7850 * data/c.m4 (b4_error_verbose_if): New.
7851 * data/lalr1.cc: Use it.
7852 (YYERROR_VERBOSE_IF): Remove.
7853 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7854 parser members, replaced by...
7855 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7856 local variables.
7857 (yysyntax_error_): Takes the state number as argument.
7858 (yyreduce_print_): Use the argument yyrule, not the former
7859 attribute yyn_.
7860
7861 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7862
7863 * bootstrap (gnulib_modules): Add verify.
7864 * lib/.cvsignore: Add verify.h.
7865 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7866 * src/system.h (verify): Remove.
7867 Include verify.h instead.
7868 * src/tables.c (tables_generate): Use new API for 'verify'.
7869
7870 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7871
7872 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7873 local variables whose names begin with 'yy'.
7874 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7875 Trivial changes from Joel E. Denny.
7876
7877 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7878 it itself.
7879 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7880 don't use alloca any more.
7881
7882 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7883 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7884 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7885 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7886 to match yacc.c, to test more hosts.
7887
7888 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7889
7890 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7891 doesn't affect behavior.
7892 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7893 Solaris, AIX, MSC.
7894 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7895 This works a bit better with glibc, if user code has already included
7896 stdlib.h.
7897 * doc/bison.texinfo (Bison Parser): Document that users can't
7898 arbitrarily use malloc and free for other purposes. Document
7899 that <alloca.h> and <malloc.h> might be included.
7900 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7901 user must declare alloca.
7902
7903 * HACKING (release): Forwarn the Translation Project about
7904 stable releses.
7905
7906 2005-09-20 Akim Demaille <akim@epita.fr>
7907
7908 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7909
7910 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7911
7912 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7913 (YYSTACK_ALLOC_MAXIMUM): Use it.
7914 (yysyntax_error): New function.
7915 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7916 multiple syntax errors are reported, and alloca is being used.
7917 Instead, reallocate buffers twice as big each time, so that
7918 we waste at most half the allocated memory. Start with a small
7919 (128-byte) buffer that will suffice in most cases anyway.
7920 Use yysyntax_error to do most of the work.
7921
7922 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7923 yynerrs is the number of errors reported, not the number of
7924 errors encountered.
7925
7926 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7927 Mark it as expected to fail.
7928 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7929 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7930 Don't start user-code symbols with "yy", to avoid name space problems.
7931
7932 2005-09-19 Akim Demaille <akim@epita.fr>
7933
7934 Remove the traits, failed experiment.
7935 It never proved useful, and anyway because of the current
7936 definition, it was not possible to have several specialization of
7937 this traits, making it useless.
7938 * data/lalr1.cc (yy:traits): Remove.
7939 Inline its definitions in the parser class.
7940
7941 2005-09-19 Akim Demaille <akim@epita.fr>
7942
7943 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7944 least Mac OSX with a /usr/local install of gettext.
7945
7946 2005-09-19 Akim Demaille <akim@epita.fr>
7947
7948 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7949 and yytoken for similarity with the other skeletons.
7950
7951 2005-09-19 Akim Demaille <akim@epita.fr>
7952
7953 * NEWS, configure.ac: update version number to 2.1a.
7954
7955 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7956
7957 * NEWS: Version 2.1.
7958
7959 * NEWS: Remove notice of yytname change, since it was never in an
7960 official release.
7961 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7962 diagnostic.
7963 * src/output.c (prepare): Likewise.
7964 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7965 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7966 is not defined. This is an awful hack, but it's enough for now.
7967 All callers changed.
7968 * tests/glr-regression-at (make_value): Args are const pointers now,
7969 to avoid GCC warning.
7970 (Duplicated user destructor for lookahead): New test. Currently
7971 skipped. It fails on my host but I'm not sure it'll always fail.
7972
7973 2005-09-16 Akim Demaille <akim@epita.fr>
7974
7975 * src/symtab.h (struct symbol): Declare the printer and destructor
7976 as const, to avoid accidental calls to free.
7977 (symbol_destructor_set, symbol_printer_set): Adjust.
7978 * src/symtab.c: Adjust.
7979
7980 2005-09-16 Akim Demaille <akim@epita.fr>
7981
7982 * data/c.m4 (b4_token_enums): New.
7983 (b4_token_defines): Rename as...
7984 (b4_token_enums_defines): this.
7985 (b4_token_defines): New, output only the #defines.
7986 * data/yacc.c, data/glr.c: Adjust.
7987 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7988 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7989 as default values.
7990
7991 2005-09-16 Akim Demaille <akim@epita.fr>
7992
7993 * data/lalr1.cc (yylex_): Remove, inline its code.
7994 (yyreport_syntax_error_): Remove, replaced by...
7995 (yysyntax_error_): this which returns a string and leaves to the
7996 caller the call to the users' error function.
7997 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7998 Move from members of the parser object...
7999 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8000 to local variables of the parse function.
8001
8002 2005-09-16 Akim Demaille <akim@epita.fr>
8003
8004 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8005 since it's in Bison's name space.
8006
8007 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8008
8009 * data/glr.c (yyresolveValue): Add default case to pacify
8010 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8011
8012 * NEWS: Document when yyparse started to return 2.
8013 * doc/bison.texinfo (Parser Function): Document when yyparse
8014 returns 2.
8015
8016 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8017 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8018 changed.
8019 (class position): file_name -> filename (reverting). All uses changed.
8020
8021 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8022
8023 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8024 do anything if $@ exists. This reverts part of the 2005-07-07
8025 patch.
8026
8027 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8028
8029 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8030 contains obsolete information and isn't worth distributing as a
8031 separate file anyway.
8032 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8033 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8034 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8035 (yyparse): Abort if user code uses longjmp to throw an unexpected
8036 value.
8037
8038 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8039
8040 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8041 Suggested by twlevo@xs4all.nl.
8042
8043 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8044 This avoids a diagnostic from gcc -Wswitch-enum.
8045 Problem reported by twlevo@xs4all.nl.
8046
8047 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8048 standards. Use "file name" or "file" or "name", depending on
8049 the context.
8050 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8051 not to hack/foo.tab.c.
8052 (Calc++ Top Level): 2nd arg of main is not const.
8053 * data/glr.c: b4_filename -> b4_file_name.
8054 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8055 All uses changed.
8056 (class position): filename -> file_name. All uses changed.
8057 * data/yacc.c: b4_filename -> b4_file_name.
8058 * lib/bitset.h: filename -> file_name in local vars.
8059 * lib/bitset_stats.c: Likewise.
8060 * src/files.c: Likewise.
8061 * src/scan-skel.l ("@output ".*\n): Likewise.
8062 * src/files.c (file_name_split): Renamed from filename_split.
8063 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8064
8065 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8066
8067 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8068 to accommodate latest gnulib.
8069
8070 * tests/glr-regression.at (Duplicate representation of merged trees):
8071 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8072
8073 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8074 needed.
8075
8076 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8077
8078 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8079 All uses changed. Invoke user destructor after an error during a
8080 split parse (trivial change from Joel E. Denny).
8081
8082 * tests/glr-regression.at
8083 (User destructor after an error during a split parse): New test case.
8084 Problem reported by Joel E. Denny in:
8085 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8086
8087 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8088
8089 * README-cvs: Give URLs for recommended tools.
8090 Mention Gzip version problem, and bootstrapping issues.
8091 Remove troubleshooting section, as it's somewhat obsolete.
8092
8093 * bootstrap (no_cache): New var, to accommodate different wget
8094 variants. Use it instead of '-C off'. Problem reported by
8095 twlevo@xs4all.nl.
8096
8097 * data/glr.c (yydestroyStackItem): New function.
8098 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8099 debugging information. Problem reported by Joel E. Denny.
8100
8101 2005-08-25 Akim Demaille <akim@epita.fr>
8102
8103 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8104
8105 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8106
8107 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8108 Don't invoke destructor on unresolved entries.
8109 * tests/glr-regression.at
8110 (User destructor for unresolved GLR semantic value): New test case.
8111 Problem reported by Joel E. Denny in:
8112 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8113
8114 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8115
8116 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8117 Add strnlen.c.
8118 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8119 lib-prefix.m4, po.m4.
8120
8121 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8122 in yydestruct diagnostic, since it might not be an error.
8123 Problem reported by Joel Denny near end of
8124 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8125 * data/lalr1.cc (yyerturn): Likewise.
8126 * data/yacc.c (yyreturn): Likewise.
8127 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8128
8129 * src/files.c: Remove obsolete FIXME comment.
8130
8131 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8132 with the other templates, and to fix bogus run-on messages such
8133 as the one reported at the end of
8134 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8135 All callers changed to avoid the newline.
8136 (yyprocessOneStack): Output two lines rather than one, to accommodate
8137 the above change. This changes the debug output format slightly.
8138
8139 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8140 reported by Joel E. Denny in
8141 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8142 (trivial change).
8143 * tests/glr-regression.at (Duplicate representation of merged trees):
8144 New test, from Joel E. Denny in:
8145 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8146 * THANKS: Add Joel E. Denny.
8147
8148 * configure.ac (AC_INIT): Bump to 2.0c.
8149
8150 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8151
8152 * NEWS: Version 2.0b.
8153
8154 * Makefile.am (SUBDIRS): Put examples before tests, so that
8155 "make check" doesn't finish with "All 1 tests passed".
8156
8157 * tests/regression.at (Token definitions): Don't rely on
8158 AT_PARSER_CHECK for data that contains backslashes. It currently
8159 uses 'echo', and 'echo' isn't portable if its argument contains
8160 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8161 that the byte '\0xff' is not printable in the C locale; it is,
8162 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8163 not printable, so use '\0x81' to test.
8164
8165 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8166 version of GCC, since the macro is used with non-GCC compilers.
8167
8168 Fix core dump reported by Pablo De Napoli in
8169 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8170 * tests/regression.at (Invalid inputs with {}): New test.
8171 * src/parse-gram.y (token_name): Translate type before using
8172 it as an index.
8173
8174 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8175 the user's name space. All uses changed to __attribute__
8176 ((__unused__)).
8177 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8178 Add __attribute__ ((__noreturn__)).
8179
8180 * etc/clcommit: Remove. We weren't using it, and it failed
8181 "make maintainer-distcheck".
8182 * Makefile.maint: Merge from coreutils.
8183 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8184 (syntax-check-rules): Change list of rules as described below.
8185 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8186 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8187 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8188 (sc_trailing_space): New rules.
8189 (sc_xalloc_h_in_src): Remove.
8190 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8191 (sc_space_tab, sc_error_exit_success, sc_changelog):
8192 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8193 (makefile-check, po-check, author_mark_check):
8194 (makefile_path_separator_check, copyright-check):
8195 Use grep -n, to make it easier to find violations.
8196 Use CVS_LIST and CVS_LIST_EXCEPT.
8197 (header_regexp, h_re): Remove.
8198 (dd_c): New macro.
8199 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8200 (my-distcheck): Use more-modern GCC flags.
8201 (signatures, %.asc): Remove.
8202 (rel-files, announcement): Remove signatures.
8203 Restore old updating code, even though we don't use it, so
8204 that we're the same as coreutils.
8205 (alpha, beta, major): Depend on news-date-check.
8206 Make the upload commands.
8207
8208 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8209 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8210 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8211 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8212 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8213 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8214 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8215 * tests/sets.at: Likewise.
8216
8217 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8218 we comment out the Autoconf version number.
8219 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8220 it's error-prone and "make maintainer-distcheck" rejects it.
8221
8222 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8223 Indent calls to "error" to pacify "make maintainer-distcheck",
8224 when the calls are not intended to be translated.
8225 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8226
8227 * src/Makefile.am (DEFS): Use +=, to pacify
8228 "make maintainer-distcheck".
8229 (bison_SOURCES): Add scan-skel.h.
8230 (sc_tight_scope): New rule, from coreutils.
8231
8232 * src/files.c (src_extension, header_extension):
8233 Now static, not extern.
8234 * src/getargs.c (short_options): Likewise.
8235 * src/muscle_tab.c (muscle_table): Likewise.
8236 * src/parse-gram.y (current_class, current_type, current_prec):
8237 Likewise.
8238 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8239 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8240 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8241 void, to avoid warning when NLS is disabled.
8242 * src/output.c: Include scan-skel.h.
8243 (scan_skel): Remove decl, since scan-skel.h does this.
8244 (output_skeleton):
8245 Indent calls to "error" to pacify "make maintainer-distcheck".
8246 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8247 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8248 "make maintainer-distcheck".
8249 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8250 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8251 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8252 (skel_lex_destroy, scan_skel): Move these decls to...
8253 * src/scan-skel.h: New file.
8254 * src/uniqstr.c (uniqstr_assert):
8255 Indent calls to "error" to pacify "make maintainer-distcheck".
8256
8257 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8258 not @VAR@.
8259
8260 * tests/torture.at: Revamp to avoid misuse of atoi that
8261 "make maintainer-distcheck" complained about.
8262
8263 * examples/extexi (message): Don't print a message more than once,
8264 and omit line-number decoration that makes Emacs compile think
8265 that informative messages are worth worrying about.
8266
8267 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8268
8269 * configure.ac: Update version number.
8270
8271 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8272 accidentally.
8273 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8274 autogenerated by the maintainer.
8275 * examples/calc++/.cvsignore: Add *.yy.
8276
8277 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8278 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8279 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8280
8281 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8282
8283 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8284 from maintainer-distcheck about casting the argument of 'free'.
8285
8286 * NEWS: Mention recent yytname changes.
8287 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8288
8289 * bootstrap: For translations that have not yet been upgraded to
8290 the new runtime-po domain, prime the pump by extracting the
8291 relevant strings from the obsolete translations. This code can be
8292 removed once the bison-runtime domain has been translated by each
8293 team.
8294
8295 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8296 now that token names are already quoted.
8297
8298 Fix problem reported by Anthony Heading.
8299 * data/glr.c (YYTOKEN_TABLE): New macro.
8300 (yytname): Define if YYTOKEN_TABLE.
8301 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8302 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8303 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8304 * src/output.c (prepare_symbols): Output token_table_flag.
8305
8306 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8307
8308 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8309 again if the first call fails.
8310
8311 * data/glr.c (yytnamerr): New function.
8312 (yyreportSyntaxError): Use it to dequote most string literals.
8313 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8314 with other skeletons. All uses changed.
8315 (yytnameerr_): New function.
8316 (yyreport_syntax_error): Use it to dequote most string literals.
8317 * data/yacc.c (yytnamerr): New function.
8318 (yyerrlab): Use it to decode most string literals.
8319 * doc/bison.texinfo (Decl Summary, Calling Convention):
8320 Clarify quoting convention of yytname.
8321 * src/output.c (prepare_symbols): Quote all names. This undoes
8322 the 2005-04-17 change, which is now accomplished (mostly) via
8323 changes in the parsers as described above.
8324 * tests/regression.at (Token definitions, Web2c Actions):
8325 Undo most 2005-04-17 change here, too.
8326
8327 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8328
8329 Fix more problems reported by twlevo@xs4all.nl.
8330 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8331 remove trailing spaces. This loses the exit status of ./types,
8332 and isn't needed since ./types shouldn't be emitting trailing
8333 spaces.
8334 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8335 as the stack isn't valid in that case.
8336
8337 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8338 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8339 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8340 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8341 is used.
8342 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8343 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8344 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8345 Likewise.
8346
8347 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8348 overly-picky compilers that reject 'char *foo = "bar";'.
8349
8350 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8351 to FILE * parameter, not to stderr. This fixes a typo introduced
8352 in the 2005-07-12 change.
8353
8354 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8355 warnings from GCC 4.
8356
8357 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8358 (yyglrShiftDefer, yysplitStack):
8359 Remove unused parameters b4_pure_formals. All uses changed.
8360 (yyglrShift): Remove unused parameters b4_user_formals.
8361 All uses changed.
8362 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8363
8364 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8365
8366 Destructor cleanups and regularization among the three skeletons.
8367 * NEWS: Document the behavior changes.
8368 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8369 stack before failing, as the cleanup code will do it for us now.
8370 * data/lalr1.cc (yyerrlab): Likewise.
8371 * data/glr.c (yyparse): Pop everything off the stack before
8372 freeing it, so that destructors get called properly.
8373 * data/lalr1.cc (yyreturn): Likewise.
8374 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8375 This is more consistent.
8376 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8377 why destructors might be called. 1.875 -> 2.1.
8378 (Destructor Decl, Decl Summary, Table of Symbols):
8379 Some English-language cleanups for %destructor.
8380 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8381 Add output line for destructor of start symbol.
8382 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8383 because of that same extra output line.
8384
8385 * NEWS: Document minor wording changes in diagnostics of
8386 Bison-generated parsers.
8387 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8388 Remove unused formals. All uses changed.
8389 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8390 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8391 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8392 Rename yyoverflowab to yyexhaustedlab.
8393 When memory exhaustion occurs during syntax-error reporting,
8394 report it separately rather than in a single diagnostic; this
8395 eases translation.
8396 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8397 (Memory Exhausted): Renamed from Parser Stack Overflow.
8398 Revamp wording slightly to prefer "memory exhaustion".
8399 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8400
8401 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8402
8403 Add i18n support to the GLR skeleton. Partially fix the C++
8404 skeleton; a C++ expert needs to finish this. Remove debugging
8405 msgids; there's little point to having them translated, since they
8406 can be understood only by someone who can read the
8407 (English-language) source code.
8408
8409 Generate runtime-po/bison-runtime.pot automatically, so that we
8410 don't have to worry about garbage getting in that file. We'll
8411 make sure after the next official release that old msgids don't
8412 get lost. See
8413 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8414
8415 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8416 Now auto-generated.
8417 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8418 Fix typos in explanations of the runtime file.
8419 * bootstrap: Change gettext keyword from YYI18N to YY_.
8420 Use standard Makefile.in.in in runtime-po, since we'll arrange
8421 for backward-compatible bison-runtime.po files in a different way.
8422 * data/glr.c (YY_): New macro, from yacc.c.
8423 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8424 Translate messages intended for users.
8425 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8426 the wording in the other skeletons. We don't know that the memory
8427 is virtual.
8428 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8429 Use same method that yacc.c uses.
8430 Don't translate debugging messages.
8431 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8432 it doesn't work (yet), and requires C++ expertise to fix.
8433 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8434 Move defn to a more logical place, to be consistent with other
8435 skeletons.
8436 Don't translate debugging messages.
8437 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8438 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8439 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8440 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8441
8442 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8443 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8444 void, not int.
8445 * tests/glr-regression.at (Badly Collapsed GLR States):
8446 Likewise.
8447 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8448 yylex should return 0 at EOF rather than aborting.
8449
8450 Improve tests for stack overflow in GLR parser.
8451 Problem reported by twlevo@xs4all.nl.
8452 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8453 All uses removed.
8454 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8455 can handle the problem.
8456 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8457 (yyparse): New local variable yyresult to record the result.
8458 Use result of setjmp to set it, rather than storing itinto
8459 struct.
8460 (yyDone): Remove label.
8461 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8462 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8463 if YYABORT is used).
8464 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8465 yyparse status; put status > 1 into diagnostic.
8466 Check that status==2 works.
8467 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8468 Use exit status 3 for failure to open (which shouldn't happen).
8469
8470 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8471
8472 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8473 1 on syntax error; just let yyparse do its thing.
8474 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8475 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8476 (Exploding the Stack Size with Alloca):
8477 (Exploding the Stack Size with Malloc):
8478 Expect exit status 2, not 1, since the parser is supposed to blow
8479 its stack. Problem reported by twlevo@xs4all.nl.
8480
8481 * data/glr.c (yyparse): Don't assume that the initial calls
8482 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8483 Print a stack-overflow message and fail instead.
8484 Initialize the line-number information before creating the stack,
8485 so that the stack-overflow message can report line zero safely.
8486
8487 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8488
8489 Fix problems reported by twlevo@xs4all.nl.
8490 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8491 (yyuserMerge): Provide a default case if b4_mergers is empty.
8492 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8493 * tests/glr-regression.at
8494 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8495 Add casts to pacify C++ compilers.
8496 * tests/glr-regression.at (Improper merging of GLR delayed action
8497 sets): Declare yylex before using it.
8498 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8499 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8500 test for valgrind; valgrind is independent of g++.
8501 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8502 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8503 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8504 Use a destructor, so that we can expand the stack. Change
8505 YYSTYPE to char * so that we can free it. Cast result of malloc.
8506
8507 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8508
8509 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8510 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8511
8512 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8513
8514 * PACKAGING: New file, suggested by Bruno Haible and taken from
8515 similar wording in gettext's PACKAGING file.
8516 * NEWS: Mention PACKAGING.
8517 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8518
8519 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8520
8521 * NEWS: Document recent i18n improvements.
8522 * bootstrap: Get runtime translations into runtime-po.
8523 Create runtime-po files automatically, if possible.
8524 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8525 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8526 does not infringe on the user's name space.
8527 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8528 * doc/bison.texinfo (Internationalization): Revamp the English
8529 and Texinfo syntax a bit, to try to make it clearer.
8530 (Bison Options, Option Cross Key): Mention --print-localedir.
8531 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8532 YYENABLE_NLS. Quote a bit more.
8533 * runtime-po/.cvsignore: New file.
8534 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8535 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8536 * runtime-po/quot.sed: Likewise.
8537 * runtime-po/boldquot.sed: Likewise.
8538 * runtime-po/en@quot.header: Likewise.
8539 * runtime-po/en@boldquot.header: Likewise.
8540 * runtime-po/insert-header.sin: Likewise.
8541 * runtime-po/remove-potcdate.sin: Likewise.
8542 * runtime-po/Makevars: Likewise.
8543 * runtime-po/LINGUAS: Likewise.
8544 * runtime-po/de.po: Likewise; we will rely on the translation project
8545 to maintain this, so "bootstrap" should get it.
8546 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8547 its value.
8548 * src/main.c (main): Bind the bison-runtime domain, too.
8549
8550 2005-07-12 Bruno Haible <bruno@clisp.org>
8551
8552 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8553 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8554 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8555 * runtime-po: New directory.
8556 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8557 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8558 * runtime-po/Rules-quot: New file, copied from po/.
8559 * runtime-po/quot.sed: Likewise.
8560 * runtime-po/boldquot.sed: Likewise.
8561 * runtime-po/en@quot.header: Likewise.
8562 * runtime-po/en@boldquot.header: Likewise.
8563 * runtime-po/insert-header.sin: Likewise.
8564 * runtime-po/remove-potcdate.sin: Likewise.
8565 * runtime-po/Makevars: New file.
8566 * runtime-po/POTFILES.in: New file.
8567 * runtime-po/LINGUAS: New file.
8568 * runtime-po/bison-runtime.pot: New file.
8569 * runtime-po/de.po: New file.
8570 * m4/bison.m4: New file.
8571 * Makefile.am (SUBDIRS): Add runtime-po.
8572 (aclocaldir, aclocal_DATA): New variables.
8573 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8574 Define aclocaldir.
8575 * src/getargs.c (usage): Document --print-localedir option.
8576 (PRINT_LOCALEDIR_OPTION): New enum item.
8577 (long_options): Add --print-localedir option.
8578 (getargs): Handle --print-localedir option.
8579 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8580 (Internationalization): New section.
8581
8582 2005-07-12 Akim Demaille <akim@epita.fr>
8583
8584 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8585 for consistency with the rest of the code.
8586 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8587 Add separators.
8588
8589 2005-07-12 Akim Demaille <akim@epita.fr>
8590
8591 * src/parse-gram.y: Use %printer instead of YYPRINT.
8592
8593 2005-07-12 Akim Demaille <akim@epita.fr>
8594
8595 * src/symtab.h, src/symtab.c (symbol_print): New.
8596 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8597 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8598
8599 2005-07-12 Akim Demaille <akim@epita.fr>
8600
8601 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8602 b4_at_dollar and b4_dollar_dollar.
8603
8604 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8605
8606 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8607 and Pennello's paper.
8608
8609 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8610
8611 * data/yacc.c (yyparse): Undo previous patch. Instead,
8612 set yylsp[0] and yyvsp[0] only if the initial action
8613 sets yylloc and yylval, respectively.
8614
8615 * data/yacc.c (yyparse): In the initial action, set
8616 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8617 This avoids the use of undefined variables if the initial
8618 action does not set yylloc and/or yylval.
8619
8620 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8621
8622 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8623 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8624 Remove from CVS. These files are automatically generated.
8625 * examples/extexi: Clarify that this file is now part of Bison,
8626 not GNU M4, and that it works with any POSIX-compatible Awk.
8627 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8628 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8629 so that we also get calc++-parser.yy. Geneate it.
8630 Use $(AWK), not gawk, since any conforming Awk will do.
8631 Put comment before action, since older 'make' can't handle comment
8632 in action.
8633 $(BUILT_SOURCES): List all built sources, not just some of them.
8634 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8635 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8636 $($(calc_sources_generated)): Remove unnecessary test for existence
8637 of target. (This had a shell syntax error anyway; a stray "x".)
8638 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8639 calc++-parser.yy.
8640 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8641
8642 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8643 implied by the other modules.
8644
8645 2005-07-06 Akim Demaille <akim@epita.fr>
8646
8647 Bind examples/calc++ to the package.
8648 * examples/calc++/Makefile: Remove, replaced by...
8649 * examples/calc++/Makefile.am: ... this new file.
8650 * examples/calc++/test: Remove input.
8651 * examples/calc++/compile: Remove.
8652 * examples/Makefile.am: New.
8653 * configure.ac, Makefile.am: Adjust.
8654 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8655
8656 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8657
8658 * data/glr.c (yyFail): Drastically simplify; since the format argument
8659 never had any % directives, we can simply pass it to yyerror.
8660 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8661 be modified later, as that is the usual style in glr.c.
8662 Problems reported by Paul Hilfinger.
8663
8664 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8665 and size overflow errors.
8666 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8667 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8668 (YYSIZEMAX): New macro.
8669 (yystpcpy): New function, taken from yacc.c.
8670 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8671 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8672 so that we don't have to maintain their signatures.
8673 (yyFail): Check for buffer overflow, by using vsnprintf rather
8674 than vsprintf. Allocate a bigger buffer if possible.
8675 Report an error if buffer allocation fails.
8676 (yyStackOverflow): New function.
8677 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8678 the initialization was successful. It might fail if storage was
8679 exhausted.
8680 (yyexpandGLRStack): Add more checks for storage allocation failure.
8681 Use yyStackOverflow to report failures.
8682 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8683 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8684 Don't assume stack number fits in int.
8685 (yysplitStack): Check for storage allocation failure.
8686 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8687 can print diagnostics on storage allocation failure. All callers
8688 changed.
8689 (yyresolveValue): Use yybool for boolean.
8690 (yyreportSyntaxError): Check for size-calculation overflow.
8691 This code is taken from yacc.c.
8692 (yyparse): Check for storage allocation errors when allocating
8693 the initial stack.
8694
8695 2005-07-05 Akim Demaille <akim@epita.fr>
8696
8697 Extract calc++ from the documentation.
8698 * doc/bison.texinfo (Calc++): Add the extraction marks.
8699 * examples/extexi: New, from the aborted GNU Programming 2E.
8700 Separate the different paragraph of a file with empty lines.
8701 * examples/Makefile: Use it to extract the whole calc++ example.
8702
8703 2005-06-24 Akim Demaille <akim@epita.fr>
8704
8705 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8706 class typedefs.
8707
8708 2005-06-22 Akim Demaille <akim@epita.fr>
8709
8710 * doc/bison.texinfo (C++ Language Interface): First stab.
8711 (C++ Parsers): Remove.
8712
8713 2005-06-22 Akim Demaille <akim@epita.fr>
8714
8715 * data/lalr1.cc (yylex_): Honor %lex-param.
8716
8717 2005-06-22 Akim Demaille <akim@epita.fr>
8718
8719 Start a set of simple examples.
8720 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8721 * examples/calc++/calc++-driver.hh,
8722 * examples/calc++/calc++-parser.yy,
8723 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8724 * examples/calc++/compile, examples/calc++/test: New.
8725
8726 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8727
8728 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8729 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8730 which stems from the 2005-05-27 patch.
8731
8732 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8733
8734 * data/glr.c: Modify treatment of unused parameters to permit use
8735 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8736
8737 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8738
8739 Fix infringement on user name space reported by Janos Zoltan Szabo.
8740 * data/yacc.c (yyparse): strlen -> yystrlen.
8741
8742 2005-05-30 Akim Demaille <akim@epita.fr>
8743
8744 * data/lalr1.cc (_): New.
8745 Translate the various messages.
8746
8747 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8748
8749 Fix infringement on user name space reported by Bruno Haible.
8750 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8751 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8752 the user's name space.
8753 (alloca): Include <stdlib.h> to get it, if it's not built in.
8754 (YYMALLOC, YYFREE): Define only if needed.
8755 (malloc, free): Declare, but only if needed, as this infringes on
8756 the user name space.
8757
8758 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8759
8760 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8761 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8762 with %d format.
8763 * lib/ebitset.c (min, max): Undef before defining.
8764 * lib/vbitset.c (min, max): Likewise.
8765 * lib/subpipe.c (create_subpipe): Save local variables in case
8766 vfork clobbers them.
8767
8768 2005-05-24 Bruno Haible <bruno@clisp.org>
8769
8770 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8771 error message syntax used by gcc-4.0.
8772
8773 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8774
8775 * README: Mention m4 1.4.3. Remove obsolete advice about
8776 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8777
8778 * bootstrap: Remove workaround for problem I encountered with
8779 gettext 0.14.1; it seems to be fixed now.
8780
8781 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8782
8783 * NEWS: Version 2.0a.
8784
8785 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8786 the previous change.
8787
8788 Various maintainer cleanups.
8789 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8790 conftest*, for benefit of CVS commands run at the same time as
8791 "configure". Add build-aux, since "bootstrap" now creates it and
8792 its subfiles.
8793 * Makefile.cfg (move_if_change): Remove.
8794 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8795 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8796 (po_repo, do-po-update, po-update, wget_files, get-targets):
8797 (config.guess-url_prefix, config.sub-url_prefix):
8798 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8799 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8800 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8801 Remove.
8802 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8803 this is now the recommended name.
8804 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8805 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8806 ylwrap. These files now go into build-aux.
8807 * config/move-if-change: Remove.
8808 * config/prev-version.txt: Bump from 1.75 to 2.0.
8809
8810 * bootstrap: Add stdio-safer, unistd-safer modules.
8811 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8812 we don't need it).
8813 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8814 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8815 * lib/subpipe.c: Include "unistd-safer.h".
8816 (create_subpipe): Make sure all the newly-created
8817 file descriptors are > 2, so that diagnostics don't
8818 get sent down them (which might cause Bison to hang, in theory).
8819 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8820 * src/files.c (xfopen): Use fopen_safer, not fopen.
8821
8822 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8823 yesterday's yacc.c fix.
8824
8825 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8826
8827 * data/glr.c, data/lalr1.cc: Update copyright date.
8828
8829 Fix a destructor bug reported by Wolfgang Spraul in
8830 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8831 * data/yacc.c (yyabortlab): Don't call destructor, and
8832 don't set yychar to EMPTY.
8833 (yyoverflowlab): Don't call destructor.
8834 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8835 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8836 since we no longer output the message "discarding lookahead token
8837 end of input ()".
8838
8839 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8840
8841 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8842 fix a small glitch in debugging output.
8843 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8844 after YY_SYMBOL_PRINT where needed.
8845
8846 (struct yyGLRState): Add some comments.
8847 (struct yySemanticOption): Add some comments.
8848 (union yyGLRStackItem): Add comment.
8849
8850 (yymergeOptionSets): Correct this to properly perform the union,
8851 avoiding infinite reported by Michael Rosien.
8852 Update comment.
8853
8854 * tests/glr-regression.at: Add test for GLR merging error reported
8855 by M. Rosien.
8856
8857 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8858
8859 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8860 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8861 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8862 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8863 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8864 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8865 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8866 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8867 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8868 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8869 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8870 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8871 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8872 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8873 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8874 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8875 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8876 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8877 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8878 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8879 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8880 src/output.h, src/parse-gram.c, src/parse-gram.h,
8881 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8882 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8883 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8884 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8885 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8886 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8887 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8888 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8889 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8890 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8891 tests/reduce.at, tests/regression.at, tests/sets.at,
8892 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8893 Update FSF postal mail address.
8894
8895 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8896
8897 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8898 Problem reported by Ralf Menzel.
8899
8900 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8901
8902 * tests/actions.at: Test that stack overflow invokes destructors.
8903 From Marcus Holland-Moritz.
8904 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8905 from here....
8906 (yyreturn): to here. That way, destructors are called properly
8907 even if the stack overflows, or the user calls YYACCEPT or
8908 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8909 (yyoverflowlab): Destroy the lookahead.
8910
8911 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8912
8913 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8914
8915 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8916
8917 * NEWS: Bison-generated C parsers no longer quote literal strings
8918 associated with tokens.
8919 * src/output.c (prepare_symbols): Don't escape strings,
8920 since users don't want to see C escapes.
8921 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8922 in diagnostics.
8923 * tests/input.at (Torturing the Scanner): Likewise.
8924 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8925
8926 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8927
8928 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8929 the data size is known to be too small and we can't increase it.
8930 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8931
8932 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8933
8934 * src/parse-gram.y: Include quotearg.h.
8935 (string_as_id): Quote $1 before using it as a key, since the
8936 lexer no longer quotes it for us.
8937 (string_content): Don't strip quotes, since lexer no longer
8938 quotes it for us.
8939 * src/scan-gram.l: Include quotearg.h.
8940 ("\""): Omit quote.
8941 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8942 a key, since the rest of the lexer doesn't quote it.
8943 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8944 * tests/regression.at (Token definitions): Check for backslashes
8945 in token strings.
8946
8947 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8948 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8949 (yyparse): Revamp code to generate long syntax error message, to
8950 make it easier to translate, and to avoid problems with arithmetic
8951 overflow. Change "virtual memory" to "memory" in diagnostic, since
8952 we don't know whether the memory is virtual.
8953
8954 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8955
8956 * NEWS: Bison-generated C parsers now use the _ macro to
8957 translate strings.
8958 * data/yacc.c (_) [!defined _]: New macro.
8959 All English strings wrapped inside this macro.
8960 * doc/bison.texinfo (Bison Parser): Document _.
8961 * po/POTFILES.in: Include src/parse-gram.c, since it now
8962 includes translateable strings that parse-gram.y doesn't.
8963
8964 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8965
8966 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8967 reverting the 2004-10-11 change to this function.
8968 (symbol_check_alias_consistency): Don't call symbol_type_set
8969 if the type name is already correct.
8970 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8971
8972 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8973
8974 * tests/regression.at (Token definitions): Don't use a token named
8975 c, as that generates a "#define c ..." that runs afoul of buggy
8976 stdlib.h that uses the identifier c as a member of struct
8977 drand48_data. Problem reported by Horst Wente.
8978
8979 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8980
8981 * bootstrap: Change translation URL from
8982 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8983 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8984 redirection glitches. Problem reported by twlevo@xs4all.nl.
8985
8986 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8987
8988 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8989 after operands; POSIX says this isn't portable for the c99 command.
8990
8991 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8992
8993 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8994 immediately if a data overrun has occurred; this may help us track
8995 down what may be a spurious failure on MacOS.
8996
8997 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8998
8999 Respond to problems reported by twlevo@xs4all.nl.
9000
9001 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9002
9003 * src/vcg.h: Comment fix.
9004 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9005 (G_CMAX): Change to -1 instead of INT_MAX.
9006
9007 * data/yacc.c (yyparse): Omit spaces before #line.
9008
9009 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9010
9011 * src/tables.c (state_number_to_vector_number): Put it inside an
9012 "#if 0", since it's not currently used. Problem reported by
9013 Roland McGrath.
9014
9015 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9016
9017 * src/output.c (escaped_output): Renamed from
9018 escaped_file_name_output, since we now use it for symbol tags as
9019 well. All uses changed.
9020 (symbol_destructors_output, symbol_printers_output):
9021 Escape symbol tags too.
9022 Problem reported by Matyas Forstner in
9023 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9024
9025 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9026 not needed.
9027 * src/output.c (user_actions_output, token_definitions_output,
9028 symbol_destructors_output, symbol_printers_output): Likewise.
9029 * src/reader.c (prologue_augment): Likewise.
9030 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9031
9032 * src/vcg.c (output_edge): Don't quote linestyle arg.
9033 Problem reported by twlevo@xs4all.nl.
9034
9035 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9036
9037 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9038 example, reported by Derek M Jones. Also, make the example even
9039 more outrageous, to better illustrate how bad the problem is.
9040
9041 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9042
9043 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9044 putsym. Typo reported by Sebastian Piping.
9045
9046 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9047
9048 * doc/bison.texinfo (Language and Grammar): some -> same
9049 (Epilogue): int he -> in the
9050 Typos reported by Sebastian Piping via Justin Pence.
9051
9052 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9053
9054 * tests/glr-regression.at (Improper handling of embedded actions
9055 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9056 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9057 with dollar signs in test names.
9058 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9059 for a similar reason.
9060
9061 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9062
9063 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9064 wants to redefine G_VIEW.
9065
9066 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9067
9068 * src/vcg.c (get_view_str): Remove case for normal_view.
9069 Problem reported by twlevo@xs4all.nl.
9070
9071 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9072
9073 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9074 Problem reported by twlevo@xs4all.nl.
9075
9076 * doc/bison.texinfo: Change @dircategory from "GNU programming
9077 tools" to "Software development". Requested by Richard Stallman
9078 via Karl Berry.
9079
9080 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9081
9082 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9083 Problem reported by twlevo@xs4all.nl.
9084
9085 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9086
9087 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9088 keyword; it's not needed with modern compilers, and it doesn't
9089 affect correctness with older compilers. Suggested by
9090 twlevo@xs4all.nl.
9091
9092 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9093
9094 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9095 gcc -Wswitch-default.
9096 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9097 * data/yacc.c (yyparse): Likewise.
9098
9099 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9100
9101 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9102 already. Let config.h define any nonstandard values.
9103
9104 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9105
9106 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9107 for the benefit of slower hosts. Problem reported by
9108 Nelson H. F. Beebe.
9109
9110 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9111
9112 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9113 being defined and not used.
9114 * data/lalr1.cc (yyparse): Likewise.
9115 Use "if (false)" rather than "if (0)".
9116
9117 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9118
9119 * TODO: Mention that we should allow NUL bytes in tokens.
9120
9121 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9122
9123 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9124 Problem reported by Hans Aberg.
9125
9126 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9127
9128 * src/getargs.c (version): Happy new year; update overall
9129 program copyright date from 2004 to 2005.
9130
9131 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9132 Problem reported by Hans Aberg.
9133 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9134 (Output file names.): Add a test for the case when standard output
9135 is closed.
9136
9137 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9138
9139 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9140 to fix an oversight in the Bison 2.0 manual.
9141
9142 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9143
9144 * NEWS: Version 2.0. Reformat the existing news items since
9145 1.875, so that related items are grouped together.
9146 * configure.ac (AC_INIT): Bump version to 2.0.
9147 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9148
9149 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9150 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9151 otherwise, we're not testing alloca. Unfortunately there's no
9152 simple way to consult HAVE_ALLOCA here.
9153
9154 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9155 for yymsg, too.
9156
9157 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9158 hand. This avoids a warning about comparing int to size_t when
9159 GCC warnings are enabled.
9160
9161 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9162
9163 * NEWS: Bison-generated parsers no longer default to using the
9164 alloca function (when available) to extend the parser stack, due
9165 to widespread problems in unchecked stack-overflow detection.
9166 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9167 responsibility to set it to a positive value. This lets the user
9168 specify a value that is not a preprocessor constant.
9169 * data/yacc.c (YYMAXDEPTH): Likewise.
9170 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9171 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9172 to be a compile-time constant. However, explain the constraints on it.
9173 Also, explain the constraints on YYINITDEPTH.
9174 (Table of Symbols): Explain that alloca is no longer the default.
9175 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9176 to 1.
9177
9178 * doc/bison.texinfo (Location Default Action): Mention that n must
9179 be zero when k is zero. Suggested by Frank Heckenbach.
9180
9181 2004-12-22 Akim Demaille <akim@epita.fr>
9182
9183 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9184 (parser::state_type, parser::semantic_type, parser::location_type):
9185 Private, not public.
9186 (parser::parse): Return ints, not bool.
9187 Returning a bool introduces a problem: 0 corresponds to false, and
9188 it seems weird to return false on success. Returning true changes
9189 the conventions for yyparse.
9190 Alternatively we could return void and send an exception.
9191 There is no clear consensus (yet?).
9192 (state_stack, semantic_stack, location_stack): Rename as...
9193 (state_stack_type, semantic_stack_type, location_stack_type): these.
9194 Private, not public.
9195 * tests/c++.at: New.
9196 * tests/testsuite.at, tests/Makefile.am: Adjust.
9197
9198 2004-12-21 Akim Demaille <akim@epita.fr>
9199
9200 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9201
9202 2004-12-21 Akim Demaille <akim@epita.fr>
9203
9204 Don't impose std::string for filenames.
9205
9206 * data/lalr1.cc (b4_filename_type): New.
9207 (position::filename): Use it.
9208 (parser.hh): Move the inclusion of stack.hh and location.hh below
9209 the user code, so that needed headers for the filename type can be
9210 included first.
9211 Forward declare them before the user code.
9212 * tests/Makefile.am (check-local, installcheck-local): Pass
9213 TESTSUITEFLAGS to the TESTSUITE.
9214
9215 2004-12-20 Akim Demaille <akim@epita.fr>
9216
9217 Use more STL like names: my_class instead of MyClass.
9218
9219 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9220 (SemanticStack, SemanticType, StateStack, StateType)
9221 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9222 (Parser::value): Rename as...
9223 (location_stack, location_type, rhs_number_type, semantic_stack)
9224 (semantic_type, state_stack, state_type, token_number_type, stack)
9225 (slice, traits, parser::yylloc, parser::yylval): these.
9226
9227 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9228
9229 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9230
9231 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9232 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9233
9234 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9235
9236 Remove uses of 'short int' and 'unsigned short int'. This raises
9237 some arbitrary limits. It uses more memory but nowadays that's
9238 not much of an issue.
9239
9240 This change does not affect the generated parsers; that's a different
9241 task, as some users will want to conserve memory there.
9242
9243 Ideally we should use size_t to represent all object counts, and
9244 something like ptrdiff_t to represent signed differences of object
9245 counts; but that will require more code-cleanup than I have the
9246 time to do right now.
9247
9248 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9249 Use size_t, not int or short int, to count objects.
9250 * src/closure.c (nritemset, closure): Likewise.
9251 * src/closure.h (nritemset, closure): Likewise.
9252 * src/nullable.c (nullable_compute): Likewise.
9253 * src/print.c (print_core): Likewise.
9254 * src/print_graph.c (print_core): Likewise.
9255 * src/state.c (state_compare, state_hash): Likewise.
9256 * src/state.h (struct state): Likewise.
9257 * src/tables.c (default_goto, goto_actions): Likewise.
9258
9259 * src/gram.h (rule_number, rule): Use int, not short int.
9260 * src/output.c (prepare_rules): Likewise.
9261 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9262 errs, reductions): Likewise.
9263 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9264 Likewise.
9265 * src/tables.c (vector_number, tally, action_number,
9266 ACTION_NUMBER_MINIMUM): Likewise.
9267 * src/output.c (muscle_insert_short_int_table): Remove.
9268
9269 2004-12-17 Akim Demaille <akim@epita.fr>
9270
9271 * data/lalr1.cc: Extensive Doxygenation.
9272 (error_): Rename as...
9273 (error): this, since it is visible to the user.
9274 Adjust callers.
9275 (Parser::message): Now an automatic variable from...
9276 (Parser::yyreport_syntax_error_): here.
9277 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9278 Parser::error.
9279 * tests/input.at: Escape $.
9280
9281 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9282
9283 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9284 Parenthesize rhs to avoid obscure problems with mistakes like
9285 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9286 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9287 b4_rhs_location): Likewise.
9288 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9289 b4_rhs_location): Likewise.
9290
9291 2004-12-16 Akim Demaille <akim@epita.fr>
9292
9293 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9294 yacc.c: be sure to stay within yycheck_.
9295 * tests/actions.at: Re-enable C++ tests.
9296
9297 2004-12-16 Akim Demaille <akim@epita.fr>
9298
9299 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9300 real.
9301
9302 2004-12-16 Akim Demaille <akim@epita.fr>
9303
9304 Use #define to handle the %name-prefix.
9305
9306 * data/glr.c, data/yacc.c: Comment changes.
9307 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9308 so that one can refer to yylex in the parser file, and have it
9309 renamed, as is the case with other skeletons.
9310
9311 2004-12-16 Akim Demaille <akim@epita.fr>
9312
9313 Move lalr1.cc internals into yy*.
9314
9315 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9316 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9317 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9318 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9319 (empty_, final_, terror_, errcode_, ntokens_)
9320 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9321 (looka_, ilooka_, error_range_, nerrs_):
9322 Rename as...
9323 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9324 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9325 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9326 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9327 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9328 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9329 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9330 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9331 these.
9332
9333 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9334
9335 Fix some problems reported by twlevo at xs4all.
9336 * src/symtab.c (symbol_new): Report an error if the input grammar
9337 contains too many symbols. This is better than calling abort() later.
9338 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9339 (struct node, struct graph):
9340 Rename member expand to stretch. All uses changed.
9341 (struct graph): Remove member layoutalgorithm. All uses removed.
9342 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9343 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9344 All uses changed.
9345 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9346
9347 2004-12-15 Akim Demaille <akim@epita.fr>
9348
9349 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9350 Add more Doxygen comments.
9351 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9352 (report_syntax_error_, translate_): Rename as...
9353 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9354 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9355
9356 2004-12-15 Akim Demaille <akim@epita.fr>
9357
9358 * data/lalr1.cc (lex_): Rename as...
9359 (yylex_): this.
9360 Move the trace here.
9361 Take the %name-prefix into account.
9362 Reported by Alexandre Duret-Lutz.
9363
9364 2004-12-15 Akim Demaille <akim@epita.fr>
9365
9366 Simplify the C++ parser constructor.
9367
9368 * data/lalr1.cc (debug_): Rename as...
9369 (yydebug_): so that the parser's internals are always in the yy*
9370 pseudo namespace.
9371 Adjust uses.
9372 (b4_parse_param_decl): Remove the leading comma as it is now only
9373 called as unique argument list.
9374 (Parser::Parser): Remove the constructor accepting a location and
9375 an initial debugging level.
9376 Remove from the other ctor the argument for the debugging level.
9377 (debug_level_type, debug_level, set_debug_level): New.
9378
9379 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9380 constructor calls.
9381
9382 2004-12-15 Akim Demaille <akim@epita.fr>
9383
9384 Remove b4_root related material: failure experiment
9385 (which goal was to allow to derive from a class).
9386
9387 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9388 definitions and uses.
9389
9390 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9391
9392 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9393 not 2, since it's not portable to subtract 1 from the start of an
9394 array. The new item 0 is never set or used. All uses changed.
9395
9396 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9397 the default definition of YYLLOC_DEFAULT. Problem reported
9398 by Frank Heckenbach.
9399
9400 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9401
9402 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9403 the normal case and one for the error case. Just use the
9404 first one uniformly. Problem reported by Frank Heckenbach.
9405 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9406 use exactly the same macro in both places.
9407 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9408 so that the normal-case YYRHSLOC works for the error case too.
9409 All uses changed.
9410 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9411 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9412 * doc/bison.texinfo (Location Default Action): Don't claim that
9413 we have an array of locations. Use the same macro for both glr
9414 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9415 the index is 0.
9416
9417 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9418
9419 * HACKING: Update email addresses to send announcements to.
9420
9421 * configure.ac (AC_INIT): Bump version to 1.875f.
9422
9423 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9424
9425 * NEWS: Version 1.875e.
9426 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9427
9428 * src/scan-skel.l: Include "complain.h", for "fatal".
9429
9430 * src/relation.h (relation_print, relation_digraph):
9431 Relation sizes are of type relation_node, not size_t (this is
9432 merely a doc fix, since the two types are equivalent).
9433 (relation_transpose): Relation sizes are of type relation_node,
9434 not int.
9435 * src/relation.c: Likewise.
9436 (top, infinity): Now of type relation_node, not int.
9437 (traverse, relation_transpose): Use relation_node, not int.
9438
9439 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9440 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9441 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9442
9443 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9444 specifying whether the test should be skipped. Use it tp
9445 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9446 fail on some hosts, and should be skipped.
9447
9448 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9449
9450 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9451 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9452 unless otherwise specified below.
9453
9454 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9455 to allocate kernel_base, kernel_items, kernel_size, since
9456 they needn't be initialized to 0.
9457 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9458 * src/closure.c (new_closure): Likewise, for itemset.
9459 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9460 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9461 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9462 (build_relations): Likewise for edge, states1, includes.
9463 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9464 * src/reader.c (packgram): Likewise, for ritem, rules.
9465 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9466 * src/relation.c (relation_digraph): Likewise for VERTICES.
9467 (relation_transpose): Likewise for new_R, end_R.
9468 * src/symtab.c (symbols_token_translations_init): Likewise for
9469 token_translations.
9470 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9471 (token_actions): Likewise for yydefact, actrow, conflrow,
9472 conflict_list.
9473 (save_column): Likewise for froms[symno], tos[symno].
9474 (goto_actions): Likewise for state_count.
9475 (pack_table): Likewise for base, pos, check.
9476 (tables_generate): Likewise for width.
9477
9478 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9479 for initial core. Just have a separate core, so we needn't worry
9480 about whether kernel_size and kernel_base are initialized.
9481
9482 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9483 kernel_size, kernel_items): Remove unnecessary initialization.
9484 * src/conflicts.c (conflicts): Likewise.
9485 * src/derives.c (derives): Likewise.
9486 * src/muscle_tablc (muscle_insert): Likewise.
9487 * src/relation.c (relation_digraph): Likewise.
9488 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9489 conflrow, conflict_table, conflict_list, table, check):
9490 Likewise.
9491
9492 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9493 This is because all callers pass unsigned int.
9494 * src/closure.h (new_closure): Likewise.
9495
9496 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9497 (build_relations): Initialize includes[i] in all cases.
9498 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9499 and rules[ruleno].precsym. Initialize members in order.
9500 * src/relation.c (relation_transpose): Always initialize new_R[i]
9501 and end_R[i].
9502 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9503
9504 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9505 conflict_list[0] was always 0, but now it isn't initialized.
9506
9507 * src/table.c (table_grow): When conflict_table grew, the grown
9508 area wasn't cleared. Fix this.
9509
9510 * lib/.cvsignore: Add strdup.c, strdup.h.
9511 * m4/.cvsignore: Add strdup.m4.
9512
9513 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9514
9515 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9516 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9517 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9518 ngotos + 1 without checking for overflow.
9519 (build_relations): Use END_NODE, not -1, to denote end of edges.
9520 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9521 build_relations): Use goto_number, not int, for goto numbers.
9522 * src/tables.c (save_column, default_goto): Likewise.
9523
9524 2004-11-23 Akim Demaille <akim@epita.fr>
9525
9526 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9527 of #defining from yystype.
9528 Don't typedef yystype, C++ does not need it.
9529 This lets it possible to forward declare it as union.
9530
9531 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9532
9533 * bootstrap (gnulib_modules): Add extensions.
9534 Problem reported by Jim Meyering.
9535
9536 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9537
9538 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9539 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9540 src/system.h, src/tables.c: XFREE -> free, to accommodate
9541 recent change to gnulib xalloc.h.
9542 Problem reported by Jim Meyering.
9543
9544 2004-11-17 Akim Demaille <akim@epita.fr>
9545
9546 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9547
9548 2004-11-17 Akim Demaille <akim@epita.fr>,
9549 Alexandre Duret-Lutz <adl@gnu.org>
9550
9551 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9552 changes.
9553 (YYCDEBUG): Adjust.
9554 Use it instead of cdebug_.
9555 (Parser::debug_stream, Parser::set_debug_stream): New.
9556 (Parser::symprint_): Define cdebug_ for temporary backward
9557 compatibility.
9558 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9559 debug_stream ().
9560
9561 2004-11-17 Akim Demaille <akim@epita.fr>
9562
9563 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9564 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9565 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9566 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9567
9568 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9569
9570 * data/glr.c (yyloc_default): Remove; not used.
9571 Problem reported by Frank Heckenbach.
9572
9573 2004-10-25 Akim Demaille <akim@epita.fr>
9574
9575 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9576 Introduce another definition to address simple location arrays.
9577 (yyGLRStack): New member: yyerror_range.
9578 (yyrecoverSyntaxError, yyparse): Update it.
9579 (yyrecoverSyntaxError): Use it when shifting the error token to
9580 have an accurate range, equivalent to the one computed by both
9581 yacc.c and lalr1.cc.
9582 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9583 that column numbers start at column 0, as per GNU Coding
9584 Standards, the others tests, and the doc.
9585 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9586 Adjust to the above change (first column is 0).
9587 And adjust the location of the "<error>", now covering the whole
9588 line.
9589
9590 2004-10-22 Akim Demaille <akim@epita.fr>
9591 and Paul Eggert <eggert@cs.ucla.edu>
9592
9593 Remove some arbitrary limits on goto numbers and relations.
9594 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9595 initial values, since they're never used.
9596 (set_goto_map): ngotos is now unsigned, so test for overflow
9597 by seeing whether it wraps around to zero.
9598 * src/lalr.h (goto_number): Now size_t, not short int.
9599 (GOTO_NUMBER_MAXIMUM): Remove.
9600 * src/relation.c (relation_print, traverse, relation_transpose):
9601 Check for END_NODE rather than looking at sign.
9602 * src/relation.h (END_NODE): New macro.
9603 (relation_node): Now size_t, not short int.
9604
9605 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9606
9607 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9608 keyword, not an identifier. Problem reported by Baron Schwartz in
9609 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9610
9611 2004-10-11 Akim Demaille <akim@epita.fr>
9612
9613 * src/symtab.c (symbol_check_alias_consistency): Also check
9614 type names, destructors, and printers.
9615 Reported by Alexandre Duret-Lutz.
9616 Recode the handling of associativity and precedence in terms
9617 of symbol_precedence_set.
9618 Accept no redeclaration at all, not even equal to the previous
9619 value.
9620 (redeclaration): New.
9621 Use it to factor redeclaration complaints.
9622 (symbol_make_alias): Don't set the type of the alias, let
9623 symbol_check_alias_consistency do it as for other features.
9624 * src/symtab.h (symbol): Add new member prec_location, and
9625 type_location.
9626 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9627 * tests/input.at (Incompatible Aliases): New.
9628
9629 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9630
9631 .cvsignore fixes to accommodate gnulib changes,
9632 and the practice of naming build directories "_build".
9633 * .cvsignore: Add "_*". Sort.
9634 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9635 * m4/.cvsignore: Add "*_gl.m4".
9636
9637 2004-10-06 Akim Demaille <akim@epita.fr>
9638
9639 * src/parse-gram.y (add_param): Fix the truncation of trailing
9640 spaces.
9641
9642 2004-10-05 Akim Demaille <akim@epita.fr>
9643
9644 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9645 whether the reducion was empty or not. This leaves room to
9646 improve the use of YYLLOC_DEFAULT in such a case.
9647 lalr1.cc is still experimental, so changing this is acceptable.
9648 And finally, there are probably not many users who changed the
9649 handling of locations in GLR, so changing is admissible too.
9650
9651 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9652 empty reduction, set @$ to an empty location ending the previously
9653 stacked symbol.
9654 Adjust uses to make sure the code is triggered on empty
9655 reductions.
9656 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9657 expected output: empty reductions have empty locations.
9658
9659 2004-09-29 Akim Demaille <akim@epita.fr>
9660
9661 * data/lalr1.cc: Move towards a more standard C++ coding style
9662 for templates: Class < T > -> Class<T>.
9663
9664 2004-09-29 Akim Demaille <akim@epita.fr>
9665
9666 * data/lalr1.cc: Reinstall the former ctor, for sake of
9667 compatibility, but warn it will be removed.
9668 Move towards a more standard C++ coding style (i.e., type *var ->
9669 type* var).
9670
9671 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9672
9673 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9674 since it's less likely to work if NULs are involved in the future.
9675
9676 2004-09-27 Akim Demaille <akim@epita.fr>
9677
9678 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9679
9680 2004-09-27 Akim Demaille <akim@epita.fr>
9681
9682 * data/lalr1.cc (b4_parse_param_decl_1): New.
9683 (b4_parse_param_decl): Use it to have different names between attribute
9684 and argument names.
9685 (b4_cc_constructor_call): Likewise.
9686
9687 2004-09-24 Akim Demaille <akim@epita.fr>
9688
9689 * src/parse-gram.y (add_param): Strip the leading and trailing
9690 blanks from a formal argument declaration.
9691 (YY_LOCATION_PRINT): New.
9692
9693 2004-09-24 Akim Demaille <akim@epita.fr>
9694
9695 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9696 after the location.
9697
9698 2004-09-24 Akim Demaille <akim@epita.fr>
9699
9700 * doc/bison.texinfo (Table of Symbols): Sort.
9701
9702 2004-09-21 Akim Demaille <akim@epita.fr>
9703
9704 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9705 the useless parentheses.
9706 Suggested by Paul Eggert.
9707
9708 2004-09-20 Akim Demaille <akim@epita.fr>
9709
9710 Let the initial-action act on the look-ahead, and use it for the
9711 "initial push" (corresponding to an hypothetical beginning-of-file).
9712 And let lalr1.cc honor %initial-action.
9713
9714 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9715 example.
9716 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9717 (Parser::Parser): Remove the ctor that used to initialize it.
9718 (Parser::parse): Like in the other skeletons, issue the "starting
9719 parse" message before any action.
9720 Honor %initial-action.
9721 Initialize the stacks with the lookahead.
9722 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9723 look-ahead.
9724 Push them in the stacks.
9725 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9726
9727 2004-09-20 Akim Demaille <akim@epita.fr>
9728
9729 * doc/bison.texinfo (Initial Action Decl): New.
9730
9731 2004-09-20 Akim Demaille <akim@epita.fr>
9732
9733 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9734 clearer criterion to define it.
9735 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9736 When reducing on an empty RHS, use the latest stacked location as
9737 location.
9738 yylloc is not always available.
9739 * data/glr.c: Likewise.
9740 Also, honor initial-actions.
9741
9742 2004-09-20 Akim Demaille <akim@epita.fr>
9743
9744 * data/yacc.c (YY_LOCATION_PRINT): New.
9745 Define when we know YYLTYPE's structure, i.e., when the default
9746 YYLLOC_DEFAULT is used.
9747 * data/c.m4 (b4_yysymprint_generate): Use it.
9748 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9749 value of the result.
9750 (error_start_): Replace with...
9751 (error_range_): this location array.
9752 This allows to replace code relying on the implementation of
9753 locations by portable code.
9754 * data/yacc.c (yylerrsp): Replace with...
9755 (yyerror_range): this.
9756 Every time a token is popped, update yyerror_range[0], to have an
9757 accurate location for the error token.
9758 * data/glr.c (YY_LOCATION_PRINT): New.
9759 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9760 deference a pointer.
9761 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9762 report the location in %printers.
9763
9764 * src/scan-skel.l: Instead of abort, report error messages to ease
9765 understanding skeleton scanning failures.
9766
9767 2004-09-16 Akim Demaille <akim@epita.fr>
9768
9769 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9770 (iterator, const_iterator): these, to be more in the C++ spirit.
9771 Also, return reverse iterators so that when displaying the stack
9772 we display its bottom first.
9773 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9774 from yacc.c.
9775 We should probably use vector here though.
9776
9777 2004-09-16 Akim Demaille <akim@epita.fr>
9778
9779 Have more complete shift traces.
9780
9781 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9782 to report Shifts instead of ad hoc YYDPRINTF invocations,
9783 including for the error token.
9784 * data/lalr1.cc (symprint_): Output the location.
9785 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9786 output the location within the %printer.
9787 Activate GLR tests, at least to make sure they compile properly.
9788 They still don't pass though.
9789 * tests/calc.at: Adjust expect verbose output, since now "Entering
9790 state..." is on a different line than the "Shifting" message.
9791
9792 2004-09-08 Akim Demaille <akim@epita.fr>
9793
9794 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9795 Bison directive from the Bison file to the invocation of this
9796 macro, so that these directives are passed to
9797 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9798 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9799 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9800 the extra Bison directives instead of the whole series.
9801 Change the grammar so that there are recoverable errors, and
9802 unrecoverable errors. Now we can have the parser give up before
9803 consuming the whole input. As a result we now can observe that
9804 the lookahead is freed when needed.
9805 Change the parser source to parse argv[1] instead of a hard coded
9806 string.
9807 Simplify yylex, and give a value and location to EOF.
9808 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9809 passed directives already coded in the file.
9810 Add some tests to check the location of "error".
9811 For some tests, the C++ parser is correct, and not yacc.c.
9812 For other tests, they provide different, but unsatisfying, values,
9813 so keep the C++ value so that at least one parser is "correct"
9814 according to the test suite.
9815 (Actions after errors): Remove, this is subsumed by the
9816 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9817
9818 2004-09-06 Akim Demaille <akim@epita.fr>
9819
9820 * data/lalr1.cc: Adjust the indentation of the labels.
9821 (Parser::pop): New.
9822 Use it.
9823
9824 2004-09-06 Akim Demaille <akim@epita.fr>
9825
9826 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9827 argument, an informative message.
9828 Call YY_SYMBOL_PRINT.
9829 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9830 * data/lalr1.cc (destruct_): Likewise.
9831 In addition, no longer depend on b4_yysymprint_generate and
9832 b4_yydestruct_generate to generate these functions, do it "by
9833 hand".
9834
9835 2004-09-03 Akim Demaille <akim@epita.fr>
9836
9837 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9838 invoked, yydestruct the lookahead.
9839 * tests/calc.at (Calculator $1): Update the expected lengths of
9840 traces: there is an added line for the discarded lookahead.
9841 * doc/bison.texinfo (Destructor Decl): Some rewording.
9842 Define "discarded" symbols.
9843
9844 2004-09-02 Akim Demaille <akim@epita.fr>
9845
9846 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9847
9848 2004-09-02 Akim Demaille <akim@epita.fr>
9849
9850 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9851 (YYDSYMPRINTF): Rename as...
9852 (YY_SYMBOL_PRINT): this.
9853 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9854 two.
9855 Use it instead of direct symprint_ calls.
9856 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9857 one.
9858
9859 2004-09-02 Akim Demaille <akim@epita.fr>
9860
9861 * data/lalr1.cc (b4_yysymprint_generate): New.
9862 (symprint_): New member function, defined when YYDEBUG.
9863 Use it consistently instead of token/nterm debugging output by
9864 hand.
9865 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9866 %printer calls to use cdebug_ when using lalr1.cc.
9867
9868 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9869
9870 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9871 with #ifdef YYDEBUG.
9872
9873 2004-08-26 Akim Demaille <akim@epita.fr>
9874
9875 * doc/bison.texinfo (Implementing Loops): Rename as...
9876 (Implementing Gotos/Loops): this.
9877
9878 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9879
9880 Adjust to latest gnulib.
9881 * bootstrap (gnulib_modules): Add xalloc-die.
9882 Set LC_ALL=C so that file names sort consistently.
9883 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9884 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9885 uintmax_t.m4, ulonglong.m4.
9886 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9887 po.m4 since we are now using _gl.m4 instead.
9888
9889 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9890
9891 * src/scan-action.l: Remove. Scanning of semantic actions is
9892 handled in scan-gram.l.
9893
9894 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9895
9896 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9897
9898 * src/location.h (struct): The file member is a uniqstr.
9899 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9900
9901 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9902
9903 Fix bug with non-%union parsers that have printers or destructors,
9904 which led to a Bison core dump. Reported by Peter Fales in
9905 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9906
9907 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9908 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9909 not to our own type.
9910 * src/output.c (symbol_destructors_output, symbol_printers_output):
9911 Don't assume %union.
9912 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9913 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9914 UNION-FLAG. All callers changed.
9915 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9916 Use type char, not unsigned int, when declaring an array of char;
9917 this lets us remove a cast.
9918 (Printers and Destructors): Add non-%union test cases.
9919
9920 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9921
9922 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9923 GLR writeups. E.g., avoid frenchspacing and the future tense,
9924 change "lookahead" to "look-ahead", and change "wrt" to "with
9925 respect to".
9926
9927 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9928
9929 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9930 New sections, split off from the GLR Parsers section. Put the new
9931 Simple GLR Parser near the start of the GLR section, for clarity.
9932 Rewrite connective text.
9933
9934 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9935
9936 * doc/bison.texinfo (Simple GLR Parsers): New section.
9937
9938 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9939
9940 * NEWS, TODO, doc/bison.texinfo:
9941 Use "look-ahead" instead of "lookahead", to be consistent.
9942 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9943 while we're fixing "look-ahead".
9944 * src/conflicts.c (shift_set): Renamed from shiftset.
9945 (look_ahead_set): Renamed from lookaheadset.
9946 * src/print.c: Likewise.
9947 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9948 name for "lookahead".
9949 (report_types, usage): Likewise.
9950 * src/getargs.h (report_look_ahead_tokens): Renamed from
9951 report_lookaheads.
9952 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9953 compute_lookaheads.
9954 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9955 (look_ahead_tokens_print): Renamed from lookaheads_print.
9956 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9957 state_rule_lookaheads_print.
9958 * src/state.h: Likewise.
9959 (reductions.look_ahead_tokens): Renamed from lookaheads.
9960 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9961 AT_DATA_LOOKAHEADS_GRAMMAR.
9962
9963 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9964
9965 * README: Update location of patched M4 distribution.
9966
9967 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9968
9969 Don't assume the C++ compiler takes the same arguments as the C compiler
9970 (trivial change).
9971 * configure.ac (O0CXXFLAGS): New var.
9972 * tests/atlocal.in (CXXFLAGS): Use it.
9973
9974 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9975
9976 Fix some "make check" problems with C++ reported by
9977 Albert Chin-A-Young for Tru64 C++ in this thread:
9978 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9979
9980 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9981 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9982 Output to a .cc file for C++, not to a .c file.
9983 * tests/calc.at (AT_CHECK_CALC): Likewise.
9984 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9985 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9986
9987 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9988
9989 * tests/calc.at, tests/actions.at: Workaround for SGI
9990 C++ compiler. (trivial change)
9991
9992 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9993
9994 Spent a few hours checking out which prerequisite versions the
9995 current sources actually require. I went all the way back to
9996 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9997 a seemingly endless set of combinations of versions more recent
9998 than that. The bottom line is that the current sources require
9999 fairly recent versions of the build tools, and it'll be some work
10000 to change this.
10001 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10002 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10003 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10004 Add comments explaining why those particular versions are
10005 currently needed.
10006
10007 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10008 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10009 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10010
10011 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10012 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10013
10014 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10015
10016 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10017 0.11.5. Suggested by Bruno Haible.
10018 * bootstrap: Remove gettext version checking.
10019
10020 * doc/bison.texinfo (Decl Summary): Also mention that %union
10021 can depend on prerequisite types. Problem reported by Tim
10022 Van Holder.
10023
10024 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10025
10026 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10027 * README-alpha: Don't tell people not to package this.
10028
10029 * bootstrap: Don't assume $(...) works; use `...` instead.
10030 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10031 gettext better.
10032
10033 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10034 put into the -d output file, and mention what to do if YYSTYPE is
10035 defined as a macro.
10036
10037 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10038
10039 Undo change made earlier today: it caused autopoint to not bring
10040 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10041 autopoint's.
10042
10043 * bootstrap: Check that gettext version matches what's in
10044 configure.ac. Warn users to ignore robots.txt ERROR 404.
10045 * bootstrap: Undo today's earlier change (logged below).
10046 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10047
10048 The gettext version checking is causing more trouble than it's
10049 curing; remove it. Problem reported by Paul Hilfinger.
10050
10051 * bootstrap: Issue a warning that one can expect a message
10052 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10053 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10054
10055 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 Ensure that the C++ compiler used for testing actually works on a
10058 simple test program; if not, skip the C++-related tests. Problem
10059 reported by Vin Shelton in:
10060 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10061
10062 * m4/cxx.m4: New file.
10063 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10064 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10065 * tests/local.at (AT_COMPILE_CXX): Use it.
10066
10067 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10068
10069 * data/glr.c (yylloc): Output this macro even if locations are not
10070 being generated, as the GLR parser needs it even in that case.
10071 Problem reported by Troy A. Johnson
10072 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10073
10074 * configure.ac (AC_INIT): Update to 1.875e.
10075
10076 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10077
10078 * NEWS: Version 1.875d.
10079 * configure.ac (AC_INIT): Likewise.
10080 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10081
10082 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10083 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10084 lalr1.cc runs afoul of the first, and the last two are no longer
10085 supported by GCC 3.4.0.
10086 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10087 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10088
10089 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10090
10091 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10092 unsigned int, for compatibility with latest gnulib hash module.
10093 * src/state.c (state_hash, state_hasher): Likewise.
10094 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10095 * src/uniqstr.c (hash_uniqstr): Likewise.
10096
10097 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10098
10099 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10100
10101 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10102 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10103 character and string literals.
10104 (unexpected_end): New function.
10105 (unexpected_eof): Use it.
10106 (unexpected_newline): New function.
10107 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10108 actions.
10109
10110 * NEWS: Document %expect-rr.
10111
10112 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10113 Fix typo by replacing $1 with $option.
10114 Remove more 'intl'-related files.
10115 Don't DEFUN AM_INTL_SUBDIR twice.
10116
10117 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10118 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10119 strtoul.c.
10120 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10121 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10122 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10123 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10124 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10125 * src/.cvsignore: Add *.output.
10126
10127 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10128 gets copied to the output file.
10129
10130 2004-04-28 Paul Eggert <eggert@twinsun.com>
10131
10132 Get files from the gnulib and po repositories, instead of relying
10133 on them being in our CVS. Upgrade to latest versions of gnulib
10134 and Automake.
10135
10136 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10137 * bootstrap: Bootstrap from gnulib and po repositories.
10138 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10139 * README-cvs: Document these changes. Remove version numbers from
10140 mentions of build tools, since they change so often. Mention Flex.
10141
10142 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10143 (gl_USE_SYSTEM_EXTENSIONS): Add.
10144 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10145 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10146 does this for us.
10147 (AC_ISC_POSIX): Remove; we no longer support this
10148 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10149 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10150 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10151 Do not check for C89 headers, except for locale.h which is used
10152 by the Yacc library and must port to K&R hosts.
10153 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10154 Do not check for C89 functions, except for setlocale which is
10155 used by the Yacc library.
10156 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10157 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10158 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10159 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10160 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10161 AM_GNU_GETTEXT): Remove; now done by:
10162 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10163 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10164 for us.
10165
10166 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10167 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10168 Define to empty, as gnulib.mk will do the rest for us.
10169 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10170 for us.
10171 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10172 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10173
10174 * src/files.c: Include gnulib's xstrndup.h.
10175
10176 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10177 (REALLOC): Use xnrealloc, for likewise.
10178 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10179 (strnlen, memrchr): Remove decls; functions no longer used.
10180 Include <stpcpy.h>.
10181
10182 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10183 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10184 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10185 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10186 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10187 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10188 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10189 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10190 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10191 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10192 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10193 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10194 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10195 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10196 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10197 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10198 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10199 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10200 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10201 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10202 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10203 Remove, as these files are now generated automatically
10204 by bootstrap or automake.
10205
10206 * po/ChangeLog: Remove: all but one entry was a duplicate
10207 of this file, and I moved that 2000-11-02 entry here.
10208
10209 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10210 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10211 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10212 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10213 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10214 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10215 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10216 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10217 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10218 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10219 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10220 xstrndup.h.
10221 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10222 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10223 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10224 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10225 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10226 * src/.cvsignore: Remove *_.c.
10227
10228
10229 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10230 support it. (The latest stable gzip doesn't.)
10231
10232 2004-04-27 Paul Eggert <eggert@twinsun.com>
10233
10234 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10235 case, as stos_ is now used by destructors due to the 2004-02-09
10236 change.
10237
10238 Remove more K&R C support.
10239 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10240 * lib/subpipe.c (errno): Remove decl.
10241 Include <stdlib.h> unconditionally.
10242 (EXIT_FAILURE): Remove macro.
10243 * src/complain.c (vfprintf, strerror): Remove.
10244 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10245 unconditionally.
10246 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10247 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10248 (strchr, strspn, memchr): Remove decls.
10249 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10250 unconditionally. Do not declare perror.
10251 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10252 unconditionally.
10253
10254 * src/complain.c (_): Remove useless defn, as system.h defines this.
10255
10256 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10257 with latest obstack.h.
10258 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10259 to procedure types, as obstack.h now does that for us.
10260 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10261
10262 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10263 so that this include file can stand alone.
10264 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10265 does this now. Include subpipe.h first after config.h, to
10266 test whether it can stand alone.
10267
10268 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10269 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10270 unused declaration.
10271
10272 * tests/synclines.at (%union synch line): Put a dummy member in
10273 the union, because empty unions aren't allowed in C. Caught
10274 by GCC 3.4.0.
10275
10276 2004-04-13 Jim Meyering <jim@meyering.net>
10277
10278 * src/conflicts.c (conflicts_print): Correct format string typo:
10279 use `%%' to produce literal `%'. (trivial change)
10280
10281 2004-03-30 Paul Eggert <eggert@twinsun.com>
10282
10283 * src/getargs.c (version): Update copyright year to 2004.
10284
10285 * data/c.m4 (b4_int_type): Use 'short int' rather than
10286 'short', and similarly for 'long', 'unsigned', etc.
10287 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10288 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10289 yy_yypstack, yydumpstack): Likewise.
10290 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10291 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10292 Likewise.
10293 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10294 yy_stack_print, yyparse): Likewise.
10295 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10296 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10297 * lib/bitset.c (bitset_print): Likewise.
10298 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10299 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10300 * lib/bitsetv.c (bitsetv_dump): Likewise.
10301 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10302 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10303 Likewise.
10304 * src/LR0.c (allocate_itemsets): Likewise.
10305 * src/gram.h (rule_number, rule): Likewise.
10306 * src/lalr.h (goto_number): Likewise.
10307 * src/nullable.c (nullable_compute): Likewise.
10308 * src/output.c (prepare_rules): Likewise.
10309 * src/relation.c (relation_print, relation_digraph): Likewise.
10310 * src/relation.h (relation_node): Likewise.
10311 * src/state.h (state_number, transitions, errs, reductions,
10312 struct state): Likewise.
10313 * src/symtab.h (symbol_number, struct symbol): Likewise.
10314 * src/tables.c (vector_number, tally, action_number,
10315 default_goto, goto_actions): Likewise.
10316 * tests/existing.at (GNU Cim Grammar): Likewise.
10317 * tests/regression.at (Web2c Actions): Likewise.
10318
10319 * src/output.c (muscle_insert_short_int_table): Renamed from
10320 muscle_insert_short_table. All uses changed.
10321
10322 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10323
10324 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10325 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10326 Add %expect-rr rule.
10327
10328 * src/scan-gram.l: Recognize %expect-rr.
10329
10330 * src/conflicts.h (expected_sr_conflicts): Rename from
10331 expected_conflicts.
10332 (expected_rr_conflicts): Declare.
10333
10334 * src/conflicts.c (expected_sr_conflicts): Rename from
10335 expected_conflicts.
10336 (expected_rr_conflicts): Define.
10337 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10338 for GLR parsers.
10339 Use expected_sr_conflicts in place of expected_conflicts.
10340 Warn if expected_rr_conflicts used in non-GLR parser.
10341
10342 * doc/bison.texinfo: Add documentation for %expect-rr.
10343
10344 2004-03-08 Paul Eggert <eggert@gnu.org>
10345
10346 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10347 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10348
10349 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10350 in lalr1.cc.
10351 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10352 * src/scan-gram.l (scan_integer): New function.
10353 ({int}): Use it.
10354 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10355 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10356 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10357 Say "long int", not "long", for uniformity with GNU style.
10358
10359 2004-02-25 Paul Eggert <eggert@twinsun.com>
10360
10361 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10362 compilers. This fixes a problem with Intel's C++ compiler being
10363 chatty, reported by Guido Trentalancia in
10364 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10365
10366 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10367
10368 Support %destructor and merge error locations in lalr1.cc.
10369
10370 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10371 (Parser::stos_): Define unconditionally.
10372 (Parser::destruct_): New method. Generate its body with
10373 b4_yydestruct_generate.
10374 (Parser::error_start_): New attribute.
10375 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10376 token which are discarded.
10377 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10378 error_start_ when erroneous token are discarded.
10379 (Parser::parse) <yyerrlab1>: Compute the location of the error
10380 token so that it covers all the discarded tokens.
10381 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10382 it can be called with `%skeleton "lalr1.cc"', and do that.
10383
10384 2004-02-02 Paul Eggert <eggert@twinsun.com>
10385
10386 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10387 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10388 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10389 There's no need to mention top_builddir since Automake does that
10390 for us.
10391 (INCLUDES): Remove, as Automake says it's obsolescent.
10392 Contents migrated into AM_CPPFLAGS as described above.
10393 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10394
10395 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10396
10397 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10398 (yyreportSyntaxError): Handle case where lookahead token is
10399 YYEMPTY.
10400
10401 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10402
10403 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10404 resulting parsers are compilable with C++.
10405
10406 2003-12-23 Paul Eggert <eggert@twinsun.com>
10407
10408 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10409 * src/output.c (output_skeleton): Rename local var.
10410 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10411 Bison tokens, as this runs afoul of the 2003-10-07 change that
10412 disallowed NUL bytes in character constants or string literals.
10413
10414 * tests/local.at: Require Autoconf 2.59's Autotest.
10415 * tests/testsuite.at: Don't include local.at, since we now assume
10416 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10417 including it.
10418 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10419 multiple inclusion warnings.
10420
10421 2003-12-02 Akim Demaille <akim@epita.fr>
10422
10423 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10424 conditions.
10425 From Bruno Haible.
10426
10427 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10428
10429 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10430
10431 2003-10-07 Paul Eggert <eggert@twinsun.com>
10432
10433 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10434 if testsuite doesn't exist.
10435
10436 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10437 literals, unfortunately.
10438 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10439 Complain about NUL bytes in character constants or string literals.
10440
10441 2003-10-05 Paul Eggert <eggert@twinsun.com>
10442
10443 * NEWS: Don't document %no-default-prec, as it's still
10444 too experimental.
10445 * doc/bison.texinfo: Document %no-default-prec only if
10446 the defaultprec flag is set. Normally it's not.
10447
10448 2003-10-04 Paul Eggert <eggert@twinsun.com>
10449
10450 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10451 non-modifiable lvalue, instead of a modifiable one.
10452 * doc/bison.texinfo (Actions): Document that $$ can
10453 be assigned to. Do not claim that $$ and $N are
10454 array element references: user code should not rely on this.
10455
10456 2003-10-01 Paul Eggert <eggert@twinsun.com>
10457
10458 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10459 (grammar_declaration): Use it.
10460 * src/scan-gram.l: New token %no-default-prec.
10461 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10462 * NEWS, doc/bison.texinfo: Document the above.
10463
10464 2003-10-01 Akim Demaille <akim@epita.fr>
10465
10466 VCG no longer supports long_straight_phase.
10467
10468 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10469 * src/print_graph.c (print_graph): Adjust.
10470
10471 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10472 and Paul Eggert <eggert@twinsun.com>
10473
10474 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10475 Table of Symbols): Document %default-prec.
10476 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10477 (grammar_declaration): Set default_prec on %default-prec.
10478 * src/scan-gram.l (%default-prec): New token.
10479 * src/reader.h (default_prec): New flag.
10480 * src/reader.c: Likewise.
10481 (packgram): Handle it.
10482 * tests/conflicts.at (%default-prec without %prec,
10483 %default-prec with %prec, %default-prec 1): New tests.
10484
10485 2003-09-30 Paul Eggert <eggert@twinsun.com>
10486
10487 * tests/testsuite.at: Include local.at, not input.at, fixing
10488 a typo in the 2003-08-25 patch.
10489
10490 2003-08-27 Akim Demaille <akim@epita.fr>
10491
10492 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10493 GCC warnings.
10494
10495 2003-08-26 Akim Demaille <akim@epita.fr>
10496
10497 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10498 "<\#" to avoid magic from Gnus when posting parts of this script.
10499
10500 2003-08-26 Akim Demaille <akim@epita.fr>
10501
10502 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10503 (Parser::parse): here.
10504 Adjust: nerrs and errstatus is now replaced by...
10505 (Parser::nerrs_, Parser::errstatus_): New.
10506
10507 2003-08-25 Akim Demaille <akim@epita.fr>
10508
10509 * config/announce-gen, Makefile.cfg: New.
10510 * Makefile.am: Adjust.
10511 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10512 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10513
10514 2003-08-25 Akim Demaille <akim@epita.fr>
10515
10516 When reducing initial empty rules, Bison parser read an initial
10517 location that is not defined. This results in garbage, and that
10518 affects Bison's own parser. Therefore we need (i) to extend Bison
10519 to support a means to initialize this location, and (ii) to use
10520 this CVS Bison to fix CVS Bison's parser.
10521
10522 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10523 with...
10524 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10525 * src/parse-gram.y: Adjust.
10526 (%initial-action): New.
10527 (%error-verbose): Since we require CVS Bison, there is no reason
10528 not to use it.
10529 * src/scan-gram.l: Adjust.
10530 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10531 * data/yacc.c (yyparse): Use b4_initial_action.
10532
10533 2003-08-25 Akim Demaille <akim@epita.fr>
10534
10535 * doc/bison.texinfo: Don't promote stdout for error messages.
10536
10537 2003-08-25 Akim Demaille <akim@epita.fr>
10538
10539 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10540 From Alexandre Duret-Lutz.
10541
10542 2003-08-25 Akim Demaille <akim@epita.fr>
10543
10544 Version 1.875c.
10545
10546 2003-08-25 Akim Demaille <akim@epita.fr>
10547
10548 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10549 Use them.
10550
10551 2003-08-25 Akim Demaille <akim@epita.fr>
10552
10553 * data/lalr1.cc (Parser::reduce_print_): New.
10554 Use it.
10555
10556 2003-08-25 Akim Demaille <akim@epita.fr>
10557
10558 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10559 error recovery loops. This patch is based on
10560 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10561 Also, augment the similarity between lalr1.cc and yacc.c.
10562 Note: the locations of error recovery rules are not correct yet.
10563
10564 * data/lalr1.cc: Comment changes to augment the similarity between
10565 lalr1.cc and yacc.c.
10566 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10567 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10568 yyerrlab), when hitting EOF, pop the whole stack here instead of
10569 merely falling thru the default error handling mechanism.
10570 (yyerrorlab): New label, with the old contents of YYERROR,
10571 plus the following change: pop the stack of rhs corresponding
10572 to the production that invoked YYERROR. That is how Yacc
10573 behaves (required by POSIX).
10574 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10575 fail.
10576
10577 2003-08-25 Akim Demaille <akim@epita.fr>
10578
10579 Tune local.at so that people can "autom4te -l autotest calc.at -o
10580 calc" for instance, to extract a sub test suite.
10581
10582 * tests/testsuite.at: Move the initialization, Autotest version
10583 requirement, and AT_TESTED invocation into...
10584 * tests/local.at: here.
10585 * tests/testsuite.at: Include it for compatibility with Autoconf
10586 2.57.
10587 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10588 be ignore.
10589
10590 2003-08-04 Paul Eggert <eggert@twinsun.com>
10591
10592 Rework code slightly to avoid gcc -Wtraditional warnings.
10593 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10594 The returned value is now stored in *YY0. All callers changed.
10595 * src/output.c (merge_output): Adjust to the above change.
10596
10597 2003-07-26 Paul Eggert <eggert@twinsun.com>
10598
10599 * data/glr.c (YYASSERT): New macro.
10600 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10601 yyresolveStates, yyprocessOneStack):
10602 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10603 Derived from a suggestion by Frank Heckenbach.
10604
10605 2003-07-25 Paul Eggert <eggert@twinsun.com>
10606
10607 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10608 for portability to K&R C (after ansi2knr, presumably). See
10609 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10610 by Frank Heckenbach, though I have omitted the structure-initialization
10611 part of his glr-knr.diff patch since I recall that the Portable
10612 C Compiler didn't require that change.
10613
10614 Let the user specify how to allocate and free memory.
10615 Derived from a suggestion by Frank Heckenbach in
10616 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10617 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10618 All uses of free, malloc, realloc changed to use these macros,
10619 and unnecessary casts removed.
10620 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10621
10622 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10623
10624 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10625 use s.empty() rather than s == "" to test for empty string; see
10626 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10627 (trivial change)
10628
10629 2003-06-25 Akim Demaille <akim@epita.fr>
10630
10631 * config/depcomp, config/install-sh: Update from masters.
10632
10633 2003-06-20 Paul Eggert <eggert@twinsun.com>
10634
10635 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10636 and return properly parenthesized result.
10637 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10638 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10639 Remove unnecessary parentheses from uses.
10640 * doc/bison.texinfo (Location Default Action): Describe the
10641 conventions for parentheses.
10642
10643 2003-06-19 Paul Eggert <eggert@twinsun.com>
10644
10645 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10646 yyreportTree): Do not assume that size_t is the same width as int,
10647 when printing sizes. Print sizes using an unsigned format.
10648 Problem reported by Frank Heckenbach in
10649 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10650
10651 Port to Forte Developer 7 C compiler.
10652 * data/glr.c (struct YYLTYPE): If locations are not being used,
10653 declare a single dummy member, as empty structs do not conform
10654 to the C standard.
10655 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10656 the Forte Developer 7 C compiler complains that end-of-loop
10657 code is not reached.
10658
10659 2003-06-17 Paul Eggert <eggert@twinsun.com>
10660
10661 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10662 avoid warnings from picky compilers about redefinition of PARAMS.
10663
10664 2003-06-17 Paul Eggert <eggert@twinsun.com>
10665
10666 Version 1.875b.
10667
10668 * NEWS: Document 1.875b.
10669
10670 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10671 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10672 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10673 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10674 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10675 per recent gettext manual's suggestion.
10676 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10677 Use prototypes, not old-style definitions.
10678 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10679 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10680 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10681 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10682 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10683 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10684 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10685 vbitset_or_and_cmp, vbitset_copy): Likewise.
10686
10687 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10688 Do not include <stdlib.h>.
10689 (PARAMS): Define unconditionally for C89.
10690 (ATTRIBUTE_NORETURN): Remove.
10691 (ATTRIBUTE_UNUSED): Define unconditionally.
10692
10693 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10694 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10695 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10696 * lib/vbitset.c, lib/vbitset.h: New files.
10697 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10698 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10699 from libbitset.
10700
10701 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10702 `How Can I Reset @code{yyparse}', since texinfo does not allow
10703 arbitrary @ in node names.
10704
10705 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10706 shouldn't be needed according to the gettext 0.12.1 documentation
10707 but which seem to be needed anyway: codeset.m4 glibc21.m4
10708 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10709 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10710 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10711
10712 * lib/.cvsignore: Add stdbool.h.
10713 * m4/.cvsignore: Add nls.m4, po.m4.
10714
10715 Upgrade to CVS gnulib.
10716 * stdbool_.h: File renamed from stdbool.h.in.
10717 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10718 AC_HEADER_STDBOOL.
10719 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10720 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10721 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10722 (MOSTLYCLEANFILES): New var.
10723 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10724 (stdbool.h): New rule.
10725 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10726 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10727 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10728 m4/quote.m4: Upgrade to today's gnulib.
10729
10730 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10731 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10732 the tests right now.
10733 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10734 yyerror are declared before use; C99 requires this.
10735
10736 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10737
10738 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10739 first.
10740 (yyrecoverSyntaxError): Correct the logic for setting and testing
10741 yyerrState.
10742 Correct comment on handling EOF.
10743 Allow states with only a default reduction, rather than failing
10744 (I can't quite reconstruct why these were not allowed before).
10745
10746 Fixes to avoid problem that $-N rules in GLR parsers can cause
10747 buffer overruns, corrupting state.
10748
10749 * src/output.c (prepare_rules): Output max_left_semantic_context
10750 definition.
10751 * src/reader.h (max_left_semantic_context): New variable declaration.
10752 * src/scan-gram.l (max_left_semantic_context): Define.
10753 (handle_action_dollar): Update max_left_semantic_context.
10754 * data/glr.c (YYMAXLEFT): New definition.
10755 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10756 (yyresolveAction): Ditto.
10757
10758 Fixes to problems with location handling in GLR parsers reported by
10759 Frank Heckenbach (2003/06/05).
10760
10761 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10762 (YYRHSLOC): Add parentheses, and define only if locations used.
10763 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10764 locations not used.
10765 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10766 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10767
10768 * tests/cxx-type.at: Exercise location information; update tests
10769 to differentiate output with and without locations.
10770 Remove forward declarations of yylex and yyerror---caused errors
10771 because default YYLTYPE not yet defined.
10772 Change semantic actions to compute strings, rather than printing
10773 them directly (to test proper passing of semantics values). Change
10774 output to prefix notation and update test data and expected results.
10775 (yylex): Track locations.
10776 (stmtMerge): Return value rather than printing, and include arguments
10777 in value.
10778
10779 2003-06-03 Paul Eggert <eggert@twinsun.com>
10780
10781 Avoid warnings generated by GCC 2.95.4 when Bison is
10782 configured with --enable-gcc-warnings.
10783 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10784 yy::]b4_parser_class_name[::translate_,
10785 yy::Stack::operator[] (unsigned),
10786 yy::Stack::operator[] (unsigned) const,
10787 yy::Slice::operator[] (unsigned),
10788 yy::Slice::operator[] (unsigned) const):
10789 Rename local vars to avoid warnings.
10790 * tests/glr-regression.at (Improper handling of embedded actions
10791 and $-N in GLR parsers): Remove unused local variable from yylex.
10792 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10793 (void) as arg when not pure, since we now assume C89 when building
10794 Bison. Pacify GCC by using parameter.
10795
10796 2003-06-02 Paul Eggert <eggert@twinsun.com>
10797
10798 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10799 yy::Location::lines, yy::Location::columns): Rename arguments
10800 to avoid shadowing; this removes a warning generated by GCC 3.3.
10801
10802 2003-06-01 Paul Eggert <eggert@twinsun.com>
10803
10804 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10805 to g++, as GCC 3.3 complains if you do it.
10806 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10807 everything that WARNING_CFLAGS has, except omit warnings
10808 not suitable for C++.
10809 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10810 * tests/atlocal.in (CXXFLAGS): New var.
10811 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10812
10813 Fix a GLR parser bug I reported in February; see
10814 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10815 The problem was that GLR parsers did not conform to the C standard,
10816 because actions like { $1 = $2 + $3; } expanded to expressions
10817 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10818 to a local variable. The C standard says that expressions
10819 like (var = f ()) + (var = f ()) have undefined behavior.
10820 Another problem was that GCC sometimes issues warnings that
10821 yyfill and its parameters are unused.
10822
10823 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10824 as possibly unused.
10825 (yyfill): New function.
10826 (YYFILL): Use it.
10827 (yyuserAction): Change type of yynormal to bool, so that it matches
10828 the new yyfill signature. Mark it as possibly unused.
10829
10830
10831 Follow up on a bug I reported in February, where a Bison-generated
10832 parser can loop. Provide a test case and a fix for yacc.c. I
10833 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10834 The original bug report is in:
10835 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10836
10837 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10838 macro's size was becoming unwieldy.
10839 (yyerrlab): Do not discard an empty lookahead symbol, as this
10840 might destroy garbage.
10841 (yyerrorlab): New label, with the old contents of YYERROR,
10842 plus the following change: pop the stack of rhs corresponding
10843 to the production that invoked YYERROR. That is how Yacc
10844 behaves, and POSIX requires this behavior.
10845 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10846 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10847 Define 'alarm' to do nothing if unistd.h is not available.
10848 Add a new rule "exp: '-' error;" to test the above change to
10849 data/yacc.c. Use 'alarm' to abort any test taking longer than
10850 10 seconds, as it's probably looping.
10851 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10852 Also, the new yacc.c generates two fewer diagnostics for an
10853 existing test.
10854
10855 2003-05-24 Paul Eggert <eggert@twinsun.com>
10856
10857 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10858 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10859 This fixes a problem reported by John Bowman when the Compaq/HP
10860 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10861 -ansi -Wall -gall).
10862 * data/yacc.c (union yyalloc): Likewise.
10863 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10864
10865 Switch from 'int' to 'bool' where that makes sense.
10866
10867 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10868 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10869 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10870 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10871 Return or accept bool, not int. All callers changed.
10872 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10873 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10874 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10875 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10876 bitset_or_and_cmp_): Likewise.
10877 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10878 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10879 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10880 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10881 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10882 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10883 bitset_stats_or_and_cmp): Likewise.
10884 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10885 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10886 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10887 ebitset_xor_cmp): Likewise.
10888 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10889 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10890 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10891 lbitset_xor_cmp): Likewise.
10892 * lib/bbitset.h: Include <stdbool.h>.
10893 (struct bitset_vtable): The following members now return bool, not
10894 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10895 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10896 or_and_cmp).
10897 * src/conflicts.c (count_rr_conflicts): Likewise.
10898 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10899 All uses changed.
10900 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10901 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10902 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10903 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10904 graph_flag): Likewise.
10905 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10906 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10907 graph_flag): Likewise.
10908 * src/output.c (error_verbose): Likewise.
10909 * src/output.h (error_verbose): Likewise.
10910 * src/reader.c (start_flag, typed): Likewise.
10911 * src/reader.h (typed): Likewise.
10912 * src/getargs.c (LOCATIONS_OPTION): New constant.
10913 (long_options, getargs): Use it.
10914 * src/lalr.c (build_relations): Use bool, not int.
10915 * src/nullable.c (nullable_compute): Likewise.
10916 * src/print.c (print_reductions): Likewise.
10917 * src/tables.c (action_row, pack_vector): Likewise.
10918 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10919 * src/output.c (prepare): Use it.
10920 * src/output.c (token_definitions_output,
10921 symbol_destructors_output, symbol_destructors_output): Use string,
10922 not boolean integer, to keep track of whether to output separator.
10923 * src/print_graph.c (print_core): Likewise.
10924 * src/state.c (state_rule_lookaheads_print): Likewise.
10925
10926 * config/install-sh: Sync from automake 1.7.5.
10927
10928 2003-05-14 Paul Eggert <eggert@twinsun.com>
10929
10930 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10931 semicolon after a grammar declaration, in the interest of possible
10932 future changes to the Bison input language.
10933 Do not allow a stray semicolon at the start of the grammar.
10934 (rhses.1): Allow one or more semicolons after any rule, including
10935 just before "|" as required by POSIX.
10936 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10937 grammar.
10938
10939 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10940
10941 %parse-param support for lalr1.cc.
10942
10943 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10944 b4_cc_constructor_calls, b4_cc_constructor_call,
10945 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10946 definitions.
10947 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10948 parse-param arguments.
10949 (yy::b4_parser_class_name): Declare instance variables to
10950 hold parse-param arguments.
10951 * tests/calc.at: s/value/semantic_value/ because value clashes
10952 with a member of yy::b4_parser_class_name. Adjust C++ code
10953 to handle %parse-param. Enable %parse-param test in C++.
10954
10955 2003-05-12 Paul Eggert <eggert@twinsun.com>
10956
10957 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10958 English a bit. Fix fclose typo. Change "const char" to "char
10959 const", and use ANSI C rather than K&R for "main". Suggest
10960 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10961 and suggest yy_switch_to_buffer.
10962
10963 2003-05-05 Paul Eggert <eggert@twinsun.com>
10964
10965 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10966 C89. This avoids a diagnostic on compilers that define __STDC__
10967 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10968 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10969
10970 2003-05-03 Paul Eggert <eggert@twinsun.com>
10971
10972 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10973 Do not overrun array bounds.
10974 This should fix a bug reported today by Olatunji Oluwabukunmi in
10975 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10976
10977 2003-04-29 Akim Demaille <akim@epita.fr>
10978
10979 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10980 * src/getargs.c, src/getargs.h: here, as bool, not int.
10981 (nondeterministic_parser): New.
10982 * src/parse-gram.y, src/scan-gram.l: Support
10983 %nondeterministic-parser.
10984 * src/output.c (prepare): Use nondeterministic_parser instead
10985 of glr_parser where appropriate.
10986 * src/tables.c (conflict_row, action_row, save_row)
10987 (token_actions, token_actions, pack_vector): Ditto.
10988
10989 2003-04-29 Akim Demaille <akim@epita.fr>
10990
10991 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10992
10993 2003-04-29 Akim Demaille <akim@epita.fr>
10994
10995 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10996 with %pure-parser and %locations to exercise the patch from Yakov
10997 Markovitch below.
10998
10999 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11000
11001 * data/yacc.c: (b4_lex_param): Corrected for the case where
11002 %lex-param is provided and %pure-parser isn't.
11003
11004 2003-04-27 Paul Eggert <eggert@twinsun.com>
11005
11006 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11007 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11008 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11009 if it is not defined.
11010 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11011
11012 2003-04-26 Paul Eggert <eggert@twinsun.com>
11013
11014 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11015 Declare to be of type suitable for the ninf value itself, not of
11016 type suitable for the corresponding table, since the latter might
11017 be unsigned but the ninf value might be negative. This fixes a
11018 bug reported by Alexandre Duret-Lutz in
11019 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11020
11021 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11022 invokes it. We shouldn't invoke it twice because it will attempt
11023 to put error.o in the archive twice. This fixes a glitch reported
11024 by Martin Mokrejs in
11025 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11026
11027 2003-04-21 Paul Eggert <eggert@twinsun.com>
11028
11029 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11030 to gnulib.
11031
11032 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11033
11034 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11035 Fix obvious typo that results in uncompilable GLR parsers
11036 when both %pure-parser and %locations are used. (trivial change)
11037
11038 2003-04-17 Paul Eggert <eggert@twinsun.com>
11039
11040 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11041 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11042 Do not insert the expected token via unput, as this runs afoul
11043 of a POSIX-compatibility bug in flex 2.5.31.
11044 All uses changed to BEGIN the parent state,
11045 since we no longer insert the expected token via unput.
11046 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11047 that is no longer emitted after the above change.
11048
11049 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11050 the first one. This change is from Paul Hilfinger, and it fixes
11051 regression reported by Werner Lemberg in
11052 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11053
11054 (resolve_sr_conflict): Don't invoke state_errs_set
11055 unless one or more tokens have been explicitly made errors.
11056 Otherwise, the above change causes Bison to abort.
11057
11058 * tests/existing.at (GNU pic Grammar): New test case, taken from
11059 Lemberg's email.
11060
11061 2003-03-31 Akim Demaille <akim@epita.fr>
11062
11063 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11064
11065 2003-03-31 Akim Demaille <akim@epita.fr>
11066
11067 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11068 output.
11069
11070 2003-03-31 Akim Demaille <akim@epita.fr>
11071
11072 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11073 From Paul Hilfinger.
11074
11075 2003-03-29 Akim Demaille <akim@epita.fr>
11076
11077 * m4/error.m4: Do not put under dynamic conditions some code which
11078 expansion is under static control.
11079
11080 2003-03-29 Akim Demaille <akim@epita.fr>
11081
11082 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11083
11084 2003-03-29 Akim Demaille <akim@epita.fr>
11085
11086 * doc/bison.texinfo (Strings are Destroyed): New.
11087
11088 2003-03-13 Paul Eggert <eggert@twinsun.com>
11089
11090 * .cvsignore: Add configure.lineno.
11091 * src/.cvsignore: Add yacc.
11092 * tests/.cvsignore: Add testsuite.log.
11093 * doc/fdl.texi: Sync with latest FSF version.
11094
11095 2003-03-12 Paul Eggert <eggert@twinsun.com>
11096
11097 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11098 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11099 cursor, instead of leaving it undefined. This fixes a bug
11100 reported by Tim Van Holder in
11101 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11102 * tests/input.at (Torturing the Scanner): Test the scanner on
11103 an empty input file, which was Tim Van Holder's test case.
11104
11105 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11106 <sys/resource.h> can be included, include sys/time.h and
11107 sys/times.h first, if available. This works around the SunOS
11108 4.1.4 porting bug reported by Bruce Becker in
11109 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11110
11111 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11112 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11113 AC_HEADER_SYS_WAIT.
11114
11115 Merge changes from gnulib. This was prompted because the CVS
11116 snapshot didn't build on Solaris 7 due to strnlen problems.
11117
11118 These changes need to be merged back into gnulib:
11119 * lib/hash.c: Include <stdbool.h> unconditionally.
11120 * m4/onceonly.m4 (m4_quote): New macro.
11121 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11122 Quote AC_FOREACH variable-expansions properly.
11123 The 2003-01-03 obstack.h change also needs merging.
11124 {end of changes requiring merging}
11125
11126 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11127 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11128 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11129 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11130 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11131 New files, imported from gnulib.
11132 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11133 above.
11134
11135 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11136 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11137 gnulib sources.
11138
11139 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11140 Add.
11141 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11142 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11143 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11144 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11145 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11146 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11147 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11148 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11149 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11150 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11151 (jm_PREREQ_ARGMATCH): Remove.
11152 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11153 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11154
11155 * src/system.h: Include <stdbool.h> unconditionally.
11156
11157 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11158 assuming at least C89 in the bitset code for some time now.
11159
11160 2003-03-03 Akim Demaille <akim@epita.fr>
11161
11162 * ro.po: New.
11163
11164 2003-03-02 Akim Demaille <akim@epita.fr>
11165
11166 * doc/bison.texinfo (Table of Symbols): Reactivate the
11167 documentation for %lex-param, and %parse-param.
11168
11169 2003-03-02 Akim Demaille <akim@epita.fr>
11170
11171 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11172 generate verbose error messages.
11173 Use the number of tokens as an upper bound in yytname, as it
11174 cannot be a non terminal.
11175
11176 2003-03-02 Akim Demaille <akim@epita.fr>
11177
11178 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11179 message.
11180
11181 2003-03-02 Akim Demaille <akim@epita.fr>
11182
11183 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11184 Use them to exercise yycheck overrun.
11185 Based on Andrew Suffield's grammar.
11186
11187 2003-03-02 Akim Demaille <akim@epita.fr>
11188
11189 Create tests/local.at for Bison generic testing macros.
11190
11191 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11192 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11193 This new file.
11194 * tests/calc.at (AT_CHECK_CALC): Adjust.
11195 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11196 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11197 * tests/local.at: here.
11198 (AT_COMPILE_CXX): Tags the tests using it as c++.
11199 Ignore the test if CXX is not functional.
11200
11201 2003-03-01 Paul Eggert <eggert@twinsun.com>
11202
11203 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11204 not loc->end, since loc->end might contain garbage and this leads
11205 to undefined behavior on some platforms.
11206 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11207 depend on *loc, so that the reader doesn't give the the false
11208 impression that *loc is initialized.
11209 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11210 does not survive the return.
11211
11212 2003-03-01 Akim Demaille <akim@epita.fr>
11213
11214 * src/scan-gram.l (code_start): Always initialize it when entering
11215 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11216 yylex invocation. An alternative would be making it static, but
11217 then it starts with the second %%'s beginning, instead of its end.
11218
11219 2003-02-28 Paul Eggert <eggert@twinsun.com>
11220
11221 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11222 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11223 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11224
11225 2003-02-26 Paul Eggert <eggert@twinsun.com>
11226
11227 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11228 Remove Sequent/Pyramid discussion (nobody uses them any more).
11229 Merge VMS and MS-DOS discussion; these ports may well be dead
11230 but let's keep mentioning them for now. Put <> around email
11231 addresses. Add copyright notice.
11232
11233 2003-02-24 Paul Eggert <eggert@twinsun.com>
11234
11235 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11236 to avoid collision with flex use of yylineno.
11237 Problem reported by Bruce Lilly in
11238 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11239 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11240 * data/yacc.c (yy_reduce_print): Likewise.
11241
11242 * config/depcomp: Sync with Automake 1.7.3.
11243
11244 2003-02-21 Akim Demaille <akim@epita.fr>
11245
11246 * data/lalr1.cc: Use temporary variables instead of casts to
11247 change integer types.
11248 Suggested by Paul Eggert.
11249
11250 2003-02-21 Akim Demaille <akim@epita.fr>
11251
11252 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11253 to avoid confusions with lalr1.cc's notion of Position.
11254 Suggested by Paul Eggert.
11255
11256 2003-02-20 Akim Demaille <akim@epita.fr>
11257
11258 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11259 before initial_columns.
11260 (location.hh): Use consistent variable names when defining the
11261 operator<<.
11262 Use "last" so that we subtract from Positions, not from unsigned.
11263
11264 2003-02-20 Akim Demaille <akim@epita.fr>
11265
11266 * data/lalr1.cc (position.hh): New subfile, including the extended
11267 and Doxygen'ed documentation of class Position.
11268 (location.hh): Use it.
11269 Document a` la Doxygen.
11270 With the help of Benoit Perrot.
11271
11272 2003-02-20 Akim Demaille <akim@epita.fr>
11273
11274 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11275 AT_YACC_IF.
11276 Redefine AT_YYERROR_SEES_LOC_IF using it.
11277 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11278 not defined.
11279 Don't use the location in yy::Parser::error_ and
11280 yy::Parser::print_ when not %locations.
11281 Activate more lalr1.cc tests.
11282
11283 2003-02-19 Akim Demaille <akim@epita.fr>
11284
11285 * data/lalr1.cc: When displaying a line number, be sure to make it
11286 an int.
11287
11288 2003-02-19 Akim Demaille <akim@epita.fr>
11289
11290 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11291 Remove, useless.
11292 (YYABORT, YYACCEPT, YYERROR): New.
11293 * tests/calc.at: Renable the lalr1.cc test.
11294
11295 2003-02-19 Akim Demaille <akim@epita.fr>
11296
11297 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11298 error recovery, mixing with/without pops and discarding of the
11299 lookahead.
11300 Exercise YYERROR.
11301 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11302
11303 2003-02-17 Paul Eggert <eggert@twinsun.com>
11304
11305 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11306 * tests/testsuite.at (AT_COMPILE): Use them.
11307 This fixes the testsuite problem reported by Robert Lentz in
11308 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11309
11310 2003-02-12 Paul Eggert <eggert@twinsun.com>
11311
11312 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11313 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11314 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11315 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11316 Check for malloc failure, for consistency with yacc.c.
11317 (yytname_size): Remove, for consistency with yacc.c.
11318
11319 The bug still remains in data/lalr1.cc, as I didn't have time
11320 to fix it there.
11321
11322 2003-02-06 Akim Demaille <akim@epita.fr>
11323
11324 * configure.ac (GXX): Rename as...
11325 (CXX): this, to keep the original Autoconf semantics.
11326 Require 2.57.
11327 * data/lalr1.cc: Fix b4_copyright invocations.
11328 If YYDEBUG is not defined, don't depend upon name_ being defined.
11329 (location.hh): Include string and iostream.
11330 (Position::filename): New member.
11331 (Position::Position ()): New.
11332 (operator<< (Position)): New.
11333 (operator- (Position, int)): New.
11334 (Location::first, Location::last): Rename as...
11335 (Location::begin, Location::end): these, to mock the conventional
11336 iterator names.
11337 (operator<< (Location)): New.
11338 * tests/atlocal.in (CXX): New.
11339 * tests/testsuite.at (AT_COMPILE_CXX): New.
11340 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11341 locations in a more synthetic way.
11342 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11343 lalr1.cc is used.
11344 Adjust the C locations to match those from Emacs: first column is
11345 column 0.
11346 Change all the expected results.
11347 Conform to the GCS: simplify the locations when applicable.
11348 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11349 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11350 these CPP macros with the m4 macros new defined by...
11351 (AT_CHECK_PUSHDEFS): this, i.e.:
11352 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11353 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11354 New macros.
11355 (AT_CHECK_POPDEFS): Undefine them.
11356 (AT_CHECK_CALC_LALR1_CC): New.
11357 Use it for the first lalr1.cc test.
11358
11359 2003-02-04 Akim Demaille <akim@epita.fr>
11360
11361 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11362 Location as is defined.
11363
11364 2003-02-04 Akim Demaille <akim@epita.fr>
11365
11366 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11367 name_ being defined.
11368
11369 2003-02-03 Paul Eggert <eggert@twinsun.com>
11370
11371 * src/gram.h (start_symbol): Remove unused decl.
11372
11373 Use more-consistent naming conventions for local vars.
11374
11375 * src/derives.c (derives_compute): Change type of local var from
11376 int to rule_number.
11377 * src/gram.c (grammar_rules_partial_print): Likewise.
11378 * src/print.c (print_core): Likewise.
11379 * src/reduce.c (reduce_grammar_tables): Likewise.
11380
11381 * src/gram.c (grammar_dump): Change name of item_number *
11382 local var from r to rp.
11383 * src/nullable.c (nullable_compute): Likewise.
11384
11385 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11386
11387 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11388 for symbol or symbol_number var.
11389 * src/reader.c (grammar_start_symbol_set): Likewise.
11390 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11391 Likewise.
11392 * src/state.c (transitions_to): Likewise.
11393 * src/state.h: Likewise.
11394 * src/tables.c (symbol_number_to_vector_number): Likewise.
11395
11396 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11397 char * var.
11398
11399 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11400 var.
11401
11402 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11403 var.
11404
11405 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11406 Use str, not s, for char * var. Use ch, not c, for character var.
11407 Use size for size var.
11408
11409 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11410 char * var.
11411 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11412 uniqstr var.
11413 * src/uniqstr.h: Likewise.
11414
11415 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11416 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11417 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11418 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11419 param to have same name as that of enum, so that we don't use
11420 "s" to stand for a non-state.
11421
11422 2003-02-02 Akim Demaille <akim@epita.fr>
11423
11424 * src/scan-skel.l: Scan more than one inert character per yylex
11425 invocation.
11426
11427 2003-02-01 Paul Eggert <eggert@twinsun.com>
11428
11429 Version 1.875a.
11430
11431 * po/LINGUAS: Add ms.
11432
11433 2003-01-30 Akim Demaille <akim@epita.fr>
11434
11435 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11436
11437 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11438
11439 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11440 of $1.
11441
11442 Changes in response to error report by S. Eken: GLR mode does not
11443 handle negative $ indices or $ indices in embedded rules correctly.
11444 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11445
11446 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11447 (b4_rhs_location): Ditto.
11448 (yyfill): New function to copy from stack tree into array
11449 incrementally.
11450 (yyuserAction): Modify to allow incremental move of semantic values
11451 to rhs array when in GLR mode.
11452 Define YYFILL to use in user-defined actions to fill semantic array
11453 as needed.
11454 Remove dummy use of yystack, as there is now a guaranteed use.
11455 (yydoAction): Modify to allow incremental move of semantic values
11456 to rhs array when in GLR mode.
11457 (yyresolveAction): Ditto.
11458 (yyglrShiftDefer): Update comment.
11459 (yyresolveStates): Use X == NULL for pointers, not !X.
11460 (yyglrReduce): Ditto.
11461 (yydoAction): Ditto
11462
11463 * tests/glr-regr1.at: Rename to ...
11464 * tests/glr-regression.at: Add new regression test for the problems
11465 described above (adapted from S. Eken).
11466 Update copyright notice.
11467 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11468 * tests/Makefile.am: Ditto.
11469
11470 2003-01-28 Paul Eggert <eggert@twinsun.com>
11471
11472 * data/lalr1.cc: Do not use @output_header_name@ unless
11473 b4_defines_flag is set. This fixes two bugs reported by
11474 Tim Van Holder in
11475 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11476 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11477
11478 2003-01-21 Paul Eggert <eggert@twinsun.com>
11479
11480 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11481 we don't need to worry about yyerrlab1 being reported as an
11482 "unused label" by non-GCC C compilers. The downside is that if
11483 locations are used then a couple of statements are duplicated each
11484 time YYERROR is invoked, but the upside is that the warnings
11485 should vanish.
11486 (yyerrlab1): Move code to YERROR.
11487 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11488 This reverts some of the 2002-12-27 change.
11489
11490 2003-01-17 Paul Eggert <eggert@twinsun.com>
11491
11492 * src/output.c (symbol_printers_output): Fix typo that led
11493 to core dump. Problem reported by Antonio Rus in
11494 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11495
11496 2003-01-13 Akim Demaille <akim@epita.fr>,
11497 Quoc Peyrot <chojin@lrde.epita.fr>,
11498 Robert Anisko <anisko_r@lrde.epita.fr>
11499
11500 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11501 when the stacks contain one element, as the loop would otherwise
11502 free the last state, and then use the top state (the one we just
11503 popped). This means that the initial elements will not be freed
11504 explicitly, as is the case in yacc.c; it is not a problem, as
11505 these elements have fake values.
11506
11507 2003-01-11 Paul Eggert <eggert@twinsun.com>
11508
11509 * NEWS: %expect-violations are now just warnings, reverting
11510 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11511 bootstrapping problem reported by Matthias Klose; see
11512 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11513 * src/conflicts.c (conflicts_print): Likewise.
11514 * tests/conflicts.at (%expect not enough, %expect too much,
11515 %expect with reduce conflicts): Likewise.
11516 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11517 that the warning is enabled if the number of conflicts changes
11518 (not necessarily increases).
11519
11520 * src/getargs.c (version): Update copyright year.
11521
11522 2003-01-09 Akim Demaille <akim@epita.fr>
11523
11524 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11525
11526 2003-01-08 Paul Eggert <eggert@twinsun.com>
11527
11528 * Makefile.maint (WGETFLAGS):
11529 New macro, containing "-C off" to disable proxy caches.
11530 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11531 (rel-check): Use $(WGET) instead of wget.
11532
11533 2003-01-06 Paul Eggert <eggert@twinsun.com>
11534
11535 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11536 the GLR paper of Scott, Johnstone and Hussain.
11537
11538 2003-01-04 Paul Eggert <eggert@twinsun.com>
11539
11540 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11541 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11542 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11543 (EXTRA_LIBRARIES): New var, for liby.a.
11544 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11545 (EXTRA_SCRIPTS): New var, for yacc.
11546
11547 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11548 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11549 Problem reported by Nelson H. F. Beebe.
11550
11551 2003-01-03 Paul Eggert <eggert@twinsun.com>
11552
11553 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11554 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11555 when compiling Bison 1.875's `bitset bset = obstack_alloc
11556 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11557
11558 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11559 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11560 grow to a huge size with typical invocation.
11561
11562 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11563 Use the pattern recommended by Autoconf 2.57, except also protect
11564 against double-definition.
11565 * src/system.h: Likewise.
11566 Portability issues reported by Nelson H. F. Beebe.
11567
11568 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11569 All uses changed. Provide a definition in both C and C++.
11570 (yytrue, yyfalse): Define even if defined (__cplusplus).
11571
11572 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11573 Reported by Nelson H. F. Beebe.
11574
11575 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11576
11577 2003-01-02 Paul Eggert <eggert@twinsun.com>
11578
11579 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11580 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11581 Bug reported by Nelson H. F. Beebe.
11582
11583 2003-01-01 Paul Eggert <eggert@twinsun.com>
11584
11585 * Version 1.875.
11586
11587 2002-12-30 Paul Eggert <eggert@twinsun.com>
11588
11589 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11590 Moved here from...
11591 (<INITIAL>","): Here. This causes stray "," to be treated
11592 more uniformly.
11593
11594 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11595 last brace in braced code when not in Yacc mode, for compatibility
11596 with Bison 1.35. This resurrects the 2001-12-15 patch to
11597 src/reader.c.
11598
11599 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11600 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11601
11602 2002-12-28 Paul Eggert <eggert@twinsun.com>
11603
11604 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11605 that of SYM's type. This fixes Debian bug 168069, reported by
11606 Thomas Olsson.
11607
11608 2002-12-28 Paul Eggert <eggert@twinsun.com>
11609
11610 Version 1.75f.
11611
11612 Switch back to the Yacc style of conflict reports, undoing some
11613 of the 2002-07-30 change.
11614 * doc/bison.texinfo (Understanding): Use Yacc style for
11615 conflict reports. Also, use new way of locating rules.
11616 * src/conflicts.c (conflict_report):
11617 Renamed from conflict_report_yacc, removing the old
11618 'conflict_report'. Translate the entire conflict report at once,
11619 so that we don't assume that "," has the same interpretation in
11620 all languages.
11621 (conflicts_output): Use Yacc-style conflict report for each state,
11622 instead of our more-complicated style.
11623 (conflicts_print): Use Yacc-style conflict report, except print
11624 the input file name when not emulating Yacc.
11625 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11626 Conflicted Reduction, %expect not enough, %expect too much,
11627 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11628 * tests/existing.at (GNU Cim Grammar): Likewise.
11629 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11630
11631 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11632 fatal): Don't invoke fflush; it's not needed and it might even be
11633 harmful for stdout, as stdout might not be open.
11634 * src/reduce.c (reduce_print): Likewise.
11635
11636 2002-12-27 Paul Eggert <eggert@twinsun.com>
11637
11638 Fix a bug where error locations were not being recorded correctly.
11639 This problem was originally reported by Paul Hilfinger in
11640 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11641
11642 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11643 top of the location stack's error locations.
11644 (yyerrlab): Set it. When discarding a token, push its location
11645 onto yylerrsp so that we don't lose track of the error's end.
11646 (yyerrlab1): Now is only the target of YYERROR, so that we can
11647 properly record the location of the action that failed. For GCC
11648 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11649 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11650 (yyerrlab2): New label, which yyerrlab now falls through to.
11651 Compute the error's location by applying YYLLOC_DEFAULT to
11652 the locations of all the symbols that went into the error.
11653 * doc/bison.texinfo (Location Default Action): Mention that
11654 YYLLOC_DEFAULT is also invoked for syntax errors.
11655 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11656 Error locations include the locations of all the tokens that were
11657 discarded, not just the last token.
11658
11659 2002-12-26 Paul Eggert <eggert@twinsun.com>
11660
11661 * src/files.c: Include quote.h.
11662 (compute_output_file_names): Warn if we detect conflicting
11663 outputs to the same file. This should catch the misunderstanding
11664 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11665
11666 * src/conflicts.c (conflicts_print): If the user specifies
11667 "%expect N", report an error if there are any reduce/reduce
11668 conflicts. This is what the manual says should happen.
11669 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11670 * tests/conflicts.at (%expect with reduce conflicts): New test.
11671
11672 Don't use m4_include on relative file names, as it doesn't work as
11673 desired if there happens to be a file with that name under ".".
11674
11675 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11676 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11677 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11678 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11679 * src/output.c (output_skeleton): Use full path names when
11680 specifying a file to include; don't rely on include path, as
11681 it's unreliable when the working file contains a file with
11682 that name.
11683
11684 2002-12-25 Paul Eggert <eggert@twinsun.com>
11685
11686 Remove obsolete references to bison.simple and bison.hairy.
11687 Problem mentioned by Aubin Mahe in
11688 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11689 * data/glr.c: Comment fix.
11690 * doc/bison.1: Remove references. Also, mention "yacc".
11691
11692 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11693 with -g option.
11694
11695 * src/parse-gram.y (declaration): Use enum "report_states" rather
11696 than its numeric value 1.
11697
11698 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11699 opening a new one. This fixes Debian bug 165349, reported by
11700 Bruce Stephens.
11701
11702 2002-12-24 Paul Eggert <eggert@twinsun.com>
11703
11704 Version 1.75e.
11705
11706 * Makefile.maint (cvs-update): Don't assume that the shell
11707 supports $(...), as Solaris sh doesn't.
11708
11709 * src/parse-gram.y (lloc_default): Remove test for empty
11710 nonterminals at the end, since it didn't change the result.
11711
11712 2002-12-24 Paul Eggert <eggert@twinsun.com>
11713
11714 If the user does not define YYSTYPE as a macro, Bison now declares it
11715 using typedef instead of defining it as a macro. POSIX requires this.
11716 For consistency, YYLTYPE is also declared instead of defined.
11717
11718 %union directives can now have a tag before the `{', e.g., the
11719 directive `%union foo {...}' now generates the C code
11720 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11721 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11722 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11723 instead of `yyltype'.
11724
11725 `yystype' and `yyltype' are now obsolescent macros instead of being
11726 typedefs or tags; they are no longer documented and will be
11727 withdrawn in a future release.
11728
11729 * data/glr.c (b4_location_type): Remove.
11730 (YYSTYPE): Renamed from yystype.
11731 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11732 (struct YYLTYPE): Renamed from struct yyltype.
11733 (YYLTYPE): Renamed from yyltype.
11734 (yyltype, yystype): New (and obsolescent) macros,
11735 for backward compatibility.
11736 * data/yacc.c: Likewise.
11737
11738 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11739 does not specify a union tag. This is for compatibility with
11740 Solaris 9 yacc.
11741
11742 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11743 const *, since it is now modified by stripping surrounding { }.
11744 (current_braced_code): Remove.
11745 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11746 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11747 trailing " {...}". Now of type <chars>.
11748 (grammar_declaration): Adjust to bundled tokens.
11749 (code_content): Remove; stripping is now done by add_param.
11750 (print_token_value): Print contents of bundled tokens.
11751 (token_name): New function.
11752
11753 * src/reader.h (braced_code, current_braced_code): Remove.
11754 (token_name): New decl.
11755
11756 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11757 token_type, not braced_code code_kind. All uses changed.
11758 (SC_PRE_CODE): New state, for scanning after a keyword that
11759 has (or usually has) an immediately-following braced code.
11760 (token_type): New local var, to keep track of which token type
11761 to return when scanning braced code.
11762 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11763 <INITIAL>"%parse-param", <INITIAL>"%printer",
11764 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11765 instead of returning a token type immediately.
11766 (<INITIAL>"{"): Set token type.
11767 (<SC_BRACED_CODE>"}"): Use it.
11768 (handle_action_dollar, handle_action_at): Now returns bool
11769 indicating success. Fail if ! current_rule; this prevents a core dump.
11770 (handle_symbol_code_dollar, handle_symbol_code_at):
11771 Remove; merge body into caller.
11772 (handle_dollar, handle_at): Complain in invalid contexts.
11773
11774 * NEWS, doc/bison.texinfo: Document the above.
11775 * NEWS: Fix years and program names in copyright notice.
11776
11777 2002-12-17 Paul Eggert <eggert@twinsun.com>
11778
11779 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11780 Reporting, Table of Symbols): Omit mentions of %lex-param and
11781 %parse-param from the documentation for now.
11782
11783 2002-12-15 Paul Eggert <eggert@twinsun.com>
11784
11785 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11786 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11787 lookahead symbol, and which sets yychar in parser actions) and it
11788 disagreed with the Bison documentation. Bug
11789 reported by Andrew Walrond.
11790
11791 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11792 as the caller now does that.
11793 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11794 (YYEMPTY): Parenthesize right hand side, since others use it.
11795 (yyparse): Don't assume that our generated code is the only code
11796 that sets yychar.
11797
11798 2002-12-13 Paul Eggert <eggert@twinsun.com>
11799
11800 Version 1.75d.
11801
11802 POSIX requires a "yacc" command.
11803 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11804 (MOSTLYCLEANFILES): Add yacc.
11805 (yacc): New rule.
11806 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11807 as an alias for bison y.
11808
11809 * po/LINGUAS: Add da.
11810
11811 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11812 problem with latest <getopt.h>.
11813 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11814
11815 * doc/fdl.texi: Upgrade to 1.2.
11816 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11817 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11818 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11819 gnulib.
11820 * config/install-sh: Sync with autotools.
11821
11822 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11823 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11824 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11825 locations are requested.
11826 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11827 locations are requested.
11828
11829 2002-12-12 Paul Eggert <eggert@twinsun.com>
11830
11831 Remove unportable casts and storage allocation tricks.
11832 While we're at it, remove almost all casts, since they
11833 usually aren't needed and are a sign of trouble.
11834
11835 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11836
11837 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11838 the pointer DSET returned by malloc; this isn't portable.
11839 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11840 Similarly for DERIVES.
11841 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11842 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11843 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11844
11845 * src/derives.c (derives_compute): Do not bother invoking
11846 int_of_rule_number, since rule numbers are integers.
11847
11848 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11849 rather than XMALLOC (char, N).
11850
11851 * src/files.c (filename_split): Rewrite to avoid cast.
11852
11853 * src/gram.h (symbol_number_as_item_number,
11854 item_number_as_symbol_number, rule_number_as_item_number,
11855 item_number_as_rule_number):
11856 Now inline functions rather than macros, to avoid casts.
11857 * src/state.h (state_number_as_int): Likewise.
11858 * src/tables.c (state_number_to_vector_number,
11859 symbol_number_to_vector_number): Likewise.
11860
11861 * src/gram.h (int_of_rule_number): Remove; no longer used.
11862
11863 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11864 since the resulting storage is always stored into.
11865
11866 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11867 where it's needed.
11868
11869 * src/muscle_tab.c (muscle_m4_output):
11870 Now inline. Return bool, not int.
11871 * src/state.c (state_compare): Likewise.
11872 * src/symtab.c (symbol_check_defined,
11873 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11874 hash_compare_symbol, hash_symbol):
11875 Likewise.
11876 * src/uniqstr.c (uniqstr_print): Likewise.
11877 * src/muscle_tab.c (muscle_m4_output_processor):
11878 New function, to avoid casts.
11879 * src/state.c (state_comparator, stage_hasher): Likewise.
11880 * src/symtab.c (symbol_check_defined_processor,
11881 symbol_check_alias_consistency_processor, symbol_pack_processor,
11882 symbol_translation_processor, hash_symbol_comparator,
11883 hash_symbol_hasher): Likewise.
11884 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11885 * src/muscle_tab.c (muscles_m4_output):
11886 Use new functions instead of casting old functions unportably.
11887 * src/state.c (state_hash_new): Likewise.
11888 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11889 symbols_token_translations_init):
11890 Likewise.
11891 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11892
11893 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11894 var instead of casting to long, to avoid casts.
11895 (prepare_states): Use MALLOC rather than alloca, so that we don't
11896 have to worry about alloca.
11897 * src/state.c (state_hash_lookup): Likewise.
11898
11899 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11900 local var instead of casting to unsigned char, to avoid casts.
11901
11902 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11903 STATE_ALLOC): Remove.
11904 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11905 rather than calloc, and use offsetof to avoid allocating slightly
11906 too much storage.
11907 (state_new): Initialize all members.
11908
11909 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11910
11911 * src/symtab.c (symbol_free): Remove; unused.
11912 (symbol_get): Remove cast in lhs of assignment.
11913 (symbols_do): Now static. Accept generic arguments, not
11914 hashing-related ones.
11915
11916 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11917 (symbol_processor): Remove.
11918 (symbols_do): Remove decl; now static.
11919
11920 * src/system.h (alloca): Remove; decl no longer needed.
11921 (<stddef.h>): Include, for offsetof.
11922 (<inttypes.>, <stdint.h>): Include if available.
11923 (uintptr_t): New type, if system lacks it.
11924 (CALLOC, MALLOC, REALLOC): New macros.
11925 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11926 new macros.
11927
11928 * src/tables.c (table_size): Now int, to pacify GCC.
11929 (table_grow, table_ninf_remap): Use signed table size.
11930 (save_row): Don't bother initializing locals when not needed.
11931 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11932 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11933
11934 * src/vcg.h: Correct misspellings.
11935
11936 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11937
11938
11939 * src/getargs.c (getargs): Don't assume EOF == -1.
11940
11941 2002-12-09 Paul Eggert <eggert@twinsun.com>
11942
11943 Change identifier spellings to avoid collisions with names
11944 that are reserved by POSIX.
11945
11946 Don't use names ending in _t, since POSIX reserves them.
11947 For consistency, remove _e and _s endings -- they're weren't
11948 needed to remove ambiguity. All uses changed.
11949 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11950 turn was just renamed from struniq_t.
11951 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11952 which in turn was just renamed from struniq_processor_t.
11953 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11954 in turn was renamed from hash_compare_struniq_t.
11955 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11956 (state_list): Renamed from state_list_t.
11957 * src/assoc.h (assoc): Renamed from assoc_t.
11958 * src/conflicts.c (enum conflict_resolution): Renamed from
11959 enum conflict_resolution_e.
11960 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11961 (rule_list): Renamed from rule_list_t.
11962 * src/getargs.h (enum trace): Renamed from enum trace_e.
11963 (enum report): Renamed from enum report_e.
11964 * src/gram.h (item_number): Renamed from item_number_t.
11965 (rule_number): Renamed from rule_number_t.
11966 (struct rule_s): Remove the "rule_s" part; not used.
11967 (rule): Renamed from rule_t.
11968 (rule_filter): Renamed from rule_filter_t.
11969 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11970 (goto_list): Renamed from goto_list_t.
11971 * src/lalr.h (goto_number): Renamed from goto_number_t.
11972 * src/location.h (location): Renamed from location_t.
11973 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11974 and moved here from:
11975 * src/muscle_tab.h (muscle_entry_t): here.
11976 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11977 (rule_list): Renamed from rule_list_t.
11978 * src/print_graph.c (static_graph): Renamed from graph.
11979 * src/reader.h (braced_code): Renamed from braced_code_t.
11980 Remove brace_code_e tag.
11981 * src/relation.h (relation_node): Renamed from relation_node_t.
11982 (relation_nodes): Renamed from relation_nodes_t.
11983 (relation): Renamed from relation_t.
11984 * src/state.h (state_number): Renamed from state_number_t.
11985 (struct state): Renamed from struct state_s.
11986 (state): Renamed from state_t.
11987 (transitions): Renamed from transitions_t. Unused (and
11988 misspelled) transtion_s tag removed.
11989 (errs): Renamed from errs_t. Unused errs_s tag removed.
11990 (reductions): Renamed from reductions_t. Unused tag
11991 reductions_s removed.
11992 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11993 (struct symbol_list): Renamed from struct symbol_list_s.
11994 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11995 (struct symbol): Renamed from struct symbol_s.
11996 (symbol): Renamed from symbol_t.
11997 * src/tables.c (vector_number): Renamed from vector_number_t.
11998 (action_number): Renamed from action_t.
11999 * src/tables.h (base_number): Renamed from base_t.
12000 * src/vcg.h (enum color): Renamed from enum color_e.
12001 (enum textmode): Renamed from enum textmode_e.
12002 (enum shape): Renamed from enum shape_e.
12003 (struct colorentry): Renamed from struct colorentry_s.
12004 (struct classname): Renamed from struct classname_s.
12005 (struct infoname): Renamed from struct infoname_s.
12006 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12007 (enum decision): Renamed from enum decision_e.
12008 (enum orientation): Renamed from enum orientation_e.
12009 (enum alignment): Renamed from enum alignment_e.
12010 (enum arrow_mode): Renamed from enum arrow_mode_e.
12011 (enum crossing_type): Renamed from enum crossing_type_e.
12012 (enum view): Renamed from enum view_e.
12013 (struct node): Renamed from struct node_s.
12014 (node): Renamed from node_t.
12015 (enum linestyle): Renamed from enum linestyle_e.
12016 (enum arrowstyle): Renamed from enum arrowstyle_e.
12017 (struct edge): Renamed from struct edge.
12018 (edge): Renamed from edge_t.
12019 (struct graph): Renamed from struct graph_s.
12020 (graph): Renamed from graph_t.
12021 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12022 Rename value_t -> value.
12023 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12024 value_t_as_yystype -> value_as_yystype.
12025
12026 Don't include <errno.h> in the mainstream code, since it
12027 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12028 * lib/get-errno.c, lib/get-errno.h: New files.
12029 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12030 get-errno.c.
12031 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12032 * src/output.c (output_skeleton): Likewise.
12033 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12034 instead of errno.
12035 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12036 Likewise.
12037 (handle_action_dollar, handle_action_at): Likewise.
12038 * src/system.h: Do not include <errno.h>.
12039 (TAB_EXT): Renamed from EXT_TAB.
12040 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12041
12042 Avoid str[a-z]*, since <string.h> reserves that name space.
12043 Change all instances of "struniq" in names to "uniqstr", and
12044 likewise for "STRUNIQ" and "UNIQSTR".
12045 * src/uniqstr.c: Renamed from src/struniq.c.
12046 * src/uniqstr.h: Renamed from src/struniq.h.
12047 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12048 * src/files.c (strsuffix): Remove; unused.
12049 (concat2): Renamed from stringappend. Now static.
12050 * src/files.h (strsuffix, stringappend): Remove; unused.
12051 * src/parse-gram.y (<chars>): Renamed from <string>.
12052 (<uniqstr>): Renamed from <struniq>.
12053 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12054 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12055 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12056 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12057 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12058 (N_EXPAND): Renamed from N_STRETCH.
12059
12060 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12061 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12062 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12063 Remove; unused.
12064 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12065 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12066 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12067 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12068 (BASE_MAXIMUM): Renamed from BASE_MAX.
12069 (BASE_MINIMUM): Renamed from BASE_MIN.
12070 (ACTION_MAX): Remove; unused.
12071 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12072 Unnecessary casts removed from above defines.
12073
12074
12075 Fix misspelling in names.
12076 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12077 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12078 G_NODE_ALIGNEMENT.
12079
12080
12081 * lib/timevar.c (timevar_report): Renamed from time_report,
12082 for consistency with other names.
12083 * lib/timevar.h (timevar_report): New decl.
12084 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12085
12086
12087 Sort include-file uses.
12088
12089 Reorder all include files under src to be in the order "system.h".
12090 then the ../lib include files in angle brackets (alphabetized),
12091 then the . include files in double-quotes (alphabetized). Fix
12092 dependency breakages encountered in this process, as follows:
12093 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12094 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12095 * src/state.h: Include "symtab.h".
12096
12097 2002-12-08 Paul Eggert <eggert@twinsun.com>
12098
12099 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12100 since this causes problems when __file__ contains character
12101 sequences like "@" that are treated specially by src/scan-skel.l.
12102 Instead, just use the file's basename. This fixes the bug
12103 reported by Martin Mokrejs in
12104 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12105
12106 2002-12-06 Paul Eggert <eggert@twinsun.com>
12107
12108 Add support for rules that do not have trailing semicolons, as
12109 POSIX requires. Improve the quality of locations in Bison
12110 diagnostics.
12111
12112 * src/location.c: Include <quotearg.h>.
12113 (empty_location): Now const.
12114 (location_print): New function. Follow the recommendation of the
12115 GNU Coding Standards for locations that span file boundaries.
12116 * src/location.h: Do not include <quotearg.h>; no longer needed.
12117 (boundary): New type.
12118 (location_t): Use it. This allows locations to span file boundaries.
12119 All member uses changed: file -> start.file or end.file (as needed),
12120 first_line -> start.line, first_column -> start.column,
12121 last_line -> end.line, last_column -> end.column.
12122 (equal_boundaries): New function.
12123 (LOCATION_RESET, LOCATION_STEP): Remove.
12124 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12125 (empty_location): Now const.
12126 (location_print): New decl.
12127 * src/parse-gram.y (lloc_default): New function, which handles
12128 empty locations more accurately.
12129 (YYLLOC_DEFAULT): Use it.
12130 (%token COLON): Remove.
12131 (%token ID_COLON): New token.
12132 (rules): Use it.
12133 (declarations, rules): Remove trailing semicolon.
12134 (declaration, rules_or_grammar_declaration):
12135 Allow empty (";") declaration.
12136 (symbol_def): Remove empty actions; no longer needed.
12137 (rules_or_grammar_declaration): Remove trailing semicolon.
12138 (semi_colon.opt): Remove.
12139 * src/reader.h: Include location.h.
12140 (scanner_cursor): New decl.
12141 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12142 rolling our own.
12143 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12144 of *loc.
12145 (STEP): Remove. No longer needed, now that adjust_location does
12146 the work. All uses removed.
12147 (scanner_cursor): New var.
12148 (adjust_location): Renamed from extend_location. It now sets
12149 *loc and adjusts the scanner cursor. All uses changed.
12150 Don't bother testing for CR.
12151 (handle_syncline): Remove location arg; now updates scanner cursor.
12152 All callers changed.
12153 (unexpected_end_of_file): Now accepts start boundary of token or
12154 comment, not location. All callers changed. Update scanner cursor,
12155 not the location.
12156 (SC_AFTER_IDENTIFIER): New state.
12157 (context_state): Renamed from c_context. All uses changed.
12158 (id_loc, code_start, token_start): New local vars.
12159 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12160 processing of Yacc white space and equivalents here.
12161 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12162 instead of returning ID immediately, since we need to search for
12163 a subsequent colon.
12164 (<INITIAL>"'", "\""): Save token_start.
12165 (<INITIAL>"%{", "{", "%%"): Save code_start.
12166 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12167 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12168 BEGIN context_state at end, not INITIAL.
12169 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12170 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12171 Return correct token start.
12172 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12173 the start of a character, string or multiline comment is found.
12174 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12175 Reduction): Adjust reported locations to match the more-precise
12176 results now expected.
12177 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12178 * tests/reduce.at (Useless Rules, Reduced Automaton,
12179 Underivable Rules): Likewise.
12180 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12181 or "|"' now that so many other tokens are allowed by the new grammar.
12182
12183 * src/complain.h (current_file): Remove duplicate decl;
12184 current_file is now owned by files.h.
12185 * src/complain.c, src/scan-gram.l: Include files.h.
12186
12187 2002-12-06 Paul Eggert <eggert@twinsun.com>
12188
12189 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12190 promotes to int; it might be unsigned int.
12191 * data/yacc.c (yy_reduce_print): Likewise.
12192
12193 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12194 be #defined in the prologue, not in the Bison declarations.
12195 This fixes Debian Bug 102878, reported by Shaul Karl.
12196
12197 2002-12-02 Paul Eggert <eggert@twinsun.com>
12198
12199 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12200 * lib/strtoul.c: New file, from gnulib.
12201 This fixes a porting bug reported by Peter Klein in
12202 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12203
12204 2002-11-30 Paul Eggert <eggert@twinsun.com>
12205
12206 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12207 and put only a forward declaration in the prologue. This is for
12208 consistency with the other scanner helper functions.
12209
12210 Type clashes now generate warnings, not errors, since it
12211 appears that POSIX may allow some grammars with type clashes.
12212 * src/reader.c (grammar_current_rule_check): Warn about
12213 type clashes instead of complaining.
12214 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12215
12216 Add Yacc library, since POSIX requires it.
12217 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12218 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12219 * lib/main.c, lib/yyerror.c: New files.
12220
12221 gram_error can be static; it need not be extern.
12222 * src/reader.h (gram_error): Remove decl.
12223 * src/parse-gram.y (gram_error): Now static. Add static decl.
12224 (print_token_value): Omit parameter names from forward decl,
12225 for consistency.
12226
12227 2002-11-29 Paul Eggert <eggert@twinsun.com>
12228
12229 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12230 be declared before being used. E.g., one should typically
12231 declare them in the prologue. Use GNU coding style in examples.
12232 Put "const" consistently after the type it modifies. Mention
12233 that C99 supports "inline". Mention that yyerror traditionally
12234 returns "int".
12235
12236 %parse-param and %lex-param now take just one argument, the
12237 declaration; the argument name is deduced from the declaration.
12238
12239 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12240 Reporting, Table of Symbols): Document this.
12241 * src/parse-gram.y (add_param): New function.
12242 (COMMA): Remove.
12243 (declaration): Implement new rule for %parse-param and %lex-param.
12244 * src/scan-gram.l: "," now elicits a warning, rather than being
12245 a token; this is more compatible with byacc.
12246 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12247
12248 2002-11-27 Paul Eggert <eggert@twinsun.com>
12249
12250 Rename identifiers to avoid real and potential collisions.
12251
12252 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12253 to avoid collision with lex macro described by Bruce Lilly in
12254 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12255 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12256 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12257 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12258 All uses changed.
12259 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12260 The name "yycontrol" violates the name space rules, and this stuff
12261 wasn't being used anyway.
12262 (input): Remove action; this stuff wasn't being used.
12263 (gram_error): Rename local variable yylloc -> loc.
12264 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12265 (YY_DECL): Don't use "yy" at start of local variables.
12266 All uses changed, e.g., yylloc -> loc.
12267 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12268 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12269 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12270 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12271
12272 * src/parse-gram.y (gram_error): loc is now const *.
12273 * src/reader.h (gram_error): Likewise.
12274
12275 2002-11-24 Paul Eggert <eggert@twinsun.com>
12276
12277 Version 1.75c.
12278
12279 * tests/actions.at (Actions after errors): Use an output format
12280 more similar to that of the Printers and Destructors test.
12281 Test the position of the ';' token too.
12282 (Printers and Destructors): Likewise.
12283 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12284 unnecessarily alarming people when the test fails.
12285
12286 * data/yacc.c (yyerrlab1): Move this label down, so that the
12287 parser does not discard the lookahead token if the user code
12288 invokes YYERROR. This change is required for POSIX conformance.
12289
12290 * lib/error.c: Sync with gnulib.
12291
12292 2002-11-22 Paul Eggert <eggert@twinsun.com>
12293
12294 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12295 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12296 * lib/xmalloc.c: Likewise.
12297
12298 2002-11-20 Paul Eggert <eggert@twinsun.com>
12299
12300 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12301
12302 2002-11-20 Paul Eggert <eggert@twinsun.com>
12303
12304 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12305 should use `if (! x) abort ();' rather than `assert (x);', and
12306 anyway it's one less thing to worry about configuring.
12307
12308 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12309 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12310 and replace all instances of assert with abort.
12311 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12312 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12313
12314 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12315 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12316 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12317 hash_find_entry, hash_rehash, hash_insert): Likewise.
12318 * src/conflicts.c (resolve_sr_conflict): Likewise.
12319 * src/lalr.c (set_goto_map, map_goto): Likewise.
12320 * src/nullable.c (nullable_compute): Likewise.
12321 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12322 * src/reader.c (packgram, reader): Likewise.
12323 * src/state.c (state_new, state_free, state_transitions_set,
12324 state_reduction_find): Likewise.
12325 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12326 symbol_pack): Likewise.
12327 * src/tables.c (conflict_row, pack_vector): Likewise.
12328 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12329 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12330 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12331 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12332
12333 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12334 (ARGMATCH_CONSTRAINT): New macro.
12335 (ARGMATCH_ASSERT): Use it.
12336
12337 * src/system.h (verify): New macro.
12338 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12339 rather than assert.
12340 * src/tables.c (tables_generate): Likewise.
12341
12342 * src/struniq.c (struniq_assert): Now returns void, and aborts
12343 if the assertion is false.
12344 (struniq_assert_p): Remove.
12345 * src/struniq.h: Likewise.
12346
12347 2002-11-18 Paul Eggert <eggert@twinsun.com>
12348
12349 * data/glr.c (yygetLRActions): Replace `yyindex' with
12350 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12351 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12352 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12353
12354 2002-11-18 Akim Demaille <akim@epita.fr>
12355
12356 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12357 space.
12358 From Tim Van Holder.
12359
12360 2002-11-17 Paul Eggert <eggert@twinsun.com>
12361
12362 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12363 to "SyntaxError" for consistency with my 2002-11-15 change.
12364
12365 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12366 not define to {}, since this breaks the common use of `YYDPRINTF
12367 ((...));' if a single statement is desired (e.g. before `else').
12368 Work around GCC warnings by surrounding corresponding calls with
12369 {} if needed.
12370 (yyhasResolvedValue): Remove unused function.
12371 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12372 loop body.
12373 (yyreportSyntaxError): Renamed from yyreportParseError.
12374 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12375 All uses changed.
12376 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12377 extern when possible. Remove unused initializations.
12378
12379 2002-11-16 Akim Demaille <akim@epita.fr>
12380
12381 Augment the similarity between GLR and LALR traces.
12382
12383 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12384 (YY_REDUCE_PRINT): New.
12385 (yyparse): Use them.
12386 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12387 YYDPRINT here.
12388 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12389 state reached after the reduction/recovery, since...
12390 (yyparse, yyprocessOneStack): Report the state we are entering in.
12391
12392 2002-11-16 Akim Demaille <akim@epita.fr>
12393
12394 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12395 Add support for --trace=skeleton.
12396 * src/scan-skel.l: %option debug.
12397 Scan strings of non-@ or \n instead of character by character.
12398 (scan_skel): Handle trace_skeleton.
12399 (QPUTS): New.
12400 (@output_parser_name@, @output_header_name@): ``Restore'' their
12401 support (used to be M4 macros).
12402 * data/yacc.c: Quote larger chunks, a la glr.c.
12403 * data/lalr1.cc: Likewise.
12404 The header guards are no longer available, so use some other
12405 string than `YYLSP_NEEDED'.
12406
12407 2002-11-16 Akim Demaille <akim@epita.fr>
12408
12409 Make the ``Printers and Destructors'' test more verbose, taking
12410 `yacc.c''s behavior as (possibly wrong) reference.
12411
12412 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12413 instead of fprint on stdout.
12414 Set and report the last_line of the symbols.
12415 Consistently display values and locations.
12416
12417 2002-11-16 Paul Eggert <eggert@twinsun.com>
12418
12419 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12420
12421 2002-11-15 Paul Eggert <eggert@twinsun.com>
12422
12423 * tests/actions.at (Actions after errors): New test case.
12424
12425 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12426 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12427 tests/action.at, tests/calc.at, tests/conflicts.at,
12428 tests/cxx-type.at, tests/regression.at:
12429 "parse error" -> "syntax error" for POSIX compatibility.
12430 "parsing stack overflow..." -> "parser stack overflow" so
12431 that code matches Bison documentation.
12432
12433 2002-11-15 Akim Demaille <akim@epita.fr>
12434
12435 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12436 take two BRACED_CODE, not two string_content.
12437 Free the scanner's obstack when we are done.
12438 (code_content): New.
12439 * tests/calc.at: Adjust.
12440 * doc/bison.texinfo: Adjust.
12441 Also, make sure to include the `,' for these declarations.
12442
12443 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12444
12445 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12446 definition; avoids potential autoreconf problems.
12447
12448 2002-11-15 Akim Demaille <akim@epita.fr>
12449
12450 Always check the value returned by yyparse.
12451
12452 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12453 returned by yyparse.
12454 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12455 Adjust calls.
12456 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12457 returned by yyparse.
12458
12459 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12460
12461 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12462 on input.at test.
12463
12464 2002-11-14 Paul Eggert <eggert@twinsun.com>
12465
12466 * src/output.c (output_skeleton): Call xfopen instead of
12467 duplicating xfopen's body.
12468
12469 Fix bugs reported by Nelson H. F. Beebe in
12470 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12471
12472 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12473 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12474 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12475 file twice in the grammar, as an extra check.
12476
12477 * tests/input.at (Torturing the Scanner): Surround the
12478 backslash-newline tests with "#if 0", to make it less likely that
12479 we'll run into compiler bugs. Bring back solitary \ inside
12480 comment, but add a closing comment to work around HP C bug. Don't
12481 test backslash-newline in C character constant.
12482
12483 2002-11-14 Akim Demaille <akim@epita.fr>
12484
12485 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12486 status of the compiler.
12487 Calling `exit 1' is no longer needed.
12488 Reported by Nelson H. F. Beebe.
12489
12490 2002-11-14 Akim Demaille <akim@epita.fr>
12491
12492 * tests/atlocal.in (CPPFLAGS): We have config.h.
12493 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12494 New.
12495 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12496 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12497 * tests/regression.at, tests/torture.at: Use them for all the
12498 grammars that are to be compiled.
12499 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12500 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12501 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12502
12503 2002-11-14 Akim Demaille <akim@epita.fr>
12504
12505 * doc/bison.texinfo: Various formatting changes (alignments in
12506 samples, additional @group/@end group, GCS in samples.
12507 Use @deffn instead of simple @table to define the directives,
12508 macros, variables etc.
12509
12510 2002-11-13 Paul Eggert <eggert@twinsun.com>
12511
12512 Fix some bugs reported by Albert Chin-A-Young in
12513 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12514
12515 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12516 -o c"; the HP C compiler chatters during compilation.
12517 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12518 * tests/headers.at (export YYLTYPE): Likewise.
12519
12520 * tests/input.at (Torturing the Scanner): Remove lines containing
12521 solitary backslashes, as they tickle a bug in the HP C compiler.
12522
12523 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12524 comments, since they're not portable. Use GNU coding style.
12525
12526 2002-11-13 Akim Demaille <akim@epita.fr>
12527
12528 * data/yacc.c: Leave bigger chunks of quoted text.
12529 (YYDSYMPRINTF): New.
12530 Use it to report symbol activities.
12531 * data/glr.c (YYDSYMPRINTF): New.
12532 Use it.
12533
12534 2002-11-12 Paul Eggert <eggert@twinsun.com>
12535
12536 Version 1.75b.
12537
12538 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12539 (yyglrReduce): Return yyok, not 0.
12540 This should avoid the enumerated-type warnings reported
12541 by Nelson H. F. Beebe in
12542 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12543
12544 * lib/bbitset.h (BITSET_INLINE): Remove.
12545 * lib/bitset.h [! BITSET_INLINE]: Remove.
12546 (bitset_set, bitset_reset, bitset_test): Rename local vars
12547 to avoid shadowing warnings by GCC.
12548
12549 * data/glr.c (inline): Remove #define. It's the user's
12550 responsibility to #define it away, just like 'const'.
12551 This fixes one of the bugs reported by Nelson H. F. Beebe in
12552 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12553
12554 * Makefile.maint (po-check): Scan .l and .y files instead of the
12555 .c and the .h files that they generate. This fixes the bug
12556 reported by Tim Van Holder in:
12557 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12558 Look for N_ as well as for _. Try to avoid matching #define for
12559 N_ and _.
12560 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12561 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12562 * src/scan-gram.l: Revamp regular expressions so that " and '
12563 do not confuse xgettext.
12564
12565 * src/struniq.h (struniq_new): Do not declare the return type
12566 to be 'const'; this violates the C standard.
12567 * src/struniq.c (struniq_new): Likewise.
12568
12569 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12570
12571 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12572 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12573 linker.
12574
12575 2002-11-12 Akim Demaille <akim@epita.fr>
12576
12577 * Makefile.maint: Sync with Autoconf:
12578 (local_updates): New.
12579
12580 2002-11-12 Akim Demaille <akim@epita.fr>
12581
12582 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12583
12584 2002-11-12 Akim Demaille <akim@epita.fr>
12585
12586 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12587 locations.
12588
12589 2002-11-12 Akim Demaille <akim@epita.fr>
12590
12591 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12592 not yyvalue.
12593
12594 2002-11-12 Akim Demaille <akim@epita.fr>
12595
12596 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12597 Use it to test the GLR parser.
12598
12599 2002-11-12 Akim Demaille <akim@epita.fr>
12600
12601 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12602 defines it.
12603 * data/glr.c (yystos): New.
12604 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12605 (YYDSYMPRINT): New.
12606 (yyval): Don't define it, it is handled via M4.
12607 (yyrecoverParseError): Free verbosely the discarded symbols.
12608 * data/yacc.c (yysymprint): Remove, rather...
12609 (b4_yysymprint_generate): invoke.
12610 * data/c.m4 (b4_yysymprint_generate): New.
12611 Accept pointers as arguments, as opposed to the version from
12612 yacc.c.
12613 (b4_yydestruct_generate): Likewise.
12614 * tests/cations.at (Printers and Destructors): Use Bison directives
12615 instead of CPP macros.
12616 Don't rely on internal details.
12617
12618 2002-11-12 Akim Demaille <akim@epita.fr>
12619
12620 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12621 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12622 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12623 it against YYEMPTY and so forth), work on yytoken (i.e., set
12624 it to YYEMPTY etc.).
12625 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12626 (b4_symbol_actions): Remove.
12627 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12628 for 0, end-of-input.
12629
12630 2002-11-12 Akim Demaille <akim@epita.fr>
12631
12632 * doc/bison.texinfo (Destructor Decl): New.
12633
12634 2002-11-12 Akim Demaille <akim@epita.fr>
12635
12636 * src/tables.c (tables_generate): Use free for pointers that
12637 cannot be NULL, not XFREE.
12638 (pack_vector): Use assert, not fatal, for bound violations.
12639 * src/state.c (state_new): Likewise.
12640 * src/reader.c (reader): Likewise.
12641 * src/lalr.c (set_goto_map): Likewise.
12642 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12643 the file name.
12644
12645 2002-11-12 Akim Demaille <akim@epita.fr>
12646
12647 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12648 Restore.
12649 * src/scan-gram.l (last_string): Is global to the file, not to
12650 yylex.
12651 * src/parse-gram.y (input): Don't append the epilogue here,
12652 (epilogue.opt): do it here, and free the scanner's obstack.
12653 * src/reader.c (epilogue_set): Rename as...
12654 (epilogue_augment): this.
12655 * data/c.m4 (b4_epilogue): Defaults to empty.
12656
12657 2002-11-12 Akim Demaille <akim@epita.fr>
12658
12659 * src/getargs.c (long_options): Remove duplicates.
12660 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12661 Remove.
12662 * doc/bison.rnh: Remove.
12663 * doc/bison.texinfo (VMS Invocation): Remove.
12664
12665 2002-11-12 Akim Demaille <akim@epita.fr>
12666
12667 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12668 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12669
12670 Use struniq for symbols.
12671
12672 * src/symtab.h (symbol_t): The tag member is a struniq.
12673 (symbol_type_set): Adjust.
12674 * src/symtab.c (symbol_new): Takes a struniq.
12675 (symbol_free): Don't free the tag member.
12676 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12677 (hash_compare_symbol, hash_symbol): these.
12678 Use the fact that tags as struniqs.
12679 (symbol_get): Use struniq_new.
12680 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12681 Returns a strniq.
12682 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12683 and type members are struniqs.
12684 * src/reader.c (get_merge_function)
12685 (grammar_current_rule_merge_set): Adjust.
12686 (TYPE, current_type): Are struniq.
12687
12688 Use struniq for file names.
12689
12690 * src/files.h, src/files.c (infile): Split into...
12691 (grammar_file, current_file): these.
12692 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12693 * src/reduce.c (reduce_print): Likewise.
12694 * src/getargs.c (getargs): Likewise.
12695 * src/complain.h, src/complain.c: Likewise.
12696 * src/main.c (main): Call struniqs_new early enough to use it for
12697 file names.
12698 Don't free the input file name.
12699
12700 2002-11-12 Akim Demaille <akim@epita.fr>
12701
12702 * src/symtab.c (symbol_free): Remove dead deactivated code:
12703 type_name are properly removed.
12704 Don't use XFREE to free items that cannot be NULL.
12705 * src/struniq.h, src/struniq.c: New.
12706 * src/main.c (main): Initialize/free struniqs.
12707 * src/parse-gram.y (%union): Add astruniq member.
12708 (yyprint): Adjust.
12709 * src/scan-gram.l (<{tag}>): Return a struniq.
12710 Free the obstack bit that used to store it.
12711 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12712
12713 2002-11-11 Paul Eggert <eggert@twinsun.com>
12714
12715 Revamp to fix many (but not all) of the C- and M4-related quoting
12716 problems. Among other things, this fixes the Bison bug reported
12717 by Jan Hubicka when processing the Bash grammar; see:
12718 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12719
12720 Use new @ escapes consistently. Represent brackets with @{ and @}
12721 rather than @<:@ and @:>@, since this works a bit better with dumb
12722 editors like vi. Represent @ with @@, since @ is now consistently
12723 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12724 __ofile__, to avoid unexpected expansions. Similarly, use @output
12725 rather than #output.
12726
12727 * data/c.m4 (b4_copyright): Omit file name from comment, since
12728 the file name could contain "*/".
12729 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12730 be quoted. All uses changed.
12731
12732 * data/glr.c: Use new @ escapes consistently.
12733 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12734 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12735 Remove, since they couldn't handle arbitrary characters in file
12736 names.
12737 * data/lalr1.cc: Likewise.
12738 * data/yacc.c: Likewise.
12739
12740 * src/files.c (output_infix): Remove; all uses removed.
12741 * src/files.h: Likewise.
12742
12743 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12744 mishandled funny characters in file names, and anyway it isn't
12745 needed any more.
12746 * data/yacc.c: Likewise.
12747 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12748
12749 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12750 * data/yacc.c: Likewise.
12751
12752 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12753 strings now.
12754 (muscle_init): Quote filename as a C string.
12755 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12756 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12757 * src/output.c (escaped_file_name_output): New function.
12758 (prepare_symbols): Quote tokens for M4.
12759 (prepare): Don't insert output_infix, output_prefix,
12760 output_parser_name, output_header_name; this is now down by scan-skel.
12761 Insert skeleton as a C string.
12762
12763 * src/output.c (user_actions_output, symbol_destructors_output,
12764 symbol_printers_output): Quote filenames for C and M4.
12765 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12766
12767 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12768 escapes other than \\ and \'; this simplifies the code.
12769 (<SC_STRING>): Likewise, for \\ and \".
12770 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12771 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12772 Use new escapes @{ and @} for [ and ].
12773
12774 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12775 them with auto vars.
12776 Switch to new escape scheme, where @ is the escape character uniformly.
12777 Abort if a stray escape character is found. Avoid unbounded input
12778 buffer when parsing non-escaped text.
12779
12780 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12781 __oline__, #output, $@, and @{ do not have unintended meanings.
12782
12783 2002-11-09 Paul Eggert <eggert@twinsun.com>
12784
12785 Fix the test failure due to GCC warnings described in
12786 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12787 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12788 evaluate to 0 if it's impossible for NINF to be in the respective
12789 table.
12790 (yygetLRActions, yyrecoverParseError): Use them.
12791
12792 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12793 counted in the token inserted at end of file. Now takes
12794 location_t *, not location_t, so that the location can be
12795 adjusted. All uses changed.
12796
12797 * tests/regression.at (Invalid inputs): Adjust wording in
12798 diagnostic to match the new behavior.
12799
12800 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12801 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12802 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12803 abort ();'. This reduces the runtime of the "Many lookaheads"
12804 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12805 GCC 3.2.
12806
12807 2002-11-07 Paul Eggert <eggert@twinsun.com>
12808
12809 * src/parse-gram.y (CHARACTER): Remove unused token.
12810 All uses removed.
12811
12812 * src/scan-gram.l: Remove stack option. We no longer use the
12813 stack, since the stack was never deeper than 1; instead, use the
12814 new auto var c_context to record the stacked value.
12815
12816 Remove nounput option. At an unexpected end of file, we now unput
12817 the minimal input necessary to end cleanly; this simplifies the
12818 code.
12819
12820 Avoid unbounded token sizes where this is easy.
12821
12822 (unexpected_end_of_file): New function.
12823 Use it to systematize the error message on unexpected EOF.
12824 (last-string): Now auto, not static.
12825 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12826 (scanner_last_string_free): Remove; not used.
12827 (percent_percent_count): Move decl to just before use.
12828 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12829 not the (never otherwised-used) CHARACTER.
12830
12831 2002-11-07 Akim Demaille <akim@epita.fr>
12832
12833 Let yyerror always receive the msg as last argument, so that
12834 yyerror can be variadic.
12835
12836 * data/yacc.c (b4_yyerror_args): New.
12837 Use it when calling yyerror.
12838 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12839 Use it when calling yyerror.
12840 * doc/bison.texinfo (Error Reporting): Adjust.
12841 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12842 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12843
12844 2002-11-06 Akim Demaille <akim@epita.fr>
12845
12846 #line should have quoted strings.
12847 Ideally, this should be done by m4_quotearg.
12848
12849 * src/scan-skel.l: Include quotearg.h.
12850 Quote __ofile__.
12851 * src/output.c (symbol_printers_output)
12852 (symbol_destructors_output): Quote the file name.
12853
12854 2002-11-06 Akim Demaille <akim@epita.fr>
12855
12856 * tests/regression.at (Invalid inputs): Adjust to the recent
12857 messages.
12858
12859 2002-11-06 Akim Demaille <akim@epita.fr>
12860
12861 Restore --no-lines.
12862 Reported by Jim Kent.
12863
12864 * data/c.m4 (b4_syncline): New.
12865 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12866 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12867 * src/output.c (user_actions_output): Likewise.
12868 (prepare): Define 'b4_synclines_flag'.
12869 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12870
12871 2002-11-06 Akim Demaille <akim@epita.fr>
12872
12873 * src/main.c (main): Free `infile'.
12874 * src/scan-gram.l (handle_syncline): New.
12875 Recognize `#line'.
12876 * src/output.c (user_actions_output, symbol_destructors_output)
12877 (symbol_printers_output): Use the location's file name, not
12878 infile.
12879 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12880
12881 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12882
12883 * src/tables.c (matching_state): Don't allow states to match if
12884 either has GLR conflict entries.
12885
12886 2002-11-05 Paul Eggert <eggert@twinsun.com>
12887
12888 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12889 "integer out of range" rather than "invalid value".
12890 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12891 accordingly.
12892
12893 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12894 Also, remove one static variable in the scanner.
12895
12896 * src/scan-gram.l (braces_level): Now auto, not static.
12897 Initialize to zero if the compiler is being picky.
12898 (INITIAL): Clear braces_level instead of incrementing it.
12899 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12900 as POSIX 1003.1-2001 requires.
12901 * src/system.h (IF_LINT): New macro, taken from coreutils.
12902 * configure.ac: Define "lint" if --enable-gcc-warnings.
12903
12904 2002-11-05 Akim Demaille <akim@epita.fr>
12905
12906 * src/scan-gram.l: When it starts with `%', complain about the
12907 whole directive, not just that `invalid character: %'.
12908
12909 2002-11-04 Akim Demaille <akim@epita.fr>
12910
12911 * Makefile.maint: Update from Autoconf.
12912 (update, cvs-update, po-update, do-po-update): New.
12913
12914 2002-11-04 Akim Demaille <akim@epita.fr>
12915
12916 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12917 and yyerror.
12918 Have yyerror `use' its arguments.
12919 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12920 returns true when location & yacc & pure & parse-param.
12921 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12922
12923 2002-11-04 Akim Demaille <akim@epita.fr>
12924
12925 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12926 clashes.
12927 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12928 font-lock-mode.
12929 Use complain_at.
12930 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12931 slot 0.
12932
12933 2002-11-03 Paul Eggert <eggert@twinsun.com>
12934
12935 * src/reader.c (get_merge_function, grammar_current_rule_check):
12936 Use consistent diagnostics for reporting type name clashes.
12937 Quote the types with <>, for consistency with Yacc.
12938 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12939
12940 2002-11-03 Akim Demaille <akim@epita.fr>
12941
12942 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12943 New.
12944 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12945 (b4_parse_param): Remove.
12946 Use b4_identification.
12947 Propagate b4_pure_args where needed to pass them to yyerror.
12948 * data/glr.m4 (b4_parse_param): Remove.
12949 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12950 (b4_lpure_formals): New.
12951 Use b4_identification.
12952 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12953 b4_user_formals and b4_user_args.
12954 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12955 (yyreportAmbiguity): When using a pure parser, also need
12956 the location, and the parse-params.
12957 Adjust callers.
12958 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12959 When using a pure parser, also need the parse-params.
12960 Adjust callers.
12961 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12962 (%pure-parser + %parse-param) LALR and GLR parsers.
12963 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12964 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12965 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12966 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12967 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12968 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12969 * doc/bison.texinfo: Untabify the whole file.
12970 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12971 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12972 (Error Reporting): Adjust to these new directives.
12973 Document %error-verbose, deprecate YYERROR_VERBOSE.
12974
12975 2002-11-03 Akim Demaille <akim@epita.fr>
12976
12977 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12978 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12979 command line options.
12980 * tests/cxx-type.at: Formatting changes.
12981
12982 2002-11-03 Paul Eggert <eggert@twinsun.com>
12983
12984 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12985 to count columns correctly, and to check for invalid inputs.
12986
12987 Use mbsnwidth to count columns correctly. Account for tabs, too.
12988 Include mbswidth.h.
12989 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12990 (extend_location): New function.
12991 (YY_LINES): Remove.
12992
12993 Handle CRLF in C code rather than in Lex code.
12994 (YY_INPUT): New macro.
12995 (no_cr_read): New function.
12996
12997 Scan UCNs, even though we don't fully handle them yet.
12998 (convert_ucn_to_byte): New function.
12999
13000 Handle backslash-newline correctly in C code.
13001 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13002 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13003 all uses changed.
13004 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13005 Use {splice} wherever C allows backslash-newline.
13006 YY_STEP after space, newline, vertical-tab.
13007 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13008
13009 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13010
13011 ({int}, handle_action_dollar, handle_action_at): Check for integer
13012 overflow.
13013
13014 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13015
13016 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13017 as well as \000. Check for UCHAR_MAX, not 255.
13018 Allow \x with an arbitrary positive number of digits, as in C.
13019 Check for overflow here.
13020 Allow \? and UCNs, for compatibility with C.
13021
13022 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13023 with quote slot used by complain_at.
13024
13025 * tests/input.at: Add tests for backslash-newline, m4 quotes
13026 in symbols, long literals, and funny escapes in strings.
13027
13028 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13029 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13030 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13031 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13032 * m4/mbswidth.m4: New file, from GNU coreutils.
13033
13034 * doc/bison.texinfo (Grammar Outline): Document // comments.
13035 (Symbols): Document that trigraphs have no special meaning in Bison,
13036 nor is backslash-newline allowed.
13037 (Actions): Document that trigraphs have no special meaning.
13038
13039 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13040 no longer used.
13041
13042 2002-11-02 Paul Eggert <eggert@twinsun.com>
13043
13044 * src/reader.c: Don't include quote.h; not needed.
13045 (get_merge_function): Reword warning to be consistent with
13046 type clash diagnostic in grammar_current_rule_check.
13047
13048 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13049 bug in trigraph handling.
13050
13051 * src/output.c (prepare_symbols): When printing token names,
13052 escape "[" as "@<:@" and likewise for "]".
13053
13054 * src/system.h (errno): Remove declaration, as we are now
13055 assuming C89 or better, and C89 guarantees errno.
13056
13057 2002-10-30 Paul Eggert <eggert@twinsun.com>
13058
13059 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13060 Check for close failures.
13061 * src/files.h (xfclose): Return void, not int, since it always
13062 returned zero.
13063 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13064 indicates one.
13065 * src/output.c (output_skeleton): Use xfclose rather than fclose
13066 and ferror. xfclose now checks ferror.
13067
13068 * data/glr.c (YYLEFTMOST_STATE): Remove.
13069 (yyreportTree): Use a stack-based leftmost state. This avoids
13070 our continuing battles with bogus warnings about initializers.
13071
13072 2002-10-30 Akim Demaille <akim@epita.fr>
13073
13074 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13075 #if.
13076
13077 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13078
13079 * tests/glr-regr1.at: New test for reported regressions.
13080 * tests/testsuite.at: Add glr-regr1.at test.
13081 * tests/Makefile.am: Add glr-regr1.at test.
13082
13083 2002-10-24 Paul Eggert <eggert@twinsun.com>
13084
13085 Version 1.75a.
13086
13087 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13088 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13089 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13090 Don't assume strdup exists; POSIX says its an XSI extension.
13091 Check for buffer overflow on input.
13092
13093 2002-10-24 Akim Demaille <akim@epita.fr>
13094
13095 * src/output.c (output_skeleton): Don't disable M4sugar comments
13096 too soon: it results in comments being expanded.
13097 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13098 first output.
13099
13100 2002-10-24 Akim Demaille <akim@epita.fr>
13101
13102 * data/yacc.c (m4_int_type): New.
13103 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13104 char' as only yacc.c wants K&R portability.
13105 * data/glr.c (yysigned_char): Remove.
13106 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13107 Reported by Quoc Peyrot.
13108
13109 2002-10-23 Paul Eggert <eggert@twinsun.com>
13110
13111 * src/main.c (main): With --trace=time, report times even if a
13112 non-fatal error occurs. Formerly, the times were reported in some
13113 such cases but not in others.
13114 * src/reader.c (reader): Just return if a complaint has been issued,
13115 instead of exiting, so that 'main' can report times.
13116
13117 2002-10-22 Akim Demaille <akim@epita.fr>
13118
13119 * src/system.h: Include sys/types.
13120 Reported by Bert Deknuydt.
13121
13122 2002-10-23 Paul Eggert <eggert@twinsun.com>
13123
13124 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13125 Suggested by Art Haas.
13126
13127 2002-10-22 Paul Eggert <eggert@twinsun.com>
13128
13129 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13130 decl; not needed any more.
13131 * src/main.c (main): Use return to exit, undoing yesterday's change.
13132 The last OS that we could find where this wouldn't work is
13133 SunOS 3.5, and that's too old to worry about now.
13134
13135 * data/glr.c (struct yyltype): Define members even when not
13136 doing locations. This is more consistent with yacc.c, and it
13137 works around the following bug reports:
13138 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13139 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13140
13141 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13142 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13143 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13144
13145 2002-10-22 Akim Demaille <akim@epita.fr>
13146
13147 * data/README: New.
13148
13149 2002-10-21 Paul Eggert <eggert@twinsun.com>
13150
13151 Be consistent about 'bool'; the old code used an enum in one
13152 module and an int in another, and this violates the C standard.
13153 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13154 * configure.ac (AC_HEADER_STDBOOL): Add.
13155 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13156 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13157 * src/symtab.c (hash_compare_symbol_t): Likewise.
13158 * src/system.h (bool, false, true): Use a definition consistent
13159 with ../lib/hash.c. All uses changed.
13160
13161 * src/complain.c (warning_issued): Renamed from warn_message_count,
13162 so that we needn't worry about integer overflow (!).
13163 Now of type bool. All uses changed.
13164 (complaint_issued): Renamed from complain_message_count; likewise.
13165
13166 * src/main.c (main): Use exit to exit with failure.
13167
13168 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13169 rather than 1 and 0.
13170 * src/main.c (main): Likewise.
13171 * src/getargs.c (getargs): Likewise.
13172 * src/reader.c (reader): Likewise.
13173
13174 * src/getarg.c (getargs): Remove duplicate code for
13175 "Try `bison --help'".
13176
13177 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13178 What was that "2" for?
13179
13180 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13181 * src/getargs.c (usage): Likewise.
13182
13183 * src/getargs.c (getargs): When there are too few operands, report
13184 the last one. When there are too many, report the first extra
13185 one. This is how diffutils does it.
13186
13187 2002-10-20 Paul Eggert <eggert@twinsun.com>
13188
13189 Remove K&R vestiges.
13190 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13191 * src/complain.c (VA_START): Remove. Assume prototypes.
13192 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13193 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13194 fatal): Assume prototypes.
13195 * src/complain.h: Assume prototypes.
13196 * src/system.h (PARAMS): Remove.
13197 Include <limits.h> unconditionally, since it's guaranteeed even
13198 for a freestanding C89 compiler.
13199 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13200 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13201
13202 2002-10-20 Akim Demaille <akim@epita.fr>
13203
13204 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13205 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13206 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13207 (yyresolveStates, yyresolveAction, yyresolveStack)
13208 (yyprocessOneStack): Use them.
13209 (yy_reduce_print): New.
13210 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13211
13212 2002-10-20 Akim Demaille <akim@epita.fr>
13213
13214 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13215 arguments and output `void'.
13216 (b4_c_function): Rename as...
13217 (b4_c_function_def): this.
13218 (b4_c_function_decl, b4_c_ansi_function_def)
13219 (b4_c_ansi_function_decl): New.
13220 Change the interpretation of the arguments: before `int, foo', now
13221 `int foo, foo'.
13222 * data/yacc.c (yyparse): Prototype and define thanks to these.
13223 Adjust b4_c_function_def uses.
13224 * data/glr.c (yyparse): Likewise, but ANSI only.
13225
13226 2002-10-20 Akim Demaille <akim@epita.fr>
13227
13228 * src/output.c (prepare): Move the definition of `tokens_number',
13229 `nterms_number', `undef_token_number', `user_token_number_max'
13230 to...
13231 (prepare_tokens): Here.
13232 (prepare_tokens): Rename as...
13233 (prepare_symbols): this.
13234 (prepare): Move the definition of `rules_number' to...
13235 (prepare_rules): here.
13236 (prepare): Move the definition of `last', `final_state_number',
13237 `states_number' to...
13238 (prepare_states): here.
13239 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13240
13241 2002-10-20 Akim Demaille <akim@epita.fr>
13242
13243 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13244
13245 2002-10-20 Akim Demaille <akim@epita.fr>
13246
13247 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13248 * data/c.m4: here.
13249
13250 2002-10-20 Akim Demaille <akim@epita.fr>
13251
13252 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13253 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13254 `pair'.
13255 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13256 `name' to...
13257 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13258 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13259 These.
13260
13261 2002-10-19 Paul Eggert <eggert@twinsun.com>
13262
13263 Do not create a temporary file, as that involves security and
13264 cleanup headaches. Instead, use a pair of pipes.
13265 Derived from a suggestion by Florian Krohm.
13266 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13267 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13268 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13269 (BISON_PREREQ_SUBPIPE): Add.
13270 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13271 Add subpipe.h, subpipe.c.
13272 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13273 * po/POTFILES.in: Add lib/subpipe.c.
13274 * src/output.c: Include "subpipe.h".
13275 (m4_invoke): Remove decl.
13276 (scan_skel): New decl.
13277 (output_skeleton): Use pipe rather than temporary file for m4 input.
13278 Check that m4sugar.m4 is readable, to avoid deadlock.
13279 Check for pipe I/O error.
13280 * src/scan-skel.l (readpipe): Remove decl.
13281 (scan_skel): New function, to be used in place of m4_invoke.
13282 Read from stream rather than file.
13283
13284 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13285 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13286 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13287 this generates a more-accurate value anyway.
13288
13289 * lib/timevar.c (timervar_accumulate): Rename locals to
13290 avoid confusion with similarly-named more-global.
13291 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13292
13293 * src/output.c (prepare): Use xstrdup to convert char const *
13294 to char *, to avoid GCC warning.
13295
13296 2002-10-19 Akim Demaille <akim@epita.fr>
13297
13298 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13299 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13300 Use them to have `calc.y' ready for %pure-parser.
13301 * data/yacc.c (YYLEX): Pass a yylex return type to
13302 b4_c_function_call.
13303
13304 2002-10-19 Akim Demaille <akim@epita.fr>
13305
13306 Prototype support of %lex-param and %parse-param.
13307
13308 * src/parse-gram.y: Add the definition of the %lex-param and
13309 %parse-param tokens, plus their rules.
13310 Drop the `_' version of %glr-parser.
13311 Add the "," token.
13312 * src/scan-gram.l (INITIAL): Scan them.
13313 * src/muscle_tab.c: Comment changes.
13314 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13315 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13316 (muscle_entry_s): The `value' member is no longer const.
13317 Adjust all dependencies.
13318 * src/muscle_tab.c (muscle_init): Adjust: use
13319 MUSCLE_INSERT_STRING.
13320 Initialize the obstack earlier.
13321 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13322 (muscle_pair_list_grow): New.
13323 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13324 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13325 * tests/calc.at: Use %locations, not --locations.
13326 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13327
13328 2002-10-19 Akim Demaille <akim@epita.fr>
13329
13330 * src/getargs.c (usage): Take status as argument and exit
13331 accordingly.
13332 Report the traditional `Try ... --help' message when status != 0.
13333 (usage, version): Don't take a FILE * as arg, it is pointless.
13334 (getargs): When there is an incorrect number of arguments, make it
13335 an error, and report it GNUlically thanks to `usage ()'.
13336
13337 2002-10-18 Paul Eggert <eggert@twinsun.com>
13338
13339 * data/glr.c (yyreportParseError): Don't assume that sprintf
13340 yields the length of the printed string, as this is not true
13341 on SunOS 4.1.4. Reported by Peter Klein.
13342
13343 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13344 * tests/conflicts.at (%nonassoc and eof): Likewise.
13345 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13346
13347 2002-10-17 Akim Demaille <akim@epita.fr>
13348
13349 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13350 * src/getargs.c (trace_types, trace_args): Adjust.
13351 * src/reader.c (grammar_current_rule_prec_set)
13352 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13353 Standardize error messages.
13354 And s/@prec/%prec/!
13355 (reader): Use trace_flag to enable scanner/parser debugging,
13356 instead of an adhoc scheme.
13357 * src/scan-gram.l: Remove trailing debugging code.
13358
13359 2002-10-16 Paul Eggert <eggert@twinsun.com>
13360
13361 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13362 MUSCLE_TAB_H.
13363
13364 * NEWS: Officially drop support for building Bison with K&R C,
13365 since it didn't work anyway and it's not worth worrying about.
13366 * Makefile.maint (wget_files): Remove ansi2knr.c.
13367 (ansi2knr.c-url_prefix): Remove.
13368 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13369 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13370 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13371
13372 2002-10-15 Paul Eggert <eggert@twinsun.com>
13373
13374 Stop using the "enum_" trick for K&R-style function definitions;
13375 it confused me, and I was the author! Instead, assume that people
13376 who want to use K&R C compilers (when using these modules in GCC,
13377 perhaps?) will run ansi2knr.
13378
13379 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13380 All uses of "enum_" changed to "enum ".
13381 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13382 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13383
13384 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13385 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13386 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13387 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13388 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13389 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13390 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13391 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13392 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13393 Use function prototypes; this removes the need for declaring
13394 static functions simply to provide their prototypes.
13395 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13396 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13397 bitset_count_, bitset_create, bitset_dump, bitset_first,
13398 bitset_free, bitset_init, bitset_last, bitset_next,
13399 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13400 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13401 bitset_print, bitset_release_memory, bitset_toggle_,
13402 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13403 debug_bitset): Likewise.
13404 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13405 * lib/bitset_stats.c (bitset_log_histogram_print,
13406 bitset_percent_histogram_print, bitset_stats_and,
13407 bitset_stats_and_cmp, bitset_stats_and_or,
13408 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13409 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13410 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13411 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13412 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13413 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13414 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13415 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13416 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13417 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13418 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13419 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13420 bitset_stats_zero): Likewise.
13421 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13422 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13423 bitsetv_dump, debug_bitsetv): Likewise.
13424 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13425 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13426 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13427 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13428 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13429 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13430 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13431 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13432 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13433 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13434 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13435 Likewise.
13436 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13437 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13438 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13439 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13440 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13441 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13442 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13443 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13444 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13445 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13446 lbitset_xor_cmp, lbitset_zero): Likewise.
13447
13448 2002-10-14 Akim Demaille <akim@epita.fr>
13449
13450 Version 1.75.
13451
13452 2002-10-14 Akim Demaille <akim@epita.fr>
13453
13454 * tests/Makefile.am (maintainer-check-posix): New.
13455
13456 2002-10-14 Akim Demaille <akim@epita.fr>
13457
13458 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13459 member.
13460
13461 2002-10-14 Akim Demaille <akim@epita.fr>
13462
13463 * src/tables.c (table_ninf_remap): base -> tab.
13464 Reported by Matt Rosing.
13465
13466 2002-10-14 Paul Eggert <eggert@twinsun.com>
13467
13468 * tests/action.at, tests/calc.at, tests/conflicts.at,
13469 tests/cxx-type.at, tests/headers.at, tests/input.at,
13470 tests/regression.at, tests/synclines.at, tests/torture.at:
13471 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13472 so that the tests still work even if POSIXLY_CORRECT is set.
13473 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13474
13475 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13476 for portability to K&R hosts. Fix typo: signed char is guaranteed
13477 only to 127, not to 128.
13478 * data/glr.c (yysigned_char): New type.
13479 * data/yacc.c (yysigned_char): Likewise.
13480 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13481
13482 2002-10-13 Paul Eggert <eggert@twinsun.com>
13483
13484 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13485 true due to limited range of data type" warning from GCC.
13486
13487 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13488 by wrapping enum yytokentype's definition inside #ifndef
13489 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13490
13491 2002-10-13 Akim Demaille <akim@epita.fr>
13492
13493 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13494 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13495
13496 2002-10-13 Akim Demaille <akim@epita.fr>
13497
13498 * Makefile.maint: Update from Autoconf 2.54.
13499 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13500
13501 2002-10-13 Akim Demaille <akim@epita.fr>
13502
13503 * src/print.c (print_state): Separate the list of solved conflicts
13504 from the other items.
13505 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13506
13507 2002-10-13 Akim Demaille <akim@epita.fr>
13508
13509 Let nondeterministic skeletons be usable with deterministic
13510 tables.
13511
13512 With the patch, GAWK compiled by GCC without -O2 passes its test
13513 suite using a GLR parser driven by LALR tables. It fails with -O2
13514 because `struct stat' gives two different answers on my machine:
13515 88 (definition of an auto var) and later 96 (memset on this var).
13516 Hence the stack is badly corrumpted. The headers inclusion is to
13517 blame: if I move the awk.h inclusion before GLR's system header
13518 inclusion, the two struct stat have the same size.
13519
13520 * src/tables.c (pack_table): Always create conflict_table.
13521 (token_actions): Always create conflict_list.
13522 * data/glr.c (YYFLAG): Remove, unused.
13523
13524 2002-10-13 Akim Demaille <akim@epita.fr>
13525
13526 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13527 (O0FLAGS): New.
13528 (VALGRIND, GXX): New.
13529 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13530 * tests/bison.in: Run $PREBISON a pre-command.
13531 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13532 (maintainer-check-g++): New.
13533 * Makefile.am (maintainer-check): New.
13534
13535 2002-10-13 Akim Demaille <akim@epita.fr>
13536
13537 * data/glr.c: Formatting changes.
13538 Tweak some trace messages to match yacc.c's.
13539
13540 2002-10-13 Akim Demaille <akim@epita.fr>
13541
13542 GLR parsers sometimes raise parse errors instead of performing the
13543 default reduction.
13544 Reported by Charles-Henry de Boysson.
13545
13546 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13547 check the length of the traces when %glr.
13548 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13549 GLR's traces.
13550 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13551 Test GLR parsers.
13552 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13553 (yyltype): Remove the yy prefix from the member names.
13554 (yytable): Complete its comment.
13555 (yygetLRActions): Map error action number from YYTABLE from
13556 YYTABLE_NINF to 0.
13557 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13558 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13559 not satisfying as we could compare an YYACTION computed from
13560 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13561 only value for error actions.
13562 (yyreportParseError): In verbose parse error messages, don't issue
13563 `error' in the list of expected tokens.
13564 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13565 next action to perform to match glr.c's decoding.
13566 (yytable): Complete its comment.
13567
13568 2002-10-13 Paul Eggert <eggert@twinsun.com>
13569
13570 Fix problem reported by Henrik Grubbstroem in
13571 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13572 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13573 because the Bison parser reads the second action before reducing
13574 the first one.
13575 * src/scan-gram.l (rule_length): New static var.
13576 Use it to keep track of the rule length in the scanner, since
13577 we can't expect the parser to be in lock-step sync with the scanner.
13578 (handle_action_dollar, handle_action_at): Use this var.
13579 * tests/actions.at (Exotic Dollars): Test for the problem.
13580
13581 2002-10-12 Paul Eggert <eggert@twinsun.com>
13582
13583 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13584 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13585 Include <sys/time.h> when checking for clock_t and struct tms.
13586 Use same include order as source.
13587 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13588 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13589
13590 * lib/timevar.c: Update copyright date and clarify comments.
13591 (get_time) [IN_GCC]: Keep the GCC version for reference.
13592
13593 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13594 GCC version as of today, then merge Bison's changes.
13595 Change "GCC" to "Bison" in copyright notice. timevar.def's
13596 author is Akim, so change that too.
13597
13598 * src/reader.c (grammar_current_rule_check):
13599 Don't worry about the default action if $$ is untyped.
13600 Prevents bogus warnings reported by Jim Gifford in
13601 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13602
13603 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13604 * data/glr.c, data/lalr1.cc, data/yacc.c:
13605 Output token definitions before the first part of user declarations.
13606 Fixes compatibility problem reported by Jim Gifford for kbd in
13607 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13608
13609 2002-10-11 Paul Eggert <eggert@twinsun.com>
13610
13611 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13612 (yyparse): here. This undoes some of the 2002-07-25 change.
13613 Compatibility problem reported by Ralf S. Engelschall with
13614 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13615
13616 2002-10-11 Akim Demaille <akim@epita.fr>
13617
13618 * tests/regression.at Characters Escapes): New.
13619 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13620 characters.
13621 Reported by Jan Nieuwenhuizen.
13622
13623 2002-10-11 Akim Demaille <akim@epita.fr>
13624
13625 * po/id.po: New.
13626
13627 2002-10-10 Paul Eggert <eggert@twinsun.com>
13628
13629 Portability fixes for bitsets; this also avoids several GCC
13630 warnings.
13631
13632 * lib/abitset.c: Include <stddef.h>, for offsetof.
13633 * lib/lbitset.c: Likewise.
13634
13635 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13636 properly for vectors of objects. Do not assume that adding a
13637 header size to a multiple of a word size yields a value that is
13638 properly aligned for the whole union.
13639 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13640
13641 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13642 unique names for structures.
13643 * lib/ebitset.c (ebitset_bytes): Likewise.
13644 * lib/lbitset.c (lbitset_bytes): Likewise.
13645
13646 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13647 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13648 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13649 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13650 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13651 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13652 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13653 to improve the type-checking that GCC can do.
13654 * lib/bitset.c (bitset_op4_cmp): Likewise.
13655 * lib/bitset_stats.c (bitset_stats_count,
13656 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13657 bitset_stats_copy, bitset_stats_disjoint_p,
13658 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13659 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13660 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13661 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13662 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13663 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13664 bitset_stats_or_and_cmp): Likewise.
13665 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13666 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13667 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13668 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13669
13670 * lib/abitset.h: Include bitset.h, not bbitset.h.
13671 * lib/ebitset.h: Likewise.
13672 * lib/lbitset.h: Likewise.
13673
13674 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13675 All instances of parameters of type enum bitset_opts are now of
13676 type enum_bitset_opts, to conform to the C Standard, and similarly
13677 for enum_bitset_type.
13678 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13679 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13680
13681 Do not use "struct bitset_struct" to mean different things in
13682 different modules. Not only is this confusing, it violates
13683 the C Standard, which requires that structure types in different
13684 modules must be compatible if one is to be passed to the other.
13685 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13686 All instances of "struct bitset_struct *" replaced with "bitset".
13687 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13688 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13689 struct lbitset_struct, struct bitset_stats_struct): New types.
13690 All uses of struct bitset_struct changed to union bitset_union,
13691 etc.
13692 * lib/abitset.c (struct abitset_struct, abitset,
13693 struct bitset_struct): Remove.
13694 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13695 struct bitset_struct): Remove.
13696 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13697 bitset_struct): Remove.
13698 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13699 Likewise.
13700
13701 Do not call a function of type T using a call that assumes the
13702 function is of a different type U. Standard C requires that a
13703 function must be called with a type that is compatible with its
13704 definition.
13705 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13706 New decls.
13707 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13708 New functions.
13709 * lib/ebitset.c (PFV): Remove.
13710 * lib/lbitset.c (PFV): Likewise.
13711 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13712 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13713 decls.
13714 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13715 (ebitset_vtable): Use them.
13716 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13717 lbitset_xor): New functions.
13718 (lbitset_vtable): Use them.
13719
13720 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13721 Declare.
13722
13723 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13724 GCC warning.
13725 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13726 Use offsetof, for simplicity.
13727
13728 2002-10-06 Paul Eggert <eggert@twinsun.com>
13729
13730 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13731 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13732 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13733 which was inadvertently undone by the 2002-09-30 patch.
13734 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13735 the same width as int.
13736
13737 2002-10-04 Paul Eggert <eggert@twinsun.com>
13738
13739 Version 1.50.
13740
13741 * configure.ac (AC_INIT), NEWS: Increment version number.
13742
13743 * doc/bison.texinfo: Minor spelling, grammar, and white space
13744 fixes.
13745 (Symbols): Mention that any negative value returned from yylex
13746 signifies end-of-input. Warn about negative chars. Mention
13747 the portable Standard C character set.
13748
13749 The GNU coding standard says CFLAGS and YFLAGS are reserved
13750 for the installer to set.
13751 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13752 * src/Makefile.am (AM_CFLAGS): Likewise.
13753 (AM_YFLAGS): Renamed from YFLAGS.
13754
13755 Fix some MAX and MIN problems.
13756 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13757 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13758 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13759 * src/reader.c (reader): Use it.
13760
13761 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13762 POSIX 1003.1-2001 has removed fgrep.
13763
13764 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13765
13766 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13767 interpreted as signed.
13768 * lib/ebitset.c (ebitset_list): Fix bug.
13769
13770 2002-10-01 Paul Eggert <eggert@twinsun.com>
13771
13772 More fixes for 64-bit hosts and large bitsets.
13773
13774 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13775 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13776 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13777 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13778 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13779 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13780 bitset_count_): Likewise.
13781 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13782 bitset_first, bitset_last): Likewise.
13783 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13784 bitset_stats_list_reverse, bitset_stats_size,
13785 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13786 Likewise.
13787 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13788 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13789 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13790 bitsetv_reflexive_transitive_closure): Likewise.
13791 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13792 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13793 Likewise.
13794 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13795 Likewise.
13796
13797 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13798 Use size_t, not unsigned int, to count bytes.
13799 * lib/abitset.h (abitset_bytes): Likewise.
13800 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13801 Likewise.
13802 * lib/bitset.h (bitset_bytes): Likewise.
13803 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13804 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13805 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13806 * lib/ebitset.c (ebitset_bytes): Likewise.
13807 * lib/ebitset.h (ebitset_bytes): Likewise.
13808 * lib/lbitset.c (lbitset_bytes): Likewise.
13809 * lib/lbitset.h (lbitset_bytes): Likewise.
13810
13811 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13812 abitset_subset_p, abitset_disjoint_p, abitset_and,
13813 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13814 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13815 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13816 abitset_or_and, abitset_or_and_cmp):
13817 Use bitset_windex instead of unsigned int.
13818 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13819 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13820 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13821 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13822 Likewise.
13823 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13824
13825 * lib/bitset.c (bitset_print):
13826 Use proper printf formats for widths of integer types.
13827 * lib/bitset_stats.c (bitset_percent_histogram_print,
13828 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13829 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13830 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13831 * lib/lbitset.c (lbitset_bytes): Likewise.
13832
13833 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13834 BITSET_SIZE_MAX): New macros.
13835 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13836 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13837 to BITSET_WINDEX_MAX.
13838
13839 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13840 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13841 since we now return the bitset_bindex type (not int).
13842
13843 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13844 when computing sizes.
13845 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13846
13847 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13848 and avoid cast to unsigned.
13849
13850 2002-09-30 Akim Demaille <akim@epita.fr>
13851
13852 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13853 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13854 Updates from Michael Hayes.
13855
13856 2002-09-30 Art Haas <ahaas@neosoft.com>
13857
13858 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13859 invocations.
13860 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13861 defined.
13862
13863 2002-09-27 Akim Demaille <akim@epita.fr>
13864
13865 Version 1.49c.
13866
13867 2002-09-27 Akim Demaille <akim@epita.fr>
13868
13869 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13870 (Because of AC_LIBSOURCE).
13871
13872 2002-09-27 Akim Demaille <akim@epita.fr>
13873
13874 Playing with Autoscan.
13875
13876 * configure.ac: Remove the old LIBOBJ tweaks.
13877 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13878 * lib/strrchr.c: New.
13879 * lib/strtol.c: New, from the Coreutils 4.5.1.
13880
13881 2002-09-27 Akim Demaille <akim@epita.fr>
13882
13883 Playing with Autoscan.
13884
13885 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13886 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13887 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13888 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13889 Coreutils 4.5.1.
13890
13891 2002-09-24 Akim Demaille <akim@epita.fr>
13892
13893 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13894 (Frequently Asked Questions, Parser Stack Overflow): New.
13895
13896 2002-09-13 Akim Demaille <akim@epita.fr>
13897
13898 Playing with autoscan.
13899
13900 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13901 * src/files.c (skeleton_find): Remove, unused.
13902 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13903 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13904
13905 2002-09-13 Akim Demaille <akim@epita.fr>
13906
13907 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13908 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13909
13910 2002-09-13 Akim Demaille <akim@epita.fr>
13911
13912 * configure.ac: Require 2.54.
13913 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13914 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13915 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13916 Remove, provided by Autoconf macros.
13917
13918 2002-09-12 Akim Demaille <akim@epita.fr>
13919
13920 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13921
13922 2002-09-12 Akim Demaille <akim@epita.fr>
13923
13924 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13925 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13926 Reported by Martin Mokrejs.
13927
13928 2002-09-10 Akim Demaille <akim@epita.fr>
13929
13930 * src/parse-gram.y: Associate a human readable string to each
13931 token type.
13932 * tests/regression.at (Invalid inputs): Adjust.
13933
13934 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13935
13936 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13937 with an Autoconf-2.5x style configure.ac.
13938
13939 2002-09-06 Paul Eggert <eggert@twinsun.com>
13940
13941 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13942 exception applies only to yacc.c. This is a modification of a
13943 patch originally suggested by Akim Demaille.
13944
13945 2002-09-06 Akim Demaille <akim@epita.fr>
13946
13947 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13948 here to...
13949 * data/yacc.c: here.
13950
13951 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13952 LocationType.
13953 (b4_ltype): Default to yy::Location from location.hh.
13954
13955 2002-09-04 Jim Meyering <jim@meyering.net>
13956
13957 * data/yacc.c: Guard the declaration of yytoknum also with
13958 `#ifdef YYPRINT', so it is declared only when used.
13959
13960 2002-09-04 Akim Demaille <akim@epita.fr>
13961
13962 * configure.in: Rename as...
13963 * configure.ac: this.
13964 Bump to 1.49c.
13965
13966 2002-09-04 Akim Demaille <akim@epita.fr>
13967
13968 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13969 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13970 translate maintainer only messages.
13971
13972 2002-08-12 Paul Eggert <eggert@twinsun.com>
13973
13974 Version 1.49b.
13975
13976 * Makefile.am (SUBDIRS): Remove intl.
13977 (DISTCLEANFILES): Remove.
13978 * NEWS: Mention that GNU M4 is now required. Clarify what is
13979 meant by "larger grammars". Mention the pt_BR translation.
13980 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13981 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13982 Bump version from 0.11.2 to 0.11.5.
13983 (BISON_PREREQ_STAGE): Remove.
13984 (AM_GNU_GETTEXT): Use external gettext.
13985 (AC_OUTPUT): Remove intl/Makefile.
13986
13987 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13988
13989 * data/glr.c: Include string.h, for strlen.
13990 (yyreportParseError): Use size_t for yysize.
13991 (yy_yypstack): No longer nested inside yypstates, as nested
13992 functions are not portable. Do not assume size_t is the
13993 same width as int.
13994 (yypstates): Do not assume that ptrdiff_t is the same width
13995 as int, and similarly for yyposn and YYINDEX.
13996
13997 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13998
13999 * lib/Makefile.am (INCLUDES): Do not include from the intl
14000 directory, which has been removed.
14001 * src/Makefile.am (INCLUDES): Likewise.
14002
14003 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14004 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14005 New vars.
14006
14007 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14008 * tests/Makefile.am (EXTRA_DIST): Likewise.
14009
14010 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14011 Do not assume that bitset_windex is the same width as unsigned.
14012
14013 * lib/abitset.c (abitset_unused_clear): Do not assume that
14014 bitset_word is the same width as int.
14015 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14016 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14017 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14018 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14019 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14020
14021 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14022 portability to one's complement hosts!).
14023 * lib/ebitset.c (ebitset_op1): Likewise.
14024 * lib/lbitset.c (lbitset_op1): Likewise.
14025
14026 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14027 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14028 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14029 Sync with fileutils.
14030 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14031 lib/gettext.h: Sync with diffutils.
14032
14033 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14034 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14035
14036 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14037 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14038 check for void *.
14039
14040 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14041 size_t; the old version tried to do this but casted improperly.
14042 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14043 (bitset_test): Now returns int, not unsigned long.
14044
14045 * lib/bitset_stats.c: Include "gettext.h".
14046 (_): New macro.
14047 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14048 name locals "index", as it generates unnecessary warnings on some
14049 hosts that have an "index" function.
14050
14051 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14052 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14053 they need translation.
14054 * src/LR0.c (state_list_append, new_itemsets, get_state,
14055 append_states, generate_states): Likewise.
14056 * src/assoc.c (assoc_to_string): Likewise.
14057 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14058 * src/gram.c (grammar_dump): Likewise.
14059 * src/injections.c (injections_compute): Likewise.
14060 * src/lalr.c (lookaheads_print): Likewise.
14061 * src/relation.c (relation_transpose): Likewise.
14062 * src/scan-gram.l: Likewise.
14063 * src/tables.c (table_grow, pack_vector): Likewise.
14064
14065 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14066 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14067 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14068 * m4/mbstate_t.m4: Sync with fileutils.
14069 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14070
14071 * po/LINGUAS: Add pt_BR.
14072 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14073 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14074 lib/timevar.c.
14075 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14076 manual recommends.
14077 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14078
14079 * src/complain.c (strerror_r): Remove decl; not needed.
14080 (strerror): Use same pattern as ../lib/error.c.
14081
14082 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14083
14084 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14085
14086 * src/main.c (main): Cast result of bindtextdomain and textdomain
14087 to void, to avoid a GCC warning when --disable-nls is in effect.
14088
14089 * src/scan-gram.l: Use strings rather than escapes when possible,
14090 to minimize the number of warnings from xgettext.
14091 (handle_action_dollar, handle_action_at): Don't use isdigit,
14092 as it mishandles negative chars and it may not work as expected
14093 outside the C locale.
14094
14095 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14096 this is a GCC extension and is not portable to other compilers.
14097
14098 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14099 Do not include <ctype.h>; no longer needed.
14100 Do not include <malloc.h>; no longer needed (and generates
14101 warnings on OpenBSD 3.0).
14102
14103 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14104 it's not portable.
14105
14106 * tests/regression.at: Do not use 'cc -c input.c -o input';
14107 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14108
14109 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14110 exit status as failure, not just exit status 1. Sun C exits
14111 with status 2 sometimes.
14112
14113 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14114 Use it for the two large tests.
14115
14116 2002-08-02 Akim Demaille <akim@epita.fr>
14117
14118 * src/conflicts.c (conflicts_output): Don't output rules never
14119 reduced here, since anyway that computation doesn't work.
14120 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14121 (rule_useless_p, rule_never_reduced_p): New.
14122 (grammar_rules_partial_print): Use a filter instead of a range.
14123 Display the title only if needed.
14124 (grammar_rules_print): Adjust.
14125 (grammar_rules_never_reduced_report): New.
14126 * src/tables.c (action_row): Move the computation of rules never
14127 reduced to...
14128 (token_actions): here.
14129 * src/main.c (main): Make the parser before making the report, so
14130 that rules never reduced are computed.
14131 Call grammar_rules_never_reduced_report.
14132 * src/print.c (print_results): Report rules never reduced.
14133 * tests/conflicts.at, tests/reduce.at: Adjust.
14134
14135 2002-08-01 Akim Demaille <akim@epita.fr>
14136
14137 Instead of attaching lookaheads and duplicating the rules being
14138 reduced by a state, attach the lookaheads to the reductions.
14139
14140 * src/state.h (state_t): Remove the `lookaheads',
14141 `lookaheads_rule' member.
14142 (reductions_t): Add a `lookaheads' member.
14143 Use a regular array for the `rules'.
14144 * src/state.c (reductions_new): Initialize the lookaheads member
14145 to 0.
14146 (state_rule_lookaheads_print): Adjust.
14147 * src/state.h, src/state.c (state_reductions_find): New.
14148 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14149 (count_rr_conflicts): Adjust.
14150 * src/lalr.c (LArule): Remove.
14151 (add_lookback_edge): Adjust.
14152 (state_lookaheads_count): New.
14153 (states_lookaheads_initialize): Merge into...
14154 (initialize_LA): this.
14155 (lalr_free): Adjust.
14156 * src/main.c (main): Don't free nullable and derives too early: it
14157 is used by --verbose.
14158 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14159
14160 2002-08-01 Akim Demaille <akim@epita.fr>
14161
14162 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14163 `rule_number_t**'.
14164 (set_derives, free_derives): Rename as...
14165 (derives_compute, derives_free): this.
14166 Adjust all dependencies.
14167 * src/nullable.c (set_nullable, free_nullable): Rename as...
14168 (nullable_compute, nullable_free): these.
14169 (rule_list_t): Store rule_t *, not rule_number_t.
14170 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14171 pointers, instead of their numbers.
14172 * src/main.c (main): Call nullable_free, and derives_free earlier,
14173 as they were lo longer used.
14174
14175 2002-08-01 Akim Demaille <akim@epita.fr>
14176
14177 * lib/timevar.c (get_time): Include children time.
14178 * src/lalr.h (LA, LArule): Don't export them: used with the
14179 state_t.
14180 * src/lalr.c (LA, LArule): Static.
14181 * src/lalr.h, src/lalr.c (lalr_free): New.
14182 * src/main.c (main): Call it.
14183 * src/tables.c (pack_vector): Check whether loc is >= to the
14184 table_size, not >.
14185 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14186 (tables_generate): do it, since that's also it which allocates
14187 them.
14188 Don't free LA and LArule, main does.
14189
14190 2002-07-31 Akim Demaille <akim@epita.fr>
14191
14192 Separate parser tables computation and output.
14193
14194 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14195 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14196 (yydefgoto, yydefact, high): Move to...
14197 * src/tables.h, src/tables.c: here.
14198 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14199 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14200 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14201 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14202 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14203 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14204 (action_row, save_row, token_actions, save_column, default_goto)
14205 (goto_actions, sort_actions, matching_state, pack_vector)
14206 (table_ninf_remap, pack_table, prepare_actions): Move to...
14207 * src/tables.c: here.
14208 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14209 * src/output.c (token_actions, output_base, output_conflicts)
14210 (output_check): Merge into...
14211 (prepare_actions): this.
14212 (actions_output): Rename as...
14213 (user_actions_output): this.
14214 * src/main.c (main): Call tables_generate and tables_free.
14215
14216 2002-07-31 Akim Demaille <akim@epita.fr>
14217
14218 Steal GCC's --time-report support.
14219
14220 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14221 stolen/adjusted from GCC.
14222 * m4/stage.m4: Remove time related checks.
14223 * m4/timevar.m4: New.
14224 * configure.in: Adjust.
14225 * src/system.h: Adjust to using timevar.h.
14226 * src/getargs.h, src/getargs.c: Support trace_time for
14227 --trace=time.
14228 * src/main.c (stage): Remove.
14229 (main): Replace `stage' invocations with timevar calls.
14230 * src/output.c: Insert pertinent timevar calls.
14231
14232 2002-07-31 Akim Demaille <akim@epita.fr>
14233
14234 Let --trace have arguments.
14235
14236 * src/getargs.h (enum trace_e): New.
14237 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14238 (long_options, short_options): --trace/-T takes an optional
14239 argument.
14240 Change all the uses of trace_flag to reflect the new flags.
14241 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14242
14243 Strengthen `stage' portability.
14244
14245 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14246 * configure.in: Use it.
14247 Don't check for malloc.h and sys/times.h.
14248 * src/system.h: Include them when appropriate.
14249 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14250 times and struct tms are available.
14251
14252 2002-07-30 Akim Demaille <akim@epita.fr>
14253
14254 In verbose parse error message, don't report `error' as an
14255 expected token.
14256 * tests/actions.at (Printers and Destructors): Adjust.
14257 * tests/calc.at (Calculator $1): Adjust.
14258 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14259 error message, do not report the parser accepts the error token in
14260 that state.
14261
14262 2002-07-30 Akim Demaille <akim@epita.fr>
14263
14264 Normalize conflict related messages.
14265
14266 * src/complain.h, src/complain.c (warn, complain): New.
14267 * src/conflicts.c (conflicts_print): Use them.
14268 (conflict_report_yacc): New, extracted from...
14269 (conflicts_print): here.
14270 * tests/conflicts.at, tests/existing.at: Adjust.
14271
14272 2002-07-30 Akim Demaille <akim@epita.fr>
14273
14274 Report rules which are never reduced by the parser: those hidden
14275 by conflicts.
14276
14277 * src/LR0.c (save_reductions): Don't make the final state too
14278 different: save its reduction (accept) instead of having a state
14279 without any action (no shift or goto, no reduce).
14280 Note: the final state is now a ``regular'' state, i.e., the
14281 parsers now contain `reduce 0' as default reduction.
14282 Nevertheless, since they decide to `accept' when yystate =
14283 final_state, they still will not reduce rule 0.
14284 * src/print.c (print_actions, print_reduction): Adjust.
14285 * src/output.c (action_row): Track reduced rules.
14286 (token_actions): Report rules never reduced.
14287 * tests/conflicts.at, tests/regression.at: Adjust.
14288
14289 2002-07-30 Akim Demaille <akim@epita.fr>
14290
14291 `stage' was accidently included in a previous patch.
14292 Initiate its autoconfiscation.
14293
14294 * configure.in: Look for malloc.h and sys/times.h.
14295 * src/main.c (stage): Adjust.
14296 Report only when trace_flag.
14297
14298 2002-07-29 Akim Demaille <akim@epita.fr>
14299
14300 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14301 state_number_t.
14302 (errs_t): symbol_t*, not symbol_number_t.
14303 (reductions_t): rule_t*, not rule_number_t.
14304 (FOR_EACH_SHIFT): New.
14305 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14306 * src/print.c, src/print_graph.c: Adjust.
14307
14308 2002-07-29 Akim Demaille <akim@epita.fr>
14309
14310 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14311
14312 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14313 (endtoken, accept): these.
14314 * src/reader.c (reader): Set endtoken's default tag to "$end".
14315 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14316 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14317 Adjust.
14318
14319 2002-07-29 Akim Demaille <akim@epita.fr>
14320
14321 * src/reduce.c (reduce_grammar): When the language is empty,
14322 complain about the start symbol, not the axiom.
14323 Use its location.
14324 * tests/reduce.at (Empty Language): New.
14325
14326 2002-07-26 Akim Demaille <akim@epita.fr>
14327
14328 * src/reader.h, src/reader.c (gram_error): ... can't get
14329 yycontrol without making too strong assumptions on the parser
14330 itself.
14331 * src/output.c (prepare_tokens): Use the real 0th value of
14332 token_translations instead of `0'.
14333 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14334 visible here.
14335 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14336 for the time being: %locations ought to provide it to yyerror.
14337
14338 2002-07-25 Akim Demaille <akim@epita.fr>
14339
14340 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14341 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14342 * tests/regression.at (Web2c Actions): Adjust.
14343
14344 2002-07-25 Akim Demaille <akim@epita.fr>
14345
14346 Stop storing rules from 1 to nrules + 1.
14347
14348 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14349 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14350 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14351 Iterate from 0 to nrules.
14352 Use rule_number_as_item_number and item_number_as_rule_number.
14353 Adjust to `derive' now containing possibly 0.
14354 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14355 Handle the `- 1' part in rule numbers from/to item numbers.
14356 * src/conflicts.c (log_resolution): Fix the message which reversed
14357 shift and reduce.
14358 * src/output.c (action_row): Initialize default_rule to -1.
14359 (token_actions): Adjust.
14360 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14361 expected output.
14362 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14363
14364 2002-07-25 Akim Demaille <akim@epita.fr>
14365
14366 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14367 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14368 (b4_c_knr_arg_decl): New.
14369 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14370 yyreport_parse_error.
14371
14372 2002-07-25 Akim Demaille <akim@epita.fr>
14373
14374 * data/yacc.c (yyreport_parse_error): New, extracted from...
14375 (yyparse): here.
14376 (yydestruct, yysymprint): Move above yyparse.
14377 Be K&R compliant.
14378
14379 2002-07-25 Akim Demaille <akim@epita.fr>
14380
14381 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14382 replace...
14383 (b4_sint_type, b4_uint_type): these.
14384 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14385 * tests/regression.at (Web2c Actions): Adjust.
14386
14387 2002-07-25 Akim Demaille <akim@epita.fr>
14388
14389 * src/gram.h (TIEM_NUMBER_MAX): New.
14390 (item_number_of_rule_number, rule_number_of_item_number): Rename
14391 as...
14392 (rule_number_as_item_number, item_number_as_rule_number): these.
14393 Adjust dependencies.
14394 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14395 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14396 (symbol_number_to_vector_number): New.
14397 (order): Of vector_number_t* type.
14398 (base_t, BASE_MAX, BASE_MIN): New.
14399 (froms, tos, width, pos, check): Of base_t type.
14400 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14401 (actrow): Of action_number_t type.
14402 (conflrow): Of unsigned int type.
14403 (table_ninf, base_ninf): New.
14404 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14405 (muscle_insert_int_table, muscle_insert_base_table)
14406 (muscle_insert_rule_number_table): New.
14407 (prepare_tokens): Output `toknum' as int_table.
14408 (action_row): Returns a rule_number_t.
14409 Use ACTION_MIN, not SHRT_MIN.
14410 (token_actions): yydefact is rule_number_t*.
14411 (table_ninf_remap): New.
14412 (pack_table): Use it for `base' and `table'.
14413 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14414 replaced with...
14415 (YYPACT_NINF, YYTABLE_NINF): these.
14416 (yypact, yytable): Compute their types instead of hard-coded
14417 `short'.
14418 * tests/regression.at (Web2c Actions): Adjust.
14419
14420 2002-07-19 Akim Demaille <akim@epita.fr>
14421
14422 * src/scan-gram.l (id): Can start with an underscore.
14423
14424 2002-07-16 Akim Demaille <akim@epita.fr>
14425
14426 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14427 Adjust all former `associativity' dependencies.
14428 * src/symtab.c (symbol_new): Default associativity is `undef', not
14429 `right'.
14430 (symbol_check_alias_consistence): Adjust.
14431
14432 2002-07-09 Akim Demaille <akim@epita.fr>
14433
14434 * doc/bison.texinfo: Properly set the ``header'' part.
14435 Use @dircategory ``GNU programming tools'' as per Texinfo's
14436 documentation.
14437 Use @copying.
14438
14439 2002-07-09 Akim Demaille <akim@epita.fr>
14440
14441 * lib/quotearg.h: Protect against multiple inclusions.
14442 * src/location.h (location_t): Add a `file' member.
14443 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14444 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14445 `error_one_per_line' support.
14446
14447 2002-07-09 Akim Demaille <akim@epita.fr>
14448
14449 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14450 * src/reader.c (lineno): Remove.
14451 Adjust all dependencies.
14452 (get_merge_function): Take a location and use complain_at.
14453 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14454 * tests/regression.at (Invalid inputs, Mixing %token styles):
14455 Adjust.
14456
14457 2002-07-09 Akim Demaille <akim@epita.fr>
14458
14459 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14460 recovery rule, and forbid extensions when --yacc.
14461 (gram_error): Use complain_at.
14462 * src/reader.c (reader): Exit if there were parse errors.
14463
14464 2002-07-09 Akim Demaille <akim@epita.fr>
14465
14466 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14467 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14468 Reported by R Blake <blakers@mac.com>.
14469
14470 2002-07-09 Akim Demaille <akim@epita.fr>
14471
14472 * data/yacc.c: Output the copyright notive in the header.
14473
14474 2002-07-03 Akim Demaille <akim@epita.fr>
14475
14476 * src/output.c (froms, tos): Are state_number_t.
14477 (save_column): sp, sp1, and sp2 are state_number_t.
14478 (prepare): Rename `final' as `final_state_number', `nnts' as
14479 `nterms_number', `nrules' as `rules_number', `nstates' as
14480 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14481 unused.
14482 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14483 * data/lalr1.cc (nsym_): Remove, unused.
14484
14485 2002-07-03 Akim Demaille <akim@epita.fr>
14486
14487 * src/lalr.h, src/lalr.c (goto_number_t): New.
14488 * src/lalr.c (goto_list_t): New.
14489 Propagate them.
14490 * src/nullable.c (rule_list_t): New.
14491 Propagate.
14492 * src/types.h: Remove.
14493
14494 2002-07-03 Akim Demaille <akim@epita.fr>
14495
14496 * src/closure.c (print_fderives): Use rule_rhs_print.
14497 * src/derives.c (print_derives): Use rule_rhs_print.
14498 (rule_list_t): New, replaces `shorts'.
14499 (set_derives): Add comments.
14500 * tests/sets.at (Nullable, Firsts): Adjust.
14501
14502 2002-07-03 Akim Demaille <akim@epita.fr>
14503
14504 * src/output.c (prepare_actions): Free `tally' and `width'.
14505 (prepare_actions): Allocate and free `order'.
14506 * src/symtab.c (symbols_free): Free `symbols'.
14507 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14508 * src/output.c (m4_invoke): Move to...
14509 * src/scan-skel.l: here.
14510 (<<EOF>>): Close yyout, and free its name.
14511
14512 2002-07-03 Akim Demaille <akim@epita.fr>
14513
14514 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14515
14516 * src/LR0.c (new_state): Merge into...
14517 (state_list_append): this.
14518 (new_states): Merge into...
14519 (generate_states): here.
14520 (set_states): Don't ensure a proper `errs' state member here, do it...
14521 * src/conflicts.c (conflicts_solve): here.
14522 * src/state.h, src/state.c: Comment changes.
14523 (state_t): Rename member `shifts' as `transitions'.
14524 Adjust all dependencies.
14525 (errs_new): For consistency, also take the values as argument.
14526 (errs_dup): Remove.
14527 (state_errs_set): New.
14528 (state_reductions_set, state_transitions_set): Assert that no
14529 previous value was assigned.
14530 (state_free): New.
14531 (states_free): Use it.
14532 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14533 temporary storage: use `errs' and `nerrs' as elsewhere.
14534 (set_conflicts): Allocate and free this `errs'.
14535
14536 2002-07-02 Akim Demaille <akim@epita.fr>
14537
14538 * lib/libiberty.h: New.
14539 * lib: Update the bitset implementation from upstream.
14540 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14541 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14542 * src/main.c: Adjust bitset stats calls.
14543
14544 2002-07-01 Paul Eggert <eggert@twinsun.com>
14545
14546 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14547 char, so that negative chars don't collide with $.
14548
14549 2002-06-30 Akim Demaille <akim@epita.fr>
14550
14551 Have the GLR tests be `warning' checked, and fix the warnings.
14552
14553 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14554 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14555 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14556 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14557 (yyaddDeferredAction): static.
14558 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14559 (yyreportParseError): yyprefix is const.
14560 yytokenp is used only when verbose.
14561 (yy__GNUC__): Replace with __GNUC__.
14562 (yypdumpstack): yyi is size_t.
14563 (yypreference): Un-yy local variables and arguments, to avoid
14564 clashes with `yyr1'. Anyway, we are not in the user name space.
14565 (yytname_size): be an int, as is compared with ints.
14566 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14567 Use them.
14568 * tests/cxx-gram.at: Use quotation to protect $1.
14569 Use AT_COMPILE to enable warnings hunts.
14570 Prototype yylex and yyerror.
14571 `Use' argc.
14572 Include `string.h', not `strings.h'.
14573 Produce and prototype stmtMerge only when used.
14574 yylex takes a location.
14575
14576 2002-06-30 Akim Demaille <akim@epita.fr>
14577
14578 We spend a lot of time in quotearg, in particular when --verbose.
14579
14580 * src/symtab.c (symbol_get): Store a quoted version of the key.
14581 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14582 Adjust all callers.
14583
14584 2002-06-30 Akim Demaille <akim@epita.fr>
14585
14586 * src/state.h (reductions_t): Rename member `nreds' as num.
14587 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14588 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14589
14590 2002-06-30 Akim Demaille <akim@epita.fr>
14591
14592 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14593 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14594 (shifts_to): Rename as...
14595 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14596 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14597 (TRANSITION_IS_DISABLED, transitions_to): these.
14598
14599 2002-06-30 Akim Demaille <akim@epita.fr>
14600
14601 * src/print.c (print_shifts, print_gotos): Merge into...
14602 (print_transitions): this.
14603 (print_transitions, print_errs, print_reductions): Align the
14604 lookaheads columns.
14605 (print_core, print_transitions, print_errs, print_state,
14606 print_grammar): Output empty lines separator before, not after.
14607 (state_default_rule_compute): Rename as...
14608 (state_default_rule): this.
14609 * tests/conflicts.at (Defaulted Conflicted Reduction),
14610 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14611 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14612
14613 2002-06-30 Akim Demaille <akim@epita.fr>
14614
14615 Display items as we display rules.
14616
14617 * src/gram.h, src/gram.c (rule_lhs_print): New.
14618 * src/gram.c (grammar_rules_partial_print): Use it.
14619 * src/print.c (print_core): Likewise.
14620 * tests/conflicts.at (Defaulted Conflicted Reduction),
14621 (Unresolved SR Conflicts): Adjust.
14622 (Unresolved SR Conflicts): Adjust and rename as...
14623 (Resolved SR Conflicts): this, as was meant.
14624 * tests/regression.at (Web2c Report): Adjust.
14625
14626 2002-06-30 Akim Demaille <akim@epita.fr>
14627
14628 * src/print.c (state_default_rule_compute): New, extracted from...
14629 (print_reductions): here.
14630 Pessimize, but clarify the code.
14631 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14632
14633 2002-06-30 Akim Demaille <akim@epita.fr>
14634
14635 * src/output.c (action_row): Let default_rule be always a rule
14636 number.
14637
14638 2002-06-30 Akim Demaille <akim@epita.fr>
14639
14640 * src/closure.c (print_firsts, print_fderives, closure):
14641 Use BITSET_EXECUTE.
14642 * src/lalr.c (lookaheads_print): Likewise.
14643 * src/state.c (state_rule_lookaheads_print): Likewise.
14644 * src/print_graph.c (print_core): Likewise.
14645 * src/print.c (print_reductions): Likewise.
14646 * src/output.c (action_row): Likewise.
14647 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14648
14649 2002-06-30 Akim Demaille <akim@epita.fr>
14650
14651 * src/print_graph.c: Use report_flag.
14652
14653 2002-06-30 Akim Demaille <akim@epita.fr>
14654
14655 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14656 to...
14657 * src/relation.h, src/relation.c (traverse, relation_digraph)
14658 (relation_print, relation_transpose): New.
14659
14660 2002-06-30 Akim Demaille <akim@epita.fr>
14661
14662 * src/state.h, src/state.c (shifts_to): New.
14663 * src/lalr.c (build_relations): Use it.
14664
14665 2002-06-30 Akim Demaille <akim@epita.fr>
14666
14667 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14668 (item_number_of_rule_number, rule_number_of_item_number): New.
14669 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14670 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14671 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14672 Propagate their use.
14673 Much remains to be done, in particular wrt `shorts' from types.h.
14674
14675 2002-06-30 Akim Demaille <akim@epita.fr>
14676
14677 * src/symtab.c (symbol_new): Initialize the `printer' member.
14678
14679 2002-06-30 Akim Demaille <akim@epita.fr>
14680
14681 * src/LR0.c (save_reductions): Remove, replaced by...
14682 * src/state.h, src/state.c (state_reductions_set): New.
14683 (reductions, errs): Rename as...
14684 (reductions_t, errs_t): these.
14685 Adjust all dependencies.
14686
14687 2002-06-30 Akim Demaille <akim@epita.fr>
14688
14689 * src/LR0.c (state_list_t, state_list_append): New.
14690 (first_state, last_state): Now symbol_list_t.
14691 (this_state): Remove.
14692 (new_itemsets, append_states, save_reductions): Take a state_t as
14693 argument.
14694 (set_states, generate_states): Adjust.
14695 (save_shifts): Remove, replaced by...
14696 * src/state.h, src/state.c (state_shifts_set): New.
14697 (shifts): Rename as...
14698 (shifts_t): this.
14699 Adjust all dependencies.
14700 * src/state.h (state_t): Remove the `next' member.
14701
14702 2002-06-30 Akim Demaille <akim@epita.fr>
14703
14704 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14705 escaped in slot 0.
14706
14707 2002-06-30 Akim Demaille <akim@epita.fr>
14708
14709 Use hash.h for the state hash table.
14710
14711 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14712 (allocate_storage): Use state_hash_new.
14713 (free_storage): Use state_hash_free.
14714 (new_state, get_state): Adjust.
14715 * src/lalr.h, src/lalr.c (states): Move to...
14716 * src/states.h (state_t): Remove the `link' member, no longer
14717 used.
14718 * src/states.h, src/states.c: here.
14719 (state_hash_new, state_hash_free, state_hash_lookup)
14720 (state_hash_insert, states_free): New.
14721 * src/states.c (state_table, state_compare, state_hash): New.
14722 * src/output.c (output_actions): Do not free states now, since we
14723 still need to know the final_state number in `prepare', called
14724 afterwards. Do it...
14725 * src/main.c (main): here: call states_free after `output'.
14726
14727 2002-06-30 Akim Demaille <akim@epita.fr>
14728
14729 * src/state.h, src/state.c (state_new): New, extracted from...
14730 * src/LR0.c (new_state): here.
14731 * src/state.h (STATE_ALLOC): Move to...
14732 * src/state.c: here.
14733 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14734 * src/state.h, src/state.c: here.
14735
14736 2002-06-30 Akim Demaille <akim@epita.fr>
14737
14738 * src/reader.c (gensym): Rename as...
14739 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14740 (getsym): Rename as...
14741 (symbol_get): this.
14742
14743 2002-06-30 Akim Demaille <akim@epita.fr>
14744
14745 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14746 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14747 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14748 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14749
14750 2002-06-30 Akim Demaille <akim@epita.fr>
14751
14752 Make the test suite pass with warnings checked.
14753
14754 * tests/actions.at (Printers and Destructors): Improve.
14755 Avoid unsigned vs. signed issues.
14756 * tests/calc.at: Don't exercise the scanner here, do it...
14757 * tests/input.at (Torturing the Scanner): here.
14758
14759 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14760
14761 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14762 reorganize first lines parallel to yacc.c.
14763
14764 2002-06-28 Akim Demaille <akim@epita.fr>
14765
14766 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14767 (b4_token_enum, b4_token_defines): New, factored from...
14768 * data/lalr1.cc, data/yacc.c, glr.c: here.
14769
14770 2002-06-28 Akim Demaille <akim@epita.fr>
14771
14772 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14773 unused variables.
14774 * src/output.c (merger_output): static.
14775
14776 2002-06-28 Akim Demaille <akim@epita.fr>
14777
14778 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14779 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14780 pacify GCC.
14781 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14782
14783 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14784
14785 Accumulated changelog for new GLR parsing features.
14786
14787 * src/conflicts.c (count_total_conflicts): Change name to
14788 conflicts_total_count.
14789 * src/conflicts.h: Ditto.
14790 * src/output.c (token_actions): Use the new name.
14791 (output_conflicts): Change conflp => conflict_list_heads, and
14792 confl => conflict_list for better readability.
14793 * data/glr.c: Use the new names.
14794 * NEWS: Add self to GLR announcement.
14795
14796 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14797
14798 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14799 Akim Demaille.
14800
14801 * data/bison.glr: Change name to glr.c
14802 * data/glr.c: Renamed from bison.glr.
14803 * data/Makefile.am: Add glr.c
14804
14805 * src/getargs.c:
14806
14807 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14808 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14809
14810 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14811
14812 * data/bison.glr: Be sure to restore the
14813 current #line when returning to the skeleton contents after having
14814 exposed the input file's #line.
14815
14816 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14817
14818 * data/bison.glr: Bring up to date with changes to bison.simple.
14819
14820 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14821
14822 * data/bison.glr: Correct definitions that use b4_prefix.
14823 Various reformatting.
14824 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14825 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14826 yytokenp argument; now part of stack.
14827 (yychar): Define to behave as documented.
14828 (yyclearin): Ditto.
14829
14830 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14831
14832 * src/reader.h: Add declaration for free_merger_functions.
14833
14834 * src/reader.c (merge_functions): New variable.
14835 (get_merge_function): New function.
14836 (free_merger_functions): New function.
14837 (readgram): Check for %prec that is not followed by a symbol.
14838 Handle %dprec and %merge declarations.
14839 (packgram): Initialize dprec and merger fields in rules array.
14840
14841 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14842 conflict_list_cnt, conflict_list_free): New variables.
14843 (table_grow): Also grow conflict_table.
14844 (prepare_rules): Output dprec and merger tables.
14845 (conflict_row): New function.
14846 (action_row): Output conflict lists for GLR parser. Don't use
14847 default reduction in conflicted states for GLR parser so that there
14848 are spaces for the conflict lists.
14849 (save_row): Also save conflict information.
14850 (token_actions): Allocate conflict list.
14851 (merger_output): New function.
14852 (pack_vector): Pack conflict table, too.
14853 (output_conflicts): New function to output yyconflp and yyconfl.
14854 (output_check): Allocate conflict_tos.
14855 (output_actions): Output conflict tables, also.
14856 (output_skeleton): Output b4_mergers definition.
14857 (prepare): Output b4_max_rhs_length definition.
14858 Use 'bison.glr' as default skeleton for GLR parsers.
14859
14860 * src/gram.c (glr_parser): New flag.
14861 (grammar_free): Call free_merger_functions.
14862
14863 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14864 all pairs of conflicting reductions, rather than just all tokens
14865 causing conflicts. Needed to size conflict tables.
14866 (conflicts_output): Modify call to count_rr_conflicts for new
14867 interface.
14868 (conflicts_print): Ditto.
14869 (count_total_conflicts): New function.
14870
14871 * src/reader.h (merger_list): New type.
14872 (merge_functions): New variable.
14873
14874 * src/lex.h (tok_dprec, tok_merge): New token types.
14875
14876 * src/gram.h (rule_s): Add dprec and merger fields.
14877 (glr_parser): New flag.
14878
14879 * src/conflicts.h (count_total_conflicts): New function.
14880
14881 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14882
14883 * doc/bison.texinfo (Generalized LR Parsing): New section.
14884 (GLR Parsers): New section.
14885 (Language and Grammar): Mention GLR parsing.
14886 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14887 Correct typo ("tge" -> "the").
14888
14889 * data/bison.glr: New skeleton for GLR parsing.
14890
14891 * tests/cxx-gram.at: New tests for GLR parsing.
14892
14893 * tests/testsuite.at: Include cxx-gram.at.
14894
14895 * tests/Makefile.am: Add cxx-gram.at.
14896
14897 * src/parse-gram.y:
14898
14899 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14900
14901 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14902
14903 2002-06-27 Akim Demaille <akim@epita.fr>
14904
14905 * src/options.h, src/options.c: Remove.
14906 * src/getargs.c (short_options, long_options): New.
14907
14908 2002-06-27 Akim Demaille <akim@epita.fr>
14909
14910 * data/bison.simple, data/bison.c++: Rename as...
14911 * data/yacc.c, data/lalr1.cc: these.
14912 * doc/bison.texinfo (Environment Variables): Remove.
14913
14914 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14915
14916 * src/getargs.c (report_argmatch): Initialize strtok().
14917
14918 2002-06-20 Akim Demaille <akim@epita.fr>
14919
14920 * data/bison.simple (b4_symbol_actions): New, replaces...
14921 (b4_symbol_destructor, b4_symbol_printer): these.
14922 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14923 user token numbers.
14924
14925 2002-06-20 Akim Demaille <akim@epita.fr>
14926
14927 * data/bison.simple (yydestructor): Rename as...
14928 (yydestruct): this.
14929
14930 2002-06-20 Akim Demaille <akim@epita.fr>
14931
14932 * src/symtab.h, src/symtab.c (symbol_type_set)
14933 (symbol_destructor_set, symbol_precedence_set): The location is
14934 the last argument.
14935 Adjust all callers.
14936
14937 2002-06-20 Akim Demaille <akim@epita.fr>
14938
14939 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14940 internals.
14941 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14942 Takes a location.
14943 * src/symtab.h, src/symtab.c (symbol_class_set)
14944 (symbol_user_token_number_set): Likewise.
14945 Adjust all callers.
14946 Promote complain_at.
14947 * tests/input.at (Type Clashes): Adjust.
14948
14949 2002-06-20 Akim Demaille <akim@epita.fr>
14950
14951 * data/bison.simple (YYLEX): Fix the declaration when
14952 %pure-parser.
14953
14954 2002-06-20 Akim Demaille <akim@epita.fr>
14955
14956 * data/bison.simple (yysymprint): Don't print the token number,
14957 just its name.
14958 * tests/actions.at (Destructors): Rename as...
14959 (Printers and Destructors): this.
14960 Also exercise %printer.
14961
14962 2002-06-20 Akim Demaille <akim@epita.fr>
14963
14964 * data/bison.simple (YYDSYMPRINT): New.
14965 Use it to remove many of the #if YYDEBUG/if (yydebug).
14966
14967 2002-06-20 Akim Demaille <akim@epita.fr>
14968
14969 * src/symtab.h, src/symtab.c (symbol_t): printer and
14970 printer_location are new members.
14971 (symbol_printer_set): New.
14972 * src/parse-gram.y (PERCENT_PRINTER): New token.
14973 Handle its associated rule.
14974 * src/scan-gram.l: Adjust.
14975 (handle_destructor_at, handle_destructor_dollar): Rename as...
14976 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14977 * src/output.c (symbol_printers_output): New.
14978 (output_skeleton): Call it.
14979 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14980 since there are already many grammar files with a user `yyprint'.
14981 Replace the calls to YYPRINT to calls to yysymprint.
14982 * tests/calc.at: Adjust.
14983 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14984 taking advantage of parser very internal details (stack size!).
14985
14986 2002-06-20 Akim Demaille <akim@epita.fr>
14987
14988 * src/scan-gram.l: Complete the scanner with the missing patterns
14989 to pacify Flex.
14990 Use `quote' and `symbol_tag_get' where appropriate.
14991
14992 2002-06-19 Akim Demaille <akim@epita.fr>
14993
14994 * tests/actions.at (Destructors): Augment to test locations.
14995 * data/bison.simple (yydestructor): Pass it the current location
14996 if locations are enabled.
14997 Prototype only when __STDC__ or C++.
14998 Change the argument names to move into the yy name space: there is
14999 user code here.
15000
15001 2002-06-19 Akim Demaille <akim@epita.fr>
15002
15003 * data/bison.simple (b4_pure_if): New.
15004 Use it instead of #ifdef YYPURE.
15005
15006 2002-06-19 Akim Demaille <akim@epita.fr>
15007
15008 * data/bison.simple (b4_location_if): New.
15009 Use it instead of #ifdef YYLSP_NEEDED.
15010
15011 2002-06-19 Akim Demaille <akim@epita.fr>
15012
15013 Prepare @$ in %destructor, but currently don't bind it in the
15014 skeleton, as %location use is not cleaned up yet.
15015
15016 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15017 (handle_action_at): New.
15018 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15019 a braced_code_t and a location as additional arguments.
15020 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15021 unquote one when outputting `b4_dollar_dollar'.
15022 Adjust callers.
15023 * data/bison.simple (b4_eval): Remove.
15024 (b4_symbol_destructor): Adjust.
15025 * tests/input.at (Invalid @n): Adjust.
15026
15027 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15028
15029 * doc/bison.texinfo: Document ability to have multiple
15030 prologue sections.
15031
15032 2002-06-18 Akim Demaille <akim@epita.fr>
15033
15034 * src/files.c (compute_base_names): When computing the output file
15035 names from the input file name, strip the directory part.
15036
15037 2002-06-18 Akim Demaille <akim@epita.fr>
15038
15039 * data/bison.simple.new: Comment changes.
15040 Reported by Andreas Schwab.
15041
15042 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15043
15044 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15045 there are no `label `yyoverflowlab' defined but not used' warnings
15046 when yyoverflow is defined.
15047
15048 2002-06-18 Akim Demaille <akim@epita.fr>
15049
15050 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15051 new member.
15052 (symbol_destructor_set): Adjust.
15053 * src/output.c (symbol_destructors_output): Output the destructor
15054 locations.
15055 Output the symbol name.
15056 * data/bison.simple (b4_symbol_destructor): Adjust.
15057
15058 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15059 and Akim Demaille <akim@epita.fr>
15060
15061 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15062 what's left on the stack when the error recovery hits EOF.
15063 * tests/actions.at (Destructors): Complete to exercise this case.
15064
15065 2002-06-17 Akim Demaille <akim@epita.fr>
15066
15067 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15068 arguments is really empty, not only equal to `[]'.
15069 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15070 member.
15071 (symbol_destructor_set): New.
15072 * src/output.c (symbol_destructors_output): New.
15073 * src/reader.h (brace_code_t, current_braced_code): New.
15074 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15075 (handle_dollar): Rename as...
15076 (handle_action_dollar): this.
15077 (handle_destructor_dollar): New.
15078 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15079 (grammar_declaration): Use it.
15080 * data/bison.simple (yystos): Is always defined.
15081 (yydestructor): New.
15082 * tests/actions.at (Destructors): New.
15083 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15084
15085 2002-06-17 Akim Demaille <akim@epita.fr>
15086
15087 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15088 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15089 rule_length only when needed.
15090 * src/output.c (actions_output, token_definitions_output): Output
15091 the full M4 block.
15092 * src/symtab.c: Don't access directly to the symbol tag, use
15093 symbol_tag_get.
15094 * src/parse-gram.y: Use symbol_list_free.
15095
15096 2002-06-17 Akim Demaille <akim@epita.fr>
15097
15098 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15099 (symbol_list_prepend, get_type_name): Move to...
15100 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15101 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15102 Adjust all callers.
15103 (symbol_list_free): New.
15104 * src/scan-gram.l (handle_dollar): Takes a location.
15105 * tests/input.at (Invalid $n): Adjust.
15106
15107 2002-06-17 Akim Demaille <akim@epita.fr>
15108
15109 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15110 (symbol_list_prepend): New.
15111 * src/parse-gram.y (%union): `list' is a new member.
15112 (symbols.1): New, replaces...
15113 (terms_to_prec.1, nterms_to_type.1): these.
15114 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15115 Take a location as additional argument.
15116 Adjust all callers.
15117
15118 2002-06-15 Akim Demaille <akim@epita.fr>
15119
15120 * src/parse-gram.y: Move %token in the declaration section so that
15121 we don't depend upon CVS Bison.
15122
15123 2002-06-15 Akim Demaille <akim@epita.fr>
15124
15125 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15126 * src/print.c (print_core): Use it.
15127
15128 2002-06-15 Akim Demaille <akim@epita.fr>
15129
15130 * src/conflicts.c (log_resolution): Accept the rule involved in
15131 the sr conflicts instead of the lookahead number that points to
15132 that rule.
15133 (flush_reduce): Accept the current lookahead vector as argument,
15134 instead of the index in LA.
15135 (resolve_sr_conflict): Accept the current number of lookahead
15136 bitset to consider for the STATE, instead of the index in LA.
15137 (set_conflicts): Adjust.
15138 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15139
15140 2002-06-15 Akim Demaille <akim@epita.fr>
15141
15142 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15143 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15144 Adjust all dependencies.
15145 * src/lalr.c (initialize_lookaheads): Split into...
15146 (states_lookaheads_count, states_lookaheads_initialize): these.
15147 (lalr): Adjust.
15148
15149 2002-06-15 Akim Demaille <akim@epita.fr>
15150
15151 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15152 out of...
15153 (grammar_rules_print): here.
15154 * src/reduce.c (reduce_output): Use it.
15155 * tests/reduce.at (Useless Rules, Reduced Automaton)
15156 (Underivable Rules): Adjust.
15157
15158 2002-06-15 Akim Demaille <akim@epita.fr>
15159
15160 Copy BYacc's nice way to report the grammar.
15161
15162 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15163 New.
15164 Don't print the rules' location, it is confusing and useless.
15165 (rule_print): Use grammar_rhs_print.
15166 * src/print.c (print_grammar): Use grammar_rules_print.
15167
15168 2002-06-15 Akim Demaille <akim@epita.fr>
15169
15170 Complete and rationalize `useless thing' warnings.
15171
15172 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15173 (symbol_tag_print): New.
15174 Use them everywhere in place of accessing directly the tag member.
15175 * src/gram.h, src/gram.c (rule_print): New.
15176 Use it where a rule used to be printed `by hand'.
15177 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15178 (reduce_grammar_tables): Report the useless rules.
15179 (reduce_print): Useless things are a warning, not an error.
15180 Report it as such.
15181 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15182 (Reduced Automaton, Underivable Rules): Adjust.
15183 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15184 * tests/conflicts.at (Unresolved SR Conflicts)
15185 (Solved SR Conflicts): Adjust.
15186
15187 2002-06-15 Akim Demaille <akim@epita.fr>
15188
15189 Let symbols have a location.
15190
15191 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15192 (getsym): Adjust.
15193 Adjust all callers.
15194 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15195 Use location_t, not int.
15196 * src/symtab.c (symbol_check_defined): Take advantage of the
15197 location.
15198 * tests/regression.at (Invalid inputs): Adjust.
15199
15200 2002-06-15 Akim Demaille <akim@epita.fr>
15201
15202 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15203 (input): Don't try to initialize yylloc here, do it in the
15204 scanner.
15205 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15206 * src/gram.h (rule_t): Change line and action_line into location
15207 and action_location, of location_t type.
15208 Adjust all dependencies.
15209 * src/location.h, src/location.c (empty_location): New.
15210 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15211 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15212 (grammar_current_rule_symbol_append)
15213 (grammar_current_rule_action_append): Expect a location as argument.
15214 * src/reader.c (grammar_midrule_action): Adjust to attach an
15215 action's location as dummy symbol location.
15216 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15217 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15218 the line numbers.
15219
15220 2002-06-14 Akim Demaille <akim@epita.fr>
15221
15222 Grammar declarations may be found in the grammar section.
15223
15224 * src/parse-gram.y (rules_or_grammar_declaration): New.
15225 (declarations): Each declaration may end with a semicolon, not
15226 just...
15227 (grammar_declaration): `"%union"'.
15228 (grammar): Branch to rules_or_grammar_declaration.
15229
15230 2002-06-14 Akim Demaille <akim@epita.fr>
15231
15232 * src/main.c (main): Invoke scanner_free.
15233
15234 2002-06-14 Akim Demaille <akim@epita.fr>
15235
15236 * src/output.c (m4_invoke): Extracted from...
15237 (output_skeleton): here.
15238 Free tempfile.
15239
15240 2002-06-14 Akim Demaille <akim@epita.fr>
15241
15242 * src/parse-gram.y (directives, directive, gram)
15243 (grammar_directives, precedence_directives, precedence_directive):
15244 Rename as...
15245 (declarations, declaration, grammar, grammar_declaration)
15246 (precedence_declaration, precedence_declarator): these.
15247 (symbol_declaration): New.
15248
15249 2002-06-14 Akim Demaille <akim@epita.fr>
15250
15251 * src/files.c (action_obstack): Remove, unused.
15252 (output_obstack): Remove it, and all its dependencies, as it is no
15253 longer needed.
15254 * src/reader.c (epilogue_set): Build the epilogue in the
15255 muscle_obstack.
15256 * src/output.h, src/output.c (muscle_obstack): Move to...
15257 * src/muscle_tab.h, src/muscle_tab.h: here.
15258 (muscle_init): Initialize muscle_obstack.
15259 (muscle_free): New.
15260 * src/main.c (main): Call it.
15261
15262 2002-06-14 Akim Demaille <akim@epita.fr>
15263
15264 * src/location.h: New, extracted from...
15265 * src/reader.h: here.
15266 * src/Makefile.am (noinst_HEADERS): Merge into
15267 (bison_SOURCES): this.
15268 Add location.h.
15269 * src/parse-gram.y: Use location_t instead of Bison's.
15270 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15271 Use location_t instead of ints.
15272
15273 2002-06-14 Akim Demaille <akim@epita.fr>
15274
15275 * data/bison.simple, data/bison.c++: Be sure to restore the
15276 current #line when returning to the skeleton contents after having
15277 exposed the input file's #line.
15278
15279 2002-06-12 Akim Demaille <akim@epita.fr>
15280
15281 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15282 eager.
15283 * tests/actions.at (Exotic Dollars): New.
15284
15285 2002-06-12 Akim Demaille <akim@epita.fr>
15286
15287 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15288 ['"/] too eagerly.
15289 * tests/input.at (Torturing the Scanner): New.
15290
15291 2002-06-11 Akim Demaille <akim@epita.fr>
15292
15293 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15294 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15295 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15296 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15297 * src/reader.c (reader): Use it.
15298
15299 2002-06-11 Akim Demaille <akim@epita.fr>
15300
15301 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15302 Adjust all callers.
15303 (scanner_last_string_free): New.
15304
15305 2002-06-11 Akim Demaille <akim@epita.fr>
15306
15307 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15308 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15309 (last_string, YY_OBS_FREE): New.
15310 Use them when returning an ID.
15311
15312 2002-06-11 Akim Demaille <akim@epita.fr>
15313
15314 Have Bison grammars parsed by a Bison grammar.
15315
15316 * src/reader.c, src/reader.h (prologue_augment): New.
15317 * src/reader.c (copy_definition): Remove.
15318
15319 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15320 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15321 (grammar_current_rule_prec_set, grammar_current_rule_check)
15322 (grammar_current_rule_symbol_append)
15323 (grammar_current_rule_action_append): Export.
15324 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15325 (symbol_list_action_append): Remove.
15326 Hook the routines from reader.
15327 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15328 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15329
15330 * src/reader.c (read_declarations): Remove, unused.
15331
15332 * src/parse-gram.y: Handle the epilogue.
15333 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15334 (grammar_start_symbol_set): this.
15335 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15336 * src/reader.c (readgram): Remove, unused.
15337 (reader): Adjust to insert eoftoken and axiom where appropriate.
15338
15339 * src/reader.c (copy_dollar): Replace with...
15340 * src/scan-gram.h (handle_dollar): this.
15341 * src/parse-gram.y: Remove `%thong'.
15342
15343 * src/reader.c (copy_at): Replace with...
15344 * src/scan-gram.h (handle_at): this.
15345
15346 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15347 New.
15348
15349 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15350 time being.
15351
15352 * src/reader.h, src/reader.c (grammar_rule_end): New.
15353
15354 * src/parse.y (current_type, current_class): New.
15355 Implement `%nterm', `%token' support.
15356 Merge `%term' into `%token'.
15357 (string_as_id): New.
15358 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15359 type name.
15360
15361 * src/parse-gram.y: Be sure to handle properly the beginning of
15362 rules.
15363
15364 * src/parse-gram.y: Handle %type.
15365 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15366
15367 * src/parse-gram.y: More directives support.
15368 * src/options.c: No longer handle source directives.
15369
15370 * src/parse-gram.y: Fix %output.
15371
15372 * src/parse-gram.y: Handle %union.
15373 Use the prologue locations.
15374 * src/reader.c (parse_union_decl): Remove.
15375
15376 * src/reader.h, src/reader.c (epilogue_set): New.
15377 * src/parse-gram.y: Use it.
15378
15379 * data/bison.simple, data/bison.c++: b4_stype is now either not
15380 defined, then default to int, or to the contents of %union,
15381 without `union' itself.
15382 Adjust.
15383 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15384
15385 * src/output.c (actions_output): Don't output braces, as they are
15386 already handled by the scanner.
15387
15388 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15389 characters to themselves.
15390
15391 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15392 that the epilogue has a proper #line.
15393
15394 * src/parse-gram.y: Handle precedence/associativity.
15395
15396 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15397 a terminal.
15398 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15399 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15400 at all to define terminals that cannot be emitted.
15401
15402 * src/scan-gram.l: Escape M4 characters.
15403
15404 * src/scan-gram.l: Working properly with escapes in user
15405 strings/characters.
15406
15407 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15408 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15409 grammar.
15410 Use more modest sizes, as for the time being the parser does not
15411 release memory, and therefore the process swallows a huge amount
15412 of memory.
15413
15414 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15415 stricter %token grammar.
15416
15417 * src/symtab.h (associativity): Add `undef_assoc'.
15418 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15419 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15420
15421 * tests/regression.at (Invalid %directive): Remove, as it is now
15422 meaningless.
15423 (Invalid inputs): Adjust to the new error messages.
15424 (Token definitions): The new grammar doesn't allow too many
15425 eccentricities.
15426
15427 * src/lex.h, src/lex.c: Remove.
15428 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15429 (copy_character, copy_string2, copy_string, copy_identifier)
15430 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15431 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15432 (parse_action): Remove.
15433 * po/POTFILES.in: Adjust.
15434
15435 2002-06-11 Akim Demaille <akim@epita.fr>
15436
15437 * src/reader.c (parse_action): Don't store directly into the
15438 rule's action member: return the action as a string.
15439 Don't require `rule_length' as an argument: compute it.
15440 (grammar_current_rule_symbol_append)
15441 (grammar_current_rule_action_append): New, eved out from
15442 (readgram): here.
15443 Remove `action_flag', `rulelength', unused now.
15444
15445 2002-06-11 Akim Demaille <akim@epita.fr>
15446
15447 * src/reader.c (grammar_current_rule_prec_set).
15448 (grammar_current_rule_check): New, eved out from...
15449 (readgram): here.
15450 Remove `xaction', `first_rhs': useless.
15451 * tests/input.at (Type clashes): New.
15452 * tests/existing.at (GNU Cim Grammar): Adjust.
15453
15454 2002-06-11 Akim Demaille <akim@epita.fr>
15455
15456 * src/reader.c (grammar_midrule_action): New, Eved out from
15457 (readgram): here.
15458
15459 2002-06-11 Akim Demaille <akim@epita.fr>
15460
15461 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15462 New.
15463 (readgram): Use them as replacement of inlined code, crule and
15464 crule1.
15465
15466 2002-06-11 Akim Demaille <akim@epita.fr>
15467
15468 * src/reader.c (grammar_end, grammar_symbol_append): New.
15469 (readgram): Use them.
15470 Make the use of `p' as local as possible.
15471
15472 2002-06-10 Akim Demaille <akim@epita.fr>
15473
15474 GCJ's parser requires the tokens to be defined before the prologue.
15475
15476 * data/bison.simple: Output the token definition before the user's
15477 prologue.
15478 * tests/regression.at (Braces parsing, Duplicate string)
15479 (Mixing %token styles): Check the output from bison.
15480 (Early token definitions): New.
15481
15482 2002-06-10 Akim Demaille <akim@epita.fr>
15483
15484 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15485 assigning twice the same user number to a token, so that we can
15486 use it in...
15487 * src/lex.c (lex): here.
15488 Also use `symbol_class_set' instead of hand written code.
15489 * src/reader.c (parse_assoc_decl): Likewise.
15490
15491 2002-06-10 Akim Demaille <akim@epita.fr>
15492
15493 * src/symtab.c, src/symtab.c (symbol_class_set)
15494 (symbol_user_token_number_set): New.
15495 * src/reader.c (parse_token_decl): Use them.
15496 Use a switch instead of ifs.
15497 Use a single argument.
15498
15499 2002-06-10 Akim Demaille <akim@epita.fr>
15500
15501 Remove `%thong' support as it is undocumented, unused, duplicates
15502 `%token's job, and creates useless e-mail traffic with people who
15503 want to know what it is, why it is undocumented, unused, and
15504 duplicates `%token's job.
15505
15506 * src/reader.c (parse_thong_decl): Remove.
15507 * src/options.c (option_table): Remove "thong".
15508 * src/lex.h (tok_thong): Remove.
15509
15510 2002-06-10 Akim Demaille <akim@epita.fr>
15511
15512 * src/symtab.c, src/symtab.c (symbol_type_set)
15513 (symbol_precedence_set): New.
15514 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15515 (value_components_used): Remove, unused.
15516
15517 2002-06-09 Akim Demaille <akim@epita.fr>
15518
15519 Move symbols handling code out of the reader.
15520
15521 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15522 (axiom): Move to...
15523 * src/symtab.h, src/symtab.c: here.
15524
15525 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15526 * src/reader.c (startval): Rename as...
15527 * src/symtab.h, src/symtab.c (startsymbol): this.
15528 * src/reader.c: Adjust.
15529
15530 * src/reader.c (symbol_check_defined, symbol_make_alias)
15531 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15532 (token_translations_init)
15533 Move to...
15534 * src/symtab.c: here.
15535 * src/reader.c (packsymbols): Move to...
15536 * src/symtab.h, src/symtab.c (symbols_pack): here.
15537 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15538 argument.
15539
15540 2002-06-03 Akim Demaille <akim@epita.fr>
15541
15542 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15543 then statements.
15544
15545 2002-06-03 Akim Demaille <akim@epita.fr>
15546
15547 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15548 structs with non literals.
15549 * src/scan-skel.l: never-interactive.
15550 * src/conflicts.c (enum conflict_resolution_e): No trailing
15551 comma.
15552 * src/getargs.c (usage): Split long literal strings.
15553 Reported by Hans Aberg.
15554
15555 2002-05-28 Akim Demaille <akim@epita.fr>
15556
15557 * data/bison.c++: Use C++ ostreams.
15558 (cdebug_): New member.
15559
15560 2002-05-28 Akim Demaille <akim@epita.fr>
15561
15562 * src/output.c (output_skeleton): Be sure to allocate enough room
15563 for `/' _and_ for `\0' in full_skeleton.
15564
15565 2002-05-28 Akim Demaille <akim@epita.fr>
15566
15567 * data/bison.c++: Catch up with bison.simple:
15568 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15569 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15570 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15571 and popping traces.
15572
15573 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15574
15575 * src/output.c (output_skeleton): Put an explicit path in front of
15576 the skeleton file name, rather than relying on the -I directory,
15577 to partially alleviate effects of having a skeleton file lying around
15578 in the current directory.
15579
15580 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15581
15582 * src/conflicts.c (log_resolution): Correct typo:
15583 obstack_printf should be obstack_fgrow1.
15584
15585 2002-05-26 Akim Demaille <akim@epita.fr>
15586
15587 * src/state.h (state_t): `solved_conflicts' is a new member.
15588 * src/LR0.c (new_state): Set it to 0.
15589 * src/conflicts.h, src/conflicts.c (print_conflicts)
15590 (free_conflicts, solve_conflicts): Rename as...
15591 (conflicts_print, conflicts_free, conflicts_solve): these.
15592 Adjust callers.
15593 * src/conflicts.c (enum conflict_resolution_e)
15594 (solved_conflicts_obstack): New, used by...
15595 (log_resolution): this.
15596 Adjust to attach the conflict resolution to each state.
15597 Complete the description with the precedence/associativity
15598 information.
15599 (resolve_sr_conflict): Adjust.
15600 * src/print.c (print_state): Output its solved_conflicts.
15601 * tests/conflicts.at (Unresolved SR Conflicts)
15602 (Solved SR Conflicts): Exercise --report=all.
15603
15604 2002-05-26 Akim Demaille <akim@epita.fr>
15605
15606 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15607 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15608 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15609 (token_number_t, item_number_as_token_number)
15610 (token_number_as_item_number, muscle_insert_token_number_table):
15611 Rename as...
15612 (symbol_number_t, item_number_as_symbol_number)
15613 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15614 these, since it is more appropriate.
15615
15616 2002-05-26 Akim Demaille <akim@epita.fr>
15617
15618 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15619 `Error:' lines.
15620 * data/bison.simple (yystos) [YYDEBUG]: New.
15621 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15622 error recovery.
15623 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15624
15625 2002-05-25 Akim Demaille <akim@epita.fr>
15626
15627 * doc/bison.texinfo (Debugging): Split into...
15628 (Tracing): this new section, its former contents, and...
15629 (Understanding): this new section.
15630 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15631 by...
15632 (report_flag): this.
15633 Adjust all dependencies.
15634 (report_args, report_types, report_argmatch): New.
15635 (usage, getargs): Report/support -r, --report.
15636 * src/options.h
15637 (struct option_table_struct): Rename as..,
15638 (struct option_table_s): this.
15639 Rename the `set_flag' member to `flag' to match with getopt_long's
15640 struct.
15641 * src/options.c (option_table): Split verbose into an entry for
15642 %verbose, and another for --verbose.
15643 Support --report/-r, so remove -r from the obsolete --raw.
15644 * src/print.c: Attach full item sets and lookaheads reports to
15645 report_flag instead of trace_flag.
15646 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15647
15648 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15649 and Paul Eggert <eggert@twinsun.com>
15650
15651 * data/bison.simple (yyparse): Correct error handling to conform to
15652 POSIX and yacc. Specifically, after syntax error is discovered,
15653 do not reduce further before shifting the error token.
15654 Clean up the code a bit by removing the labels yyerrdefault,
15655 yyerrhandle, yyerrpop.
15656 * NEWS: Document the above.
15657
15658 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15659
15660 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15661 type; it isn't always big enough, since it doesn't necessarily
15662 include non-terminals.
15663 (yytranslate): Expand definition of yy_token_number_type, so that
15664 the latter can be removed.
15665 (yy_token_number_type): Remove, only one use.
15666 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15667 don't use TokenNumberType as element type.
15668
15669 * tests/regression.at: Modify expected output to agree with change
15670 to yyr1 and yytranslate.
15671
15672 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15673
15674 * src/reader.c (parse_action): Use copy_character instead of
15675 obstack_1grow.
15676
15677 2002-05-13 Akim Demaille <akim@epita.fr>
15678
15679 * tests/regression.at (Token definitions): Prototype yylex and
15680 yyerror.
15681
15682 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15683
15684 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15685 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15686 32-bit arithmetic.
15687 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15688
15689 2002-05-07 Akim Demaille <akim@epita.fr>
15690
15691 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15692 avoid GCC warnings.
15693
15694 2002-05-07 Akim Demaille <akim@epita.fr>
15695
15696 Kill GCC warnings.
15697
15698 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15699 over the RHS of each rule.
15700 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15701 * src/state.h (state_t): Member `nitems' is unsigned short.
15702 * src/LR0.c (get_state): Adjust.
15703 * src/reader.c (packgram): Likewise.
15704 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15705 `Type'.
15706 (muscle_insert_int_table): Remove, unused.
15707 (prepare_rules): Remove `max'.
15708
15709 2002-05-06 Akim Demaille <akim@epita.fr>
15710
15711 * src/closure.c (print_firsts): Display of the symbol tags.
15712 (bitmatrix_print): Move to...
15713 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15714 here.
15715 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15716
15717 2002-05-06 Akim Demaille <akim@epita.fr>
15718
15719 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15720 hash_do_for_each.
15721
15722 2002-05-06 Akim Demaille <akim@epita.fr>
15723
15724 * src/LR0.c (new_state, get_state): Instead of using the global
15725 `kernel_size' and `kernel_base', have two new arguments:
15726 `core_size' and `core'.
15727 Adjust callers.
15728
15729 2002-05-06 Akim Demaille <akim@epita.fr>
15730
15731 * src/reader.c (packgram): No longer end `ritem' with a 0
15732 sentinel: it is not used.
15733
15734 2002-05-05 Akim Demaille <akim@epita.fr>
15735
15736 New experimental feature: display the lookaheads in the report and
15737 graph.
15738
15739 * src/print (print_core): When --trace-flag, display the rules
15740 lookaheads.
15741 * src/print_graph.c (print_core): Likewise.
15742 Swap the arguments.
15743 Adjust caller.
15744
15745 2002-05-05 Akim Demaille <akim@epita.fr>
15746
15747 * tests/torture.at (Many lookaheads): New test.
15748
15749 2002-05-05 Akim Demaille <akim@epita.fr>
15750
15751 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15752 (GENERATE_MUSCLE_INSERT_TABLE): this.
15753 (output_int_table, output_unsigned_int_table, output_short_table)
15754 (output_token_number_table, output_item_number_table): Replace with...
15755 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15756 (muscle_insert_short_table, muscle_insert_token_number_table)
15757 (muscle_insert_item_number_table): these.
15758 Adjust all callers.
15759 (prepare_tokens): Don't free `translations', since...
15760 * src/reader.h, src/reader.c (grammar_free): do it.
15761 Move to...
15762 * src/gram.h, src/gram.c (grammar_free): here.
15763 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15764 b4_translate_max.
15765
15766 2002-05-05 Akim Demaille <akim@epita.fr>
15767
15768 * src/output.c (output_unsigned_int_table): New.
15769 (prepare_rules): `i' is unsigned.
15770 `prhs', `rline', `r2' are unsigned int.
15771 Rename muscle `rhs_number_max' as `rhs_max'.
15772 Output muscles `prhs_max', `rline_max', and `r2_max'.
15773 Free rline and r1.
15774 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15775 to compute types instead of constant types.
15776 * tests/regression.at (Web2c Actions): Adjust.
15777
15778 2002-05-04 Akim Demaille <akim@epita.fr>
15779
15780 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15781 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15782 Adjust dependencies.
15783 * src/output.c (token_definitions_output): Be sure not to output a
15784 `#define 'a'' when fed with `%token 'a' "a"'.
15785 * tests/regression.at (Token definitions): New.
15786
15787 2002-05-03 Paul Eggert <eggert@twinsun.com>
15788
15789 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15790 for K&R C.
15791
15792 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15793
15794 * Makefile.am (SUBDIRS): Remove intl.
15795 (EXTRA_DIST): Add config/config.rpath.
15796
15797 2002-05-03 Akim Demaille <akim@epita.fr>
15798
15799 * data/bison.simple (m4_if): Don't output empty enums.
15800 And actually, output valid enum definitions :(.
15801
15802 2002-05-03 Akim Demaille <akim@epita.fr>
15803
15804 * configure.bat: Remove, completely obsolete.
15805 * Makefile.am (EXTRA_DIST): Adjust.
15806 Don't distribute config.rpath...
15807 * config/Makefile.am (EXTRA_DIST): Do it.
15808
15809 2002-05-03 Akim Demaille <akim@epita.fr>
15810
15811 * configure.in (GETTEXT_VERSION): New.
15812 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15813
15814 2002-05-03 Akim Demaille <akim@epita.fr>
15815
15816 * data/bison.simple (b4_token_enum): New.
15817 (b4_token_defines): Use it to output tokens both as #define and
15818 enums.
15819 Suggested by Paul Eggert.
15820 * src/output.c (token_definitions_output): Don't output spurious
15821 white spaces.
15822
15823 2002-05-03 Akim Demaille <akim@epita.fr>
15824
15825 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15826
15827 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15828
15829 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15830 Update the stack class, give a try to deque as the default container.
15831
15832 2002-05-02 Akim Demaille <akim@epita.fr>
15833
15834 * data/bison.simple (yyparse): Do not implement @$ = @1.
15835 (YYLLOC_DEFAULT): Adjust to do it.
15836 * doc/bison.texinfo (Location Default Action): Fix.
15837
15838 2002-05-02 Akim Demaille <akim@epita.fr>
15839
15840 * src/reader.c (parse_braces): Merge into...
15841 (parse_action): this.
15842
15843 2002-05-02 Akim Demaille <akim@epita.fr>
15844
15845 * configure.in (ALL_LINGUAS): Remove.
15846 * po/LINGUAS, hr.po: New.
15847
15848 2002-05-02 Akim Demaille <akim@epita.fr>
15849
15850 Remove the so called hairy (semantic) parsers.
15851
15852 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15853 * src/gram.h, src/gram.c (semantic_parser): Remove.
15854 (rule_t): Remove the guard and guard_line members.
15855 * src/lex.h (token_t): remove tok_guard.
15856 * src/options.c (option_table): Remove %guard and %semantic_parser
15857 support.
15858 * src/output.c, src/output.h (guards_output): Remove.
15859 (prepare): Adjust.
15860 (token_definitions_output): Don't output the `T'
15861 tokens (???).
15862 (output_skeleton): Don't output the guards.
15863 * src/files.c, src/files.c (attrsfile): Remove.
15864 * src/reader.c (symbol_list): Remove the guard and guard_line
15865 members.
15866 Adjust dependencies.
15867 (parse_guard): Remove.
15868 * data/bison.hairy: Remove.
15869 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15870 BISON_HAIRY.
15871
15872 2002-05-02 Akim Demaille <akim@epita.fr>
15873
15874 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15875 (parse_guard): Rename the formal argument `stack_offset' as
15876 `rule_length', which is more readable.
15877 Adjust callers.
15878 (copy_at, copy_dollar): Instead of outputting the hard coded
15879 values of $$, $n and so forth, output invocation to b4_lhs_value,
15880 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15881 Note: this patch partially drops `semantic-parser' support: it
15882 always does `rule_length - n', where semantic parsers ought to
15883 always use `-n'.
15884 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15885 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15886
15887 2002-05-02 Akim Demaille <akim@epita.fr>
15888
15889 * configure.in (AC_INIT): Bump to 1.49b.
15890 (AM_INIT_AUTOMAKE): Short invocation.
15891
15892 2002-05-02 Akim Demaille <akim@epita.fr>
15893
15894 Version 1.49a.
15895
15896 2002-05-01 Akim Demaille <akim@epita.fr>
15897
15898 * src/skeleton.h: Remove.
15899
15900 2002-05-01 Akim Demaille <akim@epita.fr>
15901
15902 * src/skeleton.h: Fix the #endif.
15903 Reported by Magnus Fromreide.
15904
15905 2002-04-26 Paul Eggert <eggert@twinsun.com>
15906
15907 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15908 Define if we define YYSTYPE and YYLTYPE, respectively.
15909 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15910
15911 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15912
15913 * src/scan-skel.l: Postprocess quadrigraphs.
15914
15915 * src/reader.c (copy_character): New function, used to output
15916 single characters while replacing `[' and `]' with quadrigraphs, to
15917 avoid troubles with M4 quotes.
15918 (copy_comment): Output characters with copy_character.
15919 (read_additionnal_code): Likewise.
15920 (copy_string2): Likewise.
15921 (copy_definition): Likewise.
15922
15923 * tests/calc.at: Exercise M4 quoting.
15924
15925 2002-04-25 Akim Demaille <akim@epita.fr>
15926
15927 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15928 between `!' and the command.
15929 Reported by Paul Eggert.
15930
15931 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15932
15933 * tests/calc.at: Exercise prologue splitting.
15934
15935 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15936 `b4_post_prologue' instead of `b4_prologue'.
15937
15938 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15939 muscles.
15940 (output): Free pre_prologue_obstack and post_prologue_obstack.
15941 * src/files.h, src/files.c (attrs_obstack): Remove.
15942 (pre_prologue_obstack, post_prologue_obstack): New.
15943 * src/reader.c (copy_definition): Add a parameter to specify the
15944 obstack to fill, instead of using attrs_obstack unconditionally.
15945 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15946 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15947
15948 2002-04-23 Paul Eggert <eggert@twinsun.com>
15949
15950 * data/bison.simple: Remove unnecessary commentary and white
15951 space differences from 1_29-branch.
15952 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15953
15954 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15955 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15956 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15957 constructors or destructors.
15958
15959 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15960
15961 2002-04-23 Akim Demaille <akim@epita.fr>
15962
15963 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15964 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15965 location with columns.
15966 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15967 All reported by Paul Eggert.
15968
15969 2002-04-22 Akim Demaille <akim@epita.fr>
15970
15971 * src/reduce.c (dump_grammar): Move to...
15972 * src/gram.h, src/gram.c (grammar_dump): here.
15973 Be sure to separate long item numbers.
15974 Don't read the members of a rule's prec if its nil.
15975
15976 2002-04-22 Akim Demaille <akim@epita.fr>
15977
15978 * src/output.c (table_size, table_grow): New.
15979 (MAXTABLE): Remove, replace uses with table_size.
15980 (pack_vector): Instead of dying when the table is too big, grow it.
15981
15982 2002-04-22 Akim Demaille <akim@epita.fr>
15983
15984 * data/bison.simple (yyr1): Its type is that of a token number.
15985 * data/bison.c++ (r1_): Likewise.
15986 * tests/regression.at (Web2c Actions): Adjust.
15987
15988 2002-04-22 Akim Demaille <akim@epita.fr>
15989
15990 * src/reader.c (token_translations_init): 256 is now the default
15991 value for the error token, i.e., it will be assigned another
15992 number if the user assigned 256 to one of her tokens.
15993 (reader): Don't force 256 to error.
15994 * doc/bison.texinfo (Symbols): Adjust.
15995 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15996 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15997 etc. instead of 10, 20, 30 (which was used to `jump' over error
15998 (256) and undefined (2)).
15999
16000 2002-04-22 Akim Demaille <akim@epita.fr>
16001
16002 Propagate more token_number_t.
16003
16004 * src/gram.h (token_number_as_item_number)
16005 (item_number_as_token_number): New.
16006 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16007 Use it to create output_item_number_table and
16008 output_token_number_table.
16009 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16010 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16011 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16012 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16013
16014 2002-04-22 Akim Demaille <akim@epita.fr>
16015
16016 * src/output.h, src/output.c (get_lines_number): Remove.
16017
16018 2002-04-19 Akim Demaille <akim@epita.fr>
16019
16020 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16021 as Lex/Flex'.
16022 (Debugging): More details about enabling the debugging features.
16023 (Table of Symbols): Describe $$, $n, @$, and @n.
16024 Suggested by Tim Josling.
16025
16026 2002-04-19 Akim Demaille <akim@epita.fr>
16027
16028 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16029
16030 2002-04-10 Akim Demaille <akim@epita.fr>
16031
16032 * src/system.h: Rely on HAVE_LIMITS_H.
16033 Suggested by Paul Eggert.
16034
16035 2002-04-09 Akim Demaille <akim@epita.fr>
16036
16037 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16038 full stderr, and strip it according to the bison options, instead
16039 of composing the error message from different bits.
16040 This makes it easier to check for several error messages.
16041 Adjust all the invocations.
16042 Add an invocation exercising the error token.
16043 Add an invocation demonstrating a stupid error message.
16044 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16045 Adjust the tests.
16046 Error message are for stderr, not stdout.
16047
16048 2002-04-09 Akim Demaille <akim@epita.fr>
16049
16050 * src/gram.h, src/gram.c (error_token_number): Remove, use
16051 errtoken->number.
16052 * src/reader.c (reader): Don't specify the user token number (2)
16053 for $undefined, as it uselessly prevents using it.
16054 * src/gram.h (token_number_t): Move to...
16055 * src/symtab.h: here.
16056 (state_t.number): Is a token_number_t.
16057 * src/print.c, src/reader.c: Use undeftoken->number instead of
16058 hard coded 2.
16059 (Even though this 2 is not the same as above: the number of the
16060 undeftoken remains being 2, it is its user token number which
16061 might not be 2).
16062 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16063 `user_token_number_max'.
16064 Output `undef_token_number'.
16065 * data/bison.simple, data/bison.c++: Use them.
16066 Be sure to map invalid yylex return values to
16067 `undef_token_number'. This saves us from gratuitous SEGV.
16068
16069 * tests/conflicts.at (Solved SR Conflicts)
16070 (Unresolved SR Conflicts): Adjust.
16071 * tests/regression.at (Web2c Actions): Adjust.
16072
16073 2002-04-08 Akim Demaille <akim@epita.fr>
16074
16075 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16076 Adding #line.
16077 Remove the duplicate `typedefs'.
16078 (RhsNumberType): Fix the declaration and various other typos.
16079 Use __ofile__.
16080 * data/bison.simple: Use __ofile__.
16081 * src/scan-skel.l: Handle __ofile__.
16082
16083 2002-04-08 Akim Demaille <akim@epita.fr>
16084
16085 * src/gram.h (item_number_t): New, the type of item numbers in
16086 RITEM. Note that it must be able to code symbol numbers as
16087 positive number, and the negation of rule numbers as negative
16088 numbers.
16089 Adjust all dependencies (pretty many).
16090 * src/reduce.c (rule): Remove this `short *' pointer: use
16091 item_number_t.
16092 * src/system.h (MINSHORT, MAXSHORT): Remove.
16093 Include `limits.h'.
16094 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16095 (shortcpy): Remove.
16096 (MAXTABLE): Move to...
16097 * src/output.c (MAXTABLE): here.
16098 (prepare_rules): Use output_int_table to output rhs.
16099 * data/bison.simple, data/bison.c++: Adjust.
16100 * tests/torture.at (Big triangle): Move the limit from 254 to
16101 500.
16102 * tests/regression.at (Web2c Actions): Ajust.
16103
16104 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16105 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16106 passes, but produces negative #line number, once fixed, GCC is
16107 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16108 C), it passes.
16109 * src/state.h (state_h): Code input lines on ints, not shorts.
16110
16111 2002-04-08 Akim Demaille <akim@epita.fr>
16112
16113 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16114 and then the grammar.
16115
16116 2002-04-08 Akim Demaille <akim@epita.fr>
16117
16118 * src/system.h: No longer using strndup.
16119
16120 2002-04-07 Akim Demaille <akim@epita.fr>
16121
16122 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16123 * src/output.c (output_table_data): Return the longest number.
16124 (prepare_tokens): Output `token_number_max').
16125 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16126 New.
16127 Use them to define yy_token_number_type/TokenNumberType.
16128 Use this type for yytranslate.
16129 * tests/torture.at (Big triangle): Push the limit from 124 to
16130 253.
16131 * tests/regression.at (Web2c Actions): Adjust.
16132
16133 2002-04-07 Akim Demaille <akim@epita.fr>
16134
16135 * tests/torture.at (Big triangle): New.
16136 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16137 * tests/existing.at: here.
16138
16139 2002-04-07 Akim Demaille <akim@epita.fr>
16140
16141 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16142 nritems.
16143 Adjust dependencies.
16144
16145 2002-04-07 Akim Demaille <akim@epita.fr>
16146
16147 * src/reader.c: Normalize increments to prefix form.
16148
16149 2002-04-07 Akim Demaille <akim@epita.fr>
16150
16151 * src/reader.c, symtab.c: Remove debugging code.
16152
16153 2002-04-07 Akim Demaille <akim@epita.fr>
16154
16155 Rename all the `bucket's as `symbol_t'.
16156
16157 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16158 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16159 * src/symtab.c, src/symtab.h (bucket): Rename as...
16160 (symbol_t): this.
16161 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16162 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16163 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16164 (buckets_new, buckets_free, buckets_do): Rename as...
16165 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16166 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16167 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16168 (symbols_new, symbols_free, symbols_do): these.
16169
16170 2002-04-07 Akim Demaille <akim@epita.fr>
16171
16172 Use lib/hash for the symbol table.
16173
16174 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16175 EOF.
16176 * src/lex.c (lex): Set the `number' member of new terminals.
16177 * src/reader.c (bucket_check_defined, bucket_make_alias)
16178 (bucket_check_alias_consistence, bucket_translation): New.
16179 (reader, grammar_free, readgram, token_translations_init)
16180 (packsymbols): Adjust.
16181 (reader): Number the predefined tokens.
16182 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16183 for predefined tokens.
16184 * src/symtab.h (bucket): Remove all the hash table related
16185 members.
16186 * src/symtab.c (symtab): Replace by...
16187 (bucket_table): this.
16188 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16189 (buckets_new, buckets_do): New.
16190
16191 2002-04-07 Akim Demaille <akim@epita.fr>
16192
16193 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16194 (start_symbol, max_user_token_number, semantic_parser)
16195 (error_token_number): Initialize.
16196 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16197 Initialize.
16198 (reader): Don't.
16199 (errtoken, eoftoken, undeftoken, axiom): Extern.
16200
16201 2002-04-07 Akim Demaille <akim@epita.fr>
16202
16203 * src/gram.h (rule_s): prec and precsym are now pointers
16204 to the bucket giving the priority/associativity.
16205 Member `associativity' removed: useless.
16206 * src/reduce.c, src/conflicts.c: Adjust.
16207
16208 2002-04-07 Akim Demaille <akim@epita.fr>
16209
16210 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16211 Properly escape the symbols' TAG when outputting them.
16212
16213 2002-04-07 Akim Demaille <akim@epita.fr>
16214
16215 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16216
16217 2002-04-07 Akim Demaille <akim@epita.fr>
16218
16219 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16220 (LArule): this, which is an array to rule_t*.
16221 * src/print.c, src/conflicts.c: Adjust.
16222
16223 2002-04-07 Akim Demaille <akim@epita.fr>
16224
16225 * src/gram.h (rule_t): Rename `number' as `user_number'.
16226 `number' is a new member.
16227 Adjust dependencies.
16228 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16229
16230 2002-04-07 Akim Demaille <akim@epita.fr>
16231
16232 As a result of the previous patch, it is no longer needed
16233 to reorder ritem itself.
16234
16235 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16236
16237 2002-04-07 Akim Demaille <akim@epita.fr>
16238
16239 Be sure never to walk through RITEMS, but use only data related to
16240 the rules themselves. RITEMS should be banished.
16241
16242 * src/output.c (output_token_translations): Rename as...
16243 (prepare_tokens): this.
16244 In addition to `translate', prepare the muscles `tname' and
16245 `toknum', which were handled by...
16246 (output_rule_data): this.
16247 Remove, and move the remainder of its outputs into...
16248 (prepare_rules): this new routines, which also merges content from
16249 (output_gram): this.
16250 (prepare_rules): Be sure never to walk through RITEMS.
16251 (output_stos): Rename as...
16252 (prepare_stos): this.
16253 (output): Always invoke prepare_states, after all, just don't use it
16254 in the output if you don't need it.
16255
16256 2002-04-07 Akim Demaille <akim@epita.fr>
16257
16258 * src/LR0.c (new_state): Display `nstates' as the name of the
16259 newly created state.
16260 Adjust to initialize first_state and last_state if needed.
16261 Be sure to distinguish the initial from the final state.
16262 (new_states): Create the itemset of the initial state, and use
16263 new_state.
16264 * src/closure.c (closure): Now that the initial state has its
16265 items properly set, there is no need for a special case when
16266 creating `ruleset'.
16267
16268 As a result, now the rule 0, reducing to $axiom, is visible in the
16269 outputs. Adjust the test suite.
16270
16271 * tests/conflicts.at (Solved SR Conflicts)
16272 (Unresolved SR Conflicts): Adjust.
16273 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16274 * tests/conflicts.at (S/R in initial): New.
16275
16276 2002-04-07 Akim Demaille <akim@epita.fr>
16277
16278 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16279 the RHS of the rules.
16280 * src/output.c (output_gram): Likewise.
16281
16282 2002-04-07 Akim Demaille <akim@epita.fr>
16283
16284 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16285 bucket.
16286 Adjust all dependencies.
16287 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16288 `number' of the buckets too.
16289 * src/gram.h: Include `symtab.h'.
16290 (associativity): Move to...
16291 * src/symtab.h: here.
16292 No longer include `gram.h'.
16293
16294 2002-04-07 Akim Demaille <akim@epita.fr>
16295
16296 * src/gram.h, src/gram.c (rules_rhs_length): New.
16297 (ritem_longest_rhs): Use it.
16298 * src/gram.h (rule_t): `number' is a new member.
16299 * src/reader.c (packgram): Set it.
16300 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16301 the end of `rules', and count them out of `nrules'.
16302 (reduce_output, dump_grammar): Adjust.
16303 * src/print.c (print_grammar): It is no longer needed to check for
16304 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16305 * tests/reduce.at (Reduced Automaton): New test.
16306
16307 2002-04-07 Akim Demaille <akim@epita.fr>
16308
16309 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16310 lacking `+ 1' to nrules, Bison reported as useless a token if it
16311 was used solely to set the precedence of the last rule...
16312
16313 2002-04-07 Akim Demaille <akim@epita.fr>
16314
16315 * data/bison.c++, data/bison.simple: Don't output the current file
16316 name in #line, to avoid useless diffs between two identical
16317 outputs under different names.
16318
16319 2002-04-07 Akim Demaille <akim@epita.fr>
16320
16321 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16322 Normalize loops to using `< nrules + 1', not `<= nrules'.
16323
16324 2002-04-07 Akim Demaille <akim@epita.fr>
16325
16326 * TODO: Update.
16327
16328 2002-04-07 Akim Demaille <akim@epita.fr>
16329
16330 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16331 bucket.value as bucket.number.
16332
16333 2002-04-07 Akim Demaille <akim@epita.fr>
16334
16335 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16336 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16337 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16338 RHS, instead of being an index in RITEMS.
16339
16340 2002-04-04 Paul Eggert <eggert@twinsun.com>
16341
16342 * doc/bison.texinfo: Update copyright date.
16343 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16344 (Symbols): Warn about running Bison in one character set,
16345 but compiling and/or running in an incompatible one.
16346 Warn about character code 256, too.
16347
16348 2002-04-03 Paul Eggert <eggert@twinsun.com>
16349
16350 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16351 YYERROR_VERBOSE is nonzero, not whether it is defined.
16352
16353 Merge changes from bison-1_29-branch.
16354
16355 2002-03-20 Paul Eggert <eggert@twinsun.com>
16356
16357 Merge fixes from Debian bison_1.34-1.diff.
16358
16359 * configure.in (AC_PREREQ): 2.53.
16360
16361 2002-03-20 Akim Demaille <akim@epita.fr>
16362
16363 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16364
16365 2002-03-19 Paul Eggert <eggert@twinsun.com>
16366
16367 * src/bison.simple (YYCOPY): New macro.
16368 (YYSTACK_RELOCATE): Use it.
16369 Remove Type arg; no longer needed. All callers changed.
16370 (yymemcpy): Remove; no longer needed.
16371
16372 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16373 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16374
16375 2002-03-19 Akim Demaille <akim@epita.fr>
16376
16377 Test and fix the #line outputs.
16378
16379 * tests/atlocal.at (GCC): New.
16380 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16381 (Prologue synch line, %union synch line, Postprologue synch line)
16382 (Action synch line, Epilogue synch line): New tests.
16383 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16384 * data/bison.simple, data/bison.c++: Use it.
16385
16386 2002-03-19 Akim Demaille <akim@epita.fr>
16387
16388 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16389 (Solved SR Conflicts, %expect not enough, %expect right)
16390 (%expect too much): Move to...
16391 * tests/conflicts.at: this new file.
16392
16393 2002-03-19 Akim Demaille <akim@epita.fr>
16394
16395 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16396 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16397 that we can move to enums for instance.
16398 * src/output.c (token_definitions_output): Output a list of
16399 `token-name, token-number' instead of the #define.
16400 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16401
16402 2002-03-14 Akim Demaille <akim@epita.fr>
16403
16404 Use Gettext 0.11.1.
16405
16406 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16407
16408 * data/bison.c++: Make the user able to add members to the generated
16409 parser by subclassing.
16410
16411 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16412
16413 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16414 a character.
16415 Reported by Nicolas Tisserand and Nicolas Burrus.
16416
16417 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16418
16419 * src/reader.c: Warn about lacking semi-colons, do not complain.
16420
16421 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16422
16423 * data/bison.c++: Remove a debug line.
16424
16425 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16426
16427 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16428 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16429 provide a default implementation.
16430
16431 2002-03-04 Akim Demaille <akim@epita.fr>
16432
16433 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16434 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16435 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16436 * tests/semantic.at (Parsing Guards): Similarly.
16437 * src/reader.at (readgram): Complain if the last rule is not ended
16438 with a semi-colon.
16439
16440 2002-03-04 Akim Demaille <akim@epita.fr>
16441
16442 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16443 * src/closure.c: here.
16444 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16445 RTC.
16446 * src/warshall.h, src/warshall.c: Remove.
16447 * tests/sets.at (Broken Closure): Adjust.
16448
16449 2002-03-04 Akim Demaille <akim@epita.fr>
16450
16451 * src/output.c (output_skeleton): tempdir is const.
16452 bytes_read is unused.
16453
16454 2002-03-04 Akim Demaille <akim@epita.fr>
16455
16456 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16457 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16458 Update.
16459 From Michael Hayes.
16460
16461 2002-03-04 Akim Demaille <akim@epita.fr>
16462
16463 * src/closure.c (closure): `r' is unused.
16464
16465 2002-03-04 Akim Demaille <akim@epita.fr>
16466
16467 * tests/sets.at (Broken Closure): Add the ending `;'.
16468 * src/reader.at (readgram): Complain if a rule is not ended with a
16469 semi-colon.
16470
16471 2002-03-04 Akim Demaille <akim@epita.fr>
16472
16473 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16474 (count_sr_conflicts): Use bitset_count.
16475 * src/reduce.c (inaccessable_symbols): Ditto.
16476 (bits_size): Remove.
16477 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16478
16479 2002-03-04 Akim Demaille <akim@epita.fr>
16480
16481 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16482 * src/reduce.c: Remove the `bitset_zero's following the
16483 `bitset_create's, as now it is performed by the latter.
16484
16485 2002-03-04 Akim Demaille <akim@epita.fr>
16486
16487 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16488 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16489 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16490 latest sources from Michael.
16491
16492 2002-03-04 Akim Demaille <akim@epita.fr>
16493
16494 * src/output.c (output): Don't free the grammar.
16495 * src/reader.c (grammar_free): New.
16496 * src/main.c (main): Call it and don't free symtab here.
16497
16498 2002-03-04 Akim Demaille <akim@epita.fr>
16499
16500 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16501 before returning.
16502 Reported by Benoit Perrot.
16503
16504 2002-03-04 Akim Demaille <akim@epita.fr>
16505
16506 Use bitset operations when possible, not loops over bits.
16507
16508 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16509 bitset_or.
16510 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16511 * src/reduce.c (useless_nonterminals): Formatting changes.
16512 * src/warshall.c (TC): Use bitset_or.
16513
16514 2002-03-04 Akim Demaille <akim@epita.fr>
16515
16516 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16517 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16518 Ditto.
16519
16520 2002-03-04 Akim Demaille <akim@epita.fr>
16521
16522 * src/lalr.c (F): Now a bitset*.
16523 Adjust all dependencies.
16524
16525 2002-03-04 Akim Demaille <akim@epita.fr>
16526
16527 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16528 Adjust all dependencies.
16529
16530 2002-03-04 Akim Demaille <akim@epita.fr>
16531
16532 * src/L0.c, src/LR0.h (nstates): Be size_t.
16533 Adjust comparisons (signed vs unsigned).
16534 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16535 bitset*.
16536 Adjust all dependencies.
16537
16538 2002-03-04 Akim Demaille <akim@epita.fr>
16539
16540 * src/closure.c (firsts): Now, also a bitset.
16541 Adjust all dependencies.
16542 (varsetsize): Remove, now unused.
16543 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16544
16545 2002-03-04 Akim Demaille <akim@epita.fr>
16546
16547 * src/print.c: Convert to use bitset.h, not hand coded iterations
16548 over ints.
16549
16550 2002-03-04 Akim Demaille <akim@epita.fr>
16551
16552 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16553
16554 2002-03-04 Akim Demaille <akim@epita.fr>
16555
16556 * src/closure.c (ruleset): Be a bitset.
16557 (rulesetsize): Remove.
16558
16559 2002-03-04 Akim Demaille <akim@epita.fr>
16560
16561 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16562 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16563 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16564 * src/closure.c (fderives): Be an array of bitsets.
16565
16566 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16567
16568 * data/bison.c++: Merge the two generated headers. Insert a copyright
16569 notice in each output file.
16570
16571 2002-02-28 Akim Demaille <akim@epita.fr>
16572
16573 * data/bison.c++: Copy the prologue of bison.simple to fetch
16574 useful M4 definitions, such as b4_header_guard.
16575
16576 2002-02-25 Akim Demaille <akim@epita.fr>
16577
16578 * src/getargs.c (version): Give the name of the authors, and use a
16579 translator friendly scheme for the bgr
16580 copyright notice.
16581
16582 2002-02-25 Akim Demaille <akim@epita.fr>
16583
16584 * src/output.c (header_output): Remove, now handled completely via
16585 M4.
16586
16587 2002-02-25 Akim Demaille <akim@epita.fr>
16588
16589 * m4/m4.m4: New, from CVS Autoconf.
16590 * configure.in: Invoke it.
16591 * src/output.c (output_skeleton): Use its result instead of the
16592 hard coded name.
16593
16594 2002-02-25 Akim Demaille <akim@epita.fr>
16595
16596 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16597 Fileutils 4.1.5.
16598 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16599 * src/output.c (output_skeleton): Use mkstemp to create a real
16600 temporary file.
16601 Move the filling of `skeleton' and its muscle to...
16602 (prepare): here.
16603 (output): Move the definition of the prologue muscle to...
16604 (prepare): here.
16605 * src/system.h (DEFAULT_TMPDIR): New.
16606
16607 2002-02-14 Paul Eggert <eggert@twinsun.com>
16608
16609 Remove the support for C++ namespace cleanliness; it was
16610 causing more problems than it was curing, since it didn't work
16611 properly on some nonstandard C++ compilers. This can wait
16612 for a proper C++ parser.
16613
16614 * NEWS: Document this.
16615 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16616 of C++, as it's treated like C now.
16617 * src/bison.simple (YYSTD): Remove.
16618 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16619 Treat C++ just like Standard C instead of trying to support
16620 namespace cleanliness.
16621
16622 2002-02-14 Akim Demaille <akim@epita.fr>
16623
16624 * tests/regression.at (else): Adjust to Andreas' change.
16625
16626 2002-02-14 Akim Demaille <akim@epita.fr>
16627
16628 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16629
16630 2002-02-13 Andreas Schwab <schwab@suse.de>
16631
16632 * src/output.c (output_rule_data): Don't output NULL, it might
16633 not be defined yet.
16634
16635 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16636
16637 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16638 (Copyright notice): Update.
16639
16640 2002-02-11 Akim Demaille <akim@epita.fr>
16641
16642 * tests/regression.at (%nonassoc and eof): Don't include
16643 nonportable headers.
16644
16645 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16646
16647 * data/bison.c++: Correct error recovery. Make the user able to
16648 initialize the starting location.
16649
16650 2002-02-07 Akim Demaille <akim@epita.fr>
16651
16652 * tests/input.at: New.
16653
16654 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16655
16656 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16657 more consistent when naming methods and variables. Put preprocessor
16658 directives around tables only needed for debugging.
16659
16660 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16661
16662 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16663 C++ parsers.
16664 (yy::b4_name::parse): Use print_.
16665
16666 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16667
16668 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16669
16670 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16671
16672 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16673 C++ parsers.
16674 (yy::b4_name::parse): Build verbose error messages, and use error_.
16675
16676 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16677
16678 * data/bison.c++: Fix m4 quoting in comments.
16679
16680 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16681
16682 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16683 not expanded by m4.
16684
16685 2002-02-05 Akim Demaille <akim@epita.fr>
16686
16687 * data/bison.c++: Adjust to the M4 back end.
16688 More is certainly needed.
16689
16690 2002-02-05 Akim Demaille <akim@epita.fr>
16691
16692 Give a try to M4 as a back end.
16693
16694 * lib/readpipe.c: New, from wdiff.
16695 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16696 BISON_HAIRY.
16697 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16698 specific values. Now it is m4 that performs the lookup.
16699 * src/parse-skel.y: Remove.
16700 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16701 * src/output.c (actions_output, guards_output)
16702 (token_definitions_output): No longer keeps track of the output
16703 line number, hence remove the second argument.
16704 (guards_output): Check against the guard member of a rule, not the
16705 action member.
16706 Adjust callers.
16707 (output_skeleton): Don't look for the skeleton location, let m4 do
16708 that.
16709 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16710 file will be used.
16711 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16712 (prepare): Given that for the time being changesyntax is not
16713 usable in M4, rename the muscles using `-' to `_'.
16714 Define `defines_flag', `output_parser_name' and `output_header_name'.
16715 * src/output.h (actions_output, guards_output)
16716 (token_definitions_output): Adjust prototypes.
16717 * src/scan-skel.l: Instead of scanning the skeletons, it now
16718 processes the output of m4: `__oline__' and `#output'.
16719 * data/bison.simple: Adjust to be used by M4(sugar).
16720 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16721 to date.
16722 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16723 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16724 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16725 shamelessly stolen from CVS Autoconf.
16726
16727 2002-02-05 Akim Demaille <akim@epita.fr>
16728
16729 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16730 * configure.in: Check for the declarations of free and malloc.
16731 * src/muscle_tab.c: Adjust.
16732
16733 2002-02-05 Akim Demaille <akim@epita.fr>
16734
16735 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16736 which have no values.
16737
16738 2002-02-05 Akim Demaille <akim@epita.fr>
16739
16740 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16741 * data/: here.
16742
16743 2002-01-29 Paul Eggert <eggert@twinsun.com>
16744
16745 * src/bison.simple (YYSIZE_T): Do not define merely because
16746 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16747 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16748
16749 2002-01-27 Akim Demaille <akim@epita.fr>
16750
16751 Fix `%nonassoc and eof'.
16752
16753 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16754 which were not properly copied! Replace
16755 memcpy (res->errs, src->errs, src->nerrs);
16756 with
16757 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16758 !!!
16759 * tests/regression.at (%nonassoc and eof): Adjust to newest
16760 Autotest: `.' is not in the PATH.
16761
16762 2002-01-27 Akim Demaille <akim@epita.fr>
16763
16764 * tests/sets.at (AT_EXTRACT_SETS): New.
16765 (Nullable): Use it.
16766 (Firsts): New.
16767
16768 2002-01-26 Akim Demaille <akim@epita.fr>
16769
16770 * tests/actions.at, tests/calc.at, tests/headers.at,
16771 * tests/torture.at: Adjust to the newest Autotest which no longer
16772 forces `.' in the PATH.
16773
16774 2002-01-25 Akim Demaille <akim@epita.fr>
16775
16776 * tests/regression.at (%nonassoc and eof): New.
16777 Suggested by Robert Anisko.
16778
16779 2002-01-24 Akim Demaille <akim@epita.fr>
16780
16781 Bison dumps core when trying to complain about broken input files.
16782 Reported by Cris van Pelt.
16783
16784 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16785 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16786 into...
16787 (Invalid inputs): Strengthen: exercise parse_percent_token.
16788
16789 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16790
16791 * src/Makefile.am: Add bison.c++.
16792 * src/bison.c++: New skeleton.
16793
16794 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16795
16796 * po/it.po: New.
16797
16798 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16799
16800 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16801
16802 2002-01-20 Marc Autret <marc@gnu.org>
16803
16804 * src/files.c (compute_output_file_names): Fix
16805
16806 2002-01-20 Marc Autret <marc@gnu.org>
16807
16808 * tests/output.at: New test.
16809 * src/files.c (compute_base_names): Don't map extensions when
16810 the YACC flag is set, use defaults.
16811 Reported by Evgeny Stambulchik.
16812
16813 2002-01-20 Marc Autret <marc@gnu.org>
16814
16815 * src/system.h: Need to define __attribute__ away for non-GCC
16816 compilers as well (i.e., the vendor C compiler).
16817 Suggested by Albert Chin-A-Young.
16818
16819 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16820
16821 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16822 canonical definition.
16823 * src/system.h: Use the canonical definition for PARAMS (avoids
16824 a conflict with the macro from lib/hash.h).
16825
16826 2002-01-11 Akim Demaille <akim@epita.fr>
16827
16828 * configure.in: Use AC_FUNC_STRNLEN.
16829 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16830
16831 2002-01-09 Akim Demaille <akim@epita.fr>
16832
16833 * src/files.c, src/files.h (output_infix): New.
16834 (tab_extension): Remove.
16835 (compute_base_names): Compute the former, drop the latter.
16836 * src/output.c (prepare): Insert the muscles `output-infix', and
16837 `output-suffix'.
16838 * src/parse-skel.y (string, string.1): New.
16839 (section.header): Use it.
16840 (section.yacc): Remove.
16841 (prefix): Remove too.
16842 * src/scan-skel.l: Adjust.
16843 * src/bison.simple, src/bison.hairy: Adjust.
16844
16845 2002-01-09 Akim Demaille <akim@epita.fr>
16846
16847 * configure.in (WERROR_CFLAGS): Compute it.
16848 * src/Makefile.am (CFLAGS): Pass it.
16849 * tests/atlocal.in (CFLAGS): Idem.
16850 * src/files.c: Fix a few warnings.
16851 (get_extension_index): Remove, unused.
16852
16853 2002-01-08 Akim Demaille <akim@epita.fr>
16854
16855 * src/getargs.c (AS_FILE_NAME): New.
16856 (getargs): Use it to convert DOSish file names.
16857 * src/files.c (base_name): Rename as full_base_name to avoid
16858 clashes with `base_name ()'.
16859 (filename_split): New.
16860 (compute_base_names): N-th rewrite, using filename_split.
16861
16862 2002-01-08 Akim Demaille <akim@epita.fr>
16863
16864 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16865 New, stolen from the Fileutils 4.1.
16866 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16867 * configure.in: Check for the presence of memrchr, and of its
16868 prototype.
16869
16870 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16871
16872 * lib/hash.h (__P): Added definition for this macro.
16873 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16874 BUILT_SOURCES, to ensure they are generated first.
16875 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16876 %error-verbose to allow bootstrapping with bison 1.30x.
16877
16878 2002-01-06 Akim Demaille <akim@epita.fr>
16879
16880 * src/reader.c (parse_braces): Don't fetch the next char, the
16881 convention is to fetch on entry.
16882 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16883 'switch' without a following semicolon.
16884 * tests/regression.at (braces parsing): New.
16885
16886 2002-01-06 Akim Demaille <akim@epita.fr>
16887
16888 Bison is dead wrong in its RR conflict reports.
16889
16890 * tests/torture.at (GNU Cim Grammar): New.
16891 * src/conflicts.c (count_rr_conflicts): Fix.
16892
16893 2002-01-06 Akim Demaille <akim@epita.fr>
16894
16895 Creating package.m4 from configure.ac causes too many problems.
16896
16897 * tests/Makefile.am (package.m4): Create it by hand,
16898 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16899
16900 2002-01-06 Akim Demaille <akim@epita.fr>
16901
16902 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16903 skeleton.h.
16904
16905 2002-01-04 Paul Eggert <eggert@twinsun.com>
16906
16907 * doc/bison.texinfo (Debugging):
16908 Remove YYSTDERR; it's no longer defined or used.
16909 Also, s/cstdio.h/cstdio/.
16910
16911 2002-01-03 Akim Demaille <akim@epita.fr>
16912
16913 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16914
16915 2002-01-03 Akim Demaille <akim@epita.fr>
16916
16917 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16918 tracing code to --trace, wait for a better --trace option, with
16919 args.
16920
16921 2002-01-03 Akim Demaille <akim@epita.fr>
16922
16923 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16924 The ISO C++ standard is extremely clear about it: stderr is
16925 considered a macro, not a regular symbol (see table 94 `Header
16926 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16927 Therefore std:: does not apply to it. It still does with fprintf.
16928 Also, s/cstdio.h/cstdio/.
16929
16930 2002-01-03 Akim Demaille <akim@epita.fr>
16931
16932 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16933 for non system headers.
16934
16935 2002-01-02 Akim Demaille <akim@epita.fr>
16936
16937 Equip the skeleton chain with location tracking, runtime trace,
16938 pure parser and scanner.
16939
16940 * src/parse-skel.y: Request a pure parser, locations, and prefix
16941 renaming.
16942 (%union): Having several members with the same type does not help
16943 type mismatches, simplify.
16944 (YYPRINT, yyprint): New.
16945 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16946 (skel_error): this.
16947 Handle locations.
16948 * src/scan-skel.l: Adjust to these changes.
16949 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16950 (LOCATION_PRINT, skel_control_t): New.
16951
16952 2001-12-30 Akim Demaille <akim@epita.fr>
16953
16954 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16955 replace `gb' with BLANKS.
16956 * src/scan-skel.l: Adjust.
16957
16958 2001-12-30 Akim Demaille <akim@epita.fr>
16959
16960 * src/system.h: We don't need nor want bcopy.
16961 Throw away MS-DOS crap: we don't need getpid.
16962 * configure.in: We don't need strndup. It was even causing
16963 problems: because Flex includes the headers *before* us,
16964 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16965 not visible.
16966 * lib/xstrndup.c: New.
16967 * src/scan-skel.l: Use it.
16968 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16969 * src/parse-skel.y: Use %directives instead of #defines.
16970
16971 2001-12-30 Akim Demaille <akim@epita.fr>
16972
16973 * src/skeleton.h: New.
16974 * src/output.c (output_parser, output_master_parser): Remove, dead
16975 code.
16976 * src/output.h (get_lines_number, actions_output, guards_output)
16977 (token_definitions_output): Prototype them.
16978 * src/parse-skel.y: Add the license notice.
16979 Include output.h and skeleton.h.
16980 (process_skeleton): Returns void, and takes a single parameter.
16981 * src/scan-skel.l: Add the license notice.
16982 Include skeleton.h.
16983 Don't use %option yylineno: it seems that then Flex imagines
16984 REJECT has been used, and therefore it won't reallocate its
16985 buffers (which makes no other sense to me than a bug). It results
16986 in warnings for `unused: yy_flex_realloc'.
16987
16988 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16989
16990 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16991 (MUSCLE_INSERT_PREFIX): ...to there.
16992 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16993 (MUSCLE_INSERT_PREFIX): Move from here...
16994
16995 * src/bison.hairy: Add a section directive. Put braces around muscle
16996 names. This parser skeleton is still broken, but Bison should not
16997 choke on a bad muscle 'syntax'.
16998 * src/bison.simple: Add a section directive. Put braces around muscle
16999 names.
17000
17001 * src/files.h (strsuffix, stringappend): Add declarations.
17002 (tab_extension): Add declaration.
17003 (short_base_name): Add declaration.
17004
17005 * src/files.c (strsuffix, stringappend): No longer static. These
17006 functions are used in the skeleton parser.
17007 (tab_extension): New.
17008 (compute_base_names): Use the computations done in this function
17009 to guess if the generated parsers should have '.tab' in their
17010 names.
17011 (short_base_name): No longer static.
17012
17013 * src/output.c (output_skeleton): New.
17014 (output): Disable call to output_master_parser, and give a try to
17015 a new skeleton handling system.
17016 (guards_output, actions_output): No longer static.
17017 (token_definitions_output, get_lines_number): No longer static.
17018
17019 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17020
17021 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17022 parse-skel.y.
17023
17024 * src/parse-skel.y: New file.
17025 * src/scan-skel.l: New file.
17026
17027 2001-12-29 Akim Demaille <akim@epita.fr>
17028
17029 %name-prefix is broken.
17030
17031 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17032 Adjust all dependencies.
17033 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17034 %name-prefix.
17035
17036 Renaming yylval but not yylloc is not consistent. Now we do.
17037
17038 * src/bison.simple: Prefix yylloc if used.
17039 * doc/bison.texinfo (Decl Summary): Document that.
17040
17041 2001-12-29 Akim Demaille <akim@epita.fr>
17042
17043 * doc/bison.texinfo: Promote `%long-directive' over
17044 `%long_directive'.
17045 Remove all references to fixed-output-files, yacc is enough.
17046
17047 2001-12-29 Akim Demaille <akim@epita.fr>
17048
17049 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17050 user prologue. These are defaults.
17051 * tests/actions.at (Mid-rule actions): Make sure the user can
17052 define YYDEBUG and YYERROR_VERBOSE.
17053
17054 2001-12-29 Akim Demaille <akim@epita.fr>
17055
17056 * src/output.c (header_output): Don't forget to export YYLTYPE and
17057 yylloc.
17058 * tests/headers.at (export YYLTYPE): New, make sure it does.
17059 * tests/regression.at (%union and --defines, Invalid CPP headers):
17060 Move to...
17061 * tests/headers.at: here.
17062
17063 2001-12-29 Akim Demaille <akim@epita.fr>
17064
17065 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17066
17067 2001-12-29 Akim Demaille <akim@epita.fr>
17068
17069 * tests/actions.at (Mid-rule actions): Output on a single line
17070 instead of several.
17071
17072 2001-12-29 Akim Demaille <akim@epita.fr>
17073
17074 * doc/bison.texinfo: Formatting changes.
17075
17076 2001-12-29 Akim Demaille <akim@epita.fr>
17077
17078 Don't store the token defs in a muscle, just be ready to output it
17079 on command. Now possible via `symbols'. Fixes a memory leak.
17080
17081 * src/output.c (token_definitions_output): New.
17082 (output_parser, header_output): Use it.
17083 * src/reader.c (symbols_save): Remove.
17084
17085 2001-12-29 Akim Demaille <akim@epita.fr>
17086
17087 * src/bison.simple: Do not provide a default for YYSTYPE and
17088 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17089 default.
17090
17091 2001-12-29 Akim Demaille <akim@epita.fr>
17092
17093 Mid-rule actions are simply... ignored!
17094
17095 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17096 the empty-rule associated to the dummy symbol, not to the host
17097 rule.
17098 * tests/actions.at (Mid-rule actions): New.
17099
17100 2001-12-29 Akim Demaille <akim@epita.fr>
17101
17102 Memory leak.
17103
17104 * src/reader.c (reader): Free grammar.
17105
17106 2001-12-29 Akim Demaille <akim@epita.fr>
17107
17108 Memory leak.
17109
17110 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17111 since it allocates it for each state, although only one is needed.
17112 (allocate_storage): Do it here.
17113
17114 2001-12-29 Akim Demaille <akim@epita.fr>
17115
17116 * src/options.h, src/options.c (create_long_option_table): Rename
17117 as...
17118 (long_option_table_new): this, with a clearer prototype.
17119 (percent_table): Remove, unused,
17120 * src/getargs.c (getargs): Adjust.
17121
17122 2001-12-29 Akim Demaille <akim@epita.fr>
17123
17124 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17125 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17126 as states.
17127
17128 2001-12-29 Akim Demaille <akim@epita.fr>
17129
17130 * src/lalr.c (build_relations): Rename `states' as `states1'.
17131 Sorry, I don't understand exactly what it is, no better name...
17132
17133 2001-12-29 Akim Demaille <akim@epita.fr>
17134
17135 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17136 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17137 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17138 as rules.
17139
17140 2001-12-29 Akim Demaille <akim@epita.fr>
17141
17142 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17143 ago.
17144
17145 2001-12-29 Akim Demaille <akim@epita.fr>
17146
17147 * src/reader.c, src/reader.h (user_toknums): Remove.
17148 Adjust all users to use symbols[i]->user_token_number.
17149
17150 2001-12-29 Akim Demaille <akim@epita.fr>
17151
17152 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17153 Adjust all users to use symbols[i]->prec or ->assoc.
17154
17155 2001-12-29 Akim Demaille <akim@epita.fr>
17156
17157 * src/reader.c, src/reader.h (tags): Remove.
17158 Adjust all users to use symbols[i]->tag.
17159
17160 2001-12-29 Akim Demaille <akim@epita.fr>
17161
17162 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17163 and rule_table.
17164 * src/reader.c (packsymbols): Fill this table.
17165 Drop sprec.
17166 * src/conflicts.c (resolve_sr_conflict): Adjust.
17167 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17168 single table.
17169 Use symbols[i]->tag instead of tags[i].
17170
17171 2001-12-29 Akim Demaille <akim@epita.fr>
17172
17173 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17174 In addition, put a comment in there, to replace...
17175 * tests/regression.at (%union and C comments): Remove.
17176
17177 2001-12-29 Akim Demaille <akim@epita.fr>
17178
17179 * tests/regression.at (Web2c Actions): Blindly move the actual
17180 output as expected output. The contents *seem* right to me, but I
17181 can't pretend reading perfectly parser tables... Nonetheless, all
17182 the other tests pass correctly, the table look OK, even though the
17183 presence of `$axiom' is to be noted: AFAICS it is useless (but
17184 harmless).
17185
17186 2001-12-29 Akim Demaille <akim@epita.fr>
17187
17188 * src/reader.c (readgram): Don't add the rule 0 if there were no
17189 rules read. In other words, add it _after_ having performed
17190 grammar sanity checks.
17191 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17192
17193 2001-12-29 Akim Demaille <akim@epita.fr>
17194
17195 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17196 visible, and some states have now a different number.
17197
17198 2001-12-29 Akim Demaille <akim@epita.fr>
17199
17200 * src/reader.c (readgram): Bind the initial rule's lineno to that
17201 of the first rule.
17202 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17203 (Solved SR Conflicts): Adjust rule 0's line number.
17204
17205 2001-12-29 Akim Demaille <akim@epita.fr>
17206
17207 Fix the `GAWK Grammar' failure.
17208
17209 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17210 the reductions of the first state which was mistakenly confused
17211 with the final state because precisely final_state was initialized
17212 to 0.
17213 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17214 now noticed by Bison.
17215 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17216 have a reduction on $default.
17217
17218 2001-12-29 Akim Demaille <akim@epita.fr>
17219
17220 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17221 rule line numbers.
17222 * src/closure.c (print_closure): Likewise.
17223 * src/derives.c (print_derives): Likewise.
17224 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17225 now.
17226
17227 2001-12-29 Akim Demaille <akim@epita.fr>
17228
17229 * src/lalr.c (lookaheads_print): New.
17230 (lalr): Call it when --trace-flag.
17231 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17232 are dumped.
17233
17234 2001-12-29 Akim Demaille <akim@epita.fr>
17235
17236 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17237 when walking through ritem, even via rule->rhs.
17238 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17239 (useful_production, useless_nonterminals): Likewise.
17240 (reduce_grammar_tables): Likewise, plus update nritems.
17241 * src/nullable.c (set_nullable): Likewise.
17242 * src/lalr.c (build_relations): Likewise.
17243 * tests/sets.at (Nullable): Adjust.
17244 Fortunately, now, the $axiom is no longer nullable.
17245
17246 2001-12-29 Akim Demaille <akim@epita.fr>
17247
17248 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17249 the 0-sentinel.
17250 * src/gram.c (ritem_longest_rhs): Likewise.
17251 * src/reduce.c (nonterminals_reduce): Likewise.
17252 * src/print_graph.c (print_graph): Likewise.
17253 * src/output.c (output_rule_data): Likewise.
17254 * src/nullable.c (set_nullable): Likewise.
17255
17256 2001-12-29 Akim Demaille <akim@epita.fr>
17257
17258 * src/output.c: Comment changes.
17259
17260 2001-12-27 Paul Eggert <eggert@twinsun.com>
17261
17262 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17263 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17264 Sparc, as they were causing more porting problems than the
17265 (minor) performance improvement was worth.
17266
17267 Also, catch up with 1.31's YYSTD.
17268
17269 2001-12-27 Akim Demaille <akim@epita.fr>
17270
17271 * src/output.c (output_gram): Rely on nritems, not the
17272 0-sentinel. See below.
17273 Use -1 as separator, not 0.
17274 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17275 Rely on -1 as separator in yyrhs, instead of 0.
17276 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17277 twice `Now at end of input', therefore there are two lines less to
17278 expect.
17279
17280 2001-12-27 Akim Demaille <akim@epita.fr>
17281
17282 * tests/regression.at (Unresolved SR Conflicts):
17283 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17284 below.
17285
17286 2001-12-27 Akim Demaille <akim@epita.fr>
17287
17288 * src/LR0.c (new_state): Recognize the final state by the fact it
17289 is reached by eoftoken.
17290 (insert_start_shifting_state, insert_eof_shifting_state)
17291 (insert_accepting_state, augment_automaton): Remove, since now
17292 these states are automatically computed from the initial state.
17293 (generate_states): Adjust.
17294 * src/print.c: When reporting a rule number to the user, substract
17295 1, so that the axiom rule is rule 0, and the first user rule is 1.
17296 * src/reduce.c: Likewise.
17297 * src/print_graph.c (print_core): For the time being, just as for
17298 the report, depend upon --trace-flags to dump the full set of
17299 items.
17300 * src/reader.c (readgram): Once the grammar read, insert the rule
17301 0: `$axiom: START-SYMBOL $'.
17302 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17303 number of the states has changed (the final state is no longer
17304 necessarily the last), catch up.
17305
17306 2001-12-27 Akim Demaille <akim@epita.fr>
17307
17308 Try to make the use of the eoftoken valid. Given that its value
17309 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17310 is used instead of > 0 where appropriate, (ii), depend upon nritems
17311 instead of the 0-sentinel.
17312
17313 * src/gram.h, src/gram.c (nritems): New.
17314 Expected to be duplication of nitems, but for the time being...
17315 * src/reader.c (packgram): Assert nritems and nitems are equal.
17316 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17317 * src/closure.c (print_closure, print_fderives): Likewise.
17318 * src/gram.c (ritem_print): Likewise.
17319 * src/print.c (print_core, print_grammar): Likewise.
17320 * src/print_graph.c: Likewise.
17321
17322 2001-12-27 Akim Demaille <akim@epita.fr>
17323
17324 * src/main.c (main): If there are complains after grammar
17325 reductions, then output the report anyway if requested, then die.
17326 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17327 * src/reader.c (eoftoken): New.
17328 (parse_token_decl): If the token being defined has value `0', it
17329 is the eoftoken.
17330 (packsymbols): No longer hack `tags' to insert `$' by hand.
17331 Be sure to preserve the value of the eoftoken.
17332 (reader): Make sure eoftoken is defined.
17333 Initialize nsyms to 0: now eoftoken is created just like the others.
17334 * src/print.c (print_grammar): Don't special case the eof token.
17335 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17336 lie anyway, albeit pleasant.
17337 * tests/calc.at: Exercise error messages with eoftoken.
17338 Change the grammar so that empty input is invalid.
17339 Adjust expectations.
17340 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17341
17342 2001-12-27 Akim Demaille <akim@epita.fr>
17343
17344 * configure.in: Check the protos of strchr ans strspn.
17345 Replace strchr if needed.
17346 * src/system.h: Provide the protos of strchr, strspn and memchr if
17347 missing.
17348 * lib/strchr.c: New.
17349 * src/reader.c (symbols_save): Use strchr.
17350
17351 2001-12-27 Akim Demaille <akim@epita.fr>
17352
17353 * src/print.c, src/print_graph.c (escape): New.
17354 Use it to quote the TAGS outputs.
17355 * src/print_graph.c (print_state): Now errors are in red, and
17356 reductions in green.
17357 Prefer high to wide: output the state number on a line of its own.
17358
17359 2001-12-27 Akim Demaille <akim@epita.fr>
17360
17361 * src/state.h, src/state.c (reductions_new): New.
17362 * src/LR0.c (set_state_table): Let all the states have a
17363 `reductions', even if reduced to 0.
17364 (save_reductions): Adjust.
17365 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17366 * src/print.c (print_reductions, print_actions): Adjust.
17367 * src/output.c (action_row): Adjust.
17368
17369 2001-12-27 Akim Demaille <akim@epita.fr>
17370
17371 * src/state.h, src/state.c (errs_new, errs_dup): New.
17372 * src/LR0.c (set_state_table): Let all the states have an errs,
17373 even if reduced to 0.
17374 * src/print.c (print_errs, print_reductions): Adjust.
17375 * src/output.c (output_actions, action_row): Adjust.
17376 * src/conflicts.c (resolve_sr_conflict): Adjust.
17377
17378 2001-12-27 Akim Demaille <akim@epita.fr>
17379
17380 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17381
17382 2001-12-27 Akim Demaille <akim@epita.fr>
17383
17384 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17385 * src/print.c: here.
17386 (lookaheadset, shiftset): New, used as additional storage by
17387 print_reductions.
17388 (print_results): Adjust.
17389 (print_shifts, print_gotos, print_errs): New, extracted from...
17390 (print_actions): here.
17391 * src/print_graph.c (print_actions): Remove dead code.
17392
17393 2001-12-27 Akim Demaille <akim@epita.fr>
17394
17395 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17396 `$n' and `@n'.
17397
17398 2001-12-27 Akim Demaille <akim@epita.fr>
17399
17400 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17401 (build_relations): Adjust.
17402
17403 2001-12-27 Akim Demaille <akim@epita.fr>
17404
17405 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17406 duplication.
17407
17408 2001-12-27 Akim Demaille <akim@epita.fr>
17409
17410 * src/reader.c (packgram): Catch nitems overflows.
17411
17412 2001-12-27 Akim Demaille <akim@epita.fr>
17413
17414 * src/files.c, src/files.h (guard_obstack): Remove.
17415 * src/output.c (output): Adjust.
17416 * src/reader.c (parse_braces): New, factoring...
17417 (copy_action, copy_guard): these two which are renamed as...
17418 (parse_action, parse_guard): these.
17419 As a voluntary consequence, using braces around guards is now
17420 mandatory.
17421
17422 2001-12-27 Akim Demaille <akim@epita.fr>
17423
17424 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17425 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17426 members.
17427 (symbol_list_new): Adjust.
17428 (copy_action): action_line is the first line, not the last.
17429 (copy_guard): Just as for actions, store the `action' only, not
17430 the switch/case/break flesh.
17431 Don't parse the user action that might follow the guard, let...
17432 (readgram): do it, i.e., now, there can be an action after a
17433 guard.
17434 In other words the guard is just explicitly optional.
17435 (packgram): Adjust.
17436 * src/output.c (guards_output): New.
17437 (output_parser): Call it when needed.
17438 (output): Also free the guard and attrs obstacks.
17439 * src/files.c, src/files.h (obstack_save): Remove.
17440 (output_files): Remove.
17441 As a result, if one needs the former `.act' file, using an
17442 appropriate skeleton which requires actions and guards is now
17443 required.
17444 * src/main.c (main): Adjust.
17445 * tests/semantic.at: New.
17446 * tests/regression.at: Use `input.y' as input file name.
17447 Avoid 8+3 problems by requiring input.c when the test needs the
17448 parser.
17449
17450 2001-12-27 Akim Demaille <akim@epita.fr>
17451
17452 * src/reader.c (symbol_list_new): Be sure to initialize all the
17453 fields.
17454
17455 2001-12-27 Akim Demaille <akim@epita.fr>
17456
17457 All the hacks using a final pseudo state are now useless.
17458
17459 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17460 * src/lalr.c (nLA): New.
17461 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17462 instead of lookaheadsp from the pseudo state (nstate + 1).
17463
17464 2001-12-27 Akim Demaille <akim@epita.fr>
17465
17466 * src/output.c (action_row, token_actions): Use a state_t instead
17467 of a integer, and nlookaheads instead of the following state's
17468 lookaheadsp.
17469
17470 2001-12-27 Akim Demaille <akim@epita.fr>
17471
17472 * src/conflicts.c (log_resolution, flush_shift)
17473 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17474 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17475 (conflicts_print, print_reductions): Use a state_t instead of an
17476 integer when referring to a state.
17477 As much as possible, depend upon nlookaheads, instead of the
17478 `lookaheadsp' member of the following state (since lookaheads of
17479 successive states are successive, the difference between state n + 1
17480 and n served as the number of lookaheads for state n).
17481 * src/lalr.c (add_lookback_edge): Likewise.
17482 * src/print.c (print_core, print_actions, print_state)
17483 (print_results): Likewise.
17484 * src/print_graph.c (print_core, print_actions, print_state)
17485 (print_graph): Likewise.
17486 * src/conflicts.h: Adjust.
17487
17488 2001-12-27 Akim Demaille <akim@epita.fr>
17489
17490 * src/bison.hairy: Formatting/comment changes.
17491 ANSIfy.
17492 Remove `register' indications.
17493 Add plenty of `static'.
17494
17495 2001-12-27 Akim Demaille <akim@epita.fr>
17496
17497 * src/output.c (prepare): Drop the muscle `ntbase' which
17498 duplicates ntokens.
17499 * src/bison.simple: Formatting/comment changes.
17500 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17501 is an undocumented synonym.
17502
17503 2001-12-22 Akim Demaille <akim@epita.fr>
17504
17505 * src/output.c (output_table_data): Change the prototype to use
17506 `int' for array ranges: some invocations do pass an int, not a
17507 short.
17508 Reported by Wayne Green.
17509
17510 2001-12-22 Akim Demaille <akim@epita.fr>
17511
17512 Some actions of web2c.y are improperly triggered.
17513 Reported by Mike Castle.
17514
17515 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17516 * tests/regression.at (Web2c): Rename as...
17517 (Web2c Report): this.
17518 (Web2c Actions): New.
17519
17520 2001-12-22 Akim Demaille <akim@epita.fr>
17521
17522 Reductions in web2c.y are improperly reported.
17523 Reported by Mike Castle.
17524
17525 * src/conflicts.c (print_reductions): Fix.
17526 * tests/regression.at (Web2c): New.
17527
17528 2001-12-18 Akim Demaille <akim@epita.fr>
17529
17530 Some host fail on `assert (!"foo")', which expands to
17531 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17532 Reported by Nelson Beebee.
17533
17534 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17535 `#define it_succeeded 0' and `assert (it_succeeded)'.
17536
17537 2001-12-17 Marc Autret <autret_m@epita.fr>
17538
17539 * src/bison.simple: Don't hard code the skeleton line and filename.
17540 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17541 New line counter 'skeleton_line' (skeleton-line muscle).
17542
17543 2001-12-17 Paul Eggert <eggert@twinsun.com>
17544
17545 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17546 YYDEBUG must be defined to a nonzero value.
17547
17548 * src/bison.simple (yytname): Do not assume that the user defines
17549 YYDEBUG to a properly parenthesized expression.
17550
17551 2001-12-17 Akim Demaille <akim@epita.fr>
17552
17553 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17554 nlookaheads is a new member.
17555 Adjust all users.
17556 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17557 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17558 state.
17559
17560 2001-12-17 Akim Demaille <akim@epita.fr>
17561
17562 * src/files.h, src/files.c (open_files, close_files): Remove.
17563 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17564 let...
17565 * src/reader.c (reader): Do it.
17566
17567 2001-12-17 Akim Demaille <akim@epita.fr>
17568
17569 * src/conflicts.c (print_reductions): Formatting changes.
17570
17571 2001-12-17 Akim Demaille <akim@epita.fr>
17572
17573 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17574 (flush_reduce): New.
17575 (resolve_sr_conflict): Adjust.
17576
17577 2001-12-17 Akim Demaille <akim@epita.fr>
17578
17579 * src/output.c (output_obstack): Be static and rename as...
17580 (format_obstack): this, to avoid any confusion with files.c's
17581 output_obstack.
17582 * src/reader.h (muscle_obstack): Move to...
17583 * src/output.h: here, since it's defined in output.c.
17584
17585 2001-12-17 Akim Demaille <akim@epita.fr>
17586
17587 * src/output.c (action_row, save_column, default_goto)
17588 (sort_actions, matching_state, pack_vector): Better variable
17589 locality.
17590
17591 2001-12-17 Akim Demaille <akim@epita.fr>
17592
17593 * src/output.c: Various formatting changes.
17594
17595 2001-12-17 Akim Demaille <akim@epita.fr>
17596
17597 * src/files.c (output_files): Free the output_obstack.
17598 * src/main.c (main): Call print and print_graph conditionally.
17599 * src/print.c (print): Work unconditionally.
17600 * src/print_graph.c (print_graph): Work unconditionally.
17601 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17602
17603 2001-12-16 Marc Autret <autret_m@epita.fr>
17604
17605 * src/output.c (actions_output): Fix. When we use %no-lines,
17606 there is one less line per action.
17607
17608 2001-12-16 Marc Autret <autret_m@epita.fr>
17609
17610 * src/bison.simple: Remove a useless #line directive.
17611 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17612 * src/output.c (get_lines_number): New.
17613 (output_parser): Adjust, now takes care about the lines of a
17614 output muscles.
17615 Fix line numbering.
17616 (actions_output): Computes the number of lines taken by actions.
17617 (output_master_parser): Insert new skeleton which is the name of
17618 the output parser file name.
17619
17620 2001-12-15 Marc Autret <autret_m@epita.fr>
17621
17622 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17623
17624 2001-12-15 Marc Autret <autret_m@epita.fr>
17625
17626 * src/output.c (output_gram): Keep track of the hairy one.
17627
17628 2001-12-15 Akim Demaille <akim@epita.fr>
17629
17630 Make `make distcheck' work.
17631
17632 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17633 system.h which uses libgettext.h.
17634
17635 2001-12-15 Akim Demaille <akim@epita.fr>
17636
17637 * src/nullable.c (set_nullable): Useless rules must be skipped,
17638 otherwise, since we range over their symbols, we might look at a
17639 nonterminal which no longer ``exists'', i.e., it is not counted in
17640 `nvars', hence we overflow our arrays.
17641
17642 2001-12-15 Akim Demaille <akim@epita.fr>
17643
17644 The header can also be produced directly, without any obstack!
17645 Yahoo!
17646
17647 * src/files.c, src/files.h (defines_obstack): Remove.
17648 (compute_header_macro): Global.
17649 (defines_obstack_save): Remove.
17650 * src/reader.c (parse_union_decl): No longer output to
17651 defines_obstack: its content can be found in the `stype' muscle
17652 anyway.
17653 (output_token_translations): Merge into...
17654 (symbols_output): this.
17655 Rename as...
17656 (symbols_save): this.
17657 (reader): Adjust.
17658 * src/output.c (header_output): New.
17659 (output): Call it.
17660
17661 2001-12-15 Akim Demaille <akim@epita.fr>
17662
17663 * src/reader.c (parse_union_decl): Instead of handling two obstack
17664 simultaneously, use one to define the `stype' muscle, and use the
17665 value of the latter to fill defines_obstack.
17666 (copy_comment): Remove.
17667 (copy_comment2): Work for a single obstack.
17668 Rename as...
17669 (copy_comment): this.
17670
17671 2001-12-15 Akim Demaille <akim@epita.fr>
17672
17673 * src/lex.c, src/lex.h (xgetc): No longer static.
17674 * src/reader.c (parse_union_decl): Revamp.
17675
17676 2001-12-15 Akim Demaille <akim@epita.fr>
17677
17678 Still making progress in separating Bison into (i) input, (ii)
17679 process, (iii) output: now we can directly output the parser file
17680 without using table_obstack at all.
17681
17682 * src/files.c, src/files.h (table_obstack): Bye bye.
17683 (parser_file_name): New.
17684 * src/files.c (compute_output_file_names): Compute it.
17685 * src/output.c (actions_output, output_parser)
17686 (output_master_parser): To a file instead of an obstack.
17687
17688 2001-12-15 Akim Demaille <akim@epita.fr>
17689
17690 Attach actions to rules, instead of pre-outputting them to
17691 actions_obstack.
17692
17693 * src/gram.h (rule_t): action and action_line are new members.
17694 * src/reader.c (symbol_list): Likewise.
17695 (copy_action): Save the actions within the rule.
17696 (packgram): Save them in rule_table.
17697 * src/output.c (actions_output): New.
17698 (output_parser): Use it on `%%actions'.
17699 (output_rule_data): Don't free rule_table.
17700 (output): Do it.
17701 (prepare): Don't save the `action' muscle.
17702 * src/bison.simple: s/%%action/%%actions/.
17703
17704 2001-12-15 Akim Demaille <akim@epita.fr>
17705
17706 * src/reader.c (copy_action): When --yacc, don't append a `;'
17707 to the user action: let it fail if lacking.
17708 Suggested by Arnold Robbins and Tom Tromey.
17709
17710 2001-12-14 Akim Demaille <akim@epita.fr>
17711
17712 * src/lex.c (literalchar): Simply return the char you decoded, non
17713 longer mess around with obstacks and int pointers.
17714 Adjust all callers.
17715
17716 2001-12-14 Akim Demaille <akim@epita.fr>
17717
17718 * src/lex.c (literalchar): Don't escape the special characters,
17719 just decode them, and keep them as char (before, eol was output as
17720 the 2 char string `\n' etc.).
17721 * src/output.c (output_rule_data): Use quotearg to output the
17722 token strings.
17723
17724 2001-12-13 Paul Eggert <eggert@twinsun.com>
17725
17726 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17727 Do not infringe on the global user namespace when using C++.
17728 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17729 All uses of `fprintf' and `stderr' changed.
17730
17731 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17732
17733 2001-12-13 Akim Demaille <akim@epita.fr>
17734
17735 The computation of nullable is broken: it doesn't handle empty
17736 RHS's properly.
17737
17738 * tests/torture.at (GNU AWK Grammar): New.
17739 * tests/sets.at (Nullable): New.
17740 * src/nullable.c (set_nullable): Instead of blindly looping over
17741 `ritems', loop over the rules, and then over their rhs's.
17742
17743 Work around Autotest bugs.
17744
17745 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17746 frame, because Autotest understand lines starting with a `+' as
17747 traces from the shell. Then, they are not processed properly.
17748 Admittedly an Autotest bug, but we don't have time to wait for
17749 Autotest to catch up.
17750 * tests/regression.at (Broken Closure): Adjust to the new table
17751 frames.
17752 Move to...
17753 * tests/sets.at: here.
17754
17755 2001-12-13 Akim Demaille <akim@epita.fr>
17756
17757 * src/closure.c (closure): Use nrules instead of playing tricks
17758 with BITS_PER_WORD.
17759
17760 2001-12-13 Akim Demaille <akim@epita.fr>
17761
17762 * src/print.c (print_actions): Output the handling of `$' as the
17763 traces do: shifting the token EOF. Before EOF was treated as a
17764 nonterminal.
17765 * tests/regression.at: Adjust some tests.
17766 * src/print_graph.c (print_core): Complete the set of items via
17767 closure. The next-to-final and final states are still unsatisfying,
17768 but that's to be addressed elsewhere.
17769 No longer output the rule numbers, but do output the state number.
17770 A single loop for the shifts + gotos is enough, but picked a
17771 distinct color for each.
17772 (print_graph): Initialize and finalize closure.
17773
17774 2001-12-13 Akim Demaille <akim@epita.fr>
17775
17776 * src/reader.c (readgram): Remove dead code, an strip useless
17777 braces.
17778 (get_type): Remove, unused.
17779
17780 2001-12-12 Akim Demaille <akim@epita.fr>
17781
17782 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17783 on that of lib/error.c.
17784
17785 2001-12-12 Akim Demaille <akim@epita.fr>
17786
17787 Some hosts don't like `/' in includes.
17788
17789 * src/system.h: Include libgettext.h without qualifying the path.
17790 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17791 $(top_srcdir).
17792
17793 2001-12-11 Marc Autret <autret_m@epita.fr>
17794
17795 * src/output.c (output_parser): Remove useless muscle.
17796
17797 2001-12-11 Marc Autret <autret_m@epita.fr>
17798
17799 * src/bison.simple: Remove #line just before %%epilogue. It
17800 is now handled in ...
17801 * src/reader.c (read_additionnal_code): Add the output of a
17802 #line for the epilogue.
17803
17804 2001-12-10 Marc Autret <autret_m@epita.fr>
17805
17806 * src/reader.c (copy_definition): Re-use CPP-outed code which
17807 replace precedent remove.
17808 * src/bison.simple: Remove #line before %%prologue because
17809 %%input-line is wrong at this time.
17810
17811 2001-12-10 Marc Autret <autret_m@epita.fr>
17812
17813 * src/reader.c (symbols_output): Clean up.
17814 * src/output.c (output_gram, output): Clean up.
17815
17816 2001-12-10 Akim Demaille <akim@epita.fr>
17817
17818 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17819 * src/LR0.c (set_state_table): here.
17820 * src/lalr.c (lalr): Call it.
17821
17822 2001-12-10 Akim Demaille <akim@epita.fr>
17823
17824 * src/state.h (shifts): Remove the `number' member: shifts are
17825 attached to state, hence no longer need to be labelled with a
17826 state number.
17827
17828 2001-12-10 Akim Demaille <akim@epita.fr>
17829
17830 Now that states have a complete set of members, the linked list of
17831 shifts is useless: just fill directly the state's shifts member.
17832
17833 * src/state.h (shifts): Remove the `next' member.
17834 * src/LR0.c (first_state, last_state): Remove.
17835 Adjust the callers.
17836 (augment_automaton): Don't look for the shifts that must be added
17837 a shift on EOF: it is those of the state we looked for! But now,
17838 since shifts are attached, it is no longer needed to looking
17839 merely by its id: its number.
17840
17841 2001-12-10 Akim Demaille <akim@epita.fr>
17842
17843 * src/LR0.c (augment_automaton): Better variable locality.
17844 Remove an impossible branch: if there is a state corresponding to
17845 the start symbol being shifted, then there is shift for the start
17846 symbol from the initial state.
17847
17848 2001-12-10 Akim Demaille <akim@epita.fr>
17849
17850 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17851 only when appropriate: when insert_start_shifting_state' is not
17852 invoked.
17853 * tests/regression.at (Rule Line Numbers): Adjust.
17854
17855 2001-12-10 Akim Demaille <akim@epita.fr>
17856
17857 * src/LR0.c (augment_automaton): Now that all states have shifts,
17858 merge the two cases addition shifts to the initial state.
17859
17860 2001-12-10 Akim Demaille <akim@epita.fr>
17861
17862 * src/lalr.c (set_state_table): Move to...
17863 * src/LR0.c: here.
17864 * src/lalr.c (lalr): Don't call it...
17865 * src/LR0.c (generate_states): do it.
17866 * src/LR0.h (first_state): Remove, only the table is used.
17867
17868 2001-12-10 Akim Demaille <akim@epita.fr>
17869
17870 * src/LR0.h (first_shift, first_reduction): Remove.
17871 * src/lalr.c: Don't use first_shift: find shifts through the
17872 states.
17873
17874 2001-12-10 Akim Demaille <akim@epita.fr>
17875
17876 * src/LR0.c: Attach shifts to states as soon as they are
17877 computed.
17878 * src/lalr.c (set_state_table): Instead of assigning shifts to
17879 state, just assert that the mapping was properly done.
17880
17881 2001-12-10 Akim Demaille <akim@epita.fr>
17882
17883 * src/LR0.c (insert_start_shift): Rename as...
17884 (insert_start_shifting_state): this.
17885 (insert_eof_shifting_state, insert_accepting_state): New.
17886 (augment_automaton): Adjust.
17887 Better locality of the variables.
17888 When looking if the start_symbol is shifted from the initial
17889 state, using `while (... symbol != start_symbol ...)' sounds
17890 better than `while (... symbol < start_symbol ...)': If fail
17891 to see how the order between symbols could be relevant!
17892
17893 2001-12-10 Akim Demaille <akim@epita.fr>
17894
17895 * src/getargs.h: Don't declare `spec_name_prefix' and
17896 `spec_file_prefix', declared by src/files.h.
17897 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17898 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17899 * src/output.c (prepare): Adjust.
17900 * src/reader.c (symbols_output): Likewise.
17901 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17902
17903 2001-12-10 Akim Demaille <akim@epita.fr>
17904
17905 * src/muscle_tab.c (muscle_init): NULL is a better default than
17906 `"0"'.
17907
17908 2001-12-10 Akim Demaille <akim@epita.fr>
17909
17910 * src/reader.c (reader): Calling symbols_output once is enough.
17911
17912 2001-12-10 Akim Demaille <akim@epita.fr>
17913
17914 Now that states have a complete set of members, the linked list of
17915 reductions is useless: just fill directly the state's reductions
17916 member.
17917
17918 * src/state.h (struct reductions): Remove member `number' and
17919 `next'.
17920 * src/LR0.c (first_reduction, last_reduction): Remove.
17921 (save_reductions): Don't link the new reductions, store them in
17922 this_state.
17923 * src/lalr.c (set_state_table): No need to attach reductions to
17924 states, it's already done.
17925 * src/output.c (output_actions): No longer free the shifts, then
17926 the reductions, then the states: free all the states and their
17927 members.
17928
17929 2001-12-10 Akim Demaille <akim@epita.fr>
17930
17931 * src/options.c (OPTN, DRTV, BOTH): New.
17932 (option_table): Use them.
17933
17934 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17935 the job of system.h.
17936 * src/options.c: Don't include stdio.h and xalloc.h for the same
17937 reasons.
17938
17939 2001-12-10 Akim Demaille <akim@epita.fr>
17940
17941 * src/output.c (output, prepare): Make sure the values of the
17942 muscles `action' and `prologue' are 0-terminated.
17943
17944 2001-12-10 Akim Demaille <akim@epita.fr>
17945
17946 Clean up GCC warnings.
17947
17948 * src/reader.c (copy_action): `buf' is not used.
17949 (parse_skel_decl): Be static.
17950 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17951 * src/options.h (create_long_option_table): Have a real prototype.
17952 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17953 (hash_delete_at): Return const void *.
17954 Adjust casts to preserve the const.
17955
17956 2001-12-10 Akim Demaille <akim@epita.fr>
17957
17958 * configure.in: Require 2.52g.
17959 M4 is not needed, but AUTOM4TE is.
17960 * m4/m4.m4: Remove.
17961 * tests/Makefile.am: Adjust.
17962
17963 2001-12-10 Akim Demaille <akim@epita.fr>
17964
17965 One structure for states is enough, even though theoretically
17966 there are LR(0) states and LALR(1) states.
17967
17968 * src/lalr.h (state_t): Remove.
17969 (state_table): Be state_t **, not state_t *.
17970 * src/state.h (core, CORE_ALLOC): Rename as...
17971 (state_t, STATE_ALLOC): this.
17972 Add the LALR(1) members: shifts, reductions, errs.
17973 * src/LR0.c (state_table): Rename as...
17974 (state_hash): this, to avoid name clashes with the global
17975 `state_table'.
17976 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17977 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17978
17979 2001-12-10 Akim Demaille <akim@epita.fr>
17980
17981 Bison dumps core on bash.y.
17982 Reported by Pascal Bart.
17983
17984 * src/warshall.c (bitmatrix_print): New.
17985 (TC): Use it.
17986 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17987 j must be the outer loop.
17988 * tests/regression.at (Broken Closure): New.
17989
17990 2001-12-05 Akim Demaille <akim@epita.fr>
17991
17992 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17993 its argument.
17994 Reported by Peter Hamorsky.
17995
17996 2001-12-05 Akim Demaille <akim@epita.fr>
17997
17998 * src/conflicts.c (err_table): Remove.
17999 (resolve_sr_conflict): Adjust.
18000 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18001 Rename as...
18002 (state_t.reductions, state_t.shifts): this.
18003
18004 2001-12-05 Akim Demaille <akim@epita.fr>
18005
18006 * src/reduce.c (reduce_grammar_tables): No longer disable the
18007 removal of useless rules via CPP but via `if (0)', so that the
18008 compiler still check the code is valid.
18009 For instance, it should have noticed `rline' no longer exists: use
18010 the `line' member of rule_t.
18011 * src/gram.c (dummy, rline): Remove, unused.
18012
18013 2001-12-05 Akim Demaille <akim@epita.fr>
18014
18015 * src/output.c (pack_vector): Use assert, not berror.
18016 * src/main.c (berror): Remove, unused.
18017
18018 2001-12-05 Akim Demaille <akim@epita.fr>
18019
18020 New experimental feature: if --verbose --trace output all the
18021 items of a state, not only its kernel.
18022
18023 * src/print.c (print_core): If `trace_flag', then invoke closure
18024 before outputting the items of the state (print_core is no longer
18025 a correct name them).
18026 (print_results): Invoke new_closure/free_closure if needed.
18027
18028 2001-12-05 Akim Demaille <akim@epita.fr>
18029
18030 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18031 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18032 (nitemset): for consistency with the rest of the project.
18033
18034 2001-12-05 Akim Demaille <akim@epita.fr>
18035
18036 * src/closure.c (print_closure): Improve.
18037 (closure): Use it for printing input and output.
18038
18039 2001-12-05 Akim Demaille <akim@epita.fr>
18040
18041 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18042 indexed by nonterminals.
18043
18044 2001-12-05 Akim Demaille <akim@epita.fr>
18045
18046 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18047 what it was!).
18048 * src/warshall.h: Remove accidental duplication of the content.
18049
18050 2001-12-05 Akim Demaille <akim@epita.fr>
18051
18052 * src/closure.c (set_fderives): De-obfuscate.
18053
18054 2001-12-05 Akim Demaille <akim@epita.fr>
18055
18056 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18057
18058 2001-12-05 Akim Demaille <akim@epita.fr>
18059
18060 * src/closure.c (set_firsts): De-obfuscate.
18061
18062 2001-12-05 Akim Demaille <akim@epita.fr>
18063
18064 * src/output.c (action_row): De-obfuscate
18065 using the good o' techniques: arrays not pointers, variable
18066 locality, BITISSET, RESETBIT etc.
18067
18068 2001-12-05 Akim Demaille <akim@epita.fr>
18069
18070 Pessimize the code to simplify it: from now on, all the states
18071 have a valid SHIFTS, which NSHIFTS is possibly 0.
18072
18073 * src/LR0.c (shifts_new): Be global and move to..
18074 * src/state.c, src/state.h: here.
18075 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18076 * src/print_graph: Adjust.
18077
18078 2001-12-05 Akim Demaille <akim@epita.fr>
18079
18080 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18081 * src/conflicts.c: Use it.
18082 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18083 incorrectly ``simplified''.
18084
18085 2001-12-05 Akim Demaille <akim@epita.fr>
18086
18087 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18088 using the good o' techniques: arrays not pointers, variable
18089 locality, BITISSET, RESETBIT etc.
18090
18091 2001-12-05 Akim Demaille <akim@epita.fr>
18092
18093 * src/state.h (SHIFT_SYMBOL): New.
18094 * src/conflicts.c: Use it to deobfuscate.
18095
18096 2001-12-05 Akim Demaille <akim@epita.fr>
18097
18098 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18099 (print_reductions): De-obfuscate using the good o' techniques:
18100 arrays not pointers, variable locality, BITISSET.
18101
18102 2001-12-05 Akim Demaille <akim@epita.fr>
18103
18104 * src/conflicts.c (print_reductions): Arrays, not pointers.
18105 Use BITISSET.
18106
18107 2001-12-05 Akim Demaille <akim@epita.fr>
18108
18109 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18110
18111 2001-12-05 Akim Demaille <akim@epita.fr>
18112
18113 * src/conflicts.c (print_reductions): Improve variable locality.
18114
18115 2001-12-05 Akim Demaille <akim@epita.fr>
18116
18117 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18118
18119 2001-12-05 Akim Demaille <akim@epita.fr>
18120
18121 * src/conflicts.c (print_reductions): Improve variable locality.
18122
18123 2001-12-05 Akim Demaille <akim@epita.fr>
18124
18125 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18126 * src/lalr.c: Use them.
18127
18128 2001-12-05 Akim Demaille <akim@epita.fr>
18129
18130 * src/LR0.c (augment_automaton): Formatting changes.
18131 Better variable locality.
18132
18133 2001-12-05 Akim Demaille <akim@epita.fr>
18134
18135 * src/lalr.c (matrix_print): New.
18136 (transpose): Use it.
18137 Use arrays instead of pointers.
18138
18139 2001-12-05 Akim Demaille <akim@epita.fr>
18140
18141 * src/lalr.c (maxrhs): Move to...
18142 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18143 * src/lalr.c (build_relations): Adjust.
18144
18145 2001-12-05 Akim Demaille <akim@epita.fr>
18146
18147 * src/lalr.c (transpose): Free the memory allocated to the
18148 argument, as it is replaced by the results by the unique caller.
18149 (build_relations): Merely invoke transpose: it handles the memory
18150 deallocation.
18151 Improve variable locality.
18152 Avoid variables used as mere abbreviations.
18153 (compute_lookaheads): Use arrays instead of pointers.
18154
18155 2001-12-05 Akim Demaille <akim@epita.fr>
18156
18157 * src/lalr.c (initialize_F): Improve variable locality.
18158 Avoid variables used as mere abbreviations.
18159
18160 2001-12-05 Akim Demaille <akim@epita.fr>
18161
18162 * src/derives.c (print_derives): Display the ruleno.
18163 * src/lalr.c (initialize_F, transpose): Better variable locality
18164 to improve readability.
18165 Avoid variables used as mere abbreviations.
18166
18167 2001-12-05 Akim Demaille <akim@epita.fr>
18168
18169 * src/lalr.c (traverse): Use arrays instead of pointers.
18170
18171 2001-12-05 Akim Demaille <akim@epita.fr>
18172
18173 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18174 the handling of squeue.
18175 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18176
18177 2001-12-05 Akim Demaille <akim@epita.fr>
18178
18179 Because useless nonterminals are now kept alive (instead of being
18180 `destroyed'), we now sometimes examine them, and store information
18181 related to them. Hence we need to know their number, and adjust
18182 memory allocations.
18183
18184 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18185 static.
18186 * src/LR0.c (allocate_itemsets): The memory allocated to
18187 `symbol_count' was used for two different purpose: once to count
18188 the number of occurrences of each symbol, and later reassigned to
18189 `shift_symbol', containing the symbol that can be shifted from a
18190 given state.
18191 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18192 only, and...
18193 (new_itemsets): Allocate `shift_symbol' here.
18194 (allocate_itemsets): symbol_count includes useless nonterminals.
18195 Make room for them.
18196 (free_storage): Use `free', not `XFREE', for pointers that cannot
18197 be null.
18198
18199 2001-12-05 Akim Demaille <akim@epita.fr>
18200
18201 * src/nullable.c (set_nullable): Deobfuscate the handling of
18202 ritem.
18203 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18204
18205 2001-12-05 Akim Demaille <akim@epita.fr>
18206
18207 * src/gram.c, src/gram.h (ritem_print): New.
18208 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18209 (This useless function was defined only to work around VMS linkers
18210 that can't handle compilation units with variables only).
18211 * src/reduce.c (dump_grammar): Use it to trace the construction of
18212 ritem.
18213
18214 2001-12-04 Paul Eggert <eggert@twinsun.com>
18215
18216 * src/bison.simple (union yyalloc): Change member names
18217 to be the same as the stack names.
18218 (yyparse): yyptr is now union yyalloc *, not char *.
18219 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18220 and may generate better code on some machines.
18221 (yystpcpy): Use prototype if __STDC__ is defined, not just
18222 if __cplusplus is defined.
18223
18224 2001-11-30 Akim Demaille <akim@epita.fr>
18225
18226 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18227 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18228 Gettext doesn't compile cleanly, and dies with -Werror.
18229 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18230 Include WARNING_CFLAGS here.
18231 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18232 before being defined.
18233
18234 2001-11-27 Paul Eggert <eggert@twinsun.com>
18235
18236 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18237 First arg is int, not unsigned.
18238 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18239 (SIZE_MAX, UINT_MAX): New macros.
18240 (quotearg_n_options): Abort if N is negative.
18241 Avoid overflow check on hosts where size_t is 64 bits and int
18242 is 32 bits, as overflow is impossible there.
18243 Fix off-by-one typo that caused unnecessary reallocation.
18244
18245 2001-11-29 Paul Eggert <eggert@twinsun.com>
18246
18247 Name space cleanup in generated parser.
18248
18249 * doc/bison.texinfo (Bison Parser): Discuss system headers
18250 and their effect on the user name space.
18251
18252 * src/bison.simple:
18253 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18254 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18255 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18256
18257 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18258 on user names when possible.
18259
18260 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18261 Simplify test for whather <alloca.h> exists.
18262
18263 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18264
18265 (<stdio.h>): Include if YYDEBUG.
18266
18267 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18268 ! defined (yyoverflow) && ! defined (yymemcpy).
18269
18270 (yymemcpy, yyparse): Rename local variables as needed so that
18271 they all begin with 'yy'.
18272
18273 (yystrlen, yystpcpy): New functions.
18274
18275 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18276 All uses changed.
18277
18278 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18279 instead of relying on string.h functions. Use YYSTACK_ALLOC
18280 and YYSTACK_FREE instead of malloc and free.
18281
18282 2001-11-30 Akim Demaille <akim@epita.fr>
18283
18284 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18285 before their first uses.
18286 (YYBISON, YYPURE): Move to the top of the output.
18287
18288 2001-11-30 Akim Demaille <akim@epita.fr>
18289
18290 * tests/reduce.at (Useless Nonterminals): Fix.
18291
18292 2001-11-30 Akim Demaille <akim@epita.fr>
18293
18294 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18295 if body instead of `;' to pacify GCC's warnings.
18296
18297 2001-11-30 Akim Demaille <akim@epita.fr>
18298
18299 Instead of mapping the LHS of unused rules to -1, keep the LHS
18300 valid, but flag the rules as invalid.
18301
18302 * src/gram.h (rule_t): `useful' is a new member.
18303 * src/print.c (print_grammar): Adjust.
18304 * src/derives.c (set_derives): Likewise.
18305 * src/reader.c (packgram, reduce_output): Likewise.
18306 * src/reduce.c (reduce_grammar_tables): Likewise.
18307 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18308
18309 2001-11-30 Akim Demaille <akim@epita.fr>
18310
18311 * src/reduce.c (reduce_output): Formatting changes.
18312 * src/print.c (print_results, print_grammar): Likewise.
18313 * tests/regression.at (Rule Line Numbers)
18314 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18315
18316 2001-11-30 Akim Demaille <akim@epita.fr>
18317
18318 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18319 useless nonterminals, move them at the end of the symbol arrays.
18320 (reduce_output): Adjust.
18321 * tests/reduce.at (Useless Nonterminals): Adjust.
18322
18323 2001-11-30 Akim Demaille <akim@epita.fr>
18324
18325 * src/reduce.c: Various comment/formatting changes.
18326 (nonterminals_reduce): New, extracted from...
18327 (reduce_grammar_tables): here.
18328 (reduce_grammar): Call nonterminals_reduce.
18329
18330 2001-11-29 Paul Eggert <eggert@twinsun.com>
18331
18332 * src/bison.simple (YYSTACK_REALLOC): Remove.
18333 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18334 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18335 New macros.
18336 (union yyalloc): New type.
18337 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18338 an arbitrary restriction on hosts where size_t is wider than int.
18339
18340 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18341 a parser stack overflow. Allocate just one block of memory for all
18342 three stacks, instead of allocating three blocks; this typically is
18343 faster and reduces fragmentation.
18344
18345 Do not limit the number of items in the stack to a value that fits
18346 in 'int', as this is an arbitrary limit on hosts with 64-bit
18347 size_t and 32-bit int.
18348
18349 2001-11-29 Marc Autret <autret_m@epita.fr>
18350
18351 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18352 of defining YYERROR_VERBOSE.
18353 [AT_DATA]: $4 is now out of C declarations in the prologue.
18354
18355 2001-11-28 Marc Autret <autret_m@epita.fr>
18356
18357 * src/reader.c (parse_dquoted_param): New.
18358 (parse_skel_decl): Use it.
18359 * src/lex.h: Add its prototype.
18360 * src/lex.c (literalchar): Become not static.
18361
18362 2001-11-28 Marc Autret <autret_m@epita.fr>
18363
18364 * src/output.h: And put its extern declaration here.
18365 * src/output.c (error_verbose): Define here.
18366 (prepare): Echo name modification.
18367 * src/getargs.h: Clean its extern declaration.
18368 * src/getargs.c (error_verbose_flag): Remove.
18369 (getargs): Remove case 'e'.
18370 * src/options.c (option_table): 'error-verbose' is now seen as simple
18371 percent option.
18372 Include output.h.
18373
18374 * src/reader.c (read_declarations): Remove case tok_include.
18375 (parse_include_decl): Remove.
18376 * src/lex.h (token_t): Remove tok_include.
18377 * src/options.c (option_table): 'include' is now a simple command line
18378 option.
18379
18380 2001-11-28 Marc Autret <autret_m@epita.fr>
18381
18382 * src/bison.simple: Adjust muscle names.
18383 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18384 * src/output.c (prepare): s/_/-/ for the muscles names.
18385 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18386
18387 2001-11-28 Marc Autret <autret_m@epita.fr>
18388
18389 * src/bison.simple: Fix debug.
18390 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18391
18392 2001-11-28 Akim Demaille <akim@epita.fr>
18393
18394 * src/LR0.c (shifts_new): New.
18395 (save_shifts, insert_start_shift, augment_automaton): Use it.
18396
18397 2001-11-28 Akim Demaille <akim@epita.fr>
18398
18399 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18400 keep ruleno only.
18401
18402 2001-11-28 Akim Demaille <akim@epita.fr>
18403
18404 * src/closure.c (closure): Instead of looping over word in array
18405 then bits in words, loop over bits in array.
18406
18407 2001-11-28 Akim Demaille <akim@epita.fr>
18408
18409 * src/closure.c (closure): No longer optimize the special case
18410 where all the bits of `ruleset[r]' are set to 0, to make the code
18411 clearer.
18412
18413 2001-11-28 Akim Demaille <akim@epita.fr>
18414
18415 * src/closure.c (closure): `r' and `c' are new variables, used to
18416 de-obfuscate accesses to RULESET and CORE.
18417
18418 2001-11-28 Akim Demaille <akim@epita.fr>
18419
18420 * src/reduce.c (reduce_print): Use ngettext.
18421 (dump_grammar): Improve the trace accuracy.
18422
18423 2001-11-28 Akim Demaille <akim@epita.fr>
18424
18425 * src/reduce.c (dump_grammar): Don't translate trace messages.
18426
18427 2001-11-28 Akim Demaille <akim@epita.fr>
18428
18429 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18430 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18431 as all tags are free'ed afterwards.
18432 From Enrico Scholz.
18433
18434 2001-11-27 Paul Eggert <eggert@twinsun.com>
18435
18436 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18437 use alloca when we didn't want to, and vice versa.
18438
18439 2001-11-27 Marc Autret <autret_m@epita.fr>
18440
18441 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18442 initialization.
18443 * src/output.c (prepare): Remove its update.
18444
18445 2001-11-27 Marc Autret <autret_m@epita.fr>
18446
18447 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18448 Use %error-verbose.
18449
18450 2001-11-27 Marc Autret <autret_m@epita.fr>
18451
18452 * src/bison.simple: Remove YYERROR_VERBOSE using.
18453 Use %%error_verbose.
18454 (yyparse): Likewise.
18455 * src/output.c (prepare): Give its final value.
18456 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18457 * src/getargs.h: Add its extern declaration.
18458 * src/getargs.c (error_verbose_flag): New int.
18459 (getargs): Update to catch new case.
18460 * src/options.c (option_table): 'error-verbose' is a new option.
18461 (shortopts): Update.
18462
18463 2001-11-27 Akim Demaille <akim@epita.fr>
18464
18465 * src/system.h: Use intl/libgettext.h.
18466 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18467
18468 2001-11-27 Akim Demaille <akim@epita.fr>
18469
18470 * tests/torture.at (Exploding the Stack Size with Malloc):
18471 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18472
18473 2001-11-27 Akim Demaille <akim@epita.fr>
18474
18475 * src/files.c: Include error.h.
18476 Reported by Hans Aberg.
18477
18478 2001-11-26 Marc Autret <autret_m@epita.fr>
18479
18480 * src/reader.c (parse_include_decl): New, not yet implemented.
18481 (read_declarations): Add case tok_include.
18482 * src/getargs.h (include): Add its extern definition.
18483 * src/getargs.c (include): New const char *.
18484 (getargs): Add case '-I'.
18485 * src/options.c (option_table): Add include as command line and
18486 percent option.
18487 * src/lex.h (token_t): Add tok_include.
18488
18489 2001-11-26 Akim Demaille <akim@epita.fr>
18490
18491 * src/reader.c (readgram): Make sure rules for mid-rule actions
18492 have a lineno equal to that of their host rule.
18493 Reported by Hans Aberg.
18494 * tests/regression.at (Rule Line Numbers): New.
18495
18496 2001-11-26 Akim Demaille <akim@epita.fr>
18497
18498 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18499 size_ts.
18500
18501 2001-11-26 Akim Demaille <akim@epita.fr>
18502
18503 * src/complain.c, src/complain.h (error): Remove, provided by
18504 lib/error.[ch].
18505
18506 2001-11-26 Akim Demaille <akim@epita.fr>
18507
18508 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18509 issue an error message.
18510 * tests/regression.at (Invalid %directive): New.
18511 Reported by Hans Aberg.
18512
18513 2001-11-26 Akim Demaille <akim@epita.fr>
18514
18515 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18516 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18517
18518 2001-11-26 Akim Demaille <akim@epita.fr>
18519
18520 * src/conflicts.c (conflicts_print): Don't complain at all when
18521 there are no reduce/reduce conflicts, and as many shift/reduce
18522 conflicts as expected.
18523 * tests/regression.at (%expect right): Adjust.
18524
18525 2001-11-23 Akim Demaille <akim@epita.fr>
18526
18527 * lib/alloca.c: Update, from fileutils.
18528
18529 2001-11-23 Akim Demaille <akim@epita.fr>
18530
18531 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18532
18533 2001-11-23 Akim Demaille <akim@epita.fr>
18534
18535 * src/system.h: Include alloca.h.
18536 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18537
18538 2001-11-23 Akim Demaille <akim@epita.fr>
18539
18540 * src/print_graph.c (print_actions): Remove `rule', unused.
18541 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18542 pacify GCC's signed < unsigned warnings.
18543 * src/closure.c (itemsetsize): Likewise.
18544 * src/reader.c (symbol_list_new): Static.
18545
18546 2001-11-23 Akim Demaille <akim@epita.fr>
18547
18548 Attaching lineno to buckets is stupid, since only one copy of each
18549 symbol is kept, only the line of the first occurrence is kept too.
18550
18551 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18552 * src/reader.c (rline_allocated): Remove, unused.
18553 (symbol_list): Have a `line' member.
18554 (symbol_list_new): New.
18555 (readgram): Use it.
18556 * src/print.c (print_grammar): Output the rule line numbers.
18557 * tests/regression.at (Solved SR Conflicts)
18558 (Unresolved SR Conflicts): Adjust.
18559 Reported by Hans Aberg.
18560
18561 2001-11-22 Marc Autret <autret_m@epita.fr>
18562
18563 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18564
18565 2001-11-22 Marc Autret <autret_m@epita.fr>
18566
18567 * src/muscle_tab.c (muscle_init): Remove initialization of
18568 skeleton muscle.
18569 * src/output.c (output_master_parser): Do it here.
18570
18571 2001-11-20 Akim Demaille <akim@epita.fr>
18572
18573 * po/sv.po: New.
18574 * configure.in (ALL_LINGUAS): Adjust.
18575 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18576 longer contains strings to translate.
18577
18578 2001-11-19 Akim Demaille <akim@epita.fr>
18579
18580 * src/conflicts.c (conflicts_print): Add a missing \n.
18581
18582 2001-11-19 Akim Demaille <akim@epita.fr>
18583
18584 * src/nullable.c (nullable_print): New.
18585 (set_nullable): Call it when tracing.
18586 Better locality of variables.
18587
18588 2001-11-19 Akim Demaille <akim@epita.fr>
18589
18590 * src/print.c (print_actions): Better locality of variables.
18591
18592 2001-11-19 Akim Demaille <akim@epita.fr>
18593
18594 * src/derives.c (print_derives): Fix and enrich.
18595 * src/closure.c (print_fderives): Likewise.
18596
18597 2001-11-19 Akim Demaille <akim@epita.fr>
18598
18599 * src/closure.c (itemsetend): Remove, replaced with...
18600 (itemsetsize): new.
18601
18602 2001-11-19 Akim Demaille <akim@epita.fr>
18603
18604 * src/LR0.c (kernel_end): Remove, replaced with...
18605 (kernel_size): new.
18606
18607 2001-11-19 Akim Demaille <akim@epita.fr>
18608
18609 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18610 to clarify.
18611
18612 2001-11-19 Akim Demaille <akim@epita.fr>
18613
18614 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18615
18616 2001-11-19 Akim Demaille <akim@epita.fr>
18617
18618 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18619 trace messages.
18620 * src/LR0.c: Likewise.
18621 (allocate_itemsets): Use arrays instead of pointers to clarify.
18622
18623 2001-11-19 Akim Demaille <akim@epita.fr>
18624
18625 * src/getargs.c (statistics_flag): Replace with...
18626 (trace_flag): New.
18627 (longopts): Accept --trace instead of --statistics.
18628 * src/getargs.h, src/options.c: Adjust.
18629 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18630 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18631
18632 2001-11-19 Akim Demaille <akim@epita.fr>
18633
18634 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18635 pointers to clarify the code.
18636 (save_reductions, save_shifts): Factor common parts of alternatives.
18637
18638 2001-11-19 Akim Demaille <akim@epita.fr>
18639
18640 * src/LR0.c (new_state, get_state): Complete TRACE code.
18641 * src/closure.c: Include `reader.h' to get `tags', needed by the
18642 trace code.
18643 Rename the conditional DEBUG as TRACE.
18644 Output consistently TRACEs to stderr, not stdout.
18645 * src/derives.c: Likewise.
18646 * src/reduce.c: (inaccessable_symbols): Using if is better style
18647 than goto.
18648 Use `#if TRACE' instead of `#if 0' for tracing code.
18649
18650 2001-11-19 Akim Demaille <akim@epita.fr>
18651
18652 * src/system.h (LIST_FREE, shortcpy): New.
18653 * src/LR0.c: Use them.
18654 * src/output.c (free_itemsets, free_reductions, free_shifts):
18655 Remove, replaced by LIST_FREE.
18656
18657 2001-11-19 Akim Demaille <akim@epita.fr>
18658
18659 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18660 (REDUCTIONS_ALLOC): New.
18661 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18662 allocation.
18663
18664 2001-11-19 Akim Demaille <akim@epita.fr>
18665
18666 * src/LR0.c (new_state): Complete trace code.
18667 * src/nullable.c (set_nullable): Don't translate traces.
18668
18669 2001-11-19 Akim Demaille <akim@epita.fr>
18670
18671 * src/print_graph.c (print_core): Better locality of variables.
18672 * src/print.c (print_core): Likewise.
18673
18674 2001-11-19 Akim Demaille <akim@epita.fr>
18675
18676 * src/vcg.c: You do the output, so you are responsible of the
18677 handling of VCG syntax, in particular: use quotearg.
18678 * src/print_graph.c: Don't.
18679 (print_actions): Don't output the actions as part of the nodes,
18680 since that's the job of the edges.
18681 (print_state): Don't output by hand: fill the node description,
18682 and ask for its output.
18683
18684 2001-11-19 Akim Demaille <akim@epita.fr>
18685
18686 * src/bison.simple (yyparse): When verbosely reporting an error,
18687 no longer put additional quotes around token names.
18688 * tests/calc.at: Adjust.
18689
18690 2001-11-19 Akim Demaille <akim@epita.fr>
18691
18692 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18693 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18694 * src/output.c: Adjust.
18695
18696 2001-11-19 Akim Demaille <akim@epita.fr>
18697
18698 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18699 (rule_t): this.
18700 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18701
18702 2001-11-19 Akim Demaille <akim@epita.fr>
18703
18704 * src/gram.h (rule_t): New.
18705 (rule_table): New.
18706 (rrhs, rlhs): Remove, part of state_t.
18707 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18708 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18709 * src/reader.c, src/reduce.c: Adjust.
18710
18711 2001-11-19 Akim Demaille <akim@epita.fr>
18712
18713 * src/reader.c (symbols_output): New, extracted from...
18714 (packsymbols): Here.
18715 (reader): Call it.
18716
18717 2001-11-19 Akim Demaille <akim@epita.fr>
18718
18719 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18720 (maxrhs): this new function.
18721
18722 2001-11-19 Akim Demaille <akim@epita.fr>
18723
18724 * src/lalr.c (F): New macro to access the variable F.
18725 Adjust.
18726
18727 2001-11-19 Akim Demaille <akim@epita.fr>
18728
18729 * src/lalr.h (LA): New macro to access the variable LA.
18730 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18731 * src/lalr.c: Adjust.
18732
18733 2001-11-19 Akim Demaille <akim@epita.fr>
18734
18735 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18736 (set_state_table): handle the `lookaheads' members.
18737
18738 2001-11-19 Akim Demaille <akim@epita.fr>
18739
18740 * src/lalr.h (lookaheads): Removed array, whose contents is now
18741 a member of...
18742 (state_t): this structure.
18743 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18744 Adjust.
18745
18746 2001-11-19 Akim Demaille <akim@epita.fr>
18747
18748 * src/lalr.h (consistent): Removed array, whose contents is now
18749 a member of...
18750 (state_t): this structure.
18751 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18752 Adjust.
18753
18754 2001-11-19 Akim Demaille <akim@epita.fr>
18755
18756 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18757 contents are now members of...
18758 (state_t): this structure.
18759 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18760 Adjust.
18761
18762 2001-11-19 Akim Demaille <akim@epita.fr>
18763
18764 * src/lalr.h (state_t): New.
18765 (state_table): Be a state_t * instead of a core **.
18766 (accessing_symbol): Remove, part of state_t.
18767 * src/lalr.c: Adjust.
18768 (set_accessing_symbol): Merge into...
18769 (set_state_table): this.
18770 * src/print_graph.c, src/conflicts.c: Adjust.
18771
18772 2001-11-14 Akim Demaille <akim@epita.fr>
18773
18774 * tests/calc.at, tests/output.at, tests/regression.at,
18775 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18776 now the tests are run in private dirs, therefore AC_CLEANUP and
18777 family can be simplified to 0-ary.
18778 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18779 use abs. path to find config.h.
18780 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18781 stderr, there can be way too much random noise.
18782 Instead pass -Werror to GCC and rely on the exit status.
18783 Reported by Wolfram Wagner.
18784
18785 2001-11-14 Akim Demaille <akim@epita.fr>
18786
18787 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18788 defined only if yyoverflow is defined, to avoid `warning: unused
18789 variable `yyvs1''.
18790 Reported by The Test Suite.
18791
18792 2001-11-14 Akim Demaille <akim@epita.fr>
18793
18794 * src/print.c: Include reduce.h.
18795 Reported by Hans Aberg.
18796
18797 2001-11-14 Akim Demaille <akim@epita.fr>
18798
18799 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18800 Revert a previous patch: these are really const.
18801 * src/conflicts.c (conflict_report): Additional useless pair of
18802 braces to pacify GCC's warnings for `if () if () {} else {}'.
18803 * src/lex.c (parse_percent_token): Replace equal_offset with
18804 arg_offset.
18805 arg is const.
18806 Be sure to strdup `arg' when used, since there is no reason for
18807 token_buffer not to change.
18808
18809 2001-11-14 Akim Demaille <akim@epita.fr>
18810
18811 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18812 definition.
18813 * src/main.c (main): Use them.
18814 Suggested by Hans Aberg.
18815
18816 2001-11-12 Akim Demaille <akim@epita.fr>
18817
18818 * src/system.h (ngettext): Now that we use ngettext, be sure to
18819 provide a default definition when NLS are not used.
18820
18821 2001-11-12 Akim Demaille <akim@epita.fr>
18822
18823 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18824 Use @kbd to denote user input.
18825 (Language and Grammar): ANSIfy the example.
18826 Adjust its layout for info/notinfo.
18827 (Location Tracking Calc): Output error messages to stderr.
18828 Output locations in a more GNUtically correct way.
18829 Fix a couple of Englishos.
18830 Adjust @group/@end group pairs.
18831
18832 2001-11-12 Akim Demaille <akim@epita.fr>
18833
18834 %expect was not functioning at all.
18835
18836 * src/conflicts.c (expected_conflicts): Set to -1.
18837 (conflict_report): Use ngettext.
18838 (conflicts_print): Check %expect and make its violation an error.
18839 * doc/bison.texinfo (Expect Decl): Adjust.
18840 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18841 * tests/regression.at (%expect not enough, %expect right)
18842 (%expect too much): New.
18843
18844 2001-11-12 Akim Demaille <akim@epita.fr>
18845
18846 * tests/regression.at (Conflicts): Rename as...
18847 (Unresolved SR Conflicts): this.
18848 (Solved SR Conflicts): New.
18849
18850 2001-11-12 Akim Demaille <akim@epita.fr>
18851
18852 * src/reduce.c (print_results): Rename as...
18853 (reduce_output): This.
18854 Output to OUT, passed as argument, instead of output_obstack.
18855 (dump_grammar): Likewise.
18856 (reduce_free): New.
18857 Also free V1.
18858 (reduce_grammar): No longer call reduce_output, since...
18859 * src/print.c (print_results): do it.
18860 * src/main.c (main): Call reduce_free;
18861
18862 2001-11-12 Akim Demaille <akim@epita.fr>
18863
18864 * src/conflicts.c (print_reductions): Accept OUT as argument.
18865 Output to it, not to output_obstack.
18866 * src/print.c (print_actions): Adjust.
18867
18868 2001-11-12 Akim Demaille <akim@epita.fr>
18869
18870 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18871 the result instead of using...
18872 (src_total, rrc_total, src_count, rrc_count): Remove.
18873 (any_conflicts): Remove.
18874 (print_conflicts): Split into...
18875 (conflicts_print, conflicts_output): New.
18876 * src/conflicts.h: Adjust.
18877 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18878 * src/print.c (print_grammar): Issue `\n' between two rules.
18879 * tests/regression.at (Conflicts): New.
18880 Reported by Tom Lane.
18881
18882 2001-11-12 Akim Demaille <akim@epita.fr>
18883
18884 * tests/regression.at (Invalid input): Remove, duplicate with
18885 ``Invalid input: 1''.
18886
18887 2001-11-12 Akim Demaille <akim@epita.fr>
18888
18889 * tests/torture.at (AT_DATA_STACK_TORTURE)
18890 (Exploding the Stack Size with Alloca)
18891 (Exploding the Stack Size with Malloc): New.
18892
18893 2001-11-12 Akim Demaille <akim@epita.fr>
18894
18895 * src/bison.simple (YYSTACK_REALLOC): New.
18896 (yyparse) [!yyoverflow]: Use it and free the old stack.
18897 Reported by Per Allansson.
18898
18899 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18900
18901 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18902 define CPP macro, which substitute YYSTYPE by yystype.
18903 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18904 with yyltype/YYLTYPE. This allows inclusion of the generated
18905 header within the parser if the compiler, such as GGC, accepts
18906 multiple equivalent #defines.
18907 From Akim.
18908
18909 2001-11-05 Akim Demaille <akim@epita.fr>
18910
18911 * src/reader.c (symbols_output): New, extracted from...
18912 (packsymbols): here.
18913 (reader): Adjust.
18914
18915 2001-11-05 Akim Demaille <akim@epita.fr>
18916
18917 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18918
18919 2001-11-05 Akim Demaille <akim@epita.fr>
18920
18921 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18922 pattern.
18923
18924 2001-11-05 Akim Demaille <akim@epita.fr>
18925
18926 * src/options.h (struct option_table_struct): set_flags is void*.
18927 * src/options.c (longopts): Support `--output' and `%output'.
18928 (usage): Adjust.
18929 * src/lex.h (tok_setopt): Remove, replaced with...
18930 (tok_intopt, tok_stropt): these new guys.
18931 * src/lex.c (getopt.h): Not needed.
18932 (token_buffer, unlexed_token_buffer): Not const.
18933 (percent_table): Promote `-' over `_' in directive names.
18934 Active `%name-prefix', `file-prefix', and `output'.
18935 (parse_percent_token): Accept possible arguments to directives.
18936 Promote `-' over `_' in directive names.
18937
18938 2001-11-04 Akim Demaille <akim@epita.fr>
18939
18940 * doc/bison.texinfo (Decl Summary): Split the list into
18941 `directives for grammars' and `directives for bison'.
18942 Sort'em.
18943 Add description of `%name-prefix', `file-prefix', and `output'.
18944 Promote `-' over `_' in directive names.
18945 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18946 Simplify the description of `--name-prefix'.
18947 Promote `-' over `_' in directive names.
18948 Promote `--output' over `--output-file'.
18949 Fix the description of `--defines'.
18950 * tests/output.at: Exercise %file-prefix and %output.
18951
18952 2001-11-02 Akim Demaille <akim@epita.fr>
18953
18954 * doc/refcard.tex: Update.
18955
18956 2001-11-02 Akim Demaille <akim@epita.fr>
18957
18958 * src/symtab.h (SUNDEF): New.
18959 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18960 stand for `uninitialized', instead of 0.
18961 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18962 * src/lex.c (lex): Adjust.
18963
18964 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18965 Number it 0.
18966 Let yylex return it instead of a plain 0.
18967 Reported by Dick Streefland.
18968
18969 2001-11-02 Akim Demaille <akim@epita.fr>
18970
18971 * tests/regression.at (Mixing %token styles): New test.
18972
18973 2001-11-02 Akim Demaille <akim@epita.fr>
18974
18975 * src/reader.c (parse_thong_decl): Formatting changes.
18976 (token_translations_init): New, extracted from...
18977 (packsymbols): Here.
18978 Adjust.
18979
18980 2001-11-01 Akim Demaille <akim@epita.fr>
18981
18982 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18983 Check that `9foo.y' produces correct cpp guards.
18984 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18985 guards.
18986 Reported by Wwp.
18987
18988 2001-11-01 Akim Demaille <akim@epita.fr>
18989
18990 * tests/regression.at (Invalid input: 2): New.
18991 * src/lex.c (unlexed_token_buffer): New.
18992 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18993 too.
18994 Reported by Wwp.
18995
18996 2001-11-01 Akim Demaille <akim@epita.fr>
18997
18998 * tests/calc.at: Catch up with 1.30.
18999 * configure.in: Bump to 1.49a.
19000 Adjust to newer Autotest.
19001
19002 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19003
19004 * src/conflicts.c: Move global variables rrc_total and src_total ...
19005 (print_conflicts): here.
19006 * src/output.c (output): Free global variable user_toknums.
19007 * src/lex.c (token_obstack): Become static.
19008
19009 2001-10-18 Akim Demaille <akim@epita.fr>
19010
19011 * tests/atlocal.in (GCC): Add.
19012 * tests/calc.at: s/m4_match/m4_bmatch/.
19013 s/m4_patsubst/m4_bpatsubst/.
19014 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19015 * configure.in: AC_SUBST(GCC).
19016
19017 2001-10-14 Marc Autret <autret_m@epita.fr>
19018
19019 * src/options.c (create_long_option_table): Fix.
19020
19021 2001-10-10 Akim Demaille <akim@epita.fr>
19022
19023 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19024
19025 2001-10-04 Akim Demaille <akim@epita.fr>
19026
19027 * src/reader.c (parse_union_decl): Push the caracters in
19028 union_obstack, not attrs_obstack.
19029
19030 2001-10-04 Akim Demaille <akim@epita.fr>
19031
19032 Merge in the branch 1.29.
19033
19034 * src/reader.c (packsymbols): Use a temporary obstack for
19035 `%%tokendef', since output_stack is already used elsewhere.
19036
19037 2001-10-02 Akim Demaille <akim@epita.fr>
19038
19039 Bump 1.29d.
19040
19041 2001-10-02 Akim Demaille <akim@epita.fr>
19042
19043 Version 1.29c.
19044
19045 2001-10-02 Akim Demaille <akim@epita.fr>
19046
19047 * tests/regression.at (Invalid CPP headers): New.
19048 From Alexander Belopolsky.
19049 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19050
19051 2001-10-02 Akim Demaille <akim@epita.fr>
19052
19053 * tests/regression.at (Invalid input): New.
19054 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19055 Reported by Shura.
19056
19057 2001-10-02 Akim Demaille <akim@epita.fr>
19058
19059 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19060
19061 2001-10-02 Akim Demaille <akim@epita.fr>
19062
19063 * src/output.c (output_parser): Assert `skeleton'.
19064 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19065 systems.
19066 From Shura.
19067
19068 2001-10-01 Marc Autret <autret_m@epita.fr>
19069
19070 * src/lex.h: Echo modifications.
19071 * src/lex.c (unlex): Parameter is now token_t.
19072 From Hans Aberg.
19073
19074 2001-10-01 Marc Autret <autret_m@epita.fr>
19075
19076 * src/main.c: Include lex.h.
19077 From Hans Aberg.
19078
19079 2001-09-29 Akim Demaille <akim@epita.fr>
19080
19081 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19082
19083 2001-09-28 Akim Demaille <akim@epita.fr>
19084
19085 * tests/testsuite.at: Update to newer Autotest.
19086 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19087
19088 2001-09-27 Akim Demaille <akim@epita.fr>
19089
19090 Position independent wrapper.
19091
19092 * tests/bison: Remove.
19093 * tests/bison.in: New.
19094 * configure.in: Adjust.
19095
19096 2001-09-27 Paul Eggert <eggert@twinsun.com>
19097
19098 Port quotearg fixes from tar 1.13.24.
19099
19100 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19101 tm to be declared.
19102 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19103 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19104
19105 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19106 * m4/mbrtowc.m4: New file.
19107 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19108 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19109
19110 2001-09-27 Akim Demaille <akim@epita.fr>
19111
19112 Bump to 1.29c.
19113
19114 2001-09-27 Akim Demaille <akim@epita.fr>
19115
19116 Version 1.29b.
19117
19118 2001-09-25 Akim Demaille <akim@epita.fr>
19119
19120 * src/system.h: Include `xalloc.h'.
19121 Remove it from the C files.
19122 * src/files.c (output_files): Free the obstacks.
19123 * src/lex.c (init_lex): Rename as...
19124 (lex_init): this.
19125 (lex_free): New.
19126 * src/main.c (main): Use it.
19127
19128 2001-09-24 Marc Autret <autret_m@epita.fr>
19129
19130 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19131 to output informations in fout (FILE*).
19132 (open_graph, close_graph): Likewise.
19133 (output_graph, output_edge, output_node): Likewise.
19134 * src/vcg.h: Update function prototypes.
19135 * src/print_graph.c (print_graph): Open output graph file.
19136 (print_actions): Adjust.
19137 * src/files.h: Remove extern declaration.
19138 * src/files.c: Remove graph_obstack declaration.
19139 (open_files): Remove graph_obstack initialization.
19140 (output_files): Remove graph_obstack saving.
19141
19142 2001-09-24 Marc Autret <autret_m@epita.fr>
19143
19144 * src/files.c (compute_output_file_names): Fix.
19145
19146 2001-09-24 Marc Autret <autret_m@epita.fr>,
19147 Akim Demaille <akim@epita.fr>
19148
19149 * src/reader.c (reader): Remove call to free_symtab ().
19150 * src/main.c (main): Call it here.
19151 Include symtab.h.
19152 * src/conflicts.c (initialize_conflicts): Rename as...
19153 (solve_conflicts): this.
19154 * src/print.c (print_core, print_actions, print_state)
19155 (print_grammar): Dump to a file instead a `output_obstack'.
19156 (print_results): Dump `output_obstack', and then proceed with the
19157 FILE *.
19158 * src/files.c (compute_output_file_names, close_files): New.
19159 (output_files): Adjust.
19160 * src/main.c (main): Adjust.
19161
19162 2001-09-23 Marc Autret <autret_m@epita.fr>
19163
19164 * src/files.c (compute_header_macro): Computes header macro name
19165 from spec_defines_file when given.
19166
19167 2001-09-23 Marc Autret <autret_m@epita.fr>
19168
19169 * src/files.c (output_files): Add default extensions.
19170
19171 2001-09-22 Akim Demaille <akim@epita.fr>
19172
19173 * src/conflicts.c (finalize_conflicts): Rename as...
19174 (free_conflicts): this.
19175
19176 2001-09-22 Akim Demaille <akim@epita.fr>
19177
19178 * src/gram.c (gram_free): Rename back as...
19179 (dummy): this.
19180 (output_token_translations): Free `token_translations'.
19181 * src/symtab.c (free_symtab): Free the tag field.
19182
19183 2001-09-22 Akim Demaille <akim@epita.fr>
19184
19185 Remove `translations' as it is always set to true.
19186
19187 * src/gram.h: Adjust.
19188 * src/reader.c (packsymbols, parse_token_decl): Adjust
19189 * src/print.c (print_grammar): Adjust.
19190 * src/output.c (output_token_translations): Adjust.
19191 * src/lex.c (lex): Adjust.
19192 * src/gram.c: Be sure the set pointers to NULL.
19193 (dummy): Rename as...
19194 (gram_free): this.
19195
19196 2001-09-22 Akim Demaille <akim@epita.fr>
19197
19198 * configure.in: Invoke AM_LIB_DMALLOC.
19199 * src/system.h: Use dmalloc.
19200 * src/LR0.c: Be sure to have pointers initialized to NULL.
19201 (allocate_itemsets): Allocate kernel_items only if needed.
19202
19203 2001-09-22 Akim Demaille <akim@epita.fr>
19204
19205 * configure.in: Bump to 1.29b.
19206 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19207 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19208 need xmalloc.c in calc.y.
19209 From Pascal Bart.
19210
19211 2001-09-21 Akim Demaille <akim@epita.fr>
19212
19213 Version 1.29a.
19214 * Makefile.maint, config/config.guess, config/config.sub,
19215 * config/missing: Update from masters.
19216 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19217 upon package.m4.
19218 * configure.in (ALL_LINGUAS): Add `tr'.
19219
19220 2001-09-21 Akim Demaille <akim@epita.fr>
19221
19222 * tests/Makefile.am (package.m4): Move to...
19223 ($(srcdir)/$(TESTSUITE)): here.
19224
19225 2001-09-20 Akim Demaille <akim@epita.fr>
19226
19227 * src/complain.c: No longer try to be standalone: use system.h.
19228 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19229 * src/complain.h: Likewise.
19230 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19231 Remove the unused variable `n'.
19232 From Albert Chin-A-Young.
19233
19234 2001-09-18 Marc Autret <autret_m@epita.fr>
19235
19236 * doc/bison.1: Update.
19237 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19238 descriptions.
19239 (Option Cross Key): Update.
19240 Add --graph.
19241
19242 2001-09-18 Marc Autret <autret_m@epita.fr>
19243
19244 * tests/regression.at: New test (comment in %union).
19245
19246 2001-09-18 Marc Autret <autret_m@epita.fr>
19247
19248 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19249 do that.
19250 Reported by Keith Browne.
19251
19252 2001-09-18 Marc Autret <autret_m@epita.fr>
19253
19254 * tests/output.at: Add tests for --defines and --graph.
19255
19256 2001-09-18 Marc Autret <autret_m@epita.fr>
19257
19258 * tests/output.at: Removes tests of %{header,src}_extension features.
19259
19260 2001-09-18 Akim Demaille <akim@epita.fr>
19261
19262 * tests/Makefile.am (package.m4): New.
19263 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19264 (_AT_CHECK_CALC_ERROR): Likewise.
19265 Factor the `, ' part of verbose error messages.
19266
19267 2001-09-18 Marc Autret <autret_m@epita.fr>
19268
19269 * src/getargs.c (longopts): Declare --defines and --graph as options
19270 with optional arguments.
19271 * src/files.h: Add extern declarations.
19272 * src/files.c (spec_graph_file, spec_defines_file): New.
19273 (output_files): Update.
19274 Remove CPP-outed code.
19275
19276 2001-09-18 Marc Autret <autret_m@epita.fr>
19277
19278 Turn off %{source,header}_extension feature.
19279
19280 * src/files.c (compute_exts_from_gf): Update.
19281 (compute_exts_from_src): Update.
19282 (output_files): CPP-out useless code.
19283 * src/files.h: Remove {header,source}_extension extern declarations.
19284 * src/reader.c (parse_dquoted_param): CPP-out.
19285 (parse_header_extension_decl): Remove.
19286 (parse_source_extension_decl): Remove.
19287 (read_declarations): Remove cases tok_{hdrext,srcext}.
19288 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19289 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19290
19291 2001-09-10 Akim Demaille <akim@epita.fr>
19292
19293 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19294 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19295 (AT_CHECK_OUTPUT): this.
19296 Merely check ls' exit status, its output is useless.
19297
19298 2001-09-10 Akim Demaille <akim@epita.fr>
19299
19300 * tests/calc.at: Use m4_match.
19301 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19302
19303 2001-09-10 Marc Autret <autret_m@epita.fr>,
19304 Akim Demaille <akim@epita.fr>
19305
19306 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19307 enum color_e.
19308 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19309 to `normal'.
19310 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19311 * src/lex.h: Adjust prototype.
19312 (token_t): Add `tok_undef'.
19313 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19314 (parse_percent_token): Now returns token_t.
19315 Add default statement in switch.
19316 (lex): Separate `c' as an input variable, from the token_t result
19317 part.
19318 (unlexed): Is a token_t.
19319
19320 2001-09-10 Akim Demaille <akim@epita.fr>
19321
19322 * configure.in: Bump to 1.29a.
19323
19324 2001-09-07 Akim Demaille <akim@epita.fr>
19325
19326 Version 1.29.
19327
19328 2001-08-30 Akim Demaille <akim@epita.fr>
19329
19330 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19331 * m4/atconfig.m4: Remove.
19332 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19333 * tests/bison: New.
19334 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19335 m4_if, m4_patsubst, and m4_regexp.
19336 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19337 `input' file instead of echo.
19338
19339 2001-08-29 Akim Demaille <akim@epita.fr>
19340
19341 Bump to 1.28e.
19342
19343 2001-08-29 Akim Demaille <akim@epita.fr>
19344
19345 Version 1.28d.
19346
19347 2001-08-29 Paul Eggert <eggert@twinsun.com>
19348
19349 * src/bison.simple (yyparse): Don't take the address of an
19350 item before the start of an array, as that doesn't conform to
19351 the C Standard.
19352
19353 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19354
19355 * doc/bison.texinfo (Location Tracking Calc): New node.
19356
19357 2001-08-29 Paul Eggert <eggert@twinsun.com>
19358
19359 * src/output.c (output): Do not define const, as this now
19360 causes more problems than it cures.
19361
19362 2001-08-29 Akim Demaille <akim@epita.fr>
19363
19364 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19365 the nodes.
19366 Be sure to tag the `detailmenu'.
19367
19368 2001-08-29 Akim Demaille <akim@epita.fr>
19369
19370 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19371 download in a tmp dir.
19372
19373 2001-08-28 Marc Autret <autret_m@epita.fr>
19374
19375 * config/depcomp: New file.
19376
19377 2001-08-28 Marc Autret <autret_m@epita.fr>
19378
19379 * doc/bison.1 (mandoc): Adjust.
19380 From Juan Manuel Guerrero.
19381
19382 2001-08-28 Marc Autret <autret_m@epita.fr>
19383
19384 * src/print_graph.c (print_state): Fix.
19385
19386 2001-08-27 Marc Autret <autret_m@epita.fr>
19387
19388 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19389 char * members.
19390 Echo modifications to the functions prototypes.
19391 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19392
19393 2001-08-27 Marc Autret <autret_m@epita.fr>
19394
19395 * src/vcg.c: Include `xalloc.h'.
19396 (add_colorentry): New.
19397 (add_classname): New.
19398 (add_infoname): New.
19399 * src/vcg.h: Add new prototypes.
19400
19401 2001-08-27 Akim Demaille <akim@epita.fr>
19402
19403 * Makefile.maint: Sync. again with CVS Autoconf.
19404
19405 2001-08-27 Akim Demaille <akim@epita.fr>
19406
19407 * Makefile.maint: Formatting changes.
19408 (po-update, cvs-update, update): New targets.
19409 (AMTAR): Remove.
19410
19411 2001-08-27 Akim Demaille <akim@epita.fr>
19412
19413 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19414 * Makefile.maint: Sync. with CVS Autoconf.
19415
19416 2001-08-27 Marc Autret <autret_m@epita.fr>
19417
19418 * src/vcg.h (struct infoname_s): New.
19419 (struct colorentry_s): New.
19420 (graph_s): New fields {vertical,horizontal}_order in structure.
19421 Add `infoname' field.
19422 Add `colorentry' field;
19423 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19424 (G_HORIZONTAL_ORDER): New.
19425 (G_INFONAME): New.
19426 (G_COLORENTRY): New.
19427 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19428 Add output of `infoname'.
19429 Add output of `colorentry'.
19430
19431 2001-08-27 Marc Autret <autret_m@epita.fr>
19432
19433 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19434 This one shadowed a global parameter.
19435
19436 2001-08-24 Marc Autret <autret_m@epita.fr>
19437
19438 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19439 instead of `unsigned'.
19440 (print_state): Do not call obstack_object_size () in obstack_grow ()
19441 to avoid macro variables shadowing.
19442
19443 2001-08-23 Marc Autret <autret_m@epita.fr>
19444
19445 * src/lex.c (percent_table): Typo: s/naem/name/.
19446 Add graph option.
19447 Normalize new options declarations.
19448
19449 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19450
19451 * tests/suite.at: Exercise %header_extension and %source_extension.
19452
19453 2001-08-16 Marc Autret <autret_m@epita.fr>
19454
19455 * src/reader.c (parse_dquoted_param): New.
19456 (parse_header_extension_decl): Use it.
19457 (parse_source_extension_decl): Likewise.
19458
19459 2001-08-16 Marc Autret <autret_m@epita.fr>
19460
19461 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19462 (get_xxxx_str): Use assert () instead of complain ().
19463 Remove return invokations in default cases.
19464 (get_decision_str): Modify default behaviour. Remove second argument.
19465 Echo modifications on calls.
19466 (output_graph): Fix.
19467
19468 2001-08-16 Marc Autret <autret_m@epita.fr>
19469
19470 * src/getargs.c (usage): Update with ``-g, --graph''.
19471
19472 2001-08-16 Marc Autret <autret_m@epita.fr>
19473
19474 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19475 (Option Cross Key): Likewise.
19476 * doc/bison.1: Update.
19477
19478 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19479
19480 * src/output.c (output_master_parser): Don't finish action_obstack.
19481 (output_parser): Don't care about the muscle action, here.
19482 (prepare): Copy the action_obstack in the action muscle.
19483 (output): Free action_obstack.
19484
19485 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19486
19487 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19488 will contain `%union' declaration.
19489 (parse_union_decl): Delete #line directive output.
19490 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19491 informations about %union.
19492 (parse_union_decl): Copy the union_obstack in the muscle stype.
19493 * src/bison.simple: Add new #line directive.
19494 Add typdef %%stype YYSTYPE.
19495
19496 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19497
19498 * src/bison.simple: Add new `#line' directive.
19499
19500 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19501
19502 * src/bison.simple: New `#line' directive.
19503 * src/output.c (output_parser): Support new dynamic muscle input_line.
19504
19505 2001-09-22 Marc Autret <autret_m@epita.fr>
19506
19507 * src/output.c (output_master_parser): New.
19508 (output_parser): Be more re-entrant.
19509
19510 2001-09-21 Marc Autret <autret_m@epita.fr>
19511
19512 * src/reader.c (copy_definition, parse_union_decl): Update and use
19513 `linef' muscle.
19514 (copy_action): Likewise.
19515 Use obstack_1grow ().
19516 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19517
19518 2001-09-21 Marc Autret <autret_m@epita.fr>
19519
19520 * src/options.c (option_table): Adjust.
19521 * src/lex.c (parse_percent_token): Fix.
19522
19523 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19524
19525 * src/options.c (symtab.h): Include it, need by lex.h.
19526
19527 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19528
19529 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19530 is now an option_table_struct*.
19531 (option_strcmp): New function option_strcmp.
19532 (parse_percent_token): Call option_strcmp.
19533 * src/getargs.c (xalloc.h, options.h): Include it.
19534 (getargs): Call create_long_option_table.
19535 (getargs): Free longopts at the end of the function.
19536 (shortopts): Move in options.c.
19537 * src/options.c (create_long_option_table): New function. Convert
19538 information from option_table to option structure.
19539 * src/reader.c (options.h): Include it.
19540
19541 * src/Makefile.am: Adjust.
19542 * src/options.c (option_table): Create from longopts and percent_table.
19543 * src/getargs.c (longopts): Delete.
19544 * src/lex.c (struct percent_table_struct): Delete.
19545 (percent_table): Delete.
19546 (options.h): Include it.
19547 * src/options.c: Create.
19548 * src/options.h: Create.
19549 Declare enum opt_access_e.
19550 Define struct option_table_struct.
19551
19552 2001-09-20 Marc Autret <autret_m@epita.fr>
19553
19554 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19555 sections of Bison.
19556
19557 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19558
19559 * src/bison.simple: s/%%filename/%%skeleton.
19560 * src/muscle_tab.c (getargs.h): Include it.
19561 (muscle_init): Insert new muscle skeleton.
19562
19563 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19564
19565 * src/output.c (output_parser): Delete unused variable actions_dumped.
19566
19567 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19568
19569 * src/output.c (output): Delete call to reader_output_yylsp.
19570 * src/reader.c (reader): Likewise.
19571 * src/reader.h: Delete declaration of reader_output_yylsp.
19572
19573 2001-09-02 Marc Autret <autret_m@epita.fr>
19574
19575 * src/reader.c: Include muscle_tab.h.
19576 (parse_union_decl): Update.
19577 (parse_macro_decl): Rename parse_muscle_decl.
19578 Update to use renamed functions and variable.
19579 (read_declarations, copy_action, read_additionnal_code, : Updated
19580 with correct variables and functions names.
19581 (packsymbols, reader): Likewise.
19582
19583 * src/reader.h (muscle_obstack): Extern declaration update.
19584
19585 * src/output.c: Include muscle_tab.h
19586 In all functions using macro_insert, change by using muscle_insert ().
19587 (macro_obstack): Rename muscle_obstack.
19588 Echo modifications in the whole file.
19589 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19590 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19591 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19592
19593 * src/muscle_tab.h: Update double inclusion macros.
19594 (macro_entry_s): Rename muscle_entry_s.
19595 Update prototypes.
19596
19597 * src/muscle_tab.c: Include muscle_tab.h.
19598 Rename macro_tabble to muscle_table.
19599 (mhash1, mhash2, mcmp): Use muscle_entry.
19600 (macro_init): Rename muscle_init. Update.
19601 (macro_insert): Rename muscle_insert. Update.
19602 (macro_find): Rename muscle_find. Update.
19603
19604 * src/main.c: Include muscle_tab.h.
19605 (main): Call muscle_init ().
19606 * src/Makefile.am (bison_SOURCES): Echo modifications.
19607
19608 2001-09-02 Marc Autret <autret_m@epita.fr>
19609
19610 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19611
19612 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19613
19614 2001-09-02 Marc Autret <autret_m@epita.fr>
19615
19616 * src/macrotab.c, src/macrotab.h: Remove.
19617
19618 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19619
19620 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19621 filename.
19622
19623 2001-09-01 Marc Autret <autret_m@epita.fr>
19624
19625 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19626 to an explicit value to activate the feature. We do it here.
19627
19628 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19629
19630 * src/output.c (prepare): Delete the `filename' muscule insertion.
19631 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19632 (parse_union_decl): Likewise.
19633 * src/macrotab.c (macro_init): Initialize filename by infile.
19634
19635 2001-08-31 Marc Autret <autret_m@epita.fr>
19636
19637 * src/bison.simple (YYLSP_NEEDED): New definition.
19638 * src/output.c (prepare): Add macro insertion of `locations_flag'
19639
19640 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19641
19642 * src/output.c (prepare): Delete insertion of previous muscles,
19643 and insert the `prefix' muscles.
19644 * src/macrotab.c (macro_init): Likewise.
19645 (macro_init): Initialization prefix directive by `yy'.
19646 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19647 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19648 yylval, yydebug, yyerror, yynerrs and yyparse.
19649 New directive `#define' to substitute yydebug, ... with option
19650 name_prefix.
19651
19652 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19653
19654 * src/main.c (main): Standardize.
19655 * src/output.c (output_table_data, output_parser): Likewise.
19656 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19657
19658 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19659
19660 * src/reader.c (read_additionnal_code): Rename %%user_code to
19661 %%epilogue.
19662 * src/output.c (output): Rename %%declarations to %%prologue.
19663 * src/bison.simple: Echo modifications.
19664
19665 2001-08-31 Marc Autret <autret_m@epita.fr>
19666
19667 * src/reader.c (readgram): CleanUp.
19668 (output_token_defines): Likewise.
19669 (packsymbols): Likewise.
19670 (reader): Likewise.
19671 * src/output.c (output): CPP-out useless code.
19672
19673 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19674
19675 * src/reader.c (reader): Delete obsolete call to function
19676 output_trailers and output_headers.
19677 * src/output.h: Remove obsolete functions prototypes of output_headers
19678 and output_trailers.
19679
19680 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19681
19682 * src/main.c: Include macrotab.h.
19683 * src/macrotab.h (macro_entry_s): Constify fields.
19684 Adjust functions prototypes.
19685 * src/macrotab.c (macro_insert): Constify key and value.
19686 (macro_find): Constify key.
19687 (macro_insert): Include 'xalloc.h'
19688 (macro_insert): Use XMALLOC.
19689 (macro_find): Constify return value.
19690 * src/output.c (output_table_data): Rename table to table_data.
19691 (output_parser): Constify macro_key, macro_value.
19692
19693 2001-08-30 Marc Autret <autret_m@epita.fr>
19694
19695 * src/reader.c (parse_skel_decl): New.
19696 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19697 * src/lex.h (token_t): New token `tok_skel'.
19698 * src/lex.c (percent_table): Add skeleton option entry.
19699 Standardize.
19700
19701 2001-08-29 Marc Autret <autret_m@epita.fr>
19702
19703 * src/bison.simple: Add %%user_code directive at the end.
19704 * src/reader.c (read_additionnal_code): New.
19705 (reader): Use it.
19706 * src/output.c (output_program): Remove.
19707 (output): Update.
19708
19709 2001-08-28 Marc Autret <autret_m@epita.fr>
19710
19711 * src/output.c (output_actions): Clean up.
19712 (output_gram): CPP-out useless code.
19713 * src/reader.c (reader): Clean up, CPP-out useless code.
19714
19715 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19716
19717 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19718 directive.
19719 * src/bison.simple: Add `%%definitions'.
19720
19721 2001-08-28 Marc Autret <autret_m@epita.fr>
19722
19723 * config/depcomp: New file.
19724
19725 2001-08-27 Paul Eggert <eggert@twinsun.com>
19726
19727 * src/bison.simple (yyparse): Don't take the address of an
19728 item before the start of an array, as that doesn't conform to
19729 the C Standard.
19730
19731 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19732
19733 * src/output.c (output): Remove the initialization of the macro
19734 obstack. It was done too late here.
19735
19736 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19737 completely wrong.
19738 (reader): Initialize the macro obstack here, since we need it to grow
19739 '%define' directives.
19740
19741 * src/reader.h: Declare the macro obstack as extern.
19742
19743 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19744
19745 * src/output.c (output_parser): Fix. Store single '%' characters in
19746 the output obstack instead of throwing them away.
19747
19748 2001-08-27 Akim Demaille <akim@epita.fr>
19749
19750 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19751
19752 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19753
19754 * lib/Makefile.am: Adjust.
19755
19756 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19757
19758 * src/bison.simple: Update and add '%%' directives.
19759
19760 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19761
19762 * src/reader.c (reader): Remove calls to 'output_headers' and
19763 'output_trailers'. Remove some C output.
19764 (readgram): Disable a piece of code that was writing a default
19765 definition for 'YYSTYPE'.
19766 (reader_output_yylsp): Remove.
19767 (packsymbols): Output token defintions to a macro.
19768 (copy_definition): Disable C output.
19769
19770 * src/reader.c (parse_macro_decl): New function used to parse macro
19771 declarations.
19772 (copy_string2): Put the body of copy_string into this new function.
19773 Add a parameter to let the caller choose whether he wants to copy the
19774 string delimiters or not.
19775 (copy_string): Be a simple call to copy_string2 with the last argument
19776 bound to true.
19777 (read_declarations): Add case for macro definition.
19778 (copy_identifier): New.
19779 (parse_macro_decl): Read macro identifiers using copy_identifier
19780 rather than lex.
19781
19782 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19783
19784 * src/output.c (prepare): Add prefixed names.
19785 (output_parser): Output semantic actions.
19786 (output_parser): Fix bug on '%%line' directives.
19787
19788 * src/output.c (output_headers): Remove. The C code printed by this
19789 function should now be in the skeletons.
19790 (output_trailers): Remove.
19791 (output): Disable call to 'reader_output_yylsp'.
19792 (output_rule_data): Do not output tables to the table obstack.
19793
19794 * src/output.c: Remove some C dedicated output.
19795 Improve the use of macro and output obstacks.
19796 (output_defines): Remove.
19797
19798 * src/output.c (output_token_translations): Associate 'translate'
19799 table with a macro. No output to the table obstack.
19800 (output_gram): Same for 'rhs' and 'prhs'.
19801 (output_stos): Same for 'stos'.
19802 (output_rule_data): Same for 'r1' and 'r2'.
19803 (token_actions): Same for 'defact'.
19804 (goto_actions): Same for 'defgoto'.
19805 (output_base): Same for 'pact' and 'pgoto'.
19806 (output_table): Same for 'table'.
19807 (output_check): Same for 'check'.
19808
19809 * src/output.c (output_table_data): New function.
19810 (output_short_table): Remove.
19811 (output_short_or_char_table): Remove.
19812
19813 * src/output.c (output_parser): Replace most of the skeleton copy code
19814 with something new. Skeletons are now processed character by character
19815 rather than line by line, and Bison looks for '%%' macros. This is the
19816 first step in making Bison's output process (a lot) more flexible.
19817 (output_parser): Use the macro table.
19818
19819 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19820
19821 * src/main.c (main): Initialize the macro table.
19822
19823 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19824
19825 * src/lex.c (percent_table): Add tok_define.
19826 * src/lex.h: Add tok_define.
19827
19828 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19829
19830 * src/macrotab.c: New file.
19831 * src/macrotab.h: New file.
19832 * src/Makefile.am: Update.
19833
19834 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19835
19836 * lib/hash.c: New file.
19837 * lib/hash.h: New file.
19838 * lib/Makefile.am: Update.
19839
19840 2001-08-15 Akim Demaille <akim@epita.fr>
19841
19842 Version 1.28c.
19843
19844 2001-08-15 Marc Autret <autret_m@epita.fr>
19845
19846 * src/reader.c (readgram): Indent output macro YYSTYPE.
19847 (packsymbols): Likewise.
19848 (output_token_defines): Likewise.
19849 * src/files.c: Standardize.
19850 (compute_header_macro): New.
19851 (defines_obstack_save): New. Use compute_header_macro.
19852 (output_files): Update. Use defines_obstack_save.
19853
19854 2001-08-15 Akim Demaille <akim@epita.fr>
19855
19856 * doc/bison.texinfo (Table of Symbols): Document
19857 YYSTACK_USE_ALLOCA.
19858
19859 2001-08-15 Akim Demaille <akim@epita.fr>
19860
19861 * missing: Update from CVS Automake.
19862 * config/config.guess, config/config.sub, config/texinfo.tex:
19863 Update from gnu.org.
19864
19865 2001-08-15 Akim Demaille <akim@epita.fr>
19866
19867 * Makefile.maint: Sync with CVS Autoconf.
19868
19869 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19870
19871 * doc/bison.texinfo: Include GNU Free Documentation License from
19872 `fdl.texi'.
19873 * doc/fdl.texi: Add to package.
19874
19875 2001-08-14 Marc Autret <autret_m@epita.fr>
19876
19877 Turn on %{source,header}_extension features.
19878
19879 * src/lex.c (percent_table): Un-CPP out header_extension and
19880 source_extension.
19881 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19882 (compute_exts_from_src): Remove conditions. It restores priorities
19883 between options.
19884
19885 2001-08-14 Marc Autret <autret_m@epita.fr>
19886
19887 * src/files.c (compute_base_names): Add extensions computing when
19888 `--file-prefix' used.
19889 Standardize function calls.
19890
19891 2001-08-13 Marc Autret <autret_m@epita.fr>
19892
19893 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19894 defining it (defined but null disables alloca).
19895
19896 2001-08-13 Marc Autret <autret_m@epita.fr>
19897
19898 * src/bison.simple (_yy_memcpy): CPP reformat.
19899
19900 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19901
19902 * tests/atconfig.in (CPPFLAGS): Fix.
19903
19904 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19905
19906 * doc/bison.texinfo: Include GNU General Public License from
19907 `gpl.texi'.
19908 * doc/gpl.texi: Add to package.
19909
19910 2001-08-10 Marc Autret <autret_m@epita.fr>
19911
19912 * src/print_graph.h: Fix.
19913 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19914
19915 2001-08-10 Akim Demaille <akim@epita.fr>
19916
19917 * src/system.h: Provide default declarations for stpcpy, strndup,
19918 and strnlen.
19919
19920 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19921
19922 * doc/bison.texinfo (Locations): Update @$ stuff.
19923
19924 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19925
19926 * src/bison.simple (YYLLOC_DEFAULT): Update.
19927 (yyparse): Adjust.
19928
19929 2001-08-08 Marc Autret <autret_m@epita.fr>
19930
19931 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19932 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19933 Reported by Fabrice Bauzac.
19934
19935 2001-08-08 Marc Autret <autret_m@epita.fr>
19936
19937 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19938 * src/vcg.c (output_node): Fix.
19939 * src/vcg.h: Cleanup.
19940 * src/print_graph.c: Add comments.
19941 (node_output_size): New global variable. Simplify the formatting of
19942 the VCG graph output.
19943 (print_actions): Unused code is now used. It notifies the final state
19944 and no action states in the VCG graph. It also give the reduce actions.
19945 The `shift and goto' edges are red and the `go to state' edges are
19946 blue.
19947 Get the current node name and node_obstack by argument.
19948 (node_obstack): New variable.
19949 (print_state): Manage node_obstack.
19950 (print_core): Use node_obstack given by argument.
19951 A node is not only computed here but in print_actions also.
19952 (print_graph): CPP out useless code instead of commenting it.
19953
19954 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19955
19956 * tests/atconfig.in (CPPFLAGS): Fix.
19957
19958 2001-08-07 Akim Demaille <akim@epita.fr>
19959
19960 * src/print_graph.c (quote): New.
19961 (print_core): Use it.
19962
19963 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19964
19965 * src/vcg.c (complain.h): Include it.
19966 Unepitaize `return' invocations.
19967 [NDEBUG] (main): Remove.
19968 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19969 * src/files.c (open_files): Initialize graph_obstack.
19970 * src/print_graph.c (print_actions): CPP out useless code.
19971 (print_core): Don't output the last `\n' in labels.
19972 Use `quote'.
19973 * src/files.c (output_files): Output the VCG file.
19974 * src/main.c (main): Invoke print_graph ();
19975
19976 2001-08-06 Marc Autret <autret_m@epita.fr>
19977
19978 Automaton VCG graph output.
19979 Using option ``-g'' or long option ``--graph'', you can generate
19980 a gram_filename.vcg file containing a VCG description of the LALR (1)
19981 automaton of your grammar.
19982
19983 * src/main.c: Call to print_graph() function.
19984 * src/getargs.h: Update.
19985 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19986 (graph_flag): New flag.
19987 (longopts): Update.
19988 (getargs): Add case `g'.
19989 * src/files.c (graph_obstack): New obstack struct.
19990 (open_files): Initialize new obstack.
19991 (output_files): Saves graph_obstack if required.
19992 * src/files.h (graph_obstack): New extern declaration.
19993 * src/Makefile.am: Add new source files.
19994
19995 2001-08-06 Marc Autret <autret_m@epita.fr>
19996
19997 * src/print_graph.c, src/print_graph.h (graph): New.
19998 * src/vcg.h: New file.
19999 * src/vcg.c: New file, VCG graph handling.
20000
20001 2001-08-06 Marc Autret <autret_m@epita.fr>
20002
20003 Add of %source_extension and %header_extension which specify
20004 the source or/and the header output file extension.
20005
20006 * src/files.c (compute_base_names): Remove initialisation of
20007 src_extension and header_extension.
20008 (compute_exts_from_gf): Update.
20009 (compute_exts_from_src): Update.
20010 (output_files): Update.
20011 * src/reader.c (parse_header_extension_decl): New.
20012 (parse_source_extension_decl): New.
20013 (read_declarations): New case statements for the new tokens.
20014 * src/lex.c (percent_table): Add entries for %source_extension
20015 and %header_extension.
20016 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20017
20018 2001-08-06 Marc Autret <autret_m@epita.fr>
20019
20020 * configure.in: Bump to 1.28c.
20021 * doc/bison.texinfo: Texinfo thingies.
20022
20023 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20024
20025 * tests/atconfig.in (CPPFLAGS): Add.
20026 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20027
20028 2001-08-03 Akim Demaille <akim@epita.fr>
20029
20030 Version 1.28b.
20031
20032 2001-08-03 Akim Demaille <akim@epita.fr>
20033
20034 * tests/Makefile.am (check-local): Ship testsuite.
20035 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20036 Include `string.h'.
20037
20038 2001-08-03 Akim Demaille <akim@epita.fr>
20039
20040 * configure.in: Try using -Wformat when compiling.
20041
20042 2001-08-03 Akim Demaille <akim@epita.fr>
20043
20044 * configure.in: Bump to 1.28b.
20045
20046 2001-08-03 Akim Demaille <akim@epita.fr>
20047
20048 * src/complain.c: Adjust strerror_r portability issues.
20049
20050 2001-08-03 Akim Demaille <akim@epita.fr>
20051
20052 Version 1.28a.
20053
20054 2001-08-03 Akim Demaille <akim@epita.fr>
20055
20056 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20057 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20058 * src/getargs.c: Include complain.h.
20059 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20060 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20061
20062 2001-08-03 Akim Demaille <akim@epita.fr>
20063
20064 * src/reader.c (readgram): Display hidden chars in error messages.
20065
20066 2001-08-03 Akim Demaille <akim@epita.fr>
20067
20068 Update to gettext 0.10.39.
20069
20070 2001-08-03 Akim Demaille <akim@epita.fr>
20071
20072 * lib/strspn.c: New.
20073
20074 2001-08-01 Marc Autret <autret_m@epita.fr>
20075
20076 * doc/bison.texinfo: Update.
20077 * doc/bison.1 (mandoc): Update.
20078 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20079 * src/files.c: Support output files extensions computing.
20080 (src_extension): New static variable.
20081 (header_extension): New static variable.
20082 (tr): New function.
20083 (get_extension_index): New function, gets the index of an extension
20084 filename in a string.
20085 (compute_exts_from_gf): New function, computes extensions from the
20086 grammar file extension.
20087 (compute_exts_from_src): New functions, computes extensions from the
20088 C source file extension, file given by ``-o'' option.
20089 (compute_base_names): Update.
20090 (output_files): Update.
20091
20092 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20093
20094 * doc/bison.texi: Document @$.
20095 (Locations): New section.
20096
20097 2001-07-18 Akim Demaille <akim@epita.fr>
20098
20099 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20100 * config/prev-version.txt, config/move-if-change: New.
20101 * Makefile.am: Adjust.
20102
20103 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20104
20105 * src/bison.simple (yyparse): Suppress warning `comparaison
20106 between signed and unsigned'.
20107
20108 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20109
20110 * src/getargs.h (raw_flag): Remove.
20111 * src/getargs.c: Die on `-r'/`--raw'.
20112 * src/lex.c (parse_percent_token): Die on `%raw'.
20113 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20114 * tests/calc.at: Suppress test with option `--raw'.
20115
20116 2001-07-14 Akim Demaille <akim@epita.fr>
20117
20118 * config/: New.
20119 * configure.in: Require Autoconf 2.50.
20120 Update to gettext 0.10.38.
20121
20122 2001-03-16 Akim Demaille <akim@epita.fr>
20123
20124 * doc/bison.texinfo: ANSIfy the examples.
20125
20126 2001-03-16 Akim Demaille <akim@epita.fr>
20127
20128 * getargs.c (skeleton): New variable.
20129 (longopts): --skeleton is a new option.
20130 (shortopts, getargs): -S is a new option.
20131 * getargs.h: Declare skeleton.
20132 * output.c (output_parser): Use it.
20133
20134 2001-03-16 Akim Demaille <akim@epita.fr>
20135
20136 * m4/strerror_r.m4: New.
20137 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20138 * lib/error.h, lib/error.c: Update.
20139
20140 2001-03-16 Akim Demaille <akim@epita.fr>
20141
20142 * src/getargs.c (longopts): Clean up.
20143
20144 2001-02-21 Akim Demaille <akim@epita.fr>
20145
20146 * src/reader.c (gensym): `gensym_count' is your own.
20147 Use a static buf to create the symbol name, as token_buffer is no
20148 longer a buffer.
20149
20150 2001-02-08 Akim Demaille <akim@epita.fr>
20151
20152 * src/conflicts.c (conflict_report): Be sure not to append to res
20153 between two calls, which could happen if both first sprintf were
20154 skipped, but not the first cp += strlen.
20155
20156 2001-02-08 Akim Demaille <akim@epita.fr>
20157
20158 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20159 New, from fileutils 4.0.37.
20160 * configure.in: Require Autoconf 2.49c. I took some time before
20161 making this decision. This is the only way out for portability
20162 issues in Bison, it would mean way too much duplicate effort to
20163 import in Bison features implemented in 2.49c since 2.13.
20164 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20165
20166 2001-02-02 Akim Demaille <akim@epita.fr>
20167
20168 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20169 * lib/xalloc.h, lib/xmalloc.c: Update.
20170
20171 2001-01-19 Akim Demaille <akim@epita.fr>
20172
20173 Get rid of the ad hoc handling of token_buffer in the scanner: use
20174 the obstacks.
20175
20176 * src/lex.c (token_obstack): New.
20177 (init_lex): Initialize it. No longer call...
20178 (grow_token_buffer): this. Remove it.
20179 Adjust all the places which used it to use the obstack.
20180
20181 2001-01-19 Akim Demaille <akim@epita.fr>
20182
20183 * src/lex.h: Rename all the tokens:
20184 s/\bENDFILE\b/tok_eof/g;
20185 s/\bIDENTIFIER\b/tok_identifier/g;
20186 etc.
20187 Let them be enums, not #define, to ease debugging.
20188 Adjust all the code.
20189
20190 2001-01-18 Akim Demaille <akim@epita.fr>
20191
20192 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20193 * src/lex.c (maxtoken, grow_token_buffer): Static.
20194
20195 2001-01-18 Akim Demaille <akim@epita.fr>
20196
20197 Since we now use obstacks, more % directives can be enabled.
20198
20199 * src/lex.c (percent_table): Also accept `%yacc',
20200 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20201 `%debug'.
20202 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20203 instead of returning a token.
20204 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20205 * src/reader.c (read_declarations): Adjust.
20206 * src/files.c (open_files): Don't call `compute_base_names', don't
20207 compute `attrsfile' since they depend upon data which might be
20208 *in* the input file now.
20209 (output_files): Do it here.
20210 * src/output.c (output_headers): Document the fact that this patch
20211 introduces a guaranteed SEGV for semantic parsers.
20212 * doc/bison.texinfo: Document them.
20213 * tests/suite.at: Exercise these %options.
20214
20215 2000-12-20 Akim Demaille <akim@epita.fr>
20216
20217 Also handle the output file (--verbose) with obstacks.
20218
20219 * files.c (foutput): Remove.
20220 (output_obstack): New.
20221 Adjust all dependencies.
20222 * src/conflicts.c: Return a string.
20223 * src/system.h (obstack_grow_string): Rename as...
20224 (obstack_sgrow): this. Be ready to work with non literals.
20225 (obstack_fgrow4): New.
20226
20227 2000-12-20 Akim Demaille <akim@epita.fr>
20228
20229 * src/files.c (open_files): Fix the computation of short_base_name
20230 in the case of `-o foo.tab.c'.
20231
20232 2000-12-20 Akim Demaille <akim@epita.fr>
20233
20234 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20235 (copy_dollar): Now that everything uses obstacks, get rid of the
20236 FILE * parameters.
20237
20238 2000-12-20 Akim Demaille <akim@epita.fr>
20239
20240 * src/files.c (open_files): Actually the `.output' file is based
20241 on the short_base_name, not base_name.
20242 * tests/suite.at (Checking output file names): Adjust.
20243
20244 2000-12-20 Akim Demaille <akim@epita.fr>
20245
20246 * src/bison.s1: Remove, we now use directly...
20247 * src/bison.simple: this.
20248 * src/Makefile.am: Use pkgdata instead of data.
20249
20250 2000-12-20 Akim Demaille <akim@epita.fr>
20251
20252 * src/files.c (guard_obstack): New.
20253 (open_files): Initialize it.
20254 (output_files): Dump it...
20255 * src/files.h: Export it.
20256 * src/reader.c (copy_guard): Use it.
20257
20258 2000-12-19 Akim Demaille <akim@epita.fr>
20259
20260 * src/files.c (outfile, defsfile, actfile): Removed as global
20261 vars.
20262 (open_files): Don't compute them.
20263 (output_files): Adjust.
20264 (base_name, short_base_name): Be global.
20265 Adjust dependencies.
20266
20267 2000-12-19 Akim Demaille <akim@epita.fr>
20268
20269 * src/files.c (strsuffix): New.
20270 (stringappend): Be just like strcat but allocate.
20271 (base_names): Eve out from open_files.
20272 Try to simplify the rather hairy computation of base_name and
20273 short_base_name.
20274 (open_files): Use it.
20275 * tests/suite.at (Checking output file names): New test.
20276
20277 2000-12-19 Akim Demaille <akim@epita.fr>
20278
20279 * src/system.h (obstack_grow_literal_string): Rename as...
20280 (obstack_grow_string): this.
20281 * src/output.c (output_parser): Recognize `%% actions' instead of
20282 `$'.
20283 * src/bison.s1: s/$/%% actions/.
20284 * src/bison.hairy: Likewise.
20285
20286 2000-12-19 Akim Demaille <akim@epita.fr>
20287
20288 * src/output.c (output_parser): Compute the `#line' lines when
20289 there are.
20290 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20291 Suggested by Hans Aberg.
20292
20293 2000-12-19 Akim Demaille <akim@epita.fr>
20294
20295 Let the handling of the skeleton files be local to the procedures
20296 that use it.
20297
20298 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20299 longer static.
20300 (fparser, open_extra_files): Remove.
20301 (open_files, output_files): Don't take care of fparser.
20302 * src/files.h: Adjust.
20303 * src/output.c (output_parser): Open and close the file to the
20304 skeleton.
20305 * src/reader.c (read_declarations): When %semantic_parser, open
20306 fguard.
20307
20308 2000-12-19 Akim Demaille <akim@epita.fr>
20309
20310 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20311 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20312
20313 2000-12-19 Akim Demaille <akim@epita.fr>
20314
20315 * src/files.c (open_files): Yipee! We no longer need all the code
20316 looking for `/tmp' since we have no tmp file.
20317
20318 2000-12-19 Akim Demaille <akim@epita.fr>
20319
20320 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20321 New macros.
20322 * src/files.c (open_files): Less dependency on MSDOS etc.
20323
20324 2000-12-14 Akim Demaille <akim@epita.fr>
20325
20326 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20327 Provide a default definition.
20328 Use it when executing the default @ action.
20329 * src/reader.c (reader_output_yylsp): No longer include
20330 `timestamp' and `text' in the default YYLTYPE.
20331
20332 2000-12-12 Akim Demaille <akim@epita.fr>
20333
20334 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20335 (copy_guard): Quote the file names.
20336 Reported by Laurent Mascherpa.
20337
20338 2000-12-12 Akim Demaille <akim@epita.fr>
20339
20340 * src/output.c (output_headers, output_program, output): Be sure
20341 to escape special characters when outputting filenames.
20342 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20343 (output_headers): Don't depend on them, Use ACTSTR.
20344
20345 2000-11-17 Akim Demaille <akim@epita.fr>
20346
20347 * lib/obstack.h: Formatting changes.
20348 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20349 prevents type checking.
20350 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20351 cast the value to (void *): assigning a `foo *' to a `void *'
20352 variable is valid.
20353 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20354 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20355 append characters.
20356
20357 2000-11-17 Akim Demaille <akim@epita.fr>
20358
20359 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20360 as...
20361 (suite.m4, regression.m4, calc.m4): these.
20362 * tests/atgeneral.m4: Update from CVS Autoconf.
20363
20364 2000-11-17 Akim Demaille <akim@epita.fr>
20365
20366 * tests/regression.m4 (%union and --defines): New test,
20367 demonstrating a current bug in the obstack implementation.
20368
20369 2000-11-17 Akim Demaille <akim@epita.fr>
20370
20371 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20372 macros.
20373 Use them to declare the variables which are global or local to
20374 `yyparse'.
20375
20376 2000-11-17 Akim Demaille <akim@epita.fr>
20377
20378 * acconfig.h: Remove, no longer used.
20379
20380 2000-11-07 Akim Demaille <akim@epita.fr>
20381
20382 * src: s/Copyright (C)/Copyright/g.
20383
20384 2000-11-07 Akim Demaille <akim@epita.fr>
20385
20386 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20387 defining.
20388 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20389
20390 2000-11-07 Akim Demaille <akim@epita.fr>
20391
20392 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20393 Merge in a single CPP if/else.
20394
20395 2000-11-07 Akim Demaille <akim@epita.fr>
20396
20397 * src/output.c (output): Remove useless variables.
20398 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20399 argument `data' for consistency with the prototypes.
20400 Qualify it `const'.
20401 (obstack_copy, obstack_copy0): Rename the second argument as
20402 `address' for consistency. Qualify it `const'.
20403 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20404 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20405 `const' their input argument (`data' or `address').
20406 Adjust the corresponding macros to include `const' in casts.
20407
20408 2000-11-03 Akim Demaille <akim@epita.fr>
20409
20410 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20411 s/PFILE1/BISON_HAIRY/.
20412 Adjust dependencies.
20413
20414 2000-11-03 Akim Demaille <akim@epita.fr>
20415
20416 For some reason, this was not applied.
20417
20418 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20419 `unlink': it's no longer used.
20420
20421 2000-11-03 Akim Demaille <akim@epita.fr>
20422
20423 * src/files.c (skeleton_find): New function, eved out of...
20424 (open_files, open_extra_files): here.
20425
20426 2000-11-03 Akim Demaille <akim@epita.fr>
20427
20428 Don't use `atexit'.
20429
20430 * src/files.c (obstack_save): New function.
20431 (done): Rename as...
20432 (output_files): this.
20433 Use `obstack_save'.
20434 * src/main.c (main): Don't use `atexit' to register `done', since
20435 it no longer has to remove tmp files, just call `output_files'
20436 when there are no errors.
20437
20438 2000-11-02 Akim Demaille <akim@epita.fr>
20439
20440 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20441 `unlink': it's no longer used.
20442 * src/files.h: Formatting changes.
20443
20444 2000-11-02 Akim Demaille <akim@epita.fr>
20445
20446 Remove the last uses of mktemp and unlink/delete.
20447
20448 * src/files.c (fdefines, ftable): Removed.
20449 (defines_ostack, table_obstack): New.
20450 Adjust dependencies of the former into uses of the latter.
20451 * src/output.c (output_short_or_char_table, output_short_table):
20452 Convert to using obstacks.
20453 * src/reader.c (copy_comment2): Accept one FILE * and two
20454 obstacks.
20455 (output_token_defines, reader_output_yylsp): Use obstacks.
20456 * src/system.h (obstack_fgrow3): New.
20457 * po/POTFILES.in: Adjust.
20458
20459 2000-11-01 Akim Demaille <akim@epita.fr>
20460
20461 Change each use of `fattrs' into a use of `attrs_obstack'.
20462
20463 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20464 * src/files.c (fattrs): Remove.
20465 (attrs_obstack): New.
20466 Adjust all dependencies.
20467 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20468
20469 2000-11-01 Akim Demaille <akim@epita.fr>
20470
20471 Introduce obstacks.
20472 Change each use of `faction' into a use of `action_obstack'.
20473
20474 * lib/obstack.h, lib/obstack.c: New files.
20475 * src/files.c (faction): Remove.
20476 (action_obstack): New.
20477 Adjust all dependencies.
20478
20479 2000-10-20 Akim Demaille <akim@epita.fr>
20480
20481 * lib/quote.h (PARAMS): New macro. Use it.
20482
20483 2000-10-16 Akim Demaille <akim@epita.fr>
20484
20485 * src/output.c (output_short_or_char_table): New function.
20486 (output_short_table, output_token_translations): Use it.
20487 (goto_actions): Use output_short_table.
20488
20489 2000-10-16 Akim Demaille <akim@epita.fr>
20490
20491 * src/symtab.c (bucket_new): New function.
20492 (getsym): Use it.
20493
20494 * src/output.c (output_short_table): New argument to display the
20495 comment associated with the table.
20496 Adjust dependencies.
20497 (output_gram): Use it.
20498 (output_rule_data): Nicer output layout for YYTNAME.
20499
20500 2000-10-16 Akim Demaille <akim@epita.fr>
20501
20502 * src/lex.c (read_typename): New function.
20503 (lex): Use it.
20504 * src/reader.c (copy_dollar): Likewise.
20505
20506 2000-10-16 Akim Demaille <akim@epita.fr>
20507
20508 * src/reader.c (copy_comment2): Expect the input stream to be on
20509 the `/' which is suspected to open a comment, instead of being
20510 called after `//' or `/*' was read.
20511 (copy_comment, copy_definition, parse_union_decl, copy_action)
20512 (copy_guard): Adjust.
20513
20514 2000-10-16 Akim Demaille <akim@epita.fr>
20515
20516 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20517 `read_signed_integer'.
20518
20519 2000-10-16 Akim Demaille <akim@epita.fr>
20520
20521 * src/reader.c (copy_dollar): New function.
20522 (copy_guard, copy_action): Use it.
20523
20524 2000-10-16 Akim Demaille <akim@epita.fr>
20525
20526 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20527 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20528 New files, from Fileutils 4.0.27.
20529 * src/main.c (printable_version): Remove.
20530 * src/lex.c, src/reader.c: Use `quote'.
20531
20532 2000-10-04 Akim Demaille <akim@epita.fr>
20533
20534 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20535
20536 2000-10-04 Akim Demaille <akim@epita.fr>
20537
20538 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20539
20540 2000-10-04 Akim Demaille <akim@epita.fr>
20541
20542 When a literal string is used to define two different tokens,
20543 `bison -v' segfaults.
20544 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20545
20546 * tests/regression.m4: New file.
20547 Include the core of the sample provided by Piotr Gackiewicz.
20548 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20549 properly.
20550
20551 2000-10-04 Akim Demaille <akim@epita.fr>
20552
20553 * src/reader.c (parse_expect_decl): Keep `count' within the size
20554 of `buffer'.
20555 From Neil Booth.
20556
20557 2000-10-02 Paul Eggert <eggert@twinsun.com>
20558
20559 * bison.s1 (yyparse): Assign the default value
20560 unconditionally, to avoid a GCC warning and make the parser a
20561 tad smaller.
20562
20563 2000-10-02 Akim Demaille <akim@epita.fr>
20564
20565 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20566 options.
20567
20568 2000-10-02 Akim Demaille <akim@epita.fr>
20569
20570 * src/derives.c, src/print.c, src/reduce.c: To ease the
20571 translation, move some `\n' out of the translated strings.
20572
20573 2000-10-02 Akim Demaille <akim@epita.fr>
20574
20575 The location tracking mechanism is precious for parse error
20576 messages. Nevertheless, it is enabled only when `@n' is used in
20577 the grammar, which is a different issue (you can use it in error
20578 message, but not in the grammar per se). Therefore, there should
20579 be another means to enable it.
20580
20581 * src/getargs.c (getargs): Support `--locations'.
20582 (usage): Report it.
20583 * src/getargs.h (locationsflag): Export it.
20584 * src/lex.c (percent_table): Support `%locations'.
20585 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20586 with `locationsflag'.
20587 * doc/bison.texinfo: Document `--locations' and `%locations'.
20588 Sort the options.
20589 * tests/calc.m4: Test it.
20590
20591 For regularity of the names, replace each
20592 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20593 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20594 In addition replace each `flag' with `_flag'.
20595
20596 2000-10-02 Akim Demaille <akim@epita.fr>
20597
20598 Also test parse error messages, including with YYERROR_VERBOSE.
20599
20600 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20601 associative).
20602 Use it to check the computations.
20603 Use it to check `nonassoc' is honored.
20604 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20605 `--yyerror-verbose'.
20606 (_AT_CHECK_CALC): Adjust to this option.
20607 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20608
20609 2000-10-02 Akim Demaille <akim@epita.fr>
20610
20611 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20612 the latter demonstrates a flaw in the handling of non debugging
20613 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20614 was used in order to simplify:
20615
20616 #if YYDEBUG
20617 if (yydebug)
20618 {
20619 ...
20620 }
20621 #endif
20622
20623 into
20624
20625 if (yydebug)
20626 {
20627 ...
20628 }
20629
20630 unfortunately this leads to a CPP conflict when
20631 `--name-prefix=foo' is used since it produces `#define yydebug
20632 foodebug'.
20633
20634 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20635 (YYDPRINTF): New macro.
20636 Spread its use.
20637 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20638 the bison options.
20639 Also test `--verbose', `--defines' and `--name-prefix'.
20640
20641 2000-10-02 Akim Demaille <akim@epita.fr>
20642
20643 Improve the readability of the produced parsers.
20644
20645 * src/bison.s1: Formatting changes.
20646 Improve the comment related to the `$' mark.
20647 (yydefault): Don't fall through to `yyresume': `goto' there.
20648 * src/output.c (output_parser): When the `$' is met, skip the end
20649 of its line.
20650 New variable, `number_of_dollar_signs', to check there's exactly
20651 one `$' in the parser skeleton.
20652
20653 2000-10-02 Akim Demaille <akim@epita.fr>
20654
20655 * lib/xstrdup.c: New file, from the fileutils.
20656 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20657 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20658 instead of strlen + xmalloc + strcpy.
20659 * src/symtab.c (copys): Remove, use xstrdup instead.
20660
20661 2000-10-02 Akim Demaille <akim@epita.fr>
20662
20663 * src/gram.h (associativity): New enum type which replaces the
20664 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20665 `right_assoc', `left_assoc' and `non_assoc'.
20666 Adjust all dependencies.
20667 * src/reader.c: Formatting changes.
20668 (LTYPESTR): Don't define it, use it as a literal in
20669 `reader_output_yylsp'.
20670 * src/symtab.h (symbol_class): New enum type which replaces the
20671 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20672 `sunknown', `stoken and `snterm'.
20673
20674 2000-10-02 Akim Demaille <akim@epita.fr>
20675
20676 * src/getargs.c (fixed_outfiles): Rename as...
20677 (yaccflag): for consistency and accuracy.
20678 Adjust dependencies.
20679
20680 2000-10-02 Akim Demaille <akim@epita.fr>
20681
20682 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20683 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20684 difficult and introduced a lot of core dump. It turns out that
20685 Bison used an implementation of `xmalloc' based on `calloc', and
20686 at various places it does depend upon the initialization to 0. I
20687 have not tried to isolate the pertinent places, and all the former
20688 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20689 someone should address this issue.
20690
20691 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20692 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20693 files.
20694 Adjust dependencies.
20695 * src/warshall.h: New file.
20696 Propagate.
20697
20698 2000-10-02 Akim Demaille <akim@epita.fr>
20699
20700 Various anti-`extern in *.c' changes.
20701
20702 * src/system.h: Include `assert.h'.
20703
20704 2000-10-02 Akim Demaille <akim@epita.fr>
20705
20706 * src/state.h (nstates, final_state, first_state, first_shift)
20707 (first_reduction): Move their exportation from here...
20708 * src/LR0.h: to here.
20709 Adjust dependencies.
20710 * src/getargs.c (statisticsflag): New variable.
20711 Add support for `--statistics'.
20712 Adjust dependencies.
20713
20714 Remove a lot of now useless `extern' statements in most files.
20715
20716 2000-10-02 Akim Demaille <akim@epita.fr>
20717
20718 * src/LR0.h: New file.
20719 Propagate its use.
20720
20721 2000-10-02 Akim Demaille <akim@epita.fr>
20722
20723 * src/print.h: New file.
20724 Propagate its use.
20725 * src/print.c: Formatting and ordering changes.
20726 (verbose, terse): Replace with...
20727 (print_results): this new function.
20728 Adjust dependencies.
20729
20730 2000-10-02 Akim Demaille <akim@epita.fr>
20731
20732 * src/conflicts.c (conflict_report): New function.
20733 (conflict_log, verbose_conflict_log): Replace with...
20734 (print_conflicts): this function.
20735 Adjust dependencies.
20736 * src/conflicts.h: New file.
20737 Propagate its inclusion.
20738
20739 2000-10-02 Akim Demaille <akim@epita.fr>
20740
20741 * src/nullable.h: New file.
20742 Propagate its inclusion.
20743 * src/nullable.c: Formatting changes.
20744
20745 2000-10-02 Akim Demaille <akim@epita.fr>
20746
20747 * src/reduce.h: New file.
20748 Propagate its inclusion.
20749 * src/reduce.c: Topological sort and other formatting changes.
20750 (bool, TRUE, FALSE): Move their definition to...
20751 * src/system.h: here.
20752
20753 2000-10-02 Akim Demaille <akim@epita.fr>
20754
20755 * src/files.c: Formatting changes.
20756 (tryopen, tryclose, openfiles): Rename as...
20757 (xfopen, xfclose, open_files): this.
20758 (stringappend): static.
20759 * src/files.h: Complete the list of exported symbols.
20760 Propagate its use.
20761
20762 2000-10-02 Akim Demaille <akim@epita.fr>
20763
20764 * src/reader.h: New file.
20765 Propagate its use instead of tedious list of `extern' and
20766 prototypes.
20767 * src/reader.c: Formatting changes, topological sort,
20768 s/register//.
20769
20770 2000-10-02 Akim Demaille <akim@epita.fr>
20771
20772 * src/lex.h: Prototype `lex.c' exported functions.
20773 * src/reader.c: Adjust.
20774 * src/lex.c: Formatting changes.
20775 (safegetc): Rename as...
20776 (xgetc): this.
20777
20778 2000-10-02 Akim Demaille <akim@epita.fr>
20779
20780 * src/lalr.h: New file.
20781 Propagate its inclusion instead of prototypes and `extern'.
20782 * src/lalr.c: Formatting changes, topological sorting etc.
20783
20784 2000-10-02 Akim Demaille <akim@epita.fr>
20785
20786 * src/output.c (token_actions): Introduce a temporary array,
20787 YYDEFACT, that makes it possible for this function to use
20788 output_short_table.
20789
20790 2000-10-02 Akim Demaille <akim@epita.fr>
20791
20792 `user_toknums' is output as a `short[]' in `output.c', while it is
20793 defined as a `int[]' in `reader.c'. For consistency with the
20794 other output tables, `user_toknums' is now defined as a table of
20795 shorts.
20796
20797 * src/reader.c (user_toknums): Be a short table instead of an int
20798 table.
20799 Adjust dependencies.
20800
20801 Factor the short table outputs.
20802
20803 * src/output.c (output_short_table): New function.
20804 * src/output.c (output_gram, output_stos, output_rule_data)
20805 (output_base, output_table, output_check): Use it.
20806
20807 2000-10-02 Akim Demaille <akim@epita.fr>
20808
20809 * src/output.c (output): Topological sort of the functions, in
20810 order to get rid of the `static' prototypes.
20811 No longer use `register'.
20812 * src/output.h: New file.
20813 Propagate its inclusion in files explicitly prototyping functions
20814 from output.c.
20815
20816 2000-09-21 Akim Demaille <akim@epita.fr>
20817
20818 * src/atgeneral.m4: Update from Autoconf.
20819
20820 2000-09-21 Akim Demaille <akim@epita.fr>
20821
20822 * src/closure.h: New file.
20823 * src/closure.c: Formatting changes, topological sort over the
20824 functions, use of closure.h.
20825 (initialize_closure, finalize_closure): Rename as...
20826 (new_closure, free_closure): these. Adjust dependencies.
20827 * src/LR0.c: Formatting changes, topological sort, use of
20828 cloture.h.
20829 (initialize_states): Rename as...
20830 (new_states): this.
20831 * src/Makefile.am (noinst_HEADERS): Adjust.
20832
20833 2000-09-20 Akim Demaille <akim@epita.fr>
20834
20835 * src/acconfig.h: Don't protect config.h against multiple
20836 inclusion.
20837 Don't define PARAMS.
20838 * src/system.h: Define PARAMS.
20839 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20840 purpose of config.h. system.h must not try to fix wrong
20841 definitions in config.h.
20842
20843 2000-09-20 Akim Demaille <akim@epita.fr>
20844
20845 * src/derives.h: New file.
20846 * src/main.c, src/derives.h: Use it.
20847 Formatting changes.
20848 * src/Makefile.am (noinst_HEADERS): Adjust.
20849
20850 2000-09-20 Akim Demaille <akim@epita.fr>
20851
20852 * tests/atgeneral.m4: Update from Autoconf.
20853 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20854 (AT_CHECK_CALC): New macros.
20855 Use these macros to test bison with options `', `--raw',
20856 `--debug', `--yacc', `--yacc --debug'.
20857
20858 2000-09-19 Akim Demaille <akim@epita.fr>
20859
20860 * src/output.c: Formatting changes.
20861 * src/machine.h: Remove, leaving its contents in...
20862 * src/system.h: here.
20863 Include stdio.h.
20864 Adjust all dependencies on stdio.h and machine.h.
20865 * src/getargs.h: New file.
20866 Let all `extern' declarations about getargs.c be replaced with
20867 inclusion of `getargs.h'.
20868 * src/Makefile.am (noinst_HEADERS): Adjust.
20869
20870 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20871 scope.
20872 (yyerror): Returns void, not int.
20873 * doc/bison.texinfo: Formatting changes.
20874
20875 2000-09-19 Akim Demaille <akim@epita.fr>
20876
20877 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20878 portable.
20879
20880 2000-09-18 Akim Demaille <akim@epita.fr>
20881
20882 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20883 * src/Makefile.am (INCLUDES): Don't.
20884 Be ready to fetch headers in lib/.
20885
20886 2000-09-18 Akim Demaille <akim@epita.fr>
20887
20888 * doc/bison.texinfo: Update the copyright.
20889 ANSIfy and GNUify the examples.
20890 Remove the old menu.
20891
20892 2000-09-18 Akim Demaille <akim@epita.fr>
20893
20894 First set of tests: use the `calc' example from the documentation.
20895
20896 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20897 is defined only when YYDEBUG is.
20898 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20899 * src/files.c (tryopen, tryclose): Formatting changes.
20900 Move to the top and be static.
20901 * src/reader.c (read_signed_integer): Likewise.
20902 * tests/calc.m4: New file.
20903 * Makefile.am, suite.m4: Adjust.
20904 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20905
20906 2000-09-18 Akim Demaille <akim@epita.fr>
20907
20908 Add support for an Autotest test suite for Bison.
20909
20910 * m4/m4.m4, m4/atconfig.m4: New files.
20911 * m4/Makefile.am (EXTRA_DIST): Adjust.
20912 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20913 files.
20914 * src/getargs.c: Display a more standard --version message.
20915 * src/reader.c (reader): Formatting changes.
20916 No longer depend upon VERSION_STRING.
20917 * configure.in: No longer use `dnl'.
20918 Set up the test suite and the new directory `tests/.
20919 (VERSION_STRING): Remove.
20920
20921 2000-04-14 Akim Demaille <akim@epita.fr>
20922
20923 * src/reader.c (copy_comment2): New function, same as former
20924 `copy_comment', but outputs into two FILE *.
20925 (copy_comment): Use it.
20926 (parse_union_decl): Use it.
20927 (get_type, parse_start_decl): Use the same `invalid' message.
20928 (parse_start_decl, parse_union_decl): Use the same `multiple'
20929 message.
20930 (parse_union_decl, copy_guard, copy_action): Use the same
20931 `unmatched' message.
20932 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20933
20934 2000-03-31 Akim Demaille <akim@epita.fr>
20935
20936 * src/files.c (tryopen, tryclose): Move to the top.
20937 Be static.
20938
20939 2000-03-31 Akim Demaille <akim@epita.fr>
20940
20941 * src/main.c (main): Don't call `done', exit does it.
20942
20943 2000-03-31 Akim Demaille <akim@epita.fr>
20944
20945 * allocate.c: s/return (foo)/return foo/.
20946 * lalr.c: Likewise.
20947 * LR0.c: Likewise.
20948 * output.c: Likewise.
20949 * reader.c: Likewise.
20950 * symtab.c: Likewise.
20951 * vmsgetargs.c: Likewise.
20952
20953 2000-03-31 Akim Demaille <akim@epita.fr>
20954
20955 Clean up the error reporting functions.
20956
20957 * src/report.c: New file.
20958 * src/report.h: Likewise.
20959 * src/Makefile.am: Adjust.
20960 * m4/error.m4: New file.
20961 * m4/Makefile.am: Adjust.
20962 * configure.in (jm_PREREQ_ERROR): Call it.
20963 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20964 Remove.
20965 (fatal, fatals): Remove. All callers use complain.c::fatal.
20966 (warn, warni, warns, warnss, warnss): Remove. All callers use
20967 complain.c::complain.
20968 (toomany): Remove, use fatal instead.
20969 * src/files.c (done): No argument, use complain_message_count.
20970 * src/main.c (main): Register `done' to `atexit'.
20971
20972 * src/getargs.c (usage): More `fputs', less `fprintf'.
20973
20974 2000-03-28 Akim Demaille <akim@epita.fr>
20975
20976 * lib/: New directory.
20977 * Makefile.am (SUBDIRS): Adjust.
20978 * configure.in: Adjust.
20979 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20980 useless.
20981 * src/alloca.c: Moved to lib/.
20982 * src/getopt.c: Likewise.
20983 * src/getopt1.c: Likewise.
20984 * src/getopt.h: Likewise.
20985 * src/ansi2knr.c: Likewise.
20986 * src/ansi2knr.1: Likewise.
20987 * src/Makefile.am: Adjust.
20988 * lib/Makefile.am: New file.
20989
20990 2000-03-28 Akim Demaille <akim@epita.fr>
20991
20992 * src/getargs.c (usage): Refresh the help message.
20993
20994 2000-03-17 Akim Demaille <akim@epita.fr>
20995
20996 * src/getopt1.c: Updated from textutils 2.0e
20997 * src/getopt.c: Likewise.
20998 * src/getopt.h: Likewise.
20999
21000 2000-03-17 Akim Demaille <akim@epita.fr>
21001
21002 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21003 the file name, not the whole `#line LINE FILE'.
21004
21005 2000-03-17 Akim Demaille <akim@epita.fr>
21006
21007 On syntax errors, report the token on which we choked.
21008
21009 * src/bison.s1 (yyparse): In the label yyerrlab, when
21010 YYERROR_VERBOSE, add yychar in msg.
21011
21012 2000-03-17 Akim Demaille <akim@epita.fr>
21013
21014 * src/reader.c (copy_at): New function.
21015 (copy_guard): Use it.
21016 (copy_action): Use it.
21017
21018 2000-03-17 Akim Demaille <akim@epita.fr>
21019
21020 Be kind to translators, save some useless translations.
21021
21022 * src/main.c (banner): New function.
21023 (fatal_banner): Use it.
21024 (warn_banner): Use it.
21025
21026 2000-03-17 Akim Demaille <akim@epita.fr>
21027
21028 * src/reader.c (copy_definition): Use copy_string and
21029 copy_comment. Removed now unused `match', `ended',
21030 `cplus_comment'.
21031 (copy_comment, copy_string): Moved, to be visible from
21032 copy_definition.
21033
21034 2000-03-17 Akim Demaille <akim@epita.fr>
21035
21036 * src/reader.c (copy_string): Declare `static inline'. No
21037 problems with inline, since it is checked by configure.
21038 (copy_comment): Likewise.
21039
21040 2000-03-17 Akim Demaille <akim@epita.fr>
21041
21042 * src/reader.c (packsymbols): Formatting changes.
21043
21044 2000-03-17 Akim Demaille <akim@epita.fr>
21045
21046 * src/reader.c (copy_comment): New function, factored out from:
21047 (copy_action): Use it. Removed now unused `match', `ended',
21048 `cplus_comment'.
21049 (copy_guard): Likewise.
21050
21051 2000-03-17 Akim Demaille <akim@epita.fr>
21052
21053 * src/reader.c (copy_string): New function, factored out from:
21054 (copy_action): Use it.
21055 (copy_guard): Likewise.
21056
21057 2000-03-17 Akim Demaille <akim@epita.fr>
21058
21059 Change the handling of @s so that they behave exactly like $s.
21060 There is now a pseudo variable @$ (readble and writable), location
21061 of the lhs of the rule (by default ranging from the location of
21062 the first symbol of the rhs, to the location of the last symbol,
21063 or, if the rhs is empty, YYLLOC).
21064
21065 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21066 yyval.
21067 (yyparse): When providing a default semantic action, provide a
21068 default location action.
21069 (after the $): No longer change `*YYLSP', just stack YYLOC the
21070 same way you stack YYVAL.
21071 * src/reader.c (read_declarations): Use warns.
21072 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21073 (copy_action, case '@'): Likewise.
21074 Use a standard error message, to save useless work from
21075 translators.
21076
21077 2000-03-17 Akim Demaille <akim@epita.fr>
21078
21079 * src/bison.s1: Formatting and cosmetics changes.
21080 * src/reader.c: Likewise.
21081 Update the Copyright notice.
21082
21083 2000-03-17 Akim Demaille <akim@epita.fr>
21084
21085 * src/bison.s1 (#line): All set to `#line' only, since the
21086 Makefile now handles them.
21087
21088 2000-03-16 Akim Demaille <akim@epita.fr>
21089
21090 * src/output.c (output_rule_data): Output the documentation of
21091 some of the tables.
21092 (Copyright notice): Update.
21093 Formatting changes.
21094
21095 2000-03-16 Akim Demaille <akim@epita.fr>
21096
21097 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21098 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21099 One `#if YYDEBUG' remains, since it uses variables which are
21100 defined only if `YYDEBUG != 0'.
21101
21102 2000-03-16 Akim Demaille <akim@epita.fr>
21103
21104 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21105 and related variables so that the similarities are highlighted.
21106
21107 2000-03-16 Akim Demaille <akim@epita.fr>
21108
21109 * src/bison.s1: Properly indent CPP directives.
21110
21111 2000-03-16 Akim Demaille <akim@epita.fr>
21112
21113 * src/bison.s1: Properly indent the `alloca' CPP section.
21114
21115 2000-03-16 Akim Demaille <akim@epita.fr>
21116
21117 Do not hard code values of directories in `configure.in'.
21118 Update the `configure' tool chain.
21119
21120 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21121 src/makefile.am.
21122 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21123 (AC_OUTPUT): Add m4/Makefile.
21124 Bump to bison 1.28a, 1.29 has never been released.
21125 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21126 handled via src/Makefile.am.
21127 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21128 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21129 autoheader.
21130 * Makefile.am (SUBDIRS): Add m4.
21131 (ACLOCAL_AM_FLAGS): New variable.
21132 (AUTOMAKE_OPTIONS): Add check-news.
21133 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21134 the proper line number and file name.
21135 (DEFS): Propagate the location of bison library files and of the
21136 locale files.
21137 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21138 builddir.
21139 * acinclude.m4: Remove, replaced by the directory m4.
21140 * m4/Makefile.am (EXTRA_DIST): New variable.
21141 * m4/gettext.m4: New file, from the fileutils.
21142 * m4/lcmessage.m4: Likewise
21143 * m4/progtest.m4: Likewise.
21144 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21145
21146 2000-03-10 Akim Demaille <akim@epita.fr>
21147
21148 * src/closure.c:
21149 Formatting changes of various comments.
21150 Respect the GNU coding standards at various places.
21151 Don't use `_()' when no translation is needed.
21152
21153 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21154
21155 * src/files.c:
21156 OS/2 honors TMPDIR environment variable.
21157
21158 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21159
21160 * doc/bison.texinfo: Tweaked spelling and grammar.
21161 Updated ISBN.
21162 Removed reference to price of printed copy.
21163 Mention BISON_SIMPLE and BISON_HAIRY.
21164
21165 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21166
21167 * configure.in, NEWS:
21168 Bison 1.29 released.
21169
21170 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21171
21172 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21173 Added reference card.
21174
21175 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21176
21177 * po/ru.po: Added Russian translation.
21178
21179 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21180
21181 * configure.in: Added Russian translation.
21182
21183 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21184
21185 * configure.in, NEWS, README:
21186 Released version 1.28.
21187
21188 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21189
21190 * src/system.h:
21191 Squashed redefinition warning on some systems.
21192
21193 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21194 Have configure build version string instead of relying on ANSI string
21195 concatentation.
21196
21197 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21198
21199 * po/POTFILES.in: Got rid of version.c.
21200
21201 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21202
21203 * acconfig.h, configure.in:
21204 Have configure build version string instead of relying on ANSI string
21205 concatentation.
21206
21207 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21208
21209 * doc/bison.1:
21210 Dropped mention of `+' for long-named options.
21211
21212 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21213
21214 * src/files.c: Added <unistd.h> for unlink().
21215
21216 * src/Makefile.am, src/system.h:
21217 I18n fixes.
21218
21219 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21220
21221 * README: Added a FAQ list.
21222
21223 * configure.in, acconfig.h:
21224 I18n fixes.
21225
21226 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21227
21228 * doc/FAQ, doc/Makefile.am:
21229 Added a FAQ list.
21230
21231 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21232
21233 * src/alloc.h, src/symtab.h, src/version.c:
21234 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21235
21236 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21237
21238 * src/.cvsignore, src/Makefile.am:
21239 Reorganized: sources in `src', documentation in `doc'.
21240
21241 * src/lex.c (literalchar):
21242 fixed the code for escaping double quotes (thanks
21243 Jonathan Czisny.)
21244
21245 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21246
21247 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21248 Adjusted paths to reflect directory reorganization.
21249
21250 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21251
21252 * doc/.cvsignore, doc/Makefile.am:
21253 Reorganized: sources in `src', documentation in `doc'.
21254
21255 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21256
21257 * configure.in:
21258 Updated AC_INIT file to reflect directory reorganization.
21259
21260 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21261 Reorganized: sources in `src', documentation in `doc'.
21262
21263 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21264
21265 * src/allocate.c:
21266 Don't declare calloc() and realloc() if not necessary.
21267
21268 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21269
21270 * configure.in, acconfig.h, acinclude.m4:
21271 Don't declare calloc() and realloc() if not necessary.
21272
21273 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21274
21275 * po/.cvsignore: Added i18n support.
21276
21277 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21278
21279 * acconfig.h, configure.in, Makefile.am:
21280 Added i18n support.
21281
21282 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21283
21284 * src/bison.s1: Fixed #line numbers.
21285
21286 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21287
21288 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21289 Added PO files from Translation Project.
21290
21291 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21292
21293 * Makefile.am:
21294 Added support for non-ANSI compilers (ansi2knr).
21295
21296 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21297
21298 * configure.in: Bumped version number to 1.27.
21299
21300 * Makefile.am:
21301 Added `bison.simple' to list of files removed by `make distclean'.
21302
21303 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21304
21305 * src/files.c, src/files.h:
21306 Defined locations of parser files in config.h instead of Makefile.
21307
21308 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21309
21310 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21311 Defined locations of parser files in config.h instead of Makefile.
21312
21313 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21314
21315 * Makefile.am:
21316 Removed inappropriate use of $< macro.
21317
21318 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21319
21320 * po/Makefile.in.in, po/POTFILES.in:
21321 Add `po' directory skeleton.
21322
21323 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21324
21325 * README: Document help-bison list.
21326
21327 * configure.in: Add check for mkstemp().
21328
21329 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21330
21331 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21332 Hush a few compiler warnings.
21333
21334 * src/files.c:
21335 Add tryclose(), which verifies that fclose was successful.
21336 Hush a couple of compiler warnings.
21337
21338 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21339
21340 * Makefile.am, OChangeLog:
21341 ChangeLog is now automatically generated. Include the old version as
21342 OChangeLog.
21343
21344 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21345
21346 * 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:
21347 Update FSF address.
21348
21349 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21350
21351 * doc/bison.texinfo: Fix formatting glitch.
21352
21353 * doc/bison.texinfo: Update FSF address.
21354
21355 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21356
21357 * acconfig.h: Update FSF address.
21358
21359 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21360
21361 * src/system.h:
21362 Don't define PACKAGE here, since config.h defines it.
21363
21364 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21365
21366 * src/reader.c: Update copyright date.
21367
21368 * src/main.c:
21369 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21370 favor of output directly to stderr (avoids buffer overruns).
21371
21372 * src/reader.c: Some checks for premature EOF.
21373
21374 * 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:
21375 Use prototypes if the compiler understands them.
21376
21377 * src/files.c: Honor TMPDIR on Unix hosts.
21378 Use prototypes if the compiler understands them.
21379
21380 * src/reader.c:
21381 Fix a couple of buffer overrun bugs.
21382 Use prototypes if the compiler understands them.
21383
21384 * src/system.h: Include unistd.h and ctype.h.
21385 Use #ifdef instead of #if for NLS symbols.
21386
21387 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21388
21389 * doc/bison.texinfo:
21390 Delete comment "consider using @set for edition number, etc..." since
21391 we now are doing so.
21392
21393 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21394
21395 * configure.in:
21396 Use prototypes if the compiler understands them.
21397
21398 * NEWS: Document 1.26 highlights.
21399
21400 * Makefile.am: Require Automake 1.3 or later.
21401
21402 * acconfig.h:
21403 Use prototypes if the compiler understands them.
21404
21405 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21406
21407 * src/version.c:
21408 Use VERSION symbol from automake for version number.
21409
21410 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21411
21412 * acconfig.h, configure.in, version.cin:
21413 Use VERSION symbol from automake for version number.
21414
21415 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21416
21417 * Makefile.am:
21418 Distribute original version of simple parser (bison.s1), not built
21419 version (bison.simple).
21420
21421 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21422
21423 * doc/bison.texinfo: Add info dir entry.
21424
21425 * doc/bison.texinfo:
21426 Let automake put version number into documentation.
21427
21428 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21429
21430 * src/bison.cld, src/build.com, src/vmshlp.mar:
21431 Add non-RCS files from /gd/gnu/bison.
21432
21433 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21434
21435 * doc/bison.1:
21436 Document the BISON_HAIRY and BISON_SIMPLE variables.
21437
21438 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21439
21440 * src/version.c: Build version.c automatically.
21441
21442 * src/reader.c:
21443 Fix token numbering (used to start at 258, not 257).
21444
21445 * src/system.h: Include config.h.
21446
21447 * src/getargs.c: Update bug report address.
21448
21449 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21450 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21451
21452 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21453
21454 * Makefile.am:
21455 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21456
21457 * configure.in, version.cin:
21458 Build version.c automatically.
21459
21460 * AUTHORS: Add AUTHORS file.
21461
21462 * README: Update bug report address.
21463
21464 * bison.simple:
21465 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21466
21467 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21468 Add automake stuff.
21469
21470 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21471
21472 * doc/bison.texinfo: Clean up some formatting.
21473
21474 1998-05-05 Richard Stallman <rms@gnu.org>
21475
21476 * doc/bison.texinfo:
21477 Explain better why to make a pure parser.
21478
21479 1998-01-05 Richard Stallman <rms@gnu.org>
21480
21481 * src/files.c (openfiles):
21482 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21483 find a temporary directory, if possible. Do not unlink files while
21484 they are open.
21485
21486 1997-08-25 Richard Stallman <rms@gnu.org>
21487
21488 * src/reader.c (stack_offset;):
21489 Change some warni to warns.
21490
21491 * src/lex.c (literalchar): Use warns, not warni.
21492
21493 1997-06-28 Richard Stallman <rms@gnu.org>
21494
21495 * src/bison.s1: Add a Bison version comment.
21496
21497 * src/main.c (fatal, warn, berror):
21498 Use program_name.
21499
21500 1997-06-28 Richard Stallman <rms@gnu.org>
21501
21502 * Makefile.in (bison_version): New variable.
21503 (dist): Use that variable.
21504 (bison.s1): Substitute the Bison version into bison.simple.
21505
21506 * bison.simple: Add a Bison version comment.
21507
21508 1997-06-18 Richard Stallman <rms@gnu.org>
21509
21510 * src/main.c (fatal, warn, berror):
21511 Make error messages standard.
21512 (toomany): Improve error message text.
21513
21514 * 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:
21515 new.h renamed to alloc.h.
21516
21517 1997-06-18 Richard Stallman <rms@gnu.org>
21518
21519 * Makefile.in: new.h renamed to alloc.h.
21520
21521 1997-05-24 Richard Stallman <rms@gnu.org>
21522
21523 * src/lex.c (literalchar):
21524 Fix the code for escaping \, " and '.
21525
21526 (lex): Avoid trouble when there are many chars
21527 to discard in a char literal with just several chars in it.
21528
21529 1997-05-17 Richard Stallman <rms@gnu.org>
21530
21531 * src/bison.s1:
21532 Use malloc, if using alloca is troublesome.
21533 (YYSTACK_USE_ALLOCA): New flag macro.
21534 Define it for some systems and compilers.
21535 (YYSTACK_ALLOC): New macro.
21536 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21537 If it was malloc'd, free it.
21538
21539 1997-05-17 Richard Stallman <rms@gnu.org>
21540
21541 * bison.simple:
21542 Use malloc, if using alloca is troublesome.
21543 (YYSTACK_USE_ALLOCA): New flag macro.
21544 Define it for some systems and compilers.
21545 (YYSTACK_ALLOC): New macro.
21546 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21547 If it was malloc'd, free it.
21548
21549 1997-04-23 Richard Stallman <rms@gnu.org>
21550
21551 * src/bison.s1:
21552 (alloca) [__hpux]: Always define as __builtin_alloca.
21553
21554 1997-04-23 Richard Stallman <rms@gnu.org>
21555
21556 * bison.simple:
21557 (alloca) [__hpux]: Always define as __builtin_alloca.
21558
21559 1997-04-22 Richard Stallman <rms@gnu.org>
21560
21561 * src/bison.s1:
21562 [__hpux]: Include alloca.h (right for HPUX 10)
21563 instead of declaring alloca (right for HPUX 9).
21564
21565 * src/bison.s1 (__yy_memcpy):
21566 Declare arg `count' as unsigned int.
21567 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21568
21569 1997-04-22 Richard Stallman <rms@gnu.org>
21570
21571 * bison.simple:
21572 [__hpux]: Include alloca.h (right for HPUX 10)
21573 instead of declaring alloca (right for HPUX 9).
21574
21575 * bison.simple (__yy_memcpy):
21576 Declare arg `count' as unsigned int.
21577 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21578
21579 1997-01-03 Richard Stallman <rms@gnu.org>
21580
21581 * src/allocate.c: [__STDC__ or _MSC_VER]:
21582 Declare calloc and realloc to return void *.
21583
21584 1997-01-02 Richard Stallman <rms@gnu.org>
21585
21586 * src/system.h:
21587 [_MSC_VER]: Include stdlib.h and process.h.
21588 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21589
21590 * src/main.c (main): Return FAILURE as a value.
21591 (printable_version): Declare arg as int, not char.
21592
21593 1997-01-02 Richard Stallman <rms@gnu.org>
21594
21595 * Makefile.in (dist):
21596 Explicitly check for symlinks, and copy them.
21597
21598 1996-12-19 Richard Stallman <rms@gnu.org>
21599
21600 * src/files.c:
21601 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21602
21603 1996-12-18 Paul Eggert <eggert@gnu.org>
21604
21605 * src/bison.s1 (yyparse):
21606 If __GNUC__ and YYPARSE_PARAM are both defined,
21607 declare yyparse to have a void * argument.
21608
21609 1996-12-18 Paul Eggert <eggert@gnu.org>
21610
21611 * bison.simple (yyparse):
21612 If __GNUC__ and YYPARSE_PARAM are both defined,
21613 declare yyparse to have a void * argument.
21614
21615 1996-12-17 Richard Stallman <rms@gnu.org>
21616
21617 * src/reduce.c (nbits): Add some casts.
21618
21619 1996-08-12 Richard Stallman <rms@gnu.org>
21620
21621 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21622
21623 1996-08-12 Richard Stallman <rms@gnu.org>
21624
21625 * bison.simple: Test _MSDOS as well as _MSDOS_.
21626
21627 1996-07-31 Richard Stallman <rms@gnu.org>
21628
21629 * src/bison.s1:
21630 [__sun && __i386]: Include alloca.h.
21631
21632 1996-07-31 Richard Stallman <rms@gnu.org>
21633
21634 * bison.simple:
21635 [__sun && __i386]: Include alloca.h.
21636
21637 1996-07-30 Richard Stallman <rms@gnu.org>
21638
21639 * src/bison.s1: Comment change.
21640
21641 * src/bison.s1: Test _MSDOS_, not MSDOS.
21642
21643 1996-07-30 Richard Stallman <rms@gnu.org>
21644
21645 * bison.simple: Comment change.
21646
21647 * bison.simple: Test _MSDOS_, not MSDOS.
21648
21649 1996-06-01 Richard Stallman <rms@gnu.org>
21650
21651 * 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:
21652 Insert `_' macro around many string constants.
21653
21654 * src/main.c:
21655 Insert `_' macro around many string constants.
21656
21657 (main): Call setlocale, bindtextdomain and textdomain.
21658
21659 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21660 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21661 [ENABLE_NLS]: Include libintl.h.
21662 [ENABLE_NLS] (gettext): Define.
21663 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21664 (N_, PACKAGE, LOCALEDIR): New macros.
21665
21666 1996-06-01 Richard Stallman <rms@gnu.org>
21667
21668 * POTFILES.in: New file.
21669
21670 * Makefile.in (allocate.o):
21671 Define target explicitly.
21672
21673 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21674 (LDFLAGS): Set to @LDFLAGS@.
21675 (configure): Run autoconf only if preceding `cd' succeeds.
21676 (bison.s1): Redirect output to temporary file then move the
21677 temporary to the target, rather than redirecting directly to bison.s1.
21678 (clean): Remove config.status and config.log.
21679 (distclean): Don't remove config.status here.
21680
21681 1996-05-12 Richard Stallman <rms@gnu.org>
21682
21683 * src/bison.s1:
21684 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21685
21686 1996-05-12 Richard Stallman <rms@gnu.org>
21687
21688 * bison.simple:
21689 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21690
21691 1996-05-11 Richard Stallman <rms@gnu.org>
21692
21693 * src/bison.s1 (__yy_memcpy):
21694 Really reorder the args, as was supposedly done on Feb 14 1995.
21695 (yyparse): Calls changed accordingly.
21696
21697 1996-05-11 Richard Stallman <rms@gnu.org>
21698
21699 * Makefile.in (dist): Don't use $(srcdir).
21700
21701 * bison.simple (__yy_memcpy):
21702 Really reorder the args, as was supposedly done on Feb 14 1995.
21703 (yyparse): Calls changed accordingly.
21704
21705 1996-01-27 Richard Stallman <rms@gnu.org>
21706
21707 * src/output.c (output_rule_data):
21708 Test YYERROR_VERBOSE in the conditional
21709 around the definition of ttyname.
21710
21711 1995-12-29 Richard Stallman <rms@gnu.org>
21712
21713 * src/bison.s1:
21714 Fix line numbers in #line commands.
21715
21716 1995-12-29 Richard Stallman <rms@gnu.org>
21717
21718 * bison.simple:
21719 Fix line numbers in #line commands.
21720
21721 1995-12-27 Richard Stallman <rms@gnu.org>
21722
21723 * src/bison.s1 (YYPARSE_PARAM_DECL):
21724 In C++, make it always null.
21725 (YYPARSE_PARAM_ARG): New macro.
21726 (yyparse): Use YYPARSE_PARAM_ARG.
21727
21728 1995-12-27 Richard Stallman <rms@gnu.org>
21729
21730 * bison.simple (YYPARSE_PARAM_DECL):
21731 In C++, make it always null.
21732 (YYPARSE_PARAM_ARG): New macro.
21733 (yyparse): Use YYPARSE_PARAM_ARG.
21734
21735 1995-11-29 Richard Stallman <rms@gnu.org>
21736
21737 * doc/bison.texinfo:
21738 Describe literal string tokens, %raw, %no_lines, %token_table.
21739
21740 1995-11-29 Daniel Hagerty <hag@gnu.org>
21741
21742 * doc/bison.texinfo: Fixed update date
21743
21744 1995-10-16 Richard Stallman <rms@gnu.org>
21745
21746 * src/version.c: Version 1.25.
21747
21748 1995-10-16 Richard Stallman <rms@gnu.org>
21749
21750 * NEWS: *** empty log message ***
21751
21752 1995-10-16 Richard Stallman <rms@gnu.org>
21753
21754 * doc/bison.1, doc/bison.rnh:
21755 Add new options.
21756
21757 1995-10-15 Richard Stallman <rms@gnu.org>
21758
21759 * src/vmsgetargs.c, src/getargs.c:
21760 Added -n, -k, and -raw switches.
21761 (noparserflag, toknumflag, rawtoknumflag): New variables.
21762
21763 * src/symtab.h (SALIAS):
21764 New #define for adding aliases to %token.
21765 (struct bucket): Added `alias' field.
21766
21767 * src/reduce.c (reduce_grammar):
21768 Revise error message.
21769 (print_notices): Remove final `.' from error message.
21770
21771 * src/reader.c (reader_output_yylsp):
21772 New function.
21773 (readgram): Use `#if 0' around code that accepted %command
21774 inside grammar rules: The documentation doesn't allow it,
21775 and it will fail since the %command processors scan for the next %.
21776 (parse_token_decl): Extended the %token
21777 declaration to allow a multi-character symbol as an alias.
21778 (parse_thong_decl): New function.
21779 (read_declarations): Added %thong declarations.
21780 (read_declarations): Handle NOOP to deal with allowing
21781 % declarations as another means to specify the flags.
21782 (readgram): Allow %prec prior to semantics embedded in a rule.
21783 (skip_to_char, read_declarations, copy_definition)
21784 (parse_token_decl, parse_start_decl, parse_type_decl)
21785 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21786 (get_type_name, copy_guard, copy_action, readgram)
21787 (get_type, packsymbols): Revised most error messages.
21788 Changed `fatal' to `warnxxx' to avoid aborting for error.
21789 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21790 (read_declarations): Improve the error message for
21791 an invalid character. Do not abort.
21792 (read_declarations, copy_guard, copy_action): Use
21793 printable_version to avoid unprintable characters in printed output.
21794 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21795 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21796 Allow the type of a non-terminal can be given
21797 more than once, as long as all specifications give the same type.
21798
21799 * src/output.c:
21800 (output_headers, output_trailers, output, output_gram)
21801 (output_rule_data): Implement noparserflag variable.
21802 Implement toknumflag variable.
21803 (output): Call reader_output_yylsp to output LTYPESTR.
21804
21805 * src/main.c (main):
21806 If reader sees an error, don't process the grammar.
21807 (fatals): Updated to not use VARARGS1.
21808 (printable_version, int_to_string, warn, warni, warns, warnss)
21809 (warnsss): New error reporting functions. Avoid abort for error.
21810
21811 * src/lex.h:
21812 Added THONG and NOOP for alias processing.
21813 Added SETOPT for the new code that allows setting options with %flags.
21814
21815 * src/lex.c:
21816 Include getopt.h. Add some extern decls.
21817 (safegetc): New function to deal with EOF gracefully.
21818 (literalchar); new function to deal with reading \ escapes.
21819 (lex): Use literalchar.
21820 (lex): Implemented "..." tokens.
21821 (literalchar, lex, parse_percent_token): Made tokenbuffer
21822 always contain the token. This includes growing the token
21823 buffer while reading an integer.
21824 (parse_percent_token): Replaced if-else statement with percent_table.
21825 (parse_percent_token): Added % declarations as another
21826 way to specify the flags -n, -l, and -r. Also added hooks for
21827 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21828 major changes to files.c.
21829 (lex) Retain in the incoming stream a character following
21830 an incorrect '/'.
21831 (skip_white_space, lex): Revised most error messages
21832 and changed fatal to warn to avoid aborting.
21833 (percent_table): Added %thong declarations.
21834
21835 * src/gram.h: Comment changes.
21836
21837 * src/files.c (openfiles, open_extra_files, done):
21838 Add faction flag
21839 and actfile file. Handle noparserflag. Both for -n switch.
21840
21841 * src/conflicts.c (resolve_sr_conflict):
21842 Remove use of alloca.
21843
21844 1995-06-01 Jim Meyering <meyering@gnu.org>
21845
21846 * doc/bison.texinfo: *** empty log message ***
21847
21848 1995-05-06 Richard Stallman <rms@gnu.org>
21849
21850 * src/bison.s1: Comment change.
21851
21852 1995-05-06 Richard Stallman <rms@gnu.org>
21853
21854 * bison.simple: Comment change.
21855
21856 1995-05-03 Richard Stallman <rms@gnu.org>
21857
21858 * src/version.c: Version now 1.24.
21859
21860 * src/bison.s1: Change distribution terms.
21861
21862 * src/version.c: Version now 1.23.
21863
21864 1995-05-03 Richard Stallman <rms@gnu.org>
21865
21866 * doc/bison.texinfo:
21867 Rewrite "Conditions for Using Bison".
21868 Update version to 1.24.
21869
21870 1995-05-03 Richard Stallman <rms@gnu.org>
21871
21872 * bison.simple: Change distribution terms.
21873
21874 1995-02-23 Richard Stallman <rms@gnu.org>
21875
21876 * src/files.c: Test __VMS_POSIX as well as VMS.
21877
21878 1995-02-14 Jim Meyering <meyering@gnu.org>
21879
21880 * src/bison.s1 (__yy_memcpy):
21881 Renamed from __yy_bcopy to avoid
21882 confusion. Reverse FROM and TO arguments to be consistent with
21883 those of memcpy.
21884
21885 1995-02-14 Jim Meyering <meyering@gnu.org>
21886
21887 * bison.simple (__yy_memcpy):
21888 Renamed from __yy_bcopy to avoid
21889 confusion. Reverse FROM and TO arguments to be consistent with
21890 those of memcpy.
21891
21892 1994-11-10 David J. MacKenzie <djm@gnu.org>
21893
21894 * NEWS: reformat
21895
21896 * NEWS: New file.
21897
21898 * Makefile.in (DISTFILES): Include NEWS.
21899
21900 * Makefile.in (DISTFILES):
21901 Include install-sh, not install.sh.
21902
21903 * configure.in: Update to Autoconf v2 macro names.
21904
21905 1994-10-05 David J. MacKenzie <djm@gnu.org>
21906
21907 * Makefile.in: fix typo
21908
21909 * Makefile.in (prefix, exec_prefix):
21910 Let configure set them.
21911
21912 1994-09-28 David J. MacKenzie <djm@gnu.org>
21913
21914 * Makefile.in: Set datadir to $(prefix)/share.
21915
21916 1994-09-15 Richard Stallman <rms@gnu.org>
21917
21918 * src/bison.s1:
21919 Update copyright notice and GPL version.
21920
21921 1994-09-15 Richard Stallman <rms@gnu.org>
21922
21923 * bison.simple:
21924 Update copyright notice and GPL version.
21925
21926 1994-07-12 Richard Stallman <rms@gnu.org>
21927
21928 * src/reduce.c, src/reader.c:
21929 entered into RCS
21930
21931 1994-05-05 David J. MacKenzie <djm@gnu.org>
21932
21933 * Makefile.in: entered into RCS
21934
21935 1994-03-26 Richard Stallman <rms@gnu.org>
21936
21937 * src/bison.s1: entered into RCS
21938
21939 1994-03-26 Richard Stallman <rms@gnu.org>
21940
21941 * bison.simple: entered into RCS
21942
21943 1994-03-25 Richard Stallman <rms@gnu.org>
21944
21945 * src/main.c: entered into RCS
21946
21947 1994-03-24 Richard Stallman <rms@gnu.org>
21948
21949 * src/conflicts.c: entered into RCS
21950
21951 1994-01-02 Richard Stallman <rms@gnu.org>
21952
21953 * Makefile.in: *** empty log message ***
21954
21955 1993-11-21 Richard Stallman <rms@gnu.org>
21956
21957 * src/bison.s1: *** empty log message ***
21958
21959 1993-11-21 Richard Stallman <rms@gnu.org>
21960
21961 * doc/bison.texinfo: entered into RCS
21962
21963 * doc/bison.texinfo: *** empty log message ***
21964
21965 1993-11-21 Richard Stallman <rms@gnu.org>
21966
21967 * bison.simple: *** empty log message ***
21968
21969 1993-10-25 David J. MacKenzie <djm@gnu.org>
21970
21971 * doc/bison.texinfo: *** empty log message ***
21972
21973 1993-10-19 Richard Stallman <rms@gnu.org>
21974
21975 * src/bison.s1: *** empty log message ***
21976
21977 1993-10-19 Richard Stallman <rms@gnu.org>
21978
21979 * bison.simple: *** empty log message ***
21980
21981 1993-10-14 Richard Stallman <rms@gnu.org>
21982
21983 * src/bison.s1: *** empty log message ***
21984
21985 1993-10-14 Richard Stallman <rms@gnu.org>
21986
21987 * bison.simple: *** empty log message ***
21988
21989 1993-09-14 David J. MacKenzie <djm@gnu.org>
21990
21991 * doc/bison.texinfo: *** empty log message ***
21992
21993 1993-09-13 Noah Friedman <friedman@gnu.org>
21994
21995 * Makefile.in: *** empty log message ***
21996
21997 1993-09-10 Richard Stallman <rms@gnu.org>
21998
21999 * src/conflicts.c: *** empty log message ***
22000
22001 * src/system.h: entered into RCS
22002
22003 1993-09-10 Richard Stallman <rms@gnu.org>
22004
22005 * doc/bison.1: entered into RCS
22006
22007 1993-09-06 Noah Friedman <friedman@gnu.org>
22008
22009 * src/version.c: entered into RCS
22010
22011 1993-09-06 Noah Friedman <friedman@gnu.org>
22012
22013 * Makefile.in: *** empty log message ***
22014
22015 1993-07-30 David J. MacKenzie <djm@gnu.org>
22016
22017 * Makefile.in: *** empty log message ***
22018
22019 1993-07-24 Richard Stallman <rms@gnu.org>
22020
22021 * src/bison.s1: *** empty log message ***
22022
22023 1993-07-24 Richard Stallman <rms@gnu.org>
22024
22025 * bison.simple: *** empty log message ***
22026
22027 1993-07-08 David J. MacKenzie <djm@gnu.org>
22028
22029 * Makefile.in: *** empty log message ***
22030
22031 1993-07-04 Richard Stallman <rms@gnu.org>
22032
22033 * src/bison.s1: *** empty log message ***
22034
22035 1993-07-04 Richard Stallman <rms@gnu.org>
22036
22037 * bison.simple: *** empty log message ***
22038
22039 1993-06-26 David J. MacKenzie <djm@gnu.org>
22040
22041 * src/getargs.c: entered into RCS
22042
22043 1993-06-26 David J. MacKenzie <djm@gnu.org>
22044
22045 * doc/bison.texinfo: *** empty log message ***
22046
22047 * doc/bison.1: New file.
22048
22049 1993-06-25 Richard Stallman <rms@gnu.org>
22050
22051 * src/getargs.c: New file.
22052
22053 1993-06-16 Richard Stallman <rms@gnu.org>
22054
22055 * src/bison.s1: *** empty log message ***
22056
22057 1993-06-16 Richard Stallman <rms@gnu.org>
22058
22059 * bison.simple: *** empty log message ***
22060
22061 1993-06-03 Richard Stallman <rms@gnu.org>
22062
22063 * src/bison.s1: New file.
22064
22065 1993-06-03 Richard Stallman <rms@gnu.org>
22066
22067 * doc/bison.texinfo: *** empty log message ***
22068
22069 1993-06-03 Richard Stallman <rms@gnu.org>
22070
22071 * bison.simple: New file.
22072
22073 1993-05-19 Richard Stallman <rms@gnu.org>
22074
22075 * doc/bison.texinfo: New file.
22076
22077 1993-05-07 Noah Friedman <friedman@gnu.org>
22078
22079 * Makefile.in: *** empty log message ***
22080
22081 1993-04-28 Noah Friedman <friedman@gnu.org>
22082
22083 * src/reader.c: *** empty log message ***
22084
22085 1993-04-23 Noah Friedman <friedman@gnu.org>
22086
22087 * src/alloc.h: entered into RCS
22088
22089 1993-04-20 David J. MacKenzie <djm@gnu.org>
22090
22091 * src/version.c: *** empty log message ***
22092
22093 * src/files.c, src/allocate.c:
22094 entered into RCS
22095
22096 * src/reader.c: *** empty log message ***
22097
22098 * src/lex.c: entered into RCS
22099
22100 * src/conflicts.c: New file.
22101
22102 * src/symtab.c: entered into RCS
22103
22104 * src/alloc.h: New file.
22105
22106 * src/LR0.c: entered into RCS
22107
22108 1993-04-18 Noah Friedman <friedman@gnu.org>
22109
22110 * src/reader.c: New file.
22111
22112 * src/version.c: *** empty log message ***
22113
22114 1993-04-18 Noah Friedman <friedman@gnu.org>
22115
22116 * Makefile.in: *** empty log message ***
22117
22118 1993-04-17 Noah Friedman <friedman@gnu.org>
22119
22120 * Makefile.in: *** empty log message ***
22121
22122 1993-04-15 Richard Stallman <rms@gnu.org>
22123
22124 * src/main.c, src/files.c:
22125 New file.
22126
22127 1993-04-15 Noah Friedman <friedman@gnu.org>
22128
22129 * configure.in: entered into RCS
22130
22131 * configure.in: *** empty log message ***
22132
22133 * configure.in: New file.
22134
22135 1993-04-14 Richard Stallman <rms@gnu.org>
22136
22137 * Makefile.in: New file.
22138
22139 1993-04-13 Richard Stallman <rms@gnu.org>
22140
22141 * src/version.c: New file.
22142
22143 1993-03-25 Richard Stallman <rms@gnu.org>
22144
22145 * src/output.c: entered into RCS
22146
22147 1992-09-25 Richard Stallman <rms@gnu.org>
22148
22149 * configure.bat: entered into RCS
22150
22151 1992-06-22 Richard Stallman <rms@gnu.org>
22152
22153 * src/vmsgetargs.c: entered into RCS
22154
22155 1992-06-22 Richard Stallman <rms@gnu.org>
22156
22157 * doc/bison.rnh: entered into RCS
22158
22159 1992-04-20 David J. MacKenzie <djm@gnu.org>
22160
22161 * README: entered into RCS
22162
22163 1992-01-22 Richard Stallman <rms@gnu.org>
22164
22165 * src/machine.h: entered into RCS
22166
22167 1991-12-21 Richard Stallman <rms@gnu.org>
22168
22169 * src/lalr.c, src/closure.c:
22170 entered into RCS
22171
22172 1991-12-20 Richard Stallman <rms@gnu.org>
22173
22174 * src/state.h: entered into RCS
22175
22176 1991-12-18 Richard Stallman <rms@gnu.org>
22177
22178 * src/print.c, src/nullable.c, src/derives.c:
22179 entered into RCS
22180
22181 1991-11-03 David J. MacKenzie <djm@gnu.org>
22182
22183 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22184 entered into RCS
22185
22186 1988-09-09 Richard Stallman <rms@gnu.org>
22187
22188 * src/bison.hairy: entered into RCS
22189
22190 1987-12-16 Richard Stallman <rms@gnu.org>
22191
22192 * REFERENCES: entered into RCS
22193
22194
22195 -----
22196
22197 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22198 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
22199 2007, 2008, 2009 Free Software Foundation, Inc.
22200
22201 Copying and distribution of this file, with or without
22202 modification, are permitted provided the copyright notice and this
22203 notice are preserved.