1 2000-10-02 Akim Demaille <akim@epita.fr>
3 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
7 2000-10-02 Akim Demaille <akim@epita.fr>
9 * src/derives.c, src/print.c, src/reduce.c: To ease the
10 translation, move some `\n' out of the translated strings.
13 2000-10-02 Akim Demaille <akim@epita.fr>
15 The location tracking mechanism is precious for parse error
16 messages. Nevertheless, it is enabled only when `@n' is used in
17 the grammar, which is a different issue (you can use it in error
18 message, but not in the grammar per se). Therefore, there should
19 be another means to enable it.
21 * src/getargs.c (getargs): Support `--locations'.
23 * src/getargs.h (locationsflag): Export it.
24 * src/lex.c (percent_table): Support `%locations'.
25 * src/reader.c (yylsp_needed): Remove this variable, now replaced
27 * doc/bison.texinfo: Document `--locations' and `%locations'.
29 * tests/calc.m4: Test it.
31 For regularity of the names, replace each
32 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
33 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
34 In addition replace each `flag' with `_flag'.
37 2000-10-02 Akim Demaille <akim@epita.fr>
39 Also test parse error messages, including with YYERROR_VERBOSE.
41 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
43 Use it to check the computations.
44 Use it to check `nonassoc' is honored.
45 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
47 (_AT_CHECK_CALC): Adjust to this option.
48 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
51 2000-10-02 Akim Demaille <akim@epita.fr>
53 Test also `--verbose', `--defines' and `--name-prefix'. Testing
54 the latter demonstrates a flaw in the handling of non debugging
55 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
56 was used in order to simplify:
72 unfortunately this leads to a CPP conflict when
73 `--name-prefix=foo' is used since it produces `#define yydebug
76 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
77 (YYDPRINTF): New macro.
79 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
81 Also test `--verbose', `--defines' and `--name-prefix'.
84 2000-10-02 Akim Demaille <akim@epita.fr>
86 Improve the readability of the produced parsers.
88 * src/bison.s1: Formatting changes.
89 Improve the comment related to the `$' mark.
90 (yydefault): Don't fall through to `yyresume': `goto' there.
91 * src/output.c (output_parser): When the `$' is met, skip the end
93 New variable, `number_of_dollar_signs', to check there's exactly
94 one `$' in the parser skeleton.
97 2000-10-02 Akim Demaille <akim@epita.fr>
99 * lib/xstrdup.c: New file, from the fileutils.
100 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
101 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
102 instead of strlen + xmalloc + strcpy.
103 * src/symtab.c (copys): Remove, use xstrdup instead.
106 2000-10-02 Akim Demaille <akim@epita.fr>
108 * src/gram.h (associativity): New enum type which replaces the
109 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
110 `right_assoc', `left_assoc' and `non_assoc'.
111 Adjust all dependencies.
112 * src/reader.c: Formatting changes.
113 (LTYPESTR): Don't define it, use it as a literal in
114 `reader_output_yylsp'.
115 * src/symtab.h (symbol_class): New enum type which replaces the
116 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
117 `sunknown', `stoken and `snterm'.
119 2000-10-02 Akim Demaille <akim@epita.fr>
121 * src/getargs.c (fixed_outfiles): Rename as...
122 (yaccflag): for consistency and accuracy.
126 2000-10-02 Akim Demaille <akim@epita.fr>
128 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
129 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
130 difficult and introduced a lot of core dump. It turns out that
131 Bison used an implementation of `xmalloc' based on `calloc', and
132 at various places it does depend upon the initialization to 0. I
133 have not tried to isolate the pertinent places, and all the former
134 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
135 someone should address this issue.
137 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
138 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
141 * src/warshall.h: New file.
144 2000-10-02 Akim Demaille <akim@epita.fr>
146 Various anti-`extern in *.c' changes.
148 * src/system.h: Include `assert.h'.
151 2000-10-02 Akim Demaille <akim@epita.fr>
153 * src/state.h (nstates, final_state, first_state, first_shift)
154 (first_reduction): Move their exportation from here...
155 * src/LR0.h: to here.
157 * src/getargs.c (statisticsflag): New variable.
158 Add support for `--statistics'.
161 Remove a lot of now useless `extern' statements in most files.
164 2000-10-02 Akim Demaille <akim@epita.fr>
166 * src/LR0.h: New file.
170 2000-10-02 Akim Demaille <akim@epita.fr>
172 * src/print.h: New file.
174 * src/print.c: Formatting and ordering changes.
175 (verbose, terse): Replace with...
176 (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.
190 2000-10-02 Akim Demaille <akim@epita.fr>
192 * src/nullable.h: New file.
193 Propagate its inclusion.
194 * src/nullable.c: Formatting changes.
197 2000-10-02 Akim Demaille <akim@epita.fr>
199 * src/reduce.h: New file.
200 Propagate its inclusion.
201 * src/reduce.c: Topological sort and other formatting changes.
202 (bool, TRUE, FALSE): Move their definition to...
203 * src/system.h: here.
206 2000-10-02 Akim Demaille <akim@epita.fr>
208 * src/files.c: Formatting changes.
209 (tryopen, tryclose, openfiles): Rename as...
210 (xfopen, xfclose, open_files): this.
211 (stringappend): static.
212 * src/files.h: Complete the list of exported symbols.
216 2000-10-02 Akim Demaille <akim@epita.fr>
218 * src/reader.h: New file.
219 Propagate its use instead of tedious list of `extern' and
221 * src/reader.c: Formatting changes, topological sort,
225 2000-10-02 Akim Demaille <akim@epita.fr>
227 * src/lex.h: Prototype `lex.c' exported functions.
228 * src/reader.c: Adjust.
229 * src/lex.c: Formatting changes.
230 (safegetc): Rename as...
234 2000-10-02 Akim Demaille <akim@epita.fr>
236 * src/lalr.h: New file.
237 Propagate its inclusion instead of prototypes and `extern'.
238 * src/lalr.c: Formatting changes, topological sorting etc.
241 2000-10-02 Akim Demaille <akim@epita.fr>
243 * src/output.c (token_actions): Introduce a temporary array,
244 YYDEFACT, that makes it possible for this function to use
248 2000-10-02 Akim Demaille <akim@epita.fr>
250 `user_toknums' is output as a `short[]' in `output.c', while it is
251 defined as a `int[]' in `reader.c'. For consistency with the
252 other output tables, `user_toknums' is now defined as a table of
255 * src/reader.c (user_toknums): Be a short table instead of an int
259 Factor the short table outputs.
261 * src/output.c (output_short_table): New function.
262 * src/output.c (output_gram, output_stos, output_rule_data)
263 (output_base, output_table, output_check): Use it.
265 2000-10-02 Akim Demaille <akim@epita.fr>
267 * src/output.c (output): Topological sort of the functions, in
268 order to get rid of the `static' prototypes.
269 No longer use `register'.
270 * src/output.h: New file.
271 Propagate its inclusion in files explicitly prototyping functions
274 2000-09-21 Akim Demaille <akim@epita.fr>
276 * src/atgeneral.m4: Update from Autoconf.
278 2000-09-21 Akim Demaille <akim@epita.fr>
280 * src/closure.h: New file.
281 * src/closure.c: Formatting changes, topological sort over the
282 functions, use of closure.h.
283 (initialize_closure, finalize_closure): Rename as...
284 (new_closure, free_closure): these. Adjust dependencies.
285 * src/LR0.c: Formatting changes, topological sort, use of
287 (initialize_states): Rename as...
289 * src/Makefile.am (noinst_HEADERS): Adjust.
291 2000-09-20 Akim Demaille <akim@epita.fr>
293 * src/acconfig.h: Don't protect config.h against multiple
296 * src/system.h: Define PARAMS.
297 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
298 purpose of config.h. system.h must not try to fix wrong
299 definitions in config.h.
301 2000-09-20 Akim Demaille <akim@epita.fr>
303 * src/derives.h: New file.
304 * src/main.c, src/derives.h: Use it.
306 * src/Makefile.am (noinst_HEADERS): Adjust.
308 2000-09-20 Akim Demaille <akim@epita.fr>
310 * tests/atgeneral.m4: Update from Autoconf.
311 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
312 (AT_CHECK_CALC): New macros.
313 Use these macros to test bison with options `', `--raw',
314 `--debug', `--yacc', `--yacc --debug'.
316 2000-09-19 Akim Demaille <akim@epita.fr>
318 * src/output.c: Formatting changes.
319 * src/machine.h: Remove, leaving its contents in...
320 * src/system.h: here.
322 Adjust all dependencies on stdio.h and machine.h.
323 * src/getargs.h: New file.
324 Let all `extern' declarations about getargs.c be replaced with
325 inclusion of `getargs.h'.
326 * src/Makefile.am (noinst_HEADERS): Adjust.
328 * tests/calc.m4 (yyin): Be initialized in main, not on the global
330 (yyerror): Returns void, not int.
331 * doc/bison.texinfo: Formatting changes.
333 2000-09-19 Akim Demaille <akim@epita.fr>
335 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
338 2000-09-18 Akim Demaille <akim@epita.fr>
340 * configure.in: Append WARNING_CFLAGS to CFLAGS.
341 * src/Makefile.am (INCLUDES): Don't.
342 Be ready to fetch headers in lib/.
344 2000-09-18 Akim Demaille <akim@epita.fr>
346 * doc/bison.texinfo: Update the copyright.
347 ANSIfy and GNUify the examples.
350 2000-09-18 Akim Demaille <akim@epita.fr>
352 First set of tests: use the `calc' example from the documentation.
354 * src/bison.s1 (yyparse): Condition the code using `yytname' which
355 is defined only when YYDEBUG is.
356 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
357 * src/files.c (tryopen, tryclose): Formatting changes.
358 Move to the top and be static.
359 * src/reader.c (read_signed_integer): Likewise.
360 * tests/calc.m4: New file.
361 * Makefile.am, suite.m4: Adjust.
362 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
364 2000-09-18 Akim Demaille <akim@epita.fr>
366 Add support for an Autotest test suite for Bison.
368 * m4/m4.m4, m4/atconfig.m4: New files.
369 * m4/Makefile.am (EXTRA_DIST): Adjust.
370 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
372 * src/getargs.c: Display a more standard --version message.
373 * src/reader.c (reader): Formatting changes.
374 No longer depend upon VERSION_STRING.
375 * configure.in: No longer use `dnl'.
376 Set up the test suite and the new directory `tests/.
377 (VERSION_STRING): Remove.
379 2000-04-14 Akim Demaille <akim@epita.fr>
381 * src/reader.c (copy_comment2): New function, same as former
382 `copy_comment', but outputs into two FILE *.
383 (copy_comment): Use it.
384 (parse_union_decl): Use it.
385 (get_type, parse_start_decl): Use the same `invalid' message.
386 (parse_start_decl, parse_union_decl): Use the same `multiple'
388 (parse_union_decl, copy_guard, copy_action): Use the same
390 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
392 2000-03-31 Akim Demaille <akim@epita.fr>
394 * src/files.c (tryopen, tryclose): Move to the top.
397 2000-03-31 Akim Demaille <akim@epita.fr>
399 * src/main.c (main): Don't call `done', exit does it.
401 2000-03-31 Akim Demaille <akim@epita.fr>
403 * allocate.c: s/return (foo)/return foo/.
406 * output.c: Likewise.
407 * reader.c: Likewise.
408 * symtab.c: Likewise.
409 * vmsgetargs.c: Likewise.
411 2000-03-31 Akim Demaille <akim@epita.fr>
413 Clean up the error reporting functions.
415 * src/report.c: New file.
416 * src/report.h: Likewise.
417 * src/Makefile.am: Adjust.
418 * m4/error.m4: New file.
419 * m4/Makefile.am: Adjust.
420 * configure.in (jm_PREREQ_ERROR): Call it.
421 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
423 (fatal, fatals): Remove. All callers use complain.c::fatal.
424 (warn, warni, warns, warnss, warnss): Remove. All callers use
425 complain.c::complain.
426 (toomany): Remove, use fatal instead.
427 * src/files.c (done): No argument, use complain_message_count.
428 * src/main.c (main): Register `done' to `atexit'.
430 * src/getargs.c (usage): More `fputs', less `fprintf'.
432 2000-03-28 Akim Demaille <akim@epita.fr>
434 * lib/: New directory.
435 * Makefile.am (SUBDIRS): Adjust.
436 * configure.in: Adjust.
437 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
439 * src/alloca.c: Moved to lib/.
440 * src/getopt.c: Likewise.
441 * src/getopt1.c: Likewise.
442 * src/getopt.h: Likewise.
443 * src/ansi2knr.c: Likewise.
444 * src/ansi2knr.1: Likewise.
445 * src/Makefile.am: Adjust.
446 * lib/Makefile.am: New file.
448 2000-03-28 Akim Demaille <akim@epita.fr>
450 * src/getargs.c (usage): Refresh the help message.
452 2000-03-17 Akim Demaille <akim@epita.fr>
454 * src/getopt1.c: Updated from textutils 2.0e
455 * src/getopt.c: Likewise.
456 * src/getopt.h: Likewise.
458 2000-03-17 Akim Demaille <akim@epita.fr>
460 * src/Makefile.am (bison.simple): Fix the awk program: quote only
461 the file name, not the whole `#line LINE FILE'.
463 2000-03-17 Akim Demaille <akim@epita.fr>
465 On syntax errors, report the token on which we choked.
467 * src/bison.s1 (yyparse): In the label yyerrlab, when
468 YYERROR_VERBOSE, add yychar in msg.
470 2000-03-17 Akim Demaille <akim@epita.fr>
472 * src/reader.c (copy_at): New function.
473 (copy_guard): Use it.
474 (copy_action): Use it.
476 2000-03-17 Akim Demaille <akim@epita.fr>
478 Be kind to translators, save some useless translations.
480 * src/main.c (banner): New function.
481 (fatal_banner): Use it.
482 (warn_banner): Use it.
484 2000-03-17 Akim Demaille <akim@epita.fr>
486 * src/reader.c (copy_definition): Use copy_string and
487 copy_comment. Removed now unused `match', `ended',
489 (copy_comment, copy_string): Moved, to be visible from
492 2000-03-17 Akim Demaille <akim@epita.fr>
494 * src/reader.c (copy_string): Declare `static inline'. No
495 problems with inline, since it is checked by configure.
496 (copy_comment): Likewise.
498 2000-03-17 Akim Demaille <akim@epita.fr>
500 * src/reader.c (packsymbols): Formatting changes.
502 2000-03-17 Akim Demaille <akim@epita.fr>
504 * src/reader.c (copy_comment): New function, factored out from:
505 (copy_action): Use it. Removed now unused `match', `ended',
507 (copy_guard): Likewise.
509 2000-03-17 Akim Demaille <akim@epita.fr>
511 * src/reader.c (copy_string): New function, factored out from:
512 (copy_action): Use it.
513 (copy_guard): Likewise.
515 2000-03-17 Akim Demaille <akim@epita.fr>
517 Change the handling of @s so that they behave exactly like $s.
518 There is now a pseudo variable @$ (readble and writable), location
519 of the lhs of the rule (by default ranging from the location of
520 the first symbol of the rhs, to the location of the last symbol,
521 or, if the rhs is empty, YYLLOC).
523 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
525 (yyparse): When providing a default semantic action, provide a
526 default location action.
527 (after the $): No longer change `*YYLSP', just stack YYLOC the
528 same way you stack YYVAL.
529 * src/reader.c (read_declarations): Use warns.
530 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
531 (copy_action, case '@'): Likewise.
532 Use a standard error message, to save useless work from
535 2000-03-17 Akim Demaille <akim@epita.fr>
537 * src/bison.s1: Formatting and cosmetics changes.
538 * src/reader.c: Likewise.
539 Update the Copyright notice.
541 2000-03-17 Akim Demaille <akim@epita.fr>
543 * src/bison.s1 (#line): All set to `#line' only, since the
544 Makefile now handles them.
546 2000-03-16 Akim Demaille <akim@epita.fr>
548 * src/output.c (output_rule_data): Output the documentation of
550 (Copyright notice): Update.
553 2000-03-16 Akim Demaille <akim@epita.fr>
555 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
556 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
557 One `#if YYDEBUG' remains, since it uses variables which are
558 defined only if `YYDEBUG != 0'.
560 2000-03-16 Akim Demaille <akim@epita.fr>
562 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
563 and related variables so that the similarities are highlighted.
565 2000-03-16 Akim Demaille <akim@epita.fr>
567 * src/bison.s1: Properly indent CPP directives.
569 2000-03-16 Akim Demaille <akim@epita.fr>
571 * src/bison.s1: Properly indent the `alloca' CPP section.
573 2000-03-16 Akim Demaille <akim@epita.fr>
575 Do not hard code values of directories in `configure.in'.
576 Update the `configure' tool chain.
578 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
580 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
581 (AC_OUTPUT): Add m4/Makefile.
582 Bump to bison 1.28a, 1.29 has never been released.
583 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
584 handled via src/Makefile.am.
585 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
586 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
588 * Makefile.am (SUBDIRS): Add m4.
589 (ACLOCAL_AM_FLAGS): New variable.
590 (AUTOMAKE_OPTIONS): Add check-news.
591 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
592 the proper line number and file name.
593 (DEFS): Propagate the location of bison library files and of the
595 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
597 * acinclude.m4: Remove, replaced by the directory m4.
598 * m4/Makefile.am (EXTRA_DIST): New variable.
599 * m4/gettext.m4: New file, from the fileutils.
600 * m4/lcmessage.m4: Likewise
601 * m4/progtest.m4: Likewise.
602 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
604 2000-03-10 Akim Demaille <akim@epita.fr>
607 Formatting changes of various comments.
608 Respect the GNU coding standards at various places.
609 Don't use `_()' when no translation is needed.
611 1999-12-13 Jesse Thilo <jthilo@gnu.org>
614 OS/2 honors TMPDIR environment variable.
616 1999-12-13 Jesse Thilo <jthilo@gnu.org>
618 * doc/bison.texinfo: Tweaked spelling and grammar.
620 Removed reference to price of printed copy.
621 Mention BISON_SIMPLE and BISON_HAIRY.
623 1999-12-13 Jesse Thilo <jthilo@gnu.org>
625 * configure.in, NEWS:
628 1999-10-27 Jesse Thilo <jthilo@gnu.org>
630 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
631 Added reference card.
633 1999-07-26 Jesse Thilo <jthilo@gnu.org>
635 * po/ru.po: Added Russian translation.
637 1999-07-26 Jesse Thilo <jthilo@gnu.org>
639 * configure.in: Added Russian translation.
641 1999-07-06 Jesse Thilo <jthilo@gnu.org>
643 * configure.in, NEWS, README:
644 Released version 1.28.
646 1999-06-14 Jesse Thilo <jthilo@gnu.org>
649 Squashed redefinition warning on some systems.
651 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
652 Have configure build version string instead of relying on ANSI string
655 1999-06-14 Jesse Thilo <jthilo@gnu.org>
657 * po/POTFILES.in: Got rid of version.c.
659 1999-06-14 Jesse Thilo <jthilo@gnu.org>
661 * acconfig.h, configure.in:
662 Have configure build version string instead of relying on ANSI string
665 1999-06-08 Jesse Thilo <jthilo@gnu.org>
668 Dropped mention of `+' for long-named options.
670 1999-05-30 Jesse Thilo <jthilo@gnu.org>
672 * src/files.c: Added <unistd.h> for unlink().
674 * src/Makefile.am, src/system.h:
677 1999-05-30 Jesse Thilo <jthilo@gnu.org>
679 * README: Added a FAQ list.
681 * configure.in, acconfig.h:
684 1999-05-30 Jesse Thilo <jthilo@gnu.org>
686 * doc/FAQ, doc/Makefile.am:
689 1999-05-19 Jesse Thilo <jthilo@gnu.org>
691 * src/alloc.h, src/symtab.h, src/version.c:
692 Protected inclusion of "config.h" with HAVE_CONFIG_H.
694 1999-04-18 Jesse Thilo <jthilo@gnu.org>
696 * src/.cvsignore, src/Makefile.am:
697 Reorganized: sources in `src', documentation in `doc'.
699 * src/lex.c (literalchar):
700 fixed the code for escaping double quotes (thanks
703 1999-04-18 Jesse Thilo <jthilo@gnu.org>
705 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
706 Adjusted paths to reflect directory reorganization.
708 1999-04-18 Jesse Thilo <jthilo@gnu.org>
710 * doc/.cvsignore, doc/Makefile.am:
711 Reorganized: sources in `src', documentation in `doc'.
713 1999-04-18 Jesse Thilo <jthilo@gnu.org>
716 Updated AC_INIT file to reflect directory reorganization.
718 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
719 Reorganized: sources in `src', documentation in `doc'.
721 1999-04-13 Jesse Thilo <jthilo@gnu.org>
724 Don't declare calloc() and realloc() if not necessary.
726 1999-04-13 Jesse Thilo <jthilo@gnu.org>
728 * configure.in, acconfig.h, acinclude.m4:
729 Don't declare calloc() and realloc() if not necessary.
731 1999-03-23 Jesse Thilo <jthilo@gnu.org>
733 * po/.cvsignore: Added i18n support.
735 1999-03-23 Jesse Thilo <jthilo@gnu.org>
737 * acconfig.h, configure.in, Makefile.am:
740 1999-03-22 Jesse Thilo <jthilo@gnu.org>
742 * src/bison.s1: Fixed #line numbers.
744 1999-03-15 Jesse Thilo <jthilo@gnu.org>
746 * po/es.po, po/fr.po, po/nl.po, po/de.po:
747 Added PO files from Translation Project.
749 1999-03-03 Jesse Thilo <jthilo@gnu.org>
752 Added support for non-ANSI compilers (ansi2knr).
754 1999-02-16 Jesse Thilo <jthilo@gnu.org>
756 * configure.in: Bumped version number to 1.27.
759 Added `bison.simple' to list of files removed by `make distclean'.
761 1999-02-12 Jesse Thilo <jthilo@gnu.org>
763 * src/files.c, src/files.h:
764 Defined locations of parser files in config.h instead of Makefile.
766 1999-02-12 Jesse Thilo <jthilo@gnu.org>
768 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
769 Defined locations of parser files in config.h instead of Makefile.
771 1999-02-09 Jesse Thilo <jthilo@gnu.org>
774 Removed inappropriate use of $< macro.
776 1999-02-05 Jesse Thilo <jthilo@gnu.org>
778 * po/Makefile.in.in, po/POTFILES.in:
779 Add `po' directory skeleton.
781 1999-01-27 Jesse Thilo <jthilo@gnu.org>
783 * README: Document help-bison list.
785 * configure.in: Add check for mkstemp().
787 1999-01-20 Jesse Thilo <jthilo@gnu.org>
789 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
790 Hush a few compiler warnings.
793 Add tryclose(), which verifies that fclose was successful.
794 Hush a couple of compiler warnings.
796 1999-01-20 Jesse Thilo <jthilo@gnu.org>
798 * Makefile.am, OChangeLog:
799 ChangeLog is now automatically generated. Include the old version as
802 1999-01-14 Jesse Thilo <jthilo@gnu.org>
804 * 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:
807 1999-01-14 Jesse Thilo <jthilo@gnu.org>
809 * doc/bison.texinfo: Fix formatting glitch.
811 * doc/bison.texinfo: Update FSF address.
813 1999-01-14 Jesse Thilo <jthilo@gnu.org>
815 * acconfig.h: Update FSF address.
817 1999-01-08 Jesse Thilo <jthilo@gnu.org>
820 Don't define PACKAGE here, since config.h defines it.
822 1998-12-30 Jesse Thilo <jthilo@gnu.org>
824 * src/reader.c: Update copyright date.
827 Ditch sprintf to statically-sized buffers in fatal/warn functions in
828 favor of output directly to stderr (avoids buffer overruns).
830 * src/reader.c: Some checks for premature EOF.
832 * 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:
833 Use prototypes if the compiler understands them.
835 * src/files.c: Honor TMPDIR on Unix hosts.
836 Use prototypes if the compiler understands them.
839 Fix a couple of buffer overrun bugs.
840 Use prototypes if the compiler understands them.
842 * src/system.h: Include unistd.h and ctype.h.
843 Use #ifdef instead of #if for NLS symbols.
845 1998-12-30 Jesse Thilo <jthilo@gnu.org>
848 Delete comment "consider using @set for edition number, etc..." since
851 1998-12-30 Jesse Thilo <jthilo@gnu.org>
854 Use prototypes if the compiler understands them.
856 * NEWS: Document 1.26 highlights.
858 * Makefile.am: Require Automake 1.3 or later.
861 Use prototypes if the compiler understands them.
863 1998-12-29 Jesse Thilo <jthilo@gnu.org>
866 Use VERSION symbol from automake for version number.
868 1998-12-29 Jesse Thilo <jthilo@gnu.org>
870 * acconfig.h, configure.in, version.cin:
871 Use VERSION symbol from automake for version number.
873 1998-11-28 Jesse Thilo <jthilo@gnu.org>
876 Distribute original version of simple parser (bison.s1), not built
877 version (bison.simple).
879 1998-11-28 Jesse Thilo <jthilo@gnu.org>
881 * doc/bison.texinfo: Add info dir entry.
884 Let automake put version number into documentation.
886 1998-11-26 Jesse Thilo <jthilo@gnu.org>
888 * src/bison.cld, src/build.com, src/vmshlp.mar:
889 Add non-RCS files from /gd/gnu/bison.
891 1998-11-26 Jesse Thilo <jthilo@gnu.org>
894 Document the BISON_HAIRY and BISON_SIMPLE variables.
896 1998-11-25 Jesse Thilo <jthilo@gnu.org>
898 * src/version.c: Build version.c automatically.
901 Fix token numbering (used to start at 258, not 257).
903 * src/system.h: Include config.h.
905 * src/getargs.c: Update bug report address.
907 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
908 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
910 1998-11-25 Jesse Thilo <jthilo@gnu.org>
913 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
915 * configure.in, version.cin:
916 Build version.c automatically.
918 * AUTHORS: Add AUTHORS file.
920 * README: Update bug report address.
923 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
925 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
928 1998-11-25 Jesse Thilo <jthilo@gnu.org>
930 * doc/bison.texinfo: Clean up some formatting.
932 1998-05-05 Richard Stallman <rms@gnu.org>
935 Explain better why to make a pure parser.
937 1998-01-05 Richard Stallman <rms@gnu.org>
939 * src/files.c (openfiles):
940 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
941 find a temporary directory, if possible. Do not unlink files while
944 1997-08-25 Richard Stallman <rms@gnu.org>
946 * src/reader.c (stack_offset;):
947 Change some warni to warns.
949 * src/lex.c (literalchar): Use warns, not warni.
951 1997-06-28 Richard Stallman <rms@gnu.org>
953 * src/bison.s1: Add a Bison version comment.
955 * src/main.c (fatal, warn, berror):
958 1997-06-28 Richard Stallman <rms@gnu.org>
960 * Makefile.in (bison_version): New variable.
961 (dist): Use that variable.
962 (bison.s1): Substitute the Bison version into bison.simple.
964 * bison.simple: Add a Bison version comment.
966 1997-06-18 Richard Stallman <rms@gnu.org>
968 * src/main.c (fatal, warn, berror):
969 Make error messages standard.
970 (toomany): Improve error message text.
972 * 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:
973 new.h renamed to alloc.h.
975 1997-06-18 Richard Stallman <rms@gnu.org>
977 * Makefile.in: new.h renamed to alloc.h.
979 1997-05-24 Richard Stallman <rms@gnu.org>
981 * src/lex.c (literalchar):
982 Fix the code for escaping \, " and '.
984 (lex): Avoid trouble when there are many chars
985 to discard in a char literal with just several chars in it.
987 1997-05-17 Richard Stallman <rms@gnu.org>
990 Use malloc, if using alloca is troublesome.
991 (YYSTACK_USE_ALLOCA): New flag macro.
992 Define it for some systems and compilers.
993 (YYSTACK_ALLOC): New macro.
994 (yyparse): Use YYSTACK_ALLOC to allocate stack.
995 If it was malloc'd, free it.
997 1997-05-17 Richard Stallman <rms@gnu.org>
1000 Use malloc, if using alloca is troublesome.
1001 (YYSTACK_USE_ALLOCA): New flag macro.
1002 Define it for some systems and compilers.
1003 (YYSTACK_ALLOC): New macro.
1004 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1005 If it was malloc'd, free it.
1007 1997-04-23 Richard Stallman <rms@gnu.org>
1010 (alloca) [__hpux]: Always define as __builtin_alloca.
1012 1997-04-23 Richard Stallman <rms@gnu.org>
1015 (alloca) [__hpux]: Always define as __builtin_alloca.
1017 1997-04-22 Richard Stallman <rms@gnu.org>
1020 [__hpux]: Include alloca.h (right for HPUX 10)
1021 instead of declaring alloca (right for HPUX 9).
1023 * src/bison.s1 (__yy_memcpy):
1024 Declare arg `count' as unsigned int.
1025 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1027 1997-04-22 Richard Stallman <rms@gnu.org>
1030 [__hpux]: Include alloca.h (right for HPUX 10)
1031 instead of declaring alloca (right for HPUX 9).
1033 * bison.simple (__yy_memcpy):
1034 Declare arg `count' as unsigned int.
1035 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1037 1997-01-03 Richard Stallman <rms@gnu.org>
1039 * src/allocate.c: [__STDC__ or _MSC_VER]:
1040 Declare calloc and realloc to return void *.
1042 1997-01-02 Richard Stallman <rms@gnu.org>
1045 [_MSC_VER]: Include stdlib.h and process.h.
1046 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1048 * src/main.c (main): Return FAILURE as a value.
1049 (printable_version): Declare arg as int, not char.
1051 1997-01-02 Richard Stallman <rms@gnu.org>
1053 * Makefile.in (dist):
1054 Explicitly check for symlinks, and copy them.
1056 1996-12-19 Richard Stallman <rms@gnu.org>
1059 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1061 1996-12-18 Paul Eggert <eggert@gnu.org>
1063 * src/bison.s1 (yyparse):
1064 If __GNUC__ and YYPARSE_PARAM are both defined,
1065 declare yyparse to have a void * argument.
1067 1996-12-18 Paul Eggert <eggert@gnu.org>
1069 * bison.simple (yyparse):
1070 If __GNUC__ and YYPARSE_PARAM are both defined,
1071 declare yyparse to have a void * argument.
1073 1996-12-17 Richard Stallman <rms@gnu.org>
1075 * src/reduce.c (nbits): Add some casts.
1077 1996-08-12 Richard Stallman <rms@gnu.org>
1079 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1081 1996-08-12 Richard Stallman <rms@gnu.org>
1083 * bison.simple: Test _MSDOS as well as _MSDOS_.
1085 1996-07-31 Richard Stallman <rms@gnu.org>
1088 [__sun && __i386]: Include alloca.h.
1090 1996-07-31 Richard Stallman <rms@gnu.org>
1093 [__sun && __i386]: Include alloca.h.
1095 1996-07-30 Richard Stallman <rms@gnu.org>
1097 * src/bison.s1: Comment change.
1099 * src/bison.s1: Test _MSDOS_, not MSDOS.
1101 1996-07-30 Richard Stallman <rms@gnu.org>
1103 * bison.simple: Comment change.
1105 * bison.simple: Test _MSDOS_, not MSDOS.
1107 1996-06-01 Richard Stallman <rms@gnu.org>
1109 * 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:
1110 Insert `_' macro around many string constants.
1113 Insert `_' macro around many string constants.
1115 (main): Call setlocale, bindtextdomain and textdomain.
1117 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1118 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1119 [ENABLE_NLS]: Include libintl.h.
1120 [ENABLE_NLS] (gettext): Define.
1121 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1122 (N_, PACKAGE, LOCALEDIR): New macros.
1124 1996-06-01 Richard Stallman <rms@gnu.org>
1126 * POTFILES.in: New file.
1128 * Makefile.in (allocate.o):
1129 Define target explicitly.
1131 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1132 (LDFLAGS): Set to @LDFLAGS@.
1133 (configure): Run autoconf only if preceding `cd' succeeds.
1134 (bison.s1): Redirect output to temporary file then move the
1135 temporary to the target, rather than redirecting directly to bison.s1.
1136 (clean): Remove config.status and config.log.
1137 (distclean): Don't remove config.status here.
1139 1996-05-12 Richard Stallman <rms@gnu.org>
1142 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1144 1996-05-12 Richard Stallman <rms@gnu.org>
1147 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1149 1996-05-11 Richard Stallman <rms@gnu.org>
1151 * src/bison.s1 (__yy_memcpy):
1152 Really reorder the args, as was supposedly done on Feb 14 1995.
1153 (yyparse): Calls changed accordingly.
1155 1996-05-11 Richard Stallman <rms@gnu.org>
1157 * Makefile.in (dist): Don't use $(srcdir).
1159 * bison.simple (__yy_memcpy):
1160 Really reorder the args, as was supposedly done on Feb 14 1995.
1161 (yyparse): Calls changed accordingly.
1163 1996-01-27 Richard Stallman <rms@gnu.org>
1165 * src/output.c (output_rule_data):
1166 Test YYERROR_VERBOSE in the conditional
1167 around the definition of ttyname.
1169 1995-12-29 Richard Stallman <rms@gnu.org>
1172 Fix line numbers in #line commands.
1174 1995-12-29 Richard Stallman <rms@gnu.org>
1177 Fix line numbers in #line commands.
1179 1995-12-27 Richard Stallman <rms@gnu.org>
1181 * src/bison.s1 (YYPARSE_PARAM_DECL):
1182 In C++, make it always null.
1183 (YYPARSE_PARAM_ARG): New macro.
1184 (yyparse): Use YYPARSE_PARAM_ARG.
1186 1995-12-27 Richard Stallman <rms@gnu.org>
1188 * bison.simple (YYPARSE_PARAM_DECL):
1189 In C++, make it always null.
1190 (YYPARSE_PARAM_ARG): New macro.
1191 (yyparse): Use YYPARSE_PARAM_ARG.
1193 1995-11-29 Richard Stallman <rms@gnu.org>
1195 * doc/bison.texinfo:
1196 Describe literal string tokens, %raw, %no_lines, %token_table.
1198 1995-11-29 Daniel Hagerty <hag@gnu.org>
1200 * doc/bison.texinfo: Fixed update date
1202 1995-10-16 Richard Stallman <rms@gnu.org>
1204 * src/version.c: Version 1.25.
1206 1995-10-16 Richard Stallman <rms@gnu.org>
1208 * NEWS: *** empty log message ***
1210 1995-10-16 Richard Stallman <rms@gnu.org>
1212 * doc/bison.1, doc/bison.rnh:
1215 1995-10-15 Richard Stallman <rms@gnu.org>
1217 * src/vmsgetargs.c, src/getargs.c:
1218 Added -n, -k, and -raw switches.
1219 (noparserflag, toknumflag, rawtoknumflag): New variables.
1221 * src/symtab.h (SALIAS):
1222 New #define for adding aliases to %token.
1223 (struct bucket): Added `alias' field.
1225 * src/reduce.c (reduce_grammar):
1226 Revise error message.
1227 (print_notices): Remove final `.' from error message.
1229 * src/reader.c (reader_output_yylsp):
1231 (readgram): Use `#if 0' around code that accepted %command
1232 inside grammar rules: The documentation doesn't allow it,
1233 and it will fail since the %command processors scan for the next %.
1234 (parse_token_decl): Extended the %token
1235 declaration to allow a multi-character symbol as an alias.
1236 (parse_thong_decl): New function.
1237 (read_declarations): Added %thong declarations.
1238 (read_declarations): Handle NOOP to deal with allowing
1239 % declarations as another means to specify the flags.
1240 (readgram): Allow %prec prior to semantics embedded in a rule.
1241 (skip_to_char, read_declarations, copy_definition)
1242 (parse_token_decl, parse_start_decl, parse_type_decl)
1243 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1244 (get_type_name, copy_guard, copy_action, readgram)
1245 (get_type, packsymbols): Revised most error messages.
1246 Changed `fatal' to `warnxxx' to avoid aborting for error.
1247 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1248 (read_declarations): Improve the error message for
1249 an invalid character. Do not abort.
1250 (read_declarations, copy_guard, copy_action): Use
1251 printable_version to avoid unprintable characters in printed output.
1252 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1253 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1254 Allow the type of a non-terminal can be given
1255 more than once, as long as all specifications give the same type.
1258 (output_headers, output_trailers, output, output_gram)
1259 (output_rule_data): Implement noparserflag variable.
1260 Implement toknumflag variable.
1261 (output): Call reader_output_yylsp to output LTYPESTR.
1263 * src/main.c (main):
1264 If reader sees an error, don't process the grammar.
1265 (fatals): Updated to not use VARARGS1.
1266 (printable_version, int_to_string, warn, warni, warns, warnss)
1267 (warnsss): New error reporting functions. Avoid abort for error.
1270 Added THONG and NOOP for alias processing.
1271 Added SETOPT for the new code that allows setting options with %flags.
1274 Include getopt.h. Add some extern decls.
1275 (safegetc): New function to deal with EOF gracefully.
1276 (literalchar); new function to deal with reading \ escapes.
1277 (lex): Use literalchar.
1278 (lex): Implemented "..." tokens.
1279 (literalchar, lex, parse_percent_token): Made tokenbuffer
1280 always contain the token. This includes growing the token
1281 buffer while reading an integer.
1282 (parse_percent_token): Replaced if-else statement with percent_table.
1283 (parse_percent_token): Added % declarations as another
1284 way to specify the flags -n, -l, and -r. Also added hooks for
1285 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1286 major changes to files.c.
1287 (lex) Retain in the incoming stream a character following
1289 (skip_white_space, lex): Revised most error messages
1290 and changed fatal to warn to avoid aborting.
1291 (percent_table): Added %thong declarations.
1293 * src/gram.h: Comment changes.
1295 * src/files.c (openfiles, open_extra_files, done):
1297 and actfile file. Handle noparserflag. Both for -n switch.
1299 * src/conflicts.c (resolve_sr_conflict):
1300 Remove use of alloca.
1302 1995-06-01 Jim Meyering <meyering@gnu.org>
1304 * doc/bison.texinfo: *** empty log message ***
1306 1995-05-06 Richard Stallman <rms@gnu.org>
1308 * src/bison.s1: Comment change.
1310 1995-05-06 Richard Stallman <rms@gnu.org>
1312 * bison.simple: Comment change.
1314 1995-05-03 Richard Stallman <rms@gnu.org>
1316 * src/version.c: Version now 1.24.
1318 * src/bison.s1: Change distribution terms.
1320 * src/version.c: Version now 1.23.
1322 1995-05-03 Richard Stallman <rms@gnu.org>
1324 * doc/bison.texinfo:
1325 Rewrite "Conditions for Using Bison".
1326 Update version to 1.24.
1328 1995-05-03 Richard Stallman <rms@gnu.org>
1330 * bison.simple: Change distribution terms.
1332 1995-02-23 Richard Stallman <rms@gnu.org>
1334 * src/files.c: Test __VMS_POSIX as well as VMS.
1336 1995-02-14 Jim Meyering <meyering@gnu.org>
1338 * src/bison.s1 (__yy_memcpy):
1339 Renamed from __yy_bcopy to avoid
1340 confusion. Reverse FROM and TO arguments to be consistent with
1343 1995-02-14 Jim Meyering <meyering@gnu.org>
1345 * bison.simple (__yy_memcpy):
1346 Renamed from __yy_bcopy to avoid
1347 confusion. Reverse FROM and TO arguments to be consistent with
1350 1994-11-10 David J. MacKenzie <djm@gnu.org>
1356 * Makefile.in (DISTFILES): Include NEWS.
1358 * Makefile.in (DISTFILES):
1359 Include install-sh, not install.sh.
1361 * configure.in: Update to Autoconf v2 macro names.
1363 1994-10-05 David J. MacKenzie <djm@gnu.org>
1365 * Makefile.in: fix typo
1367 * Makefile.in (prefix, exec_prefix):
1368 Let configure set them.
1370 1994-09-28 David J. MacKenzie <djm@gnu.org>
1372 * Makefile.in: Set datadir to $(prefix)/share.
1374 1994-09-15 Richard Stallman <rms@gnu.org>
1377 Update copyright notice and GPL version.
1379 1994-09-15 Richard Stallman <rms@gnu.org>
1382 Update copyright notice and GPL version.
1384 1994-07-12 Richard Stallman <rms@gnu.org>
1386 * src/reduce.c, src/reader.c:
1389 1994-05-05 David J. MacKenzie <djm@gnu.org>
1391 * Makefile.in: entered into RCS
1393 1994-03-26 Richard Stallman <rms@gnu.org>
1395 * src/bison.s1: entered into RCS
1397 1994-03-26 Richard Stallman <rms@gnu.org>
1399 * bison.simple: entered into RCS
1401 1994-03-25 Richard Stallman <rms@gnu.org>
1403 * src/main.c: entered into RCS
1405 1994-03-24 Richard Stallman <rms@gnu.org>
1407 * src/conflicts.c: entered into RCS
1409 1994-01-02 Richard Stallman <rms@gnu.org>
1411 * Makefile.in: *** empty log message ***
1413 1993-11-21 Richard Stallman <rms@gnu.org>
1415 * src/bison.s1: *** empty log message ***
1417 1993-11-21 Richard Stallman <rms@gnu.org>
1419 * doc/bison.texinfo: entered into RCS
1421 * doc/bison.texinfo: *** empty log message ***
1423 1993-11-21 Richard Stallman <rms@gnu.org>
1425 * bison.simple: *** empty log message ***
1427 1993-10-25 David J. MacKenzie <djm@gnu.org>
1429 * doc/bison.texinfo: *** empty log message ***
1431 1993-10-19 Richard Stallman <rms@gnu.org>
1433 * src/bison.s1: *** empty log message ***
1435 1993-10-19 Richard Stallman <rms@gnu.org>
1437 * bison.simple: *** empty log message ***
1439 1993-10-14 Richard Stallman <rms@gnu.org>
1441 * src/bison.s1: *** empty log message ***
1443 1993-10-14 Richard Stallman <rms@gnu.org>
1445 * bison.simple: *** empty log message ***
1447 1993-09-14 David J. MacKenzie <djm@gnu.org>
1449 * doc/bison.texinfo: *** empty log message ***
1451 1993-09-13 Noah Friedman <friedman@gnu.org>
1453 * Makefile.in: *** empty log message ***
1455 1993-09-10 Richard Stallman <rms@gnu.org>
1457 * src/conflicts.c: *** empty log message ***
1459 * src/system.h: entered into RCS
1461 1993-09-10 Richard Stallman <rms@gnu.org>
1463 * doc/bison.1: entered into RCS
1465 1993-09-06 Noah Friedman <friedman@gnu.org>
1467 * src/version.c: entered into RCS
1469 1993-09-06 Noah Friedman <friedman@gnu.org>
1471 * Makefile.in: *** empty log message ***
1473 1993-07-30 David J. MacKenzie <djm@gnu.org>
1475 * Makefile.in: *** empty log message ***
1477 1993-07-24 Richard Stallman <rms@gnu.org>
1479 * src/bison.s1: *** empty log message ***
1481 1993-07-24 Richard Stallman <rms@gnu.org>
1483 * bison.simple: *** empty log message ***
1485 1993-07-08 David J. MacKenzie <djm@gnu.org>
1487 * Makefile.in: *** empty log message ***
1489 1993-07-04 Richard Stallman <rms@gnu.org>
1491 * src/bison.s1: *** empty log message ***
1493 1993-07-04 Richard Stallman <rms@gnu.org>
1495 * bison.simple: *** empty log message ***
1497 1993-06-26 David J. MacKenzie <djm@gnu.org>
1499 * src/getargs.c: entered into RCS
1501 1993-06-26 David J. MacKenzie <djm@gnu.org>
1503 * doc/bison.texinfo: *** empty log message ***
1505 * doc/bison.1: New file.
1507 1993-06-25 Richard Stallman <rms@gnu.org>
1509 * src/getargs.c: New file.
1511 1993-06-16 Richard Stallman <rms@gnu.org>
1513 * src/bison.s1: *** empty log message ***
1515 1993-06-16 Richard Stallman <rms@gnu.org>
1517 * bison.simple: *** empty log message ***
1519 1993-06-03 Richard Stallman <rms@gnu.org>
1521 * src/bison.s1: New file.
1523 1993-06-03 Richard Stallman <rms@gnu.org>
1525 * doc/bison.texinfo: *** empty log message ***
1527 1993-06-03 Richard Stallman <rms@gnu.org>
1529 * bison.simple: New file.
1531 1993-05-19 Richard Stallman <rms@gnu.org>
1533 * doc/bison.texinfo: New file.
1535 1993-05-07 Noah Friedman <friedman@gnu.org>
1537 * Makefile.in: *** empty log message ***
1539 1993-04-28 Noah Friedman <friedman@gnu.org>
1541 * src/reader.c: *** empty log message ***
1543 1993-04-23 Noah Friedman <friedman@gnu.org>
1545 * src/alloc.h: entered into RCS
1547 1993-04-20 David J. MacKenzie <djm@gnu.org>
1549 * src/version.c: *** empty log message ***
1551 * src/files.c, src/allocate.c:
1554 * src/reader.c: *** empty log message ***
1556 * src/lex.c: entered into RCS
1558 * src/conflicts.c: New file.
1560 * src/symtab.c: entered into RCS
1562 * src/alloc.h: New file.
1564 * src/LR0.c: entered into RCS
1566 1993-04-18 Noah Friedman <friedman@gnu.org>
1568 * src/reader.c: New file.
1570 * src/version.c: *** empty log message ***
1572 1993-04-18 Noah Friedman <friedman@gnu.org>
1574 * Makefile.in: *** empty log message ***
1576 1993-04-17 Noah Friedman <friedman@gnu.org>
1578 * Makefile.in: *** empty log message ***
1580 1993-04-15 Richard Stallman <rms@gnu.org>
1582 * src/main.c, src/files.c:
1585 1993-04-15 Noah Friedman <friedman@gnu.org>
1587 * configure.in: entered into RCS
1589 * configure.in: *** empty log message ***
1591 * configure.in: New file.
1593 1993-04-14 Richard Stallman <rms@gnu.org>
1595 * Makefile.in: New file.
1597 1993-04-13 Richard Stallman <rms@gnu.org>
1599 * src/version.c: New file.
1601 1993-03-25 Richard Stallman <rms@gnu.org>
1603 * src/output.c: entered into RCS
1605 1992-09-25 Richard Stallman <rms@gnu.org>
1607 * configure.bat: entered into RCS
1609 1992-06-22 Richard Stallman <rms@gnu.org>
1611 * src/vmsgetargs.c: entered into RCS
1613 1992-06-22 Richard Stallman <rms@gnu.org>
1615 * doc/bison.rnh: entered into RCS
1617 1992-04-20 David J. MacKenzie <djm@gnu.org>
1619 * README: entered into RCS
1621 1992-01-22 Richard Stallman <rms@gnu.org>
1623 * src/machine.h: entered into RCS
1625 1991-12-21 Richard Stallman <rms@gnu.org>
1627 * src/lalr.c, src/closure.c:
1630 1991-12-20 Richard Stallman <rms@gnu.org>
1632 * src/state.h: entered into RCS
1634 1991-12-18 Richard Stallman <rms@gnu.org>
1636 * src/print.c, src/nullable.c, src/derives.c:
1639 1991-11-03 David J. MacKenzie <djm@gnu.org>
1641 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1644 1988-09-09 Richard Stallman <rms@gnu.org>
1646 * src/bison.hairy: entered into RCS
1648 1987-12-16 Richard Stallman <rms@gnu.org>
1650 * REFERENCES: entered into RCS