1 2000-10-04 Akim Demaille <akim@epita.fr>
3 * src/reader.c (parse_expect_decl): Keep `count' within the size
7 2000-10-02 Paul Eggert <eggert@twinsun.com>
9 * bison.s1 (yyparse): Assign the default value
10 unconditionally, to avoid a GCC warning and make the parser a
13 2000-10-02 Akim Demaille <akim@epita.fr>
15 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
18 2000-10-02 Akim Demaille <akim@epita.fr>
20 * src/derives.c, src/print.c, src/reduce.c: To ease the
21 translation, move some `\n' out of the translated strings.
23 2000-10-02 Akim Demaille <akim@epita.fr>
25 The location tracking mechanism is precious for parse error
26 messages. Nevertheless, it is enabled only when `@n' is used in
27 the grammar, which is a different issue (you can use it in error
28 message, but not in the grammar per se). Therefore, there should
29 be another means to enable it.
31 * src/getargs.c (getargs): Support `--locations'.
33 * src/getargs.h (locationsflag): Export it.
34 * src/lex.c (percent_table): Support `%locations'.
35 * src/reader.c (yylsp_needed): Remove this variable, now replaced
37 * doc/bison.texinfo: Document `--locations' and `%locations'.
39 * tests/calc.m4: Test it.
41 For regularity of the names, replace each
42 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
43 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
44 In addition replace each `flag' with `_flag'.
46 2000-10-02 Akim Demaille <akim@epita.fr>
48 Also test parse error messages, including with YYERROR_VERBOSE.
50 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
52 Use it to check the computations.
53 Use it to check `nonassoc' is honored.
54 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
56 (_AT_CHECK_CALC): Adjust to this option.
57 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
59 2000-10-02 Akim Demaille <akim@epita.fr>
61 Test also `--verbose', `--defines' and `--name-prefix'. Testing
62 the latter demonstrates a flaw in the handling of non debugging
63 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
64 was used in order to simplify:
80 unfortunately this leads to a CPP conflict when
81 `--name-prefix=foo' is used since it produces `#define yydebug
84 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
85 (YYDPRINTF): New macro.
87 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
89 Also test `--verbose', `--defines' and `--name-prefix'.
91 2000-10-02 Akim Demaille <akim@epita.fr>
93 Improve the readability of the produced parsers.
95 * src/bison.s1: Formatting changes.
96 Improve the comment related to the `$' mark.
97 (yydefault): Don't fall through to `yyresume': `goto' there.
98 * src/output.c (output_parser): When the `$' is met, skip the end
100 New variable, `number_of_dollar_signs', to check there's exactly
101 one `$' in the parser skeleton.
103 2000-10-02 Akim Demaille <akim@epita.fr>
105 * lib/xstrdup.c: New file, from the fileutils.
106 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
107 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
108 instead of strlen + xmalloc + strcpy.
109 * src/symtab.c (copys): Remove, use xstrdup instead.
111 2000-10-02 Akim Demaille <akim@epita.fr>
113 * src/gram.h (associativity): New enum type which replaces the
114 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
115 `right_assoc', `left_assoc' and `non_assoc'.
116 Adjust all dependencies.
117 * src/reader.c: Formatting changes.
118 (LTYPESTR): Don't define it, use it as a literal in
119 `reader_output_yylsp'.
120 * src/symtab.h (symbol_class): New enum type which replaces the
121 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
122 `sunknown', `stoken and `snterm'.
124 2000-10-02 Akim Demaille <akim@epita.fr>
126 * src/getargs.c (fixed_outfiles): Rename as...
127 (yaccflag): for consistency and accuracy.
130 2000-10-02 Akim Demaille <akim@epita.fr>
132 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
133 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
134 difficult and introduced a lot of core dump. It turns out that
135 Bison used an implementation of `xmalloc' based on `calloc', and
136 at various places it does depend upon the initialization to 0. I
137 have not tried to isolate the pertinent places, and all the former
138 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
139 someone should address this issue.
141 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
142 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
145 * src/warshall.h: New file.
148 2000-10-02 Akim Demaille <akim@epita.fr>
150 Various anti-`extern in *.c' changes.
152 * src/system.h: Include `assert.h'.
154 2000-10-02 Akim Demaille <akim@epita.fr>
156 * src/state.h (nstates, final_state, first_state, first_shift)
157 (first_reduction): Move their exportation from here...
158 * src/LR0.h: to here.
160 * src/getargs.c (statisticsflag): New variable.
161 Add support for `--statistics'.
164 Remove a lot of now useless `extern' statements in most files.
166 2000-10-02 Akim Demaille <akim@epita.fr>
168 * src/LR0.h: New file.
171 2000-10-02 Akim Demaille <akim@epita.fr>
173 * src/print.h: New file.
175 * src/print.c: Formatting and ordering changes.
176 (verbose, terse): Replace with...
177 (print_results): this new function.
180 2000-10-02 Akim Demaille <akim@epita.fr>
182 * src/conflicts.c (conflict_report): New function.
183 (conflict_log, verbose_conflict_log): Replace with...
184 (print_conflicts): this function.
186 * src/conflicts.h: New file.
187 Propagate its inclusion.
189 2000-10-02 Akim Demaille <akim@epita.fr>
191 * src/nullable.h: New file.
192 Propagate its inclusion.
193 * src/nullable.c: Formatting changes.
195 2000-10-02 Akim Demaille <akim@epita.fr>
197 * src/reduce.h: New file.
198 Propagate its inclusion.
199 * src/reduce.c: Topological sort and other formatting changes.
200 (bool, TRUE, FALSE): Move their definition to...
201 * src/system.h: here.
203 2000-10-02 Akim Demaille <akim@epita.fr>
205 * src/files.c: Formatting changes.
206 (tryopen, tryclose, openfiles): Rename as...
207 (xfopen, xfclose, open_files): this.
208 (stringappend): static.
209 * src/files.h: Complete the list of exported symbols.
212 2000-10-02 Akim Demaille <akim@epita.fr>
214 * src/reader.h: New file.
215 Propagate its use instead of tedious list of `extern' and
217 * src/reader.c: Formatting changes, topological sort,
220 2000-10-02 Akim Demaille <akim@epita.fr>
222 * src/lex.h: Prototype `lex.c' exported functions.
223 * src/reader.c: Adjust.
224 * src/lex.c: Formatting changes.
225 (safegetc): Rename as...
228 2000-10-02 Akim Demaille <akim@epita.fr>
230 * src/lalr.h: New file.
231 Propagate its inclusion instead of prototypes and `extern'.
232 * src/lalr.c: Formatting changes, topological sorting etc.
234 2000-10-02 Akim Demaille <akim@epita.fr>
236 * src/output.c (token_actions): Introduce a temporary array,
237 YYDEFACT, that makes it possible for this function to use
240 2000-10-02 Akim Demaille <akim@epita.fr>
242 `user_toknums' is output as a `short[]' in `output.c', while it is
243 defined as a `int[]' in `reader.c'. For consistency with the
244 other output tables, `user_toknums' is now defined as a table of
247 * src/reader.c (user_toknums): Be a short table instead of an int
251 Factor the short table outputs.
253 * src/output.c (output_short_table): New function.
254 * src/output.c (output_gram, output_stos, output_rule_data)
255 (output_base, output_table, output_check): Use it.
257 2000-10-02 Akim Demaille <akim@epita.fr>
259 * src/output.c (output): Topological sort of the functions, in
260 order to get rid of the `static' prototypes.
261 No longer use `register'.
262 * src/output.h: New file.
263 Propagate its inclusion in files explicitly prototyping functions
266 2000-09-21 Akim Demaille <akim@epita.fr>
268 * src/atgeneral.m4: Update from Autoconf.
270 2000-09-21 Akim Demaille <akim@epita.fr>
272 * src/closure.h: New file.
273 * src/closure.c: Formatting changes, topological sort over the
274 functions, use of closure.h.
275 (initialize_closure, finalize_closure): Rename as...
276 (new_closure, free_closure): these. Adjust dependencies.
277 * src/LR0.c: Formatting changes, topological sort, use of
279 (initialize_states): Rename as...
281 * src/Makefile.am (noinst_HEADERS): Adjust.
283 2000-09-20 Akim Demaille <akim@epita.fr>
285 * src/acconfig.h: Don't protect config.h against multiple
288 * src/system.h: Define PARAMS.
289 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
290 purpose of config.h. system.h must not try to fix wrong
291 definitions in config.h.
293 2000-09-20 Akim Demaille <akim@epita.fr>
295 * src/derives.h: New file.
296 * src/main.c, src/derives.h: Use it.
298 * src/Makefile.am (noinst_HEADERS): Adjust.
300 2000-09-20 Akim Demaille <akim@epita.fr>
302 * tests/atgeneral.m4: Update from Autoconf.
303 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
304 (AT_CHECK_CALC): New macros.
305 Use these macros to test bison with options `', `--raw',
306 `--debug', `--yacc', `--yacc --debug'.
308 2000-09-19 Akim Demaille <akim@epita.fr>
310 * src/output.c: Formatting changes.
311 * src/machine.h: Remove, leaving its contents in...
312 * src/system.h: here.
314 Adjust all dependencies on stdio.h and machine.h.
315 * src/getargs.h: New file.
316 Let all `extern' declarations about getargs.c be replaced with
317 inclusion of `getargs.h'.
318 * src/Makefile.am (noinst_HEADERS): Adjust.
320 * tests/calc.m4 (yyin): Be initialized in main, not on the global
322 (yyerror): Returns void, not int.
323 * doc/bison.texinfo: Formatting changes.
325 2000-09-19 Akim Demaille <akim@epita.fr>
327 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
330 2000-09-18 Akim Demaille <akim@epita.fr>
332 * configure.in: Append WARNING_CFLAGS to CFLAGS.
333 * src/Makefile.am (INCLUDES): Don't.
334 Be ready to fetch headers in lib/.
336 2000-09-18 Akim Demaille <akim@epita.fr>
338 * doc/bison.texinfo: Update the copyright.
339 ANSIfy and GNUify the examples.
342 2000-09-18 Akim Demaille <akim@epita.fr>
344 First set of tests: use the `calc' example from the documentation.
346 * src/bison.s1 (yyparse): Condition the code using `yytname' which
347 is defined only when YYDEBUG is.
348 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
349 * src/files.c (tryopen, tryclose): Formatting changes.
350 Move to the top and be static.
351 * src/reader.c (read_signed_integer): Likewise.
352 * tests/calc.m4: New file.
353 * Makefile.am, suite.m4: Adjust.
354 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
356 2000-09-18 Akim Demaille <akim@epita.fr>
358 Add support for an Autotest test suite for Bison.
360 * m4/m4.m4, m4/atconfig.m4: New files.
361 * m4/Makefile.am (EXTRA_DIST): Adjust.
362 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
364 * src/getargs.c: Display a more standard --version message.
365 * src/reader.c (reader): Formatting changes.
366 No longer depend upon VERSION_STRING.
367 * configure.in: No longer use `dnl'.
368 Set up the test suite and the new directory `tests/.
369 (VERSION_STRING): Remove.
371 2000-04-14 Akim Demaille <akim@epita.fr>
373 * src/reader.c (copy_comment2): New function, same as former
374 `copy_comment', but outputs into two FILE *.
375 (copy_comment): Use it.
376 (parse_union_decl): Use it.
377 (get_type, parse_start_decl): Use the same `invalid' message.
378 (parse_start_decl, parse_union_decl): Use the same `multiple'
380 (parse_union_decl, copy_guard, copy_action): Use the same
382 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
384 2000-03-31 Akim Demaille <akim@epita.fr>
386 * src/files.c (tryopen, tryclose): Move to the top.
389 2000-03-31 Akim Demaille <akim@epita.fr>
391 * src/main.c (main): Don't call `done', exit does it.
393 2000-03-31 Akim Demaille <akim@epita.fr>
395 * allocate.c: s/return (foo)/return foo/.
398 * output.c: Likewise.
399 * reader.c: Likewise.
400 * symtab.c: Likewise.
401 * vmsgetargs.c: Likewise.
403 2000-03-31 Akim Demaille <akim@epita.fr>
405 Clean up the error reporting functions.
407 * src/report.c: New file.
408 * src/report.h: Likewise.
409 * src/Makefile.am: Adjust.
410 * m4/error.m4: New file.
411 * m4/Makefile.am: Adjust.
412 * configure.in (jm_PREREQ_ERROR): Call it.
413 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
415 (fatal, fatals): Remove. All callers use complain.c::fatal.
416 (warn, warni, warns, warnss, warnss): Remove. All callers use
417 complain.c::complain.
418 (toomany): Remove, use fatal instead.
419 * src/files.c (done): No argument, use complain_message_count.
420 * src/main.c (main): Register `done' to `atexit'.
422 * src/getargs.c (usage): More `fputs', less `fprintf'.
424 2000-03-28 Akim Demaille <akim@epita.fr>
426 * lib/: New directory.
427 * Makefile.am (SUBDIRS): Adjust.
428 * configure.in: Adjust.
429 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
431 * src/alloca.c: Moved to lib/.
432 * src/getopt.c: Likewise.
433 * src/getopt1.c: Likewise.
434 * src/getopt.h: Likewise.
435 * src/ansi2knr.c: Likewise.
436 * src/ansi2knr.1: Likewise.
437 * src/Makefile.am: Adjust.
438 * lib/Makefile.am: New file.
440 2000-03-28 Akim Demaille <akim@epita.fr>
442 * src/getargs.c (usage): Refresh the help message.
444 2000-03-17 Akim Demaille <akim@epita.fr>
446 * src/getopt1.c: Updated from textutils 2.0e
447 * src/getopt.c: Likewise.
448 * src/getopt.h: Likewise.
450 2000-03-17 Akim Demaille <akim@epita.fr>
452 * src/Makefile.am (bison.simple): Fix the awk program: quote only
453 the file name, not the whole `#line LINE FILE'.
455 2000-03-17 Akim Demaille <akim@epita.fr>
457 On syntax errors, report the token on which we choked.
459 * src/bison.s1 (yyparse): In the label yyerrlab, when
460 YYERROR_VERBOSE, add yychar in msg.
462 2000-03-17 Akim Demaille <akim@epita.fr>
464 * src/reader.c (copy_at): New function.
465 (copy_guard): Use it.
466 (copy_action): Use it.
468 2000-03-17 Akim Demaille <akim@epita.fr>
470 Be kind to translators, save some useless translations.
472 * src/main.c (banner): New function.
473 (fatal_banner): Use it.
474 (warn_banner): Use it.
476 2000-03-17 Akim Demaille <akim@epita.fr>
478 * src/reader.c (copy_definition): Use copy_string and
479 copy_comment. Removed now unused `match', `ended',
481 (copy_comment, copy_string): Moved, to be visible from
484 2000-03-17 Akim Demaille <akim@epita.fr>
486 * src/reader.c (copy_string): Declare `static inline'. No
487 problems with inline, since it is checked by configure.
488 (copy_comment): Likewise.
490 2000-03-17 Akim Demaille <akim@epita.fr>
492 * src/reader.c (packsymbols): Formatting changes.
494 2000-03-17 Akim Demaille <akim@epita.fr>
496 * src/reader.c (copy_comment): New function, factored out from:
497 (copy_action): Use it. Removed now unused `match', `ended',
499 (copy_guard): Likewise.
501 2000-03-17 Akim Demaille <akim@epita.fr>
503 * src/reader.c (copy_string): New function, factored out from:
504 (copy_action): Use it.
505 (copy_guard): Likewise.
507 2000-03-17 Akim Demaille <akim@epita.fr>
509 Change the handling of @s so that they behave exactly like $s.
510 There is now a pseudo variable @$ (readble and writable), location
511 of the lhs of the rule (by default ranging from the location of
512 the first symbol of the rhs, to the location of the last symbol,
513 or, if the rhs is empty, YYLLOC).
515 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
517 (yyparse): When providing a default semantic action, provide a
518 default location action.
519 (after the $): No longer change `*YYLSP', just stack YYLOC the
520 same way you stack YYVAL.
521 * src/reader.c (read_declarations): Use warns.
522 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
523 (copy_action, case '@'): Likewise.
524 Use a standard error message, to save useless work from
527 2000-03-17 Akim Demaille <akim@epita.fr>
529 * src/bison.s1: Formatting and cosmetics changes.
530 * src/reader.c: Likewise.
531 Update the Copyright notice.
533 2000-03-17 Akim Demaille <akim@epita.fr>
535 * src/bison.s1 (#line): All set to `#line' only, since the
536 Makefile now handles them.
538 2000-03-16 Akim Demaille <akim@epita.fr>
540 * src/output.c (output_rule_data): Output the documentation of
542 (Copyright notice): Update.
545 2000-03-16 Akim Demaille <akim@epita.fr>
547 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
548 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
549 One `#if YYDEBUG' remains, since it uses variables which are
550 defined only if `YYDEBUG != 0'.
552 2000-03-16 Akim Demaille <akim@epita.fr>
554 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
555 and related variables so that the similarities are highlighted.
557 2000-03-16 Akim Demaille <akim@epita.fr>
559 * src/bison.s1: Properly indent CPP directives.
561 2000-03-16 Akim Demaille <akim@epita.fr>
563 * src/bison.s1: Properly indent the `alloca' CPP section.
565 2000-03-16 Akim Demaille <akim@epita.fr>
567 Do not hard code values of directories in `configure.in'.
568 Update the `configure' tool chain.
570 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
572 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
573 (AC_OUTPUT): Add m4/Makefile.
574 Bump to bison 1.28a, 1.29 has never been released.
575 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
576 handled via src/Makefile.am.
577 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
578 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
580 * Makefile.am (SUBDIRS): Add m4.
581 (ACLOCAL_AM_FLAGS): New variable.
582 (AUTOMAKE_OPTIONS): Add check-news.
583 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
584 the proper line number and file name.
585 (DEFS): Propagate the location of bison library files and of the
587 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
589 * acinclude.m4: Remove, replaced by the directory m4.
590 * m4/Makefile.am (EXTRA_DIST): New variable.
591 * m4/gettext.m4: New file, from the fileutils.
592 * m4/lcmessage.m4: Likewise
593 * m4/progtest.m4: Likewise.
594 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
596 2000-03-10 Akim Demaille <akim@epita.fr>
599 Formatting changes of various comments.
600 Respect the GNU coding standards at various places.
601 Don't use `_()' when no translation is needed.
603 1999-12-13 Jesse Thilo <jthilo@gnu.org>
606 OS/2 honors TMPDIR environment variable.
608 1999-12-13 Jesse Thilo <jthilo@gnu.org>
610 * doc/bison.texinfo: Tweaked spelling and grammar.
612 Removed reference to price of printed copy.
613 Mention BISON_SIMPLE and BISON_HAIRY.
615 1999-12-13 Jesse Thilo <jthilo@gnu.org>
617 * configure.in, NEWS:
620 1999-10-27 Jesse Thilo <jthilo@gnu.org>
622 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
623 Added reference card.
625 1999-07-26 Jesse Thilo <jthilo@gnu.org>
627 * po/ru.po: Added Russian translation.
629 1999-07-26 Jesse Thilo <jthilo@gnu.org>
631 * configure.in: Added Russian translation.
633 1999-07-06 Jesse Thilo <jthilo@gnu.org>
635 * configure.in, NEWS, README:
636 Released version 1.28.
638 1999-06-14 Jesse Thilo <jthilo@gnu.org>
641 Squashed redefinition warning on some systems.
643 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
644 Have configure build version string instead of relying on ANSI string
647 1999-06-14 Jesse Thilo <jthilo@gnu.org>
649 * po/POTFILES.in: Got rid of version.c.
651 1999-06-14 Jesse Thilo <jthilo@gnu.org>
653 * acconfig.h, configure.in:
654 Have configure build version string instead of relying on ANSI string
657 1999-06-08 Jesse Thilo <jthilo@gnu.org>
660 Dropped mention of `+' for long-named options.
662 1999-05-30 Jesse Thilo <jthilo@gnu.org>
664 * src/files.c: Added <unistd.h> for unlink().
666 * src/Makefile.am, src/system.h:
669 1999-05-30 Jesse Thilo <jthilo@gnu.org>
671 * README: Added a FAQ list.
673 * configure.in, acconfig.h:
676 1999-05-30 Jesse Thilo <jthilo@gnu.org>
678 * doc/FAQ, doc/Makefile.am:
681 1999-05-19 Jesse Thilo <jthilo@gnu.org>
683 * src/alloc.h, src/symtab.h, src/version.c:
684 Protected inclusion of "config.h" with HAVE_CONFIG_H.
686 1999-04-18 Jesse Thilo <jthilo@gnu.org>
688 * src/.cvsignore, src/Makefile.am:
689 Reorganized: sources in `src', documentation in `doc'.
691 * src/lex.c (literalchar):
692 fixed the code for escaping double quotes (thanks
695 1999-04-18 Jesse Thilo <jthilo@gnu.org>
697 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
698 Adjusted paths to reflect directory reorganization.
700 1999-04-18 Jesse Thilo <jthilo@gnu.org>
702 * doc/.cvsignore, doc/Makefile.am:
703 Reorganized: sources in `src', documentation in `doc'.
705 1999-04-18 Jesse Thilo <jthilo@gnu.org>
708 Updated AC_INIT file to reflect directory reorganization.
710 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
711 Reorganized: sources in `src', documentation in `doc'.
713 1999-04-13 Jesse Thilo <jthilo@gnu.org>
716 Don't declare calloc() and realloc() if not necessary.
718 1999-04-13 Jesse Thilo <jthilo@gnu.org>
720 * configure.in, acconfig.h, acinclude.m4:
721 Don't declare calloc() and realloc() if not necessary.
723 1999-03-23 Jesse Thilo <jthilo@gnu.org>
725 * po/.cvsignore: Added i18n support.
727 1999-03-23 Jesse Thilo <jthilo@gnu.org>
729 * acconfig.h, configure.in, Makefile.am:
732 1999-03-22 Jesse Thilo <jthilo@gnu.org>
734 * src/bison.s1: Fixed #line numbers.
736 1999-03-15 Jesse Thilo <jthilo@gnu.org>
738 * po/es.po, po/fr.po, po/nl.po, po/de.po:
739 Added PO files from Translation Project.
741 1999-03-03 Jesse Thilo <jthilo@gnu.org>
744 Added support for non-ANSI compilers (ansi2knr).
746 1999-02-16 Jesse Thilo <jthilo@gnu.org>
748 * configure.in: Bumped version number to 1.27.
751 Added `bison.simple' to list of files removed by `make distclean'.
753 1999-02-12 Jesse Thilo <jthilo@gnu.org>
755 * src/files.c, src/files.h:
756 Defined locations of parser files in config.h instead of Makefile.
758 1999-02-12 Jesse Thilo <jthilo@gnu.org>
760 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
761 Defined locations of parser files in config.h instead of Makefile.
763 1999-02-09 Jesse Thilo <jthilo@gnu.org>
766 Removed inappropriate use of $< macro.
768 1999-02-05 Jesse Thilo <jthilo@gnu.org>
770 * po/Makefile.in.in, po/POTFILES.in:
771 Add `po' directory skeleton.
773 1999-01-27 Jesse Thilo <jthilo@gnu.org>
775 * README: Document help-bison list.
777 * configure.in: Add check for mkstemp().
779 1999-01-20 Jesse Thilo <jthilo@gnu.org>
781 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
782 Hush a few compiler warnings.
785 Add tryclose(), which verifies that fclose was successful.
786 Hush a couple of compiler warnings.
788 1999-01-20 Jesse Thilo <jthilo@gnu.org>
790 * Makefile.am, OChangeLog:
791 ChangeLog is now automatically generated. Include the old version as
794 1999-01-14 Jesse Thilo <jthilo@gnu.org>
796 * 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:
799 1999-01-14 Jesse Thilo <jthilo@gnu.org>
801 * doc/bison.texinfo: Fix formatting glitch.
803 * doc/bison.texinfo: Update FSF address.
805 1999-01-14 Jesse Thilo <jthilo@gnu.org>
807 * acconfig.h: Update FSF address.
809 1999-01-08 Jesse Thilo <jthilo@gnu.org>
812 Don't define PACKAGE here, since config.h defines it.
814 1998-12-30 Jesse Thilo <jthilo@gnu.org>
816 * src/reader.c: Update copyright date.
819 Ditch sprintf to statically-sized buffers in fatal/warn functions in
820 favor of output directly to stderr (avoids buffer overruns).
822 * src/reader.c: Some checks for premature EOF.
824 * 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:
825 Use prototypes if the compiler understands them.
827 * src/files.c: Honor TMPDIR on Unix hosts.
828 Use prototypes if the compiler understands them.
831 Fix a couple of buffer overrun bugs.
832 Use prototypes if the compiler understands them.
834 * src/system.h: Include unistd.h and ctype.h.
835 Use #ifdef instead of #if for NLS symbols.
837 1998-12-30 Jesse Thilo <jthilo@gnu.org>
840 Delete comment "consider using @set for edition number, etc..." since
843 1998-12-30 Jesse Thilo <jthilo@gnu.org>
846 Use prototypes if the compiler understands them.
848 * NEWS: Document 1.26 highlights.
850 * Makefile.am: Require Automake 1.3 or later.
853 Use prototypes if the compiler understands them.
855 1998-12-29 Jesse Thilo <jthilo@gnu.org>
858 Use VERSION symbol from automake for version number.
860 1998-12-29 Jesse Thilo <jthilo@gnu.org>
862 * acconfig.h, configure.in, version.cin:
863 Use VERSION symbol from automake for version number.
865 1998-11-28 Jesse Thilo <jthilo@gnu.org>
868 Distribute original version of simple parser (bison.s1), not built
869 version (bison.simple).
871 1998-11-28 Jesse Thilo <jthilo@gnu.org>
873 * doc/bison.texinfo: Add info dir entry.
876 Let automake put version number into documentation.
878 1998-11-26 Jesse Thilo <jthilo@gnu.org>
880 * src/bison.cld, src/build.com, src/vmshlp.mar:
881 Add non-RCS files from /gd/gnu/bison.
883 1998-11-26 Jesse Thilo <jthilo@gnu.org>
886 Document the BISON_HAIRY and BISON_SIMPLE variables.
888 1998-11-25 Jesse Thilo <jthilo@gnu.org>
890 * src/version.c: Build version.c automatically.
893 Fix token numbering (used to start at 258, not 257).
895 * src/system.h: Include config.h.
897 * src/getargs.c: Update bug report address.
899 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
900 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
902 1998-11-25 Jesse Thilo <jthilo@gnu.org>
905 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
907 * configure.in, version.cin:
908 Build version.c automatically.
910 * AUTHORS: Add AUTHORS file.
912 * README: Update bug report address.
915 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
917 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
920 1998-11-25 Jesse Thilo <jthilo@gnu.org>
922 * doc/bison.texinfo: Clean up some formatting.
924 1998-05-05 Richard Stallman <rms@gnu.org>
927 Explain better why to make a pure parser.
929 1998-01-05 Richard Stallman <rms@gnu.org>
931 * src/files.c (openfiles):
932 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
933 find a temporary directory, if possible. Do not unlink files while
936 1997-08-25 Richard Stallman <rms@gnu.org>
938 * src/reader.c (stack_offset;):
939 Change some warni to warns.
941 * src/lex.c (literalchar): Use warns, not warni.
943 1997-06-28 Richard Stallman <rms@gnu.org>
945 * src/bison.s1: Add a Bison version comment.
947 * src/main.c (fatal, warn, berror):
950 1997-06-28 Richard Stallman <rms@gnu.org>
952 * Makefile.in (bison_version): New variable.
953 (dist): Use that variable.
954 (bison.s1): Substitute the Bison version into bison.simple.
956 * bison.simple: Add a Bison version comment.
958 1997-06-18 Richard Stallman <rms@gnu.org>
960 * src/main.c (fatal, warn, berror):
961 Make error messages standard.
962 (toomany): Improve error message text.
964 * 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:
965 new.h renamed to alloc.h.
967 1997-06-18 Richard Stallman <rms@gnu.org>
969 * Makefile.in: new.h renamed to alloc.h.
971 1997-05-24 Richard Stallman <rms@gnu.org>
973 * src/lex.c (literalchar):
974 Fix the code for escaping \, " and '.
976 (lex): Avoid trouble when there are many chars
977 to discard in a char literal with just several chars in it.
979 1997-05-17 Richard Stallman <rms@gnu.org>
982 Use malloc, if using alloca is troublesome.
983 (YYSTACK_USE_ALLOCA): New flag macro.
984 Define it for some systems and compilers.
985 (YYSTACK_ALLOC): New macro.
986 (yyparse): Use YYSTACK_ALLOC to allocate stack.
987 If it was malloc'd, free it.
989 1997-05-17 Richard Stallman <rms@gnu.org>
992 Use malloc, if using alloca is troublesome.
993 (YYSTACK_USE_ALLOCA): New flag macro.
994 Define it for some systems and compilers.
995 (YYSTACK_ALLOC): New macro.
996 (yyparse): Use YYSTACK_ALLOC to allocate stack.
997 If it was malloc'd, free it.
999 1997-04-23 Richard Stallman <rms@gnu.org>
1002 (alloca) [__hpux]: Always define as __builtin_alloca.
1004 1997-04-23 Richard Stallman <rms@gnu.org>
1007 (alloca) [__hpux]: Always define as __builtin_alloca.
1009 1997-04-22 Richard Stallman <rms@gnu.org>
1012 [__hpux]: Include alloca.h (right for HPUX 10)
1013 instead of declaring alloca (right for HPUX 9).
1015 * src/bison.s1 (__yy_memcpy):
1016 Declare arg `count' as unsigned int.
1017 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1019 1997-04-22 Richard Stallman <rms@gnu.org>
1022 [__hpux]: Include alloca.h (right for HPUX 10)
1023 instead of declaring alloca (right for HPUX 9).
1025 * bison.simple (__yy_memcpy):
1026 Declare arg `count' as unsigned int.
1027 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1029 1997-01-03 Richard Stallman <rms@gnu.org>
1031 * src/allocate.c: [__STDC__ or _MSC_VER]:
1032 Declare calloc and realloc to return void *.
1034 1997-01-02 Richard Stallman <rms@gnu.org>
1037 [_MSC_VER]: Include stdlib.h and process.h.
1038 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1040 * src/main.c (main): Return FAILURE as a value.
1041 (printable_version): Declare arg as int, not char.
1043 1997-01-02 Richard Stallman <rms@gnu.org>
1045 * Makefile.in (dist):
1046 Explicitly check for symlinks, and copy them.
1048 1996-12-19 Richard Stallman <rms@gnu.org>
1051 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1053 1996-12-18 Paul Eggert <eggert@gnu.org>
1055 * src/bison.s1 (yyparse):
1056 If __GNUC__ and YYPARSE_PARAM are both defined,
1057 declare yyparse to have a void * argument.
1059 1996-12-18 Paul Eggert <eggert@gnu.org>
1061 * bison.simple (yyparse):
1062 If __GNUC__ and YYPARSE_PARAM are both defined,
1063 declare yyparse to have a void * argument.
1065 1996-12-17 Richard Stallman <rms@gnu.org>
1067 * src/reduce.c (nbits): Add some casts.
1069 1996-08-12 Richard Stallman <rms@gnu.org>
1071 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1073 1996-08-12 Richard Stallman <rms@gnu.org>
1075 * bison.simple: Test _MSDOS as well as _MSDOS_.
1077 1996-07-31 Richard Stallman <rms@gnu.org>
1080 [__sun && __i386]: Include alloca.h.
1082 1996-07-31 Richard Stallman <rms@gnu.org>
1085 [__sun && __i386]: Include alloca.h.
1087 1996-07-30 Richard Stallman <rms@gnu.org>
1089 * src/bison.s1: Comment change.
1091 * src/bison.s1: Test _MSDOS_, not MSDOS.
1093 1996-07-30 Richard Stallman <rms@gnu.org>
1095 * bison.simple: Comment change.
1097 * bison.simple: Test _MSDOS_, not MSDOS.
1099 1996-06-01 Richard Stallman <rms@gnu.org>
1101 * 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:
1102 Insert `_' macro around many string constants.
1105 Insert `_' macro around many string constants.
1107 (main): Call setlocale, bindtextdomain and textdomain.
1109 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1110 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1111 [ENABLE_NLS]: Include libintl.h.
1112 [ENABLE_NLS] (gettext): Define.
1113 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1114 (N_, PACKAGE, LOCALEDIR): New macros.
1116 1996-06-01 Richard Stallman <rms@gnu.org>
1118 * POTFILES.in: New file.
1120 * Makefile.in (allocate.o):
1121 Define target explicitly.
1123 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1124 (LDFLAGS): Set to @LDFLAGS@.
1125 (configure): Run autoconf only if preceding `cd' succeeds.
1126 (bison.s1): Redirect output to temporary file then move the
1127 temporary to the target, rather than redirecting directly to bison.s1.
1128 (clean): Remove config.status and config.log.
1129 (distclean): Don't remove config.status here.
1131 1996-05-12 Richard Stallman <rms@gnu.org>
1134 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1136 1996-05-12 Richard Stallman <rms@gnu.org>
1139 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1141 1996-05-11 Richard Stallman <rms@gnu.org>
1143 * src/bison.s1 (__yy_memcpy):
1144 Really reorder the args, as was supposedly done on Feb 14 1995.
1145 (yyparse): Calls changed accordingly.
1147 1996-05-11 Richard Stallman <rms@gnu.org>
1149 * Makefile.in (dist): Don't use $(srcdir).
1151 * bison.simple (__yy_memcpy):
1152 Really reorder the args, as was supposedly done on Feb 14 1995.
1153 (yyparse): Calls changed accordingly.
1155 1996-01-27 Richard Stallman <rms@gnu.org>
1157 * src/output.c (output_rule_data):
1158 Test YYERROR_VERBOSE in the conditional
1159 around the definition of ttyname.
1161 1995-12-29 Richard Stallman <rms@gnu.org>
1164 Fix line numbers in #line commands.
1166 1995-12-29 Richard Stallman <rms@gnu.org>
1169 Fix line numbers in #line commands.
1171 1995-12-27 Richard Stallman <rms@gnu.org>
1173 * src/bison.s1 (YYPARSE_PARAM_DECL):
1174 In C++, make it always null.
1175 (YYPARSE_PARAM_ARG): New macro.
1176 (yyparse): Use YYPARSE_PARAM_ARG.
1178 1995-12-27 Richard Stallman <rms@gnu.org>
1180 * bison.simple (YYPARSE_PARAM_DECL):
1181 In C++, make it always null.
1182 (YYPARSE_PARAM_ARG): New macro.
1183 (yyparse): Use YYPARSE_PARAM_ARG.
1185 1995-11-29 Richard Stallman <rms@gnu.org>
1187 * doc/bison.texinfo:
1188 Describe literal string tokens, %raw, %no_lines, %token_table.
1190 1995-11-29 Daniel Hagerty <hag@gnu.org>
1192 * doc/bison.texinfo: Fixed update date
1194 1995-10-16 Richard Stallman <rms@gnu.org>
1196 * src/version.c: Version 1.25.
1198 1995-10-16 Richard Stallman <rms@gnu.org>
1200 * NEWS: *** empty log message ***
1202 1995-10-16 Richard Stallman <rms@gnu.org>
1204 * doc/bison.1, doc/bison.rnh:
1207 1995-10-15 Richard Stallman <rms@gnu.org>
1209 * src/vmsgetargs.c, src/getargs.c:
1210 Added -n, -k, and -raw switches.
1211 (noparserflag, toknumflag, rawtoknumflag): New variables.
1213 * src/symtab.h (SALIAS):
1214 New #define for adding aliases to %token.
1215 (struct bucket): Added `alias' field.
1217 * src/reduce.c (reduce_grammar):
1218 Revise error message.
1219 (print_notices): Remove final `.' from error message.
1221 * src/reader.c (reader_output_yylsp):
1223 (readgram): Use `#if 0' around code that accepted %command
1224 inside grammar rules: The documentation doesn't allow it,
1225 and it will fail since the %command processors scan for the next %.
1226 (parse_token_decl): Extended the %token
1227 declaration to allow a multi-character symbol as an alias.
1228 (parse_thong_decl): New function.
1229 (read_declarations): Added %thong declarations.
1230 (read_declarations): Handle NOOP to deal with allowing
1231 % declarations as another means to specify the flags.
1232 (readgram): Allow %prec prior to semantics embedded in a rule.
1233 (skip_to_char, read_declarations, copy_definition)
1234 (parse_token_decl, parse_start_decl, parse_type_decl)
1235 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1236 (get_type_name, copy_guard, copy_action, readgram)
1237 (get_type, packsymbols): Revised most error messages.
1238 Changed `fatal' to `warnxxx' to avoid aborting for error.
1239 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1240 (read_declarations): Improve the error message for
1241 an invalid character. Do not abort.
1242 (read_declarations, copy_guard, copy_action): Use
1243 printable_version to avoid unprintable characters in printed output.
1244 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1245 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1246 Allow the type of a non-terminal can be given
1247 more than once, as long as all specifications give the same type.
1250 (output_headers, output_trailers, output, output_gram)
1251 (output_rule_data): Implement noparserflag variable.
1252 Implement toknumflag variable.
1253 (output): Call reader_output_yylsp to output LTYPESTR.
1255 * src/main.c (main):
1256 If reader sees an error, don't process the grammar.
1257 (fatals): Updated to not use VARARGS1.
1258 (printable_version, int_to_string, warn, warni, warns, warnss)
1259 (warnsss): New error reporting functions. Avoid abort for error.
1262 Added THONG and NOOP for alias processing.
1263 Added SETOPT for the new code that allows setting options with %flags.
1266 Include getopt.h. Add some extern decls.
1267 (safegetc): New function to deal with EOF gracefully.
1268 (literalchar); new function to deal with reading \ escapes.
1269 (lex): Use literalchar.
1270 (lex): Implemented "..." tokens.
1271 (literalchar, lex, parse_percent_token): Made tokenbuffer
1272 always contain the token. This includes growing the token
1273 buffer while reading an integer.
1274 (parse_percent_token): Replaced if-else statement with percent_table.
1275 (parse_percent_token): Added % declarations as another
1276 way to specify the flags -n, -l, and -r. Also added hooks for
1277 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1278 major changes to files.c.
1279 (lex) Retain in the incoming stream a character following
1281 (skip_white_space, lex): Revised most error messages
1282 and changed fatal to warn to avoid aborting.
1283 (percent_table): Added %thong declarations.
1285 * src/gram.h: Comment changes.
1287 * src/files.c (openfiles, open_extra_files, done):
1289 and actfile file. Handle noparserflag. Both for -n switch.
1291 * src/conflicts.c (resolve_sr_conflict):
1292 Remove use of alloca.
1294 1995-06-01 Jim Meyering <meyering@gnu.org>
1296 * doc/bison.texinfo: *** empty log message ***
1298 1995-05-06 Richard Stallman <rms@gnu.org>
1300 * src/bison.s1: Comment change.
1302 1995-05-06 Richard Stallman <rms@gnu.org>
1304 * bison.simple: Comment change.
1306 1995-05-03 Richard Stallman <rms@gnu.org>
1308 * src/version.c: Version now 1.24.
1310 * src/bison.s1: Change distribution terms.
1312 * src/version.c: Version now 1.23.
1314 1995-05-03 Richard Stallman <rms@gnu.org>
1316 * doc/bison.texinfo:
1317 Rewrite "Conditions for Using Bison".
1318 Update version to 1.24.
1320 1995-05-03 Richard Stallman <rms@gnu.org>
1322 * bison.simple: Change distribution terms.
1324 1995-02-23 Richard Stallman <rms@gnu.org>
1326 * src/files.c: Test __VMS_POSIX as well as VMS.
1328 1995-02-14 Jim Meyering <meyering@gnu.org>
1330 * src/bison.s1 (__yy_memcpy):
1331 Renamed from __yy_bcopy to avoid
1332 confusion. Reverse FROM and TO arguments to be consistent with
1335 1995-02-14 Jim Meyering <meyering@gnu.org>
1337 * bison.simple (__yy_memcpy):
1338 Renamed from __yy_bcopy to avoid
1339 confusion. Reverse FROM and TO arguments to be consistent with
1342 1994-11-10 David J. MacKenzie <djm@gnu.org>
1348 * Makefile.in (DISTFILES): Include NEWS.
1350 * Makefile.in (DISTFILES):
1351 Include install-sh, not install.sh.
1353 * configure.in: Update to Autoconf v2 macro names.
1355 1994-10-05 David J. MacKenzie <djm@gnu.org>
1357 * Makefile.in: fix typo
1359 * Makefile.in (prefix, exec_prefix):
1360 Let configure set them.
1362 1994-09-28 David J. MacKenzie <djm@gnu.org>
1364 * Makefile.in: Set datadir to $(prefix)/share.
1366 1994-09-15 Richard Stallman <rms@gnu.org>
1369 Update copyright notice and GPL version.
1371 1994-09-15 Richard Stallman <rms@gnu.org>
1374 Update copyright notice and GPL version.
1376 1994-07-12 Richard Stallman <rms@gnu.org>
1378 * src/reduce.c, src/reader.c:
1381 1994-05-05 David J. MacKenzie <djm@gnu.org>
1383 * Makefile.in: entered into RCS
1385 1994-03-26 Richard Stallman <rms@gnu.org>
1387 * src/bison.s1: entered into RCS
1389 1994-03-26 Richard Stallman <rms@gnu.org>
1391 * bison.simple: entered into RCS
1393 1994-03-25 Richard Stallman <rms@gnu.org>
1395 * src/main.c: entered into RCS
1397 1994-03-24 Richard Stallman <rms@gnu.org>
1399 * src/conflicts.c: entered into RCS
1401 1994-01-02 Richard Stallman <rms@gnu.org>
1403 * Makefile.in: *** empty log message ***
1405 1993-11-21 Richard Stallman <rms@gnu.org>
1407 * src/bison.s1: *** empty log message ***
1409 1993-11-21 Richard Stallman <rms@gnu.org>
1411 * doc/bison.texinfo: entered into RCS
1413 * doc/bison.texinfo: *** empty log message ***
1415 1993-11-21 Richard Stallman <rms@gnu.org>
1417 * bison.simple: *** empty log message ***
1419 1993-10-25 David J. MacKenzie <djm@gnu.org>
1421 * doc/bison.texinfo: *** empty log message ***
1423 1993-10-19 Richard Stallman <rms@gnu.org>
1425 * src/bison.s1: *** empty log message ***
1427 1993-10-19 Richard Stallman <rms@gnu.org>
1429 * bison.simple: *** empty log message ***
1431 1993-10-14 Richard Stallman <rms@gnu.org>
1433 * src/bison.s1: *** empty log message ***
1435 1993-10-14 Richard Stallman <rms@gnu.org>
1437 * bison.simple: *** empty log message ***
1439 1993-09-14 David J. MacKenzie <djm@gnu.org>
1441 * doc/bison.texinfo: *** empty log message ***
1443 1993-09-13 Noah Friedman <friedman@gnu.org>
1445 * Makefile.in: *** empty log message ***
1447 1993-09-10 Richard Stallman <rms@gnu.org>
1449 * src/conflicts.c: *** empty log message ***
1451 * src/system.h: entered into RCS
1453 1993-09-10 Richard Stallman <rms@gnu.org>
1455 * doc/bison.1: entered into RCS
1457 1993-09-06 Noah Friedman <friedman@gnu.org>
1459 * src/version.c: entered into RCS
1461 1993-09-06 Noah Friedman <friedman@gnu.org>
1463 * Makefile.in: *** empty log message ***
1465 1993-07-30 David J. MacKenzie <djm@gnu.org>
1467 * Makefile.in: *** empty log message ***
1469 1993-07-24 Richard Stallman <rms@gnu.org>
1471 * src/bison.s1: *** empty log message ***
1473 1993-07-24 Richard Stallman <rms@gnu.org>
1475 * bison.simple: *** empty log message ***
1477 1993-07-08 David J. MacKenzie <djm@gnu.org>
1479 * Makefile.in: *** empty log message ***
1481 1993-07-04 Richard Stallman <rms@gnu.org>
1483 * src/bison.s1: *** empty log message ***
1485 1993-07-04 Richard Stallman <rms@gnu.org>
1487 * bison.simple: *** empty log message ***
1489 1993-06-26 David J. MacKenzie <djm@gnu.org>
1491 * src/getargs.c: entered into RCS
1493 1993-06-26 David J. MacKenzie <djm@gnu.org>
1495 * doc/bison.texinfo: *** empty log message ***
1497 * doc/bison.1: New file.
1499 1993-06-25 Richard Stallman <rms@gnu.org>
1501 * src/getargs.c: New file.
1503 1993-06-16 Richard Stallman <rms@gnu.org>
1505 * src/bison.s1: *** empty log message ***
1507 1993-06-16 Richard Stallman <rms@gnu.org>
1509 * bison.simple: *** empty log message ***
1511 1993-06-03 Richard Stallman <rms@gnu.org>
1513 * src/bison.s1: New file.
1515 1993-06-03 Richard Stallman <rms@gnu.org>
1517 * doc/bison.texinfo: *** empty log message ***
1519 1993-06-03 Richard Stallman <rms@gnu.org>
1521 * bison.simple: New file.
1523 1993-05-19 Richard Stallman <rms@gnu.org>
1525 * doc/bison.texinfo: New file.
1527 1993-05-07 Noah Friedman <friedman@gnu.org>
1529 * Makefile.in: *** empty log message ***
1531 1993-04-28 Noah Friedman <friedman@gnu.org>
1533 * src/reader.c: *** empty log message ***
1535 1993-04-23 Noah Friedman <friedman@gnu.org>
1537 * src/alloc.h: entered into RCS
1539 1993-04-20 David J. MacKenzie <djm@gnu.org>
1541 * src/version.c: *** empty log message ***
1543 * src/files.c, src/allocate.c:
1546 * src/reader.c: *** empty log message ***
1548 * src/lex.c: entered into RCS
1550 * src/conflicts.c: New file.
1552 * src/symtab.c: entered into RCS
1554 * src/alloc.h: New file.
1556 * src/LR0.c: entered into RCS
1558 1993-04-18 Noah Friedman <friedman@gnu.org>
1560 * src/reader.c: New file.
1562 * src/version.c: *** empty log message ***
1564 1993-04-18 Noah Friedman <friedman@gnu.org>
1566 * Makefile.in: *** empty log message ***
1568 1993-04-17 Noah Friedman <friedman@gnu.org>
1570 * Makefile.in: *** empty log message ***
1572 1993-04-15 Richard Stallman <rms@gnu.org>
1574 * src/main.c, src/files.c:
1577 1993-04-15 Noah Friedman <friedman@gnu.org>
1579 * configure.in: entered into RCS
1581 * configure.in: *** empty log message ***
1583 * configure.in: New file.
1585 1993-04-14 Richard Stallman <rms@gnu.org>
1587 * Makefile.in: New file.
1589 1993-04-13 Richard Stallman <rms@gnu.org>
1591 * src/version.c: New file.
1593 1993-03-25 Richard Stallman <rms@gnu.org>
1595 * src/output.c: entered into RCS
1597 1992-09-25 Richard Stallman <rms@gnu.org>
1599 * configure.bat: entered into RCS
1601 1992-06-22 Richard Stallman <rms@gnu.org>
1603 * src/vmsgetargs.c: entered into RCS
1605 1992-06-22 Richard Stallman <rms@gnu.org>
1607 * doc/bison.rnh: entered into RCS
1609 1992-04-20 David J. MacKenzie <djm@gnu.org>
1611 * README: entered into RCS
1613 1992-01-22 Richard Stallman <rms@gnu.org>
1615 * src/machine.h: entered into RCS
1617 1991-12-21 Richard Stallman <rms@gnu.org>
1619 * src/lalr.c, src/closure.c:
1622 1991-12-20 Richard Stallman <rms@gnu.org>
1624 * src/state.h: entered into RCS
1626 1991-12-18 Richard Stallman <rms@gnu.org>
1628 * src/print.c, src/nullable.c, src/derives.c:
1631 1991-11-03 David J. MacKenzie <djm@gnu.org>
1633 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1636 1988-09-09 Richard Stallman <rms@gnu.org>
1638 * src/bison.hairy: entered into RCS
1640 1987-12-16 Richard Stallman <rms@gnu.org>
1642 * REFERENCES: entered into RCS