1 2000-10-02 Akim Demaille <akim@epita.fr>
3 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
4 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
5 difficult and introduced a lot of core dump. It turns out that
6 Bison used an implementation of `xmalloc' based on `calloc', and
7 at various places it does depend upon the initialization to 0. I
8 have not tried to isolate the pertinent places, and all the former
9 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
10 someone should address this issue.
12 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
13 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
16 * src/warshall.h: New file.
19 2000-10-02 Akim Demaille <akim@epita.fr>
21 Various anti-`extern in *.c' changes.
23 * src/system.h: Include `assert.h'.
26 2000-10-02 Akim Demaille <akim@epita.fr>
28 * src/state.h (nstates, final_state, first_state, first_shift)
29 (first_reduction): Move their exportation from here...
32 * src/getargs.c (statisticsflag): New variable.
33 Add support for `--statistics'.
36 Remove a lot of now useless `extern' statements in most files.
39 2000-10-02 Akim Demaille <akim@epita.fr>
41 * src/LR0.h: New file.
45 2000-10-02 Akim Demaille <akim@epita.fr>
47 * src/print.h: New file.
49 * src/print.c: Formatting and ordering changes.
50 (verbose, terse): Replace with...
51 (print_results): this new function.
55 2000-10-02 Akim Demaille <akim@epita.fr>
57 * src/conflicts.c (conflict_report): New function.
58 (conflict_log, verbose_conflict_log): Replace with...
59 (print_conflicts): this function.
61 * src/conflicts.h: New file.
62 Propagate its inclusion.
65 2000-10-02 Akim Demaille <akim@epita.fr>
67 * src/nullable.h: New file.
68 Propagate its inclusion.
69 * src/nullable.c: Formatting changes.
72 2000-10-02 Akim Demaille <akim@epita.fr>
74 * src/reduce.h: New file.
75 Propagate its inclusion.
76 * src/reduce.c: Topological sort and other formatting changes.
77 (bool, TRUE, FALSE): Move their definition to...
81 2000-10-02 Akim Demaille <akim@epita.fr>
83 * src/files.c: Formatting changes.
84 (tryopen, tryclose, openfiles): Rename as...
85 (xfopen, xfclose, open_files): this.
86 (stringappend): static.
87 * src/files.h: Complete the list of exported symbols.
91 2000-10-02 Akim Demaille <akim@epita.fr>
93 * src/reader.h: New file.
94 Propagate its use instead of tedious list of `extern' and
96 * src/reader.c: Formatting changes, topological sort,
100 2000-10-02 Akim Demaille <akim@epita.fr>
102 * src/lex.h: Prototype `lex.c' exported functions.
103 * src/reader.c: Adjust.
104 * src/lex.c: Formatting changes.
105 (safegetc): Rename as...
109 2000-10-02 Akim Demaille <akim@epita.fr>
111 * src/lalr.h: New file.
112 Propagate its inclusion instead of prototypes and `extern'.
113 * src/lalr.c: Formatting changes, topological sorting etc.
116 2000-10-02 Akim Demaille <akim@epita.fr>
118 * src/output.c (token_actions): Introduce a temporary array,
119 YYDEFACT, that makes it possible for this function to use
123 2000-10-02 Akim Demaille <akim@epita.fr>
125 `user_toknums' is output as a `short[]' in `output.c', while it is
126 defined as a `int[]' in `reader.c'. For consistency with the
127 other output tables, `user_toknums' is now defined as a table of
130 * src/reader.c (user_toknums): Be a short table instead of an int
134 Factor the short table outputs.
136 * src/output.c (output_short_table): New function.
137 * src/output.c (output_gram, output_stos, output_rule_data)
138 (output_base, output_table, output_check): Use it.
140 2000-10-02 Akim Demaille <akim@epita.fr>
142 * src/output.c (output): Topological sort of the functions, in
143 order to get rid of the `static' prototypes.
144 No longer use `register'.
145 * src/output.h: New file.
146 Propagate its inclusion in files explicitly prototyping functions
149 2000-09-21 Akim Demaille <akim@epita.fr>
151 * src/atgeneral.m4: Update from Autoconf.
153 2000-09-21 Akim Demaille <akim@epita.fr>
155 * src/closure.h: New file.
156 * src/closure.c: Formatting changes, topological sort over the
157 functions, use of closure.h.
158 (initialize_closure, finalize_closure): Rename as...
159 (new_closure, free_closure): these. Adjust dependencies.
160 * src/LR0.c: Formatting changes, topological sort, use of
162 (initialize_states): Rename as...
164 * src/Makefile.am (noinst_HEADERS): Adjust.
166 2000-09-20 Akim Demaille <akim@epita.fr>
168 * src/acconfig.h: Don't protect config.h against multiple
171 * src/system.h: Define PARAMS.
172 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
173 purpose of config.h. system.h must not try to fix wrong
174 definitions in config.h.
176 2000-09-20 Akim Demaille <akim@epita.fr>
178 * src/derives.h: New file.
179 * src/main.c, src/derives.h: Use it.
181 * src/Makefile.am (noinst_HEADERS): Adjust.
183 2000-09-20 Akim Demaille <akim@epita.fr>
185 * tests/atgeneral.m4: Update from Autoconf.
186 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
187 (AT_CHECK_CALC): New macros.
188 Use these macros to test bison with options `', `--raw',
189 `--debug', `--yacc', `--yacc --debug'.
191 2000-09-19 Akim Demaille <akim@epita.fr>
193 * src/output.c: Formatting changes.
194 * src/machine.h: Remove, leaving its contents in...
195 * src/system.h: here.
197 Adjust all dependencies on stdio.h and machine.h.
198 * src/getargs.h: New file.
199 Let all `extern' declarations about getargs.c be replaced with
200 inclusion of `getargs.h'.
201 * src/Makefile.am (noinst_HEADERS): Adjust.
203 * tests/calc.m4 (yyin): Be initialized in main, not on the global
205 (yyerror): Returns void, not int.
206 * doc/bison.texinfo: Formatting changes.
208 2000-09-19 Akim Demaille <akim@epita.fr>
210 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
213 2000-09-18 Akim Demaille <akim@epita.fr>
215 * configure.in: Append WARNING_CFLAGS to CFLAGS.
216 * src/Makefile.am (INCLUDES): Don't.
217 Be ready to fetch headers in lib/.
219 2000-09-18 Akim Demaille <akim@epita.fr>
221 * doc/bison.texinfo: Update the copyright.
222 ANSIfy and GNUify the examples.
225 2000-09-18 Akim Demaille <akim@epita.fr>
227 First set of tests: use the `calc' example from the documentation.
229 * src/bison.s1 (yyparse): Condition the code using `yytname' which
230 is defined only when YYDEBUG is.
231 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
232 * src/files.c (tryopen, tryclose): Formatting changes.
233 Move to the top and be static.
234 * src/reader.c (read_signed_integer): Likewise.
235 * tests/calc.m4: New file.
236 * Makefile.am, suite.m4: Adjust.
237 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
239 2000-09-18 Akim Demaille <akim@epita.fr>
241 Add support for an Autotest test suite for Bison.
243 * m4/m4.m4, m4/atconfig.m4: New files.
244 * m4/Makefile.am (EXTRA_DIST): Adjust.
245 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
247 * src/getargs.c: Display a more standard --version message.
248 * src/reader.c (reader): Formatting changes.
249 No longer depend upon VERSION_STRING.
250 * configure.in: No longer use `dnl'.
251 Set up the test suite and the new directory `tests/.
252 (VERSION_STRING): Remove.
254 2000-04-14 Akim Demaille <akim@epita.fr>
256 * src/reader.c (copy_comment2): New function, same as former
257 `copy_comment', but outputs into two FILE *.
258 (copy_comment): Use it.
259 (parse_union_decl): Use it.
260 (get_type, parse_start_decl): Use the same `invalid' message.
261 (parse_start_decl, parse_union_decl): Use the same `multiple'
263 (parse_union_decl, copy_guard, copy_action): Use the same
265 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
267 2000-03-31 Akim Demaille <akim@epita.fr>
269 * src/files.c (tryopen, tryclose): Move to the top.
272 2000-03-31 Akim Demaille <akim@epita.fr>
274 * src/main.c (main): Don't call `done', exit does it.
276 2000-03-31 Akim Demaille <akim@epita.fr>
278 * allocate.c: s/return (foo)/return foo/.
281 * output.c: Likewise.
282 * reader.c: Likewise.
283 * symtab.c: Likewise.
284 * vmsgetargs.c: Likewise.
286 2000-03-31 Akim Demaille <akim@epita.fr>
288 Clean up the error reporting functions.
290 * src/report.c: New file.
291 * src/report.h: Likewise.
292 * src/Makefile.am: Adjust.
293 * m4/error.m4: New file.
294 * m4/Makefile.am: Adjust.
295 * configure.in (jm_PREREQ_ERROR): Call it.
296 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
298 (fatal, fatals): Remove. All callers use complain.c::fatal.
299 (warn, warni, warns, warnss, warnss): Remove. All callers use
300 complain.c::complain.
301 (toomany): Remove, use fatal instead.
302 * src/files.c (done): No argument, use complain_message_count.
303 * src/main.c (main): Register `done' to `atexit'.
305 * src/getargs.c (usage): More `fputs', less `fprintf'.
307 2000-03-28 Akim Demaille <akim@epita.fr>
309 * lib/: New directory.
310 * Makefile.am (SUBDIRS): Adjust.
311 * configure.in: Adjust.
312 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
314 * src/alloca.c: Moved to lib/.
315 * src/getopt.c: Likewise.
316 * src/getopt1.c: Likewise.
317 * src/getopt.h: Likewise.
318 * src/ansi2knr.c: Likewise.
319 * src/ansi2knr.1: Likewise.
320 * src/Makefile.am: Adjust.
321 * lib/Makefile.am: New file.
323 2000-03-28 Akim Demaille <akim@epita.fr>
325 * src/getargs.c (usage): Refresh the help message.
327 2000-03-17 Akim Demaille <akim@epita.fr>
329 * src/getopt1.c: Updated from textutils 2.0e
330 * src/getopt.c: Likewise.
331 * src/getopt.h: Likewise.
333 2000-03-17 Akim Demaille <akim@epita.fr>
335 * src/Makefile.am (bison.simple): Fix the awk program: quote only
336 the file name, not the whole `#line LINE FILE'.
338 2000-03-17 Akim Demaille <akim@epita.fr>
340 On syntax errors, report the token on which we choked.
342 * src/bison.s1 (yyparse): In the label yyerrlab, when
343 YYERROR_VERBOSE, add yychar in msg.
345 2000-03-17 Akim Demaille <akim@epita.fr>
347 * src/reader.c (copy_at): New function.
348 (copy_guard): Use it.
349 (copy_action): Use it.
351 2000-03-17 Akim Demaille <akim@epita.fr>
353 Be kind to translators, save some useless translations.
355 * src/main.c (banner): New function.
356 (fatal_banner): Use it.
357 (warn_banner): Use it.
359 2000-03-17 Akim Demaille <akim@epita.fr>
361 * src/reader.c (copy_definition): Use copy_string and
362 copy_comment. Removed now unused `match', `ended',
364 (copy_comment, copy_string): Moved, to be visible from
367 2000-03-17 Akim Demaille <akim@epita.fr>
369 * src/reader.c (copy_string): Declare `static inline'. No
370 problems with inline, since it is checked by configure.
371 (copy_comment): Likewise.
373 2000-03-17 Akim Demaille <akim@epita.fr>
375 * src/reader.c (packsymbols): Formatting changes.
377 2000-03-17 Akim Demaille <akim@epita.fr>
379 * src/reader.c (copy_comment): New function, factored out from:
380 (copy_action): Use it. Removed now unused `match', `ended',
382 (copy_guard): Likewise.
384 2000-03-17 Akim Demaille <akim@epita.fr>
386 * src/reader.c (copy_string): New function, factored out from:
387 (copy_action): Use it.
388 (copy_guard): Likewise.
390 2000-03-17 Akim Demaille <akim@epita.fr>
392 Change the handling of @s so that they behave exactly like $s.
393 There is now a pseudo variable @$ (readble and writable), location
394 of the lhs of the rule (by default ranging from the location of
395 the first symbol of the rhs, to the location of the last symbol,
396 or, if the rhs is empty, YYLLOC).
398 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
400 (yyparse): When providing a default semantic action, provide a
401 default location action.
402 (after the $): No longer change `*YYLSP', just stack YYLOC the
403 same way you stack YYVAL.
404 * src/reader.c (read_declarations): Use warns.
405 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
406 (copy_action, case '@'): Likewise.
407 Use a standard error message, to save useless work from
410 2000-03-17 Akim Demaille <akim@epita.fr>
412 * src/bison.s1: Formatting and cosmetics changes.
413 * src/reader.c: Likewise.
414 Update the Copyright notice.
416 2000-03-17 Akim Demaille <akim@epita.fr>
418 * src/bison.s1 (#line): All set to `#line' only, since the
419 Makefile now handles them.
421 2000-03-16 Akim Demaille <akim@epita.fr>
423 * src/output.c (output_rule_data): Output the documentation of
425 (Copyright notice): Update.
428 2000-03-16 Akim Demaille <akim@epita.fr>
430 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
431 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
432 One `#if YYDEBUG' remains, since it uses variables which are
433 defined only if `YYDEBUG != 0'.
435 2000-03-16 Akim Demaille <akim@epita.fr>
437 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
438 and related variables so that the similarities are highlighted.
440 2000-03-16 Akim Demaille <akim@epita.fr>
442 * src/bison.s1: Properly indent CPP directives.
444 2000-03-16 Akim Demaille <akim@epita.fr>
446 * src/bison.s1: Properly indent the `alloca' CPP section.
448 2000-03-16 Akim Demaille <akim@epita.fr>
450 Do not hard code values of directories in `configure.in'.
451 Update the `configure' tool chain.
453 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
455 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
456 (AC_OUTPUT): Add m4/Makefile.
457 Bump to bison 1.28a, 1.29 has never been released.
458 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
459 handled via src/Makefile.am.
460 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
461 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
463 * Makefile.am (SUBDIRS): Add m4.
464 (ACLOCAL_AM_FLAGS): New variable.
465 (AUTOMAKE_OPTIONS): Add check-news.
466 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
467 the proper line number and file name.
468 (DEFS): Propagate the location of bison library files and of the
470 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
472 * acinclude.m4: Remove, replaced by the directory m4.
473 * m4/Makefile.am (EXTRA_DIST): New variable.
474 * m4/gettext.m4: New file, from the fileutils.
475 * m4/lcmessage.m4: Likewise
476 * m4/progtest.m4: Likewise.
477 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
479 2000-03-10 Akim Demaille <akim@epita.fr>
482 Formatting changes of various comments.
483 Respect the GNU coding standards at various places.
484 Don't use `_()' when no translation is needed.
486 1999-12-13 Jesse Thilo <jthilo@gnu.org>
489 OS/2 honors TMPDIR environment variable.
491 1999-12-13 Jesse Thilo <jthilo@gnu.org>
493 * doc/bison.texinfo: Tweaked spelling and grammar.
495 Removed reference to price of printed copy.
496 Mention BISON_SIMPLE and BISON_HAIRY.
498 1999-12-13 Jesse Thilo <jthilo@gnu.org>
500 * configure.in, NEWS:
503 1999-10-27 Jesse Thilo <jthilo@gnu.org>
505 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
506 Added reference card.
508 1999-07-26 Jesse Thilo <jthilo@gnu.org>
510 * po/ru.po: Added Russian translation.
512 1999-07-26 Jesse Thilo <jthilo@gnu.org>
514 * configure.in: Added Russian translation.
516 1999-07-06 Jesse Thilo <jthilo@gnu.org>
518 * configure.in, NEWS, README:
519 Released version 1.28.
521 1999-06-14 Jesse Thilo <jthilo@gnu.org>
524 Squashed redefinition warning on some systems.
526 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
527 Have configure build version string instead of relying on ANSI string
530 1999-06-14 Jesse Thilo <jthilo@gnu.org>
532 * po/POTFILES.in: Got rid of version.c.
534 1999-06-14 Jesse Thilo <jthilo@gnu.org>
536 * acconfig.h, configure.in:
537 Have configure build version string instead of relying on ANSI string
540 1999-06-08 Jesse Thilo <jthilo@gnu.org>
543 Dropped mention of `+' for long-named options.
545 1999-05-30 Jesse Thilo <jthilo@gnu.org>
547 * src/files.c: Added <unistd.h> for unlink().
549 * src/Makefile.am, src/system.h:
552 1999-05-30 Jesse Thilo <jthilo@gnu.org>
554 * README: Added a FAQ list.
556 * configure.in, acconfig.h:
559 1999-05-30 Jesse Thilo <jthilo@gnu.org>
561 * doc/FAQ, doc/Makefile.am:
564 1999-05-19 Jesse Thilo <jthilo@gnu.org>
566 * src/alloc.h, src/symtab.h, src/version.c:
567 Protected inclusion of "config.h" with HAVE_CONFIG_H.
569 1999-04-18 Jesse Thilo <jthilo@gnu.org>
571 * src/.cvsignore, src/Makefile.am:
572 Reorganized: sources in `src', documentation in `doc'.
574 * src/lex.c (literalchar):
575 fixed the code for escaping double quotes (thanks
578 1999-04-18 Jesse Thilo <jthilo@gnu.org>
580 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
581 Adjusted paths to reflect directory reorganization.
583 1999-04-18 Jesse Thilo <jthilo@gnu.org>
585 * doc/.cvsignore, doc/Makefile.am:
586 Reorganized: sources in `src', documentation in `doc'.
588 1999-04-18 Jesse Thilo <jthilo@gnu.org>
591 Updated AC_INIT file to reflect directory reorganization.
593 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
594 Reorganized: sources in `src', documentation in `doc'.
596 1999-04-13 Jesse Thilo <jthilo@gnu.org>
599 Don't declare calloc() and realloc() if not necessary.
601 1999-04-13 Jesse Thilo <jthilo@gnu.org>
603 * configure.in, acconfig.h, acinclude.m4:
604 Don't declare calloc() and realloc() if not necessary.
606 1999-03-23 Jesse Thilo <jthilo@gnu.org>
608 * po/.cvsignore: Added i18n support.
610 1999-03-23 Jesse Thilo <jthilo@gnu.org>
612 * acconfig.h, configure.in, Makefile.am:
615 1999-03-22 Jesse Thilo <jthilo@gnu.org>
617 * src/bison.s1: Fixed #line numbers.
619 1999-03-15 Jesse Thilo <jthilo@gnu.org>
621 * po/es.po, po/fr.po, po/nl.po, po/de.po:
622 Added PO files from Translation Project.
624 1999-03-03 Jesse Thilo <jthilo@gnu.org>
627 Added support for non-ANSI compilers (ansi2knr).
629 1999-02-16 Jesse Thilo <jthilo@gnu.org>
631 * configure.in: Bumped version number to 1.27.
634 Added `bison.simple' to list of files removed by `make distclean'.
636 1999-02-12 Jesse Thilo <jthilo@gnu.org>
638 * src/files.c, src/files.h:
639 Defined locations of parser files in config.h instead of Makefile.
641 1999-02-12 Jesse Thilo <jthilo@gnu.org>
643 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
644 Defined locations of parser files in config.h instead of Makefile.
646 1999-02-09 Jesse Thilo <jthilo@gnu.org>
649 Removed inappropriate use of $< macro.
651 1999-02-05 Jesse Thilo <jthilo@gnu.org>
653 * po/Makefile.in.in, po/POTFILES.in:
654 Add `po' directory skeleton.
656 1999-01-27 Jesse Thilo <jthilo@gnu.org>
658 * README: Document help-bison list.
660 * configure.in: Add check for mkstemp().
662 1999-01-20 Jesse Thilo <jthilo@gnu.org>
664 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
665 Hush a few compiler warnings.
668 Add tryclose(), which verifies that fclose was successful.
669 Hush a couple of compiler warnings.
671 1999-01-20 Jesse Thilo <jthilo@gnu.org>
673 * Makefile.am, OChangeLog:
674 ChangeLog is now automatically generated. Include the old version as
677 1999-01-14 Jesse Thilo <jthilo@gnu.org>
679 * 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:
682 1999-01-14 Jesse Thilo <jthilo@gnu.org>
684 * doc/bison.texinfo: Fix formatting glitch.
686 * doc/bison.texinfo: Update FSF address.
688 1999-01-14 Jesse Thilo <jthilo@gnu.org>
690 * acconfig.h: Update FSF address.
692 1999-01-08 Jesse Thilo <jthilo@gnu.org>
695 Don't define PACKAGE here, since config.h defines it.
697 1998-12-30 Jesse Thilo <jthilo@gnu.org>
699 * src/reader.c: Update copyright date.
702 Ditch sprintf to statically-sized buffers in fatal/warn functions in
703 favor of output directly to stderr (avoids buffer overruns).
705 * src/reader.c: Some checks for premature EOF.
707 * 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:
708 Use prototypes if the compiler understands them.
710 * src/files.c: Honor TMPDIR on Unix hosts.
711 Use prototypes if the compiler understands them.
714 Fix a couple of buffer overrun bugs.
715 Use prototypes if the compiler understands them.
717 * src/system.h: Include unistd.h and ctype.h.
718 Use #ifdef instead of #if for NLS symbols.
720 1998-12-30 Jesse Thilo <jthilo@gnu.org>
723 Delete comment "consider using @set for edition number, etc..." since
726 1998-12-30 Jesse Thilo <jthilo@gnu.org>
729 Use prototypes if the compiler understands them.
731 * NEWS: Document 1.26 highlights.
733 * Makefile.am: Require Automake 1.3 or later.
736 Use prototypes if the compiler understands them.
738 1998-12-29 Jesse Thilo <jthilo@gnu.org>
741 Use VERSION symbol from automake for version number.
743 1998-12-29 Jesse Thilo <jthilo@gnu.org>
745 * acconfig.h, configure.in, version.cin:
746 Use VERSION symbol from automake for version number.
748 1998-11-28 Jesse Thilo <jthilo@gnu.org>
751 Distribute original version of simple parser (bison.s1), not built
752 version (bison.simple).
754 1998-11-28 Jesse Thilo <jthilo@gnu.org>
756 * doc/bison.texinfo: Add info dir entry.
759 Let automake put version number into documentation.
761 1998-11-26 Jesse Thilo <jthilo@gnu.org>
763 * src/bison.cld, src/build.com, src/vmshlp.mar:
764 Add non-RCS files from /gd/gnu/bison.
766 1998-11-26 Jesse Thilo <jthilo@gnu.org>
769 Document the BISON_HAIRY and BISON_SIMPLE variables.
771 1998-11-25 Jesse Thilo <jthilo@gnu.org>
773 * src/version.c: Build version.c automatically.
776 Fix token numbering (used to start at 258, not 257).
778 * src/system.h: Include config.h.
780 * src/getargs.c: Update bug report address.
782 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
783 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
785 1998-11-25 Jesse Thilo <jthilo@gnu.org>
788 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
790 * configure.in, version.cin:
791 Build version.c automatically.
793 * AUTHORS: Add AUTHORS file.
795 * README: Update bug report address.
798 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
800 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
803 1998-11-25 Jesse Thilo <jthilo@gnu.org>
805 * doc/bison.texinfo: Clean up some formatting.
807 1998-05-05 Richard Stallman <rms@gnu.org>
810 Explain better why to make a pure parser.
812 1998-01-05 Richard Stallman <rms@gnu.org>
814 * src/files.c (openfiles):
815 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
816 find a temporary directory, if possible. Do not unlink files while
819 1997-08-25 Richard Stallman <rms@gnu.org>
821 * src/reader.c (stack_offset;):
822 Change some warni to warns.
824 * src/lex.c (literalchar): Use warns, not warni.
826 1997-06-28 Richard Stallman <rms@gnu.org>
828 * src/bison.s1: Add a Bison version comment.
830 * src/main.c (fatal, warn, berror):
833 1997-06-28 Richard Stallman <rms@gnu.org>
835 * Makefile.in (bison_version): New variable.
836 (dist): Use that variable.
837 (bison.s1): Substitute the Bison version into bison.simple.
839 * bison.simple: Add a Bison version comment.
841 1997-06-18 Richard Stallman <rms@gnu.org>
843 * src/main.c (fatal, warn, berror):
844 Make error messages standard.
845 (toomany): Improve error message text.
847 * 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:
848 new.h renamed to alloc.h.
850 1997-06-18 Richard Stallman <rms@gnu.org>
852 * Makefile.in: new.h renamed to alloc.h.
854 1997-05-24 Richard Stallman <rms@gnu.org>
856 * src/lex.c (literalchar):
857 Fix the code for escaping \, " and '.
859 (lex): Avoid trouble when there are many chars
860 to discard in a char literal with just several chars in it.
862 1997-05-17 Richard Stallman <rms@gnu.org>
865 Use malloc, if using alloca is troublesome.
866 (YYSTACK_USE_ALLOCA): New flag macro.
867 Define it for some systems and compilers.
868 (YYSTACK_ALLOC): New macro.
869 (yyparse): Use YYSTACK_ALLOC to allocate stack.
870 If it was malloc'd, free it.
872 1997-05-17 Richard Stallman <rms@gnu.org>
875 Use malloc, if using alloca is troublesome.
876 (YYSTACK_USE_ALLOCA): New flag macro.
877 Define it for some systems and compilers.
878 (YYSTACK_ALLOC): New macro.
879 (yyparse): Use YYSTACK_ALLOC to allocate stack.
880 If it was malloc'd, free it.
882 1997-04-23 Richard Stallman <rms@gnu.org>
885 (alloca) [__hpux]: Always define as __builtin_alloca.
887 1997-04-23 Richard Stallman <rms@gnu.org>
890 (alloca) [__hpux]: Always define as __builtin_alloca.
892 1997-04-22 Richard Stallman <rms@gnu.org>
895 [__hpux]: Include alloca.h (right for HPUX 10)
896 instead of declaring alloca (right for HPUX 9).
898 * src/bison.s1 (__yy_memcpy):
899 Declare arg `count' as unsigned int.
900 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
902 1997-04-22 Richard Stallman <rms@gnu.org>
905 [__hpux]: Include alloca.h (right for HPUX 10)
906 instead of declaring alloca (right for HPUX 9).
908 * bison.simple (__yy_memcpy):
909 Declare arg `count' as unsigned int.
910 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
912 1997-01-03 Richard Stallman <rms@gnu.org>
914 * src/allocate.c: [__STDC__ or _MSC_VER]:
915 Declare calloc and realloc to return void *.
917 1997-01-02 Richard Stallman <rms@gnu.org>
920 [_MSC_VER]: Include stdlib.h and process.h.
921 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
923 * src/main.c (main): Return FAILURE as a value.
924 (printable_version): Declare arg as int, not char.
926 1997-01-02 Richard Stallman <rms@gnu.org>
928 * Makefile.in (dist):
929 Explicitly check for symlinks, and copy them.
931 1996-12-19 Richard Stallman <rms@gnu.org>
934 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
936 1996-12-18 Paul Eggert <eggert@gnu.org>
938 * src/bison.s1 (yyparse):
939 If __GNUC__ and YYPARSE_PARAM are both defined,
940 declare yyparse to have a void * argument.
942 1996-12-18 Paul Eggert <eggert@gnu.org>
944 * bison.simple (yyparse):
945 If __GNUC__ and YYPARSE_PARAM are both defined,
946 declare yyparse to have a void * argument.
948 1996-12-17 Richard Stallman <rms@gnu.org>
950 * src/reduce.c (nbits): Add some casts.
952 1996-08-12 Richard Stallman <rms@gnu.org>
954 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
956 1996-08-12 Richard Stallman <rms@gnu.org>
958 * bison.simple: Test _MSDOS as well as _MSDOS_.
960 1996-07-31 Richard Stallman <rms@gnu.org>
963 [__sun && __i386]: Include alloca.h.
965 1996-07-31 Richard Stallman <rms@gnu.org>
968 [__sun && __i386]: Include alloca.h.
970 1996-07-30 Richard Stallman <rms@gnu.org>
972 * src/bison.s1: Comment change.
974 * src/bison.s1: Test _MSDOS_, not MSDOS.
976 1996-07-30 Richard Stallman <rms@gnu.org>
978 * bison.simple: Comment change.
980 * bison.simple: Test _MSDOS_, not MSDOS.
982 1996-06-01 Richard Stallman <rms@gnu.org>
984 * 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:
985 Insert `_' macro around many string constants.
988 Insert `_' macro around many string constants.
990 (main): Call setlocale, bindtextdomain and textdomain.
992 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
993 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
994 [ENABLE_NLS]: Include libintl.h.
995 [ENABLE_NLS] (gettext): Define.
996 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
997 (N_, PACKAGE, LOCALEDIR): New macros.
999 1996-06-01 Richard Stallman <rms@gnu.org>
1001 * POTFILES.in: New file.
1003 * Makefile.in (allocate.o):
1004 Define target explicitly.
1006 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1007 (LDFLAGS): Set to @LDFLAGS@.
1008 (configure): Run autoconf only if preceding `cd' succeeds.
1009 (bison.s1): Redirect output to temporary file then move the
1010 temporary to the target, rather than redirecting directly to bison.s1.
1011 (clean): Remove config.status and config.log.
1012 (distclean): Don't remove config.status here.
1014 1996-05-12 Richard Stallman <rms@gnu.org>
1017 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1019 1996-05-12 Richard Stallman <rms@gnu.org>
1022 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1024 1996-05-11 Richard Stallman <rms@gnu.org>
1026 * src/bison.s1 (__yy_memcpy):
1027 Really reorder the args, as was supposedly done on Feb 14 1995.
1028 (yyparse): Calls changed accordingly.
1030 1996-05-11 Richard Stallman <rms@gnu.org>
1032 * Makefile.in (dist): Don't use $(srcdir).
1034 * bison.simple (__yy_memcpy):
1035 Really reorder the args, as was supposedly done on Feb 14 1995.
1036 (yyparse): Calls changed accordingly.
1038 1996-01-27 Richard Stallman <rms@gnu.org>
1040 * src/output.c (output_rule_data):
1041 Test YYERROR_VERBOSE in the conditional
1042 around the definition of ttyname.
1044 1995-12-29 Richard Stallman <rms@gnu.org>
1047 Fix line numbers in #line commands.
1049 1995-12-29 Richard Stallman <rms@gnu.org>
1052 Fix line numbers in #line commands.
1054 1995-12-27 Richard Stallman <rms@gnu.org>
1056 * src/bison.s1 (YYPARSE_PARAM_DECL):
1057 In C++, make it always null.
1058 (YYPARSE_PARAM_ARG): New macro.
1059 (yyparse): Use YYPARSE_PARAM_ARG.
1061 1995-12-27 Richard Stallman <rms@gnu.org>
1063 * bison.simple (YYPARSE_PARAM_DECL):
1064 In C++, make it always null.
1065 (YYPARSE_PARAM_ARG): New macro.
1066 (yyparse): Use YYPARSE_PARAM_ARG.
1068 1995-11-29 Richard Stallman <rms@gnu.org>
1070 * doc/bison.texinfo:
1071 Describe literal string tokens, %raw, %no_lines, %token_table.
1073 1995-11-29 Daniel Hagerty <hag@gnu.org>
1075 * doc/bison.texinfo: Fixed update date
1077 1995-10-16 Richard Stallman <rms@gnu.org>
1079 * src/version.c: Version 1.25.
1081 1995-10-16 Richard Stallman <rms@gnu.org>
1083 * NEWS: *** empty log message ***
1085 1995-10-16 Richard Stallman <rms@gnu.org>
1087 * doc/bison.1, doc/bison.rnh:
1090 1995-10-15 Richard Stallman <rms@gnu.org>
1092 * src/vmsgetargs.c, src/getargs.c:
1093 Added -n, -k, and -raw switches.
1094 (noparserflag, toknumflag, rawtoknumflag): New variables.
1096 * src/symtab.h (SALIAS):
1097 New #define for adding aliases to %token.
1098 (struct bucket): Added `alias' field.
1100 * src/reduce.c (reduce_grammar):
1101 Revise error message.
1102 (print_notices): Remove final `.' from error message.
1104 * src/reader.c (reader_output_yylsp):
1106 (readgram): Use `#if 0' around code that accepted %command
1107 inside grammar rules: The documentation doesn't allow it,
1108 and it will fail since the %command processors scan for the next %.
1109 (parse_token_decl): Extended the %token
1110 declaration to allow a multi-character symbol as an alias.
1111 (parse_thong_decl): New function.
1112 (read_declarations): Added %thong declarations.
1113 (read_declarations): Handle NOOP to deal with allowing
1114 % declarations as another means to specify the flags.
1115 (readgram): Allow %prec prior to semantics embedded in a rule.
1116 (skip_to_char, read_declarations, copy_definition)
1117 (parse_token_decl, parse_start_decl, parse_type_decl)
1118 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1119 (get_type_name, copy_guard, copy_action, readgram)
1120 (get_type, packsymbols): Revised most error messages.
1121 Changed `fatal' to `warnxxx' to avoid aborting for error.
1122 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1123 (read_declarations): Improve the error message for
1124 an invalid character. Do not abort.
1125 (read_declarations, copy_guard, copy_action): Use
1126 printable_version to avoid unprintable characters in printed output.
1127 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1128 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1129 Allow the type of a non-terminal can be given
1130 more than once, as long as all specifications give the same type.
1133 (output_headers, output_trailers, output, output_gram)
1134 (output_rule_data): Implement noparserflag variable.
1135 Implement toknumflag variable.
1136 (output): Call reader_output_yylsp to output LTYPESTR.
1138 * src/main.c (main):
1139 If reader sees an error, don't process the grammar.
1140 (fatals): Updated to not use VARARGS1.
1141 (printable_version, int_to_string, warn, warni, warns, warnss)
1142 (warnsss): New error reporting functions. Avoid abort for error.
1145 Added THONG and NOOP for alias processing.
1146 Added SETOPT for the new code that allows setting options with %flags.
1149 Include getopt.h. Add some extern decls.
1150 (safegetc): New function to deal with EOF gracefully.
1151 (literalchar); new function to deal with reading \ escapes.
1152 (lex): Use literalchar.
1153 (lex): Implemented "..." tokens.
1154 (literalchar, lex, parse_percent_token): Made tokenbuffer
1155 always contain the token. This includes growing the token
1156 buffer while reading an integer.
1157 (parse_percent_token): Replaced if-else statement with percent_table.
1158 (parse_percent_token): Added % declarations as another
1159 way to specify the flags -n, -l, and -r. Also added hooks for
1160 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1161 major changes to files.c.
1162 (lex) Retain in the incoming stream a character following
1164 (skip_white_space, lex): Revised most error messages
1165 and changed fatal to warn to avoid aborting.
1166 (percent_table): Added %thong declarations.
1168 * src/gram.h: Comment changes.
1170 * src/files.c (openfiles, open_extra_files, done):
1172 and actfile file. Handle noparserflag. Both for -n switch.
1174 * src/conflicts.c (resolve_sr_conflict):
1175 Remove use of alloca.
1177 1995-06-01 Jim Meyering <meyering@gnu.org>
1179 * doc/bison.texinfo: *** empty log message ***
1181 1995-05-06 Richard Stallman <rms@gnu.org>
1183 * src/bison.s1: Comment change.
1185 1995-05-06 Richard Stallman <rms@gnu.org>
1187 * bison.simple: Comment change.
1189 1995-05-03 Richard Stallman <rms@gnu.org>
1191 * src/version.c: Version now 1.24.
1193 * src/bison.s1: Change distribution terms.
1195 * src/version.c: Version now 1.23.
1197 1995-05-03 Richard Stallman <rms@gnu.org>
1199 * doc/bison.texinfo:
1200 Rewrite "Conditions for Using Bison".
1201 Update version to 1.24.
1203 1995-05-03 Richard Stallman <rms@gnu.org>
1205 * bison.simple: Change distribution terms.
1207 1995-02-23 Richard Stallman <rms@gnu.org>
1209 * src/files.c: Test __VMS_POSIX as well as VMS.
1211 1995-02-14 Jim Meyering <meyering@gnu.org>
1213 * src/bison.s1 (__yy_memcpy):
1214 Renamed from __yy_bcopy to avoid
1215 confusion. Reverse FROM and TO arguments to be consistent with
1218 1995-02-14 Jim Meyering <meyering@gnu.org>
1220 * bison.simple (__yy_memcpy):
1221 Renamed from __yy_bcopy to avoid
1222 confusion. Reverse FROM and TO arguments to be consistent with
1225 1994-11-10 David J. MacKenzie <djm@gnu.org>
1231 * Makefile.in (DISTFILES): Include NEWS.
1233 * Makefile.in (DISTFILES):
1234 Include install-sh, not install.sh.
1236 * configure.in: Update to Autoconf v2 macro names.
1238 1994-10-05 David J. MacKenzie <djm@gnu.org>
1240 * Makefile.in: fix typo
1242 * Makefile.in (prefix, exec_prefix):
1243 Let configure set them.
1245 1994-09-28 David J. MacKenzie <djm@gnu.org>
1247 * Makefile.in: Set datadir to $(prefix)/share.
1249 1994-09-15 Richard Stallman <rms@gnu.org>
1252 Update copyright notice and GPL version.
1254 1994-09-15 Richard Stallman <rms@gnu.org>
1257 Update copyright notice and GPL version.
1259 1994-07-12 Richard Stallman <rms@gnu.org>
1261 * src/reduce.c, src/reader.c:
1264 1994-05-05 David J. MacKenzie <djm@gnu.org>
1266 * Makefile.in: entered into RCS
1268 1994-03-26 Richard Stallman <rms@gnu.org>
1270 * src/bison.s1: entered into RCS
1272 1994-03-26 Richard Stallman <rms@gnu.org>
1274 * bison.simple: entered into RCS
1276 1994-03-25 Richard Stallman <rms@gnu.org>
1278 * src/main.c: entered into RCS
1280 1994-03-24 Richard Stallman <rms@gnu.org>
1282 * src/conflicts.c: entered into RCS
1284 1994-01-02 Richard Stallman <rms@gnu.org>
1286 * Makefile.in: *** empty log message ***
1288 1993-11-21 Richard Stallman <rms@gnu.org>
1290 * src/bison.s1: *** empty log message ***
1292 1993-11-21 Richard Stallman <rms@gnu.org>
1294 * doc/bison.texinfo: entered into RCS
1296 * doc/bison.texinfo: *** empty log message ***
1298 1993-11-21 Richard Stallman <rms@gnu.org>
1300 * bison.simple: *** empty log message ***
1302 1993-10-25 David J. MacKenzie <djm@gnu.org>
1304 * doc/bison.texinfo: *** empty log message ***
1306 1993-10-19 Richard Stallman <rms@gnu.org>
1308 * src/bison.s1: *** empty log message ***
1310 1993-10-19 Richard Stallman <rms@gnu.org>
1312 * bison.simple: *** empty log message ***
1314 1993-10-14 Richard Stallman <rms@gnu.org>
1316 * src/bison.s1: *** empty log message ***
1318 1993-10-14 Richard Stallman <rms@gnu.org>
1320 * bison.simple: *** empty log message ***
1322 1993-09-14 David J. MacKenzie <djm@gnu.org>
1324 * doc/bison.texinfo: *** empty log message ***
1326 1993-09-13 Noah Friedman <friedman@gnu.org>
1328 * Makefile.in: *** empty log message ***
1330 1993-09-10 Richard Stallman <rms@gnu.org>
1332 * src/conflicts.c: *** empty log message ***
1334 * src/system.h: entered into RCS
1336 1993-09-10 Richard Stallman <rms@gnu.org>
1338 * doc/bison.1: entered into RCS
1340 1993-09-06 Noah Friedman <friedman@gnu.org>
1342 * src/version.c: entered into RCS
1344 1993-09-06 Noah Friedman <friedman@gnu.org>
1346 * Makefile.in: *** empty log message ***
1348 1993-07-30 David J. MacKenzie <djm@gnu.org>
1350 * Makefile.in: *** empty log message ***
1352 1993-07-24 Richard Stallman <rms@gnu.org>
1354 * src/bison.s1: *** empty log message ***
1356 1993-07-24 Richard Stallman <rms@gnu.org>
1358 * bison.simple: *** empty log message ***
1360 1993-07-08 David J. MacKenzie <djm@gnu.org>
1362 * Makefile.in: *** empty log message ***
1364 1993-07-04 Richard Stallman <rms@gnu.org>
1366 * src/bison.s1: *** empty log message ***
1368 1993-07-04 Richard Stallman <rms@gnu.org>
1370 * bison.simple: *** empty log message ***
1372 1993-06-26 David J. MacKenzie <djm@gnu.org>
1374 * src/getargs.c: entered into RCS
1376 1993-06-26 David J. MacKenzie <djm@gnu.org>
1378 * doc/bison.texinfo: *** empty log message ***
1380 * doc/bison.1: New file.
1382 1993-06-25 Richard Stallman <rms@gnu.org>
1384 * src/getargs.c: New file.
1386 1993-06-16 Richard Stallman <rms@gnu.org>
1388 * src/bison.s1: *** empty log message ***
1390 1993-06-16 Richard Stallman <rms@gnu.org>
1392 * bison.simple: *** empty log message ***
1394 1993-06-03 Richard Stallman <rms@gnu.org>
1396 * src/bison.s1: New file.
1398 1993-06-03 Richard Stallman <rms@gnu.org>
1400 * doc/bison.texinfo: *** empty log message ***
1402 1993-06-03 Richard Stallman <rms@gnu.org>
1404 * bison.simple: New file.
1406 1993-05-19 Richard Stallman <rms@gnu.org>
1408 * doc/bison.texinfo: New file.
1410 1993-05-07 Noah Friedman <friedman@gnu.org>
1412 * Makefile.in: *** empty log message ***
1414 1993-04-28 Noah Friedman <friedman@gnu.org>
1416 * src/reader.c: *** empty log message ***
1418 1993-04-23 Noah Friedman <friedman@gnu.org>
1420 * src/alloc.h: entered into RCS
1422 1993-04-20 David J. MacKenzie <djm@gnu.org>
1424 * src/version.c: *** empty log message ***
1426 * src/files.c, src/allocate.c:
1429 * src/reader.c: *** empty log message ***
1431 * src/lex.c: entered into RCS
1433 * src/conflicts.c: New file.
1435 * src/symtab.c: entered into RCS
1437 * src/alloc.h: New file.
1439 * src/LR0.c: entered into RCS
1441 1993-04-18 Noah Friedman <friedman@gnu.org>
1443 * src/reader.c: New file.
1445 * src/version.c: *** empty log message ***
1447 1993-04-18 Noah Friedman <friedman@gnu.org>
1449 * Makefile.in: *** empty log message ***
1451 1993-04-17 Noah Friedman <friedman@gnu.org>
1453 * Makefile.in: *** empty log message ***
1455 1993-04-15 Richard Stallman <rms@gnu.org>
1457 * src/main.c, src/files.c:
1460 1993-04-15 Noah Friedman <friedman@gnu.org>
1462 * configure.in: entered into RCS
1464 * configure.in: *** empty log message ***
1466 * configure.in: New file.
1468 1993-04-14 Richard Stallman <rms@gnu.org>
1470 * Makefile.in: New file.
1472 1993-04-13 Richard Stallman <rms@gnu.org>
1474 * src/version.c: New file.
1476 1993-03-25 Richard Stallman <rms@gnu.org>
1478 * src/output.c: entered into RCS
1480 1992-09-25 Richard Stallman <rms@gnu.org>
1482 * configure.bat: entered into RCS
1484 1992-06-22 Richard Stallman <rms@gnu.org>
1486 * src/vmsgetargs.c: entered into RCS
1488 1992-06-22 Richard Stallman <rms@gnu.org>
1490 * doc/bison.rnh: entered into RCS
1492 1992-04-20 David J. MacKenzie <djm@gnu.org>
1494 * README: entered into RCS
1496 1992-01-22 Richard Stallman <rms@gnu.org>
1498 * src/machine.h: entered into RCS
1500 1991-12-21 Richard Stallman <rms@gnu.org>
1502 * src/lalr.c, src/closure.c:
1505 1991-12-20 Richard Stallman <rms@gnu.org>
1507 * src/state.h: entered into RCS
1509 1991-12-18 Richard Stallman <rms@gnu.org>
1511 * src/print.c, src/nullable.c, src/derives.c:
1514 1991-11-03 David J. MacKenzie <djm@gnu.org>
1516 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1519 1988-09-09 Richard Stallman <rms@gnu.org>
1521 * src/bison.hairy: entered into RCS
1523 1987-12-16 Richard Stallman <rms@gnu.org>
1525 * REFERENCES: entered into RCS