1 2000-10-02 Akim Demaille <akim@epita.fr>
3 * src/derives.c, src/print.c, src/reduce.c: To ease the
4 translation, move some `\n' out of the translated strings.
7 2000-10-02 Akim Demaille <akim@epita.fr>
9 The location tracking mechanism is precious for parse error
10 messages. Nevertheless, it is enabled only when `@n' is used in
11 the grammar, which is a different issue (you can use it in error
12 message, but not in the grammar per se). Therefore, there should
13 be another means to enable it.
15 * src/getargs.c (getargs): Support `--locations'.
17 * src/getargs.h (locationsflag): Export it.
18 * src/lex.c (percent_table): Support `%locations'.
19 * src/reader.c (yylsp_needed): Remove this variable, now replaced
21 * doc/bison.texinfo: Document `--locations' and `%locations'.
23 * tests/calc.m4: Test it.
25 For regularity of the names, replace each
26 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
27 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
28 In addition replace each `flag' with `_flag'.
31 2000-10-02 Akim Demaille <akim@epita.fr>
33 Also test parse error messages, including with YYERROR_VERBOSE.
35 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
37 Use it to check the computations.
38 Use it to check `nonassoc' is honored.
39 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
41 (_AT_CHECK_CALC): Adjust to this option.
42 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
45 2000-10-02 Akim Demaille <akim@epita.fr>
47 Test also `--verbose', `--defines' and `--name-prefix'. Testing
48 the latter demonstrates a flaw in the handling of non debugging
49 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
50 was used in order to simplify:
66 unfortunately this leads to a CPP conflict when
67 `--name-prefix=foo' is used since it produces `#define yydebug
70 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
71 (YYDPRINTF): New macro.
73 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
75 Also test `--verbose', `--defines' and `--name-prefix'.
78 2000-10-02 Akim Demaille <akim@epita.fr>
80 Improve the readability of the produced parsers.
82 * src/bison.s1: Formatting changes.
83 Improve the comment related to the `$' mark.
84 (yydefault): Don't fall through to `yyresume': `goto' there.
85 * src/output.c (output_parser): When the `$' is met, skip the end
87 New variable, `number_of_dollar_signs', to check there's exactly
88 one `$' in the parser skeleton.
91 2000-10-02 Akim Demaille <akim@epita.fr>
93 * lib/xstrdup.c: New file, from the fileutils.
94 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
95 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
96 instead of strlen + xmalloc + strcpy.
97 * src/symtab.c (copys): Remove, use xstrdup instead.
100 2000-10-02 Akim Demaille <akim@epita.fr>
102 * src/gram.h (associativity): New enum type which replaces the
103 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
104 `right_assoc', `left_assoc' and `non_assoc'.
105 Adjust all dependencies.
106 * src/reader.c: Formatting changes.
107 (LTYPESTR): Don't define it, use it as a literal in
108 `reader_output_yylsp'.
109 * src/symtab.h (symbol_class): New enum type which replaces the
110 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
111 `sunknown', `stoken and `snterm'.
113 2000-10-02 Akim Demaille <akim@epita.fr>
115 * src/getargs.c (fixed_outfiles): Rename as...
116 (yaccflag): for consistency and accuracy.
120 2000-10-02 Akim Demaille <akim@epita.fr>
122 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
123 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
124 difficult and introduced a lot of core dump. It turns out that
125 Bison used an implementation of `xmalloc' based on `calloc', and
126 at various places it does depend upon the initialization to 0. I
127 have not tried to isolate the pertinent places, and all the former
128 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
129 someone should address this issue.
131 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
132 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
135 * src/warshall.h: New file.
138 2000-10-02 Akim Demaille <akim@epita.fr>
140 Various anti-`extern in *.c' changes.
142 * src/system.h: Include `assert.h'.
145 2000-10-02 Akim Demaille <akim@epita.fr>
147 * src/state.h (nstates, final_state, first_state, first_shift)
148 (first_reduction): Move their exportation from here...
149 * src/LR0.h: to here.
151 * src/getargs.c (statisticsflag): New variable.
152 Add support for `--statistics'.
155 Remove a lot of now useless `extern' statements in most files.
158 2000-10-02 Akim Demaille <akim@epita.fr>
160 * src/LR0.h: New file.
164 2000-10-02 Akim Demaille <akim@epita.fr>
166 * src/print.h: New file.
168 * src/print.c: Formatting and ordering changes.
169 (verbose, terse): Replace with...
170 (print_results): this new function.
174 2000-10-02 Akim Demaille <akim@epita.fr>
176 * src/conflicts.c (conflict_report): New function.
177 (conflict_log, verbose_conflict_log): Replace with...
178 (print_conflicts): this function.
180 * src/conflicts.h: New file.
181 Propagate its inclusion.
184 2000-10-02 Akim Demaille <akim@epita.fr>
186 * src/nullable.h: New file.
187 Propagate its inclusion.
188 * src/nullable.c: Formatting changes.
191 2000-10-02 Akim Demaille <akim@epita.fr>
193 * src/reduce.h: New file.
194 Propagate its inclusion.
195 * src/reduce.c: Topological sort and other formatting changes.
196 (bool, TRUE, FALSE): Move their definition to...
197 * src/system.h: here.
200 2000-10-02 Akim Demaille <akim@epita.fr>
202 * src/files.c: Formatting changes.
203 (tryopen, tryclose, openfiles): Rename as...
204 (xfopen, xfclose, open_files): this.
205 (stringappend): static.
206 * src/files.h: Complete the list of exported symbols.
210 2000-10-02 Akim Demaille <akim@epita.fr>
212 * src/reader.h: New file.
213 Propagate its use instead of tedious list of `extern' and
215 * src/reader.c: Formatting changes, topological sort,
219 2000-10-02 Akim Demaille <akim@epita.fr>
221 * src/lex.h: Prototype `lex.c' exported functions.
222 * src/reader.c: Adjust.
223 * src/lex.c: Formatting changes.
224 (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.
235 2000-10-02 Akim Demaille <akim@epita.fr>
237 * src/output.c (token_actions): Introduce a temporary array,
238 YYDEFACT, that makes it possible for this function to use
242 2000-10-02 Akim Demaille <akim@epita.fr>
244 `user_toknums' is output as a `short[]' in `output.c', while it is
245 defined as a `int[]' in `reader.c'. For consistency with the
246 other output tables, `user_toknums' is now defined as a table of
249 * src/reader.c (user_toknums): Be a short table instead of an int
253 Factor the short table outputs.
255 * src/output.c (output_short_table): New function.
256 * src/output.c (output_gram, output_stos, output_rule_data)
257 (output_base, output_table, output_check): Use it.
259 2000-10-02 Akim Demaille <akim@epita.fr>
261 * src/output.c (output): Topological sort of the functions, in
262 order to get rid of the `static' prototypes.
263 No longer use `register'.
264 * src/output.h: New file.
265 Propagate its inclusion in files explicitly prototyping functions
268 2000-09-21 Akim Demaille <akim@epita.fr>
270 * src/atgeneral.m4: Update from Autoconf.
272 2000-09-21 Akim Demaille <akim@epita.fr>
274 * src/closure.h: New file.
275 * src/closure.c: Formatting changes, topological sort over the
276 functions, use of closure.h.
277 (initialize_closure, finalize_closure): Rename as...
278 (new_closure, free_closure): these. Adjust dependencies.
279 * src/LR0.c: Formatting changes, topological sort, use of
281 (initialize_states): Rename as...
283 * src/Makefile.am (noinst_HEADERS): Adjust.
285 2000-09-20 Akim Demaille <akim@epita.fr>
287 * src/acconfig.h: Don't protect config.h against multiple
290 * src/system.h: Define PARAMS.
291 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
292 purpose of config.h. system.h must not try to fix wrong
293 definitions in config.h.
295 2000-09-20 Akim Demaille <akim@epita.fr>
297 * src/derives.h: New file.
298 * src/main.c, src/derives.h: Use it.
300 * src/Makefile.am (noinst_HEADERS): Adjust.
302 2000-09-20 Akim Demaille <akim@epita.fr>
304 * tests/atgeneral.m4: Update from Autoconf.
305 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
306 (AT_CHECK_CALC): New macros.
307 Use these macros to test bison with options `', `--raw',
308 `--debug', `--yacc', `--yacc --debug'.
310 2000-09-19 Akim Demaille <akim@epita.fr>
312 * src/output.c: Formatting changes.
313 * src/machine.h: Remove, leaving its contents in...
314 * src/system.h: here.
316 Adjust all dependencies on stdio.h and machine.h.
317 * src/getargs.h: New file.
318 Let all `extern' declarations about getargs.c be replaced with
319 inclusion of `getargs.h'.
320 * src/Makefile.am (noinst_HEADERS): Adjust.
322 * tests/calc.m4 (yyin): Be initialized in main, not on the global
324 (yyerror): Returns void, not int.
325 * doc/bison.texinfo: Formatting changes.
327 2000-09-19 Akim Demaille <akim@epita.fr>
329 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
332 2000-09-18 Akim Demaille <akim@epita.fr>
334 * configure.in: Append WARNING_CFLAGS to CFLAGS.
335 * src/Makefile.am (INCLUDES): Don't.
336 Be ready to fetch headers in lib/.
338 2000-09-18 Akim Demaille <akim@epita.fr>
340 * doc/bison.texinfo: Update the copyright.
341 ANSIfy and GNUify the examples.
344 2000-09-18 Akim Demaille <akim@epita.fr>
346 First set of tests: use the `calc' example from the documentation.
348 * src/bison.s1 (yyparse): Condition the code using `yytname' which
349 is defined only when YYDEBUG is.
350 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
351 * src/files.c (tryopen, tryclose): Formatting changes.
352 Move to the top and be static.
353 * src/reader.c (read_signed_integer): Likewise.
354 * tests/calc.m4: New file.
355 * Makefile.am, suite.m4: Adjust.
356 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
358 2000-09-18 Akim Demaille <akim@epita.fr>
360 Add support for an Autotest test suite for Bison.
362 * m4/m4.m4, m4/atconfig.m4: New files.
363 * m4/Makefile.am (EXTRA_DIST): Adjust.
364 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
366 * src/getargs.c: Display a more standard --version message.
367 * src/reader.c (reader): Formatting changes.
368 No longer depend upon VERSION_STRING.
369 * configure.in: No longer use `dnl'.
370 Set up the test suite and the new directory `tests/.
371 (VERSION_STRING): Remove.
373 2000-04-14 Akim Demaille <akim@epita.fr>
375 * src/reader.c (copy_comment2): New function, same as former
376 `copy_comment', but outputs into two FILE *.
377 (copy_comment): Use it.
378 (parse_union_decl): Use it.
379 (get_type, parse_start_decl): Use the same `invalid' message.
380 (parse_start_decl, parse_union_decl): Use the same `multiple'
382 (parse_union_decl, copy_guard, copy_action): Use the same
384 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
386 2000-03-31 Akim Demaille <akim@epita.fr>
388 * src/files.c (tryopen, tryclose): Move to the top.
391 2000-03-31 Akim Demaille <akim@epita.fr>
393 * src/main.c (main): Don't call `done', exit does it.
395 2000-03-31 Akim Demaille <akim@epita.fr>
397 * allocate.c: s/return (foo)/return foo/.
400 * output.c: Likewise.
401 * reader.c: Likewise.
402 * symtab.c: Likewise.
403 * vmsgetargs.c: Likewise.
405 2000-03-31 Akim Demaille <akim@epita.fr>
407 Clean up the error reporting functions.
409 * src/report.c: New file.
410 * src/report.h: Likewise.
411 * src/Makefile.am: Adjust.
412 * m4/error.m4: New file.
413 * m4/Makefile.am: Adjust.
414 * configure.in (jm_PREREQ_ERROR): Call it.
415 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
417 (fatal, fatals): Remove. All callers use complain.c::fatal.
418 (warn, warni, warns, warnss, warnss): Remove. All callers use
419 complain.c::complain.
420 (toomany): Remove, use fatal instead.
421 * src/files.c (done): No argument, use complain_message_count.
422 * src/main.c (main): Register `done' to `atexit'.
424 * src/getargs.c (usage): More `fputs', less `fprintf'.
426 2000-03-28 Akim Demaille <akim@epita.fr>
428 * lib/: New directory.
429 * Makefile.am (SUBDIRS): Adjust.
430 * configure.in: Adjust.
431 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
433 * src/alloca.c: Moved to lib/.
434 * src/getopt.c: Likewise.
435 * src/getopt1.c: Likewise.
436 * src/getopt.h: Likewise.
437 * src/ansi2knr.c: Likewise.
438 * src/ansi2knr.1: Likewise.
439 * src/Makefile.am: Adjust.
440 * lib/Makefile.am: New file.
442 2000-03-28 Akim Demaille <akim@epita.fr>
444 * src/getargs.c (usage): Refresh the help message.
446 2000-03-17 Akim Demaille <akim@epita.fr>
448 * src/getopt1.c: Updated from textutils 2.0e
449 * src/getopt.c: Likewise.
450 * src/getopt.h: Likewise.
452 2000-03-17 Akim Demaille <akim@epita.fr>
454 * src/Makefile.am (bison.simple): Fix the awk program: quote only
455 the file name, not the whole `#line LINE FILE'.
457 2000-03-17 Akim Demaille <akim@epita.fr>
459 On syntax errors, report the token on which we choked.
461 * src/bison.s1 (yyparse): In the label yyerrlab, when
462 YYERROR_VERBOSE, add yychar in msg.
464 2000-03-17 Akim Demaille <akim@epita.fr>
466 * src/reader.c (copy_at): New function.
467 (copy_guard): Use it.
468 (copy_action): Use it.
470 2000-03-17 Akim Demaille <akim@epita.fr>
472 Be kind to translators, save some useless translations.
474 * src/main.c (banner): New function.
475 (fatal_banner): Use it.
476 (warn_banner): Use it.
478 2000-03-17 Akim Demaille <akim@epita.fr>
480 * src/reader.c (copy_definition): Use copy_string and
481 copy_comment. Removed now unused `match', `ended',
483 (copy_comment, copy_string): Moved, to be visible from
486 2000-03-17 Akim Demaille <akim@epita.fr>
488 * src/reader.c (copy_string): Declare `static inline'. No
489 problems with inline, since it is checked by configure.
490 (copy_comment): Likewise.
492 2000-03-17 Akim Demaille <akim@epita.fr>
494 * src/reader.c (packsymbols): Formatting changes.
496 2000-03-17 Akim Demaille <akim@epita.fr>
498 * src/reader.c (copy_comment): New function, factored out from:
499 (copy_action): Use it. Removed now unused `match', `ended',
501 (copy_guard): Likewise.
503 2000-03-17 Akim Demaille <akim@epita.fr>
505 * src/reader.c (copy_string): New function, factored out from:
506 (copy_action): Use it.
507 (copy_guard): Likewise.
509 2000-03-17 Akim Demaille <akim@epita.fr>
511 Change the handling of @s so that they behave exactly like $s.
512 There is now a pseudo variable @$ (readble and writable), location
513 of the lhs of the rule (by default ranging from the location of
514 the first symbol of the rhs, to the location of the last symbol,
515 or, if the rhs is empty, YYLLOC).
517 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
519 (yyparse): When providing a default semantic action, provide a
520 default location action.
521 (after the $): No longer change `*YYLSP', just stack YYLOC the
522 same way you stack YYVAL.
523 * src/reader.c (read_declarations): Use warns.
524 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
525 (copy_action, case '@'): Likewise.
526 Use a standard error message, to save useless work from
529 2000-03-17 Akim Demaille <akim@epita.fr>
531 * src/bison.s1: Formatting and cosmetics changes.
532 * src/reader.c: Likewise.
533 Update the Copyright notice.
535 2000-03-17 Akim Demaille <akim@epita.fr>
537 * src/bison.s1 (#line): All set to `#line' only, since the
538 Makefile now handles them.
540 2000-03-16 Akim Demaille <akim@epita.fr>
542 * src/output.c (output_rule_data): Output the documentation of
544 (Copyright notice): Update.
547 2000-03-16 Akim Demaille <akim@epita.fr>
549 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
550 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
551 One `#if YYDEBUG' remains, since it uses variables which are
552 defined only if `YYDEBUG != 0'.
554 2000-03-16 Akim Demaille <akim@epita.fr>
556 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
557 and related variables so that the similarities are highlighted.
559 2000-03-16 Akim Demaille <akim@epita.fr>
561 * src/bison.s1: Properly indent CPP directives.
563 2000-03-16 Akim Demaille <akim@epita.fr>
565 * src/bison.s1: Properly indent the `alloca' CPP section.
567 2000-03-16 Akim Demaille <akim@epita.fr>
569 Do not hard code values of directories in `configure.in'.
570 Update the `configure' tool chain.
572 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
574 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
575 (AC_OUTPUT): Add m4/Makefile.
576 Bump to bison 1.28a, 1.29 has never been released.
577 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
578 handled via src/Makefile.am.
579 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
580 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
582 * Makefile.am (SUBDIRS): Add m4.
583 (ACLOCAL_AM_FLAGS): New variable.
584 (AUTOMAKE_OPTIONS): Add check-news.
585 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
586 the proper line number and file name.
587 (DEFS): Propagate the location of bison library files and of the
589 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
591 * acinclude.m4: Remove, replaced by the directory m4.
592 * m4/Makefile.am (EXTRA_DIST): New variable.
593 * m4/gettext.m4: New file, from the fileutils.
594 * m4/lcmessage.m4: Likewise
595 * m4/progtest.m4: Likewise.
596 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
598 2000-03-10 Akim Demaille <akim@epita.fr>
601 Formatting changes of various comments.
602 Respect the GNU coding standards at various places.
603 Don't use `_()' when no translation is needed.
605 1999-12-13 Jesse Thilo <jthilo@gnu.org>
608 OS/2 honors TMPDIR environment variable.
610 1999-12-13 Jesse Thilo <jthilo@gnu.org>
612 * doc/bison.texinfo: Tweaked spelling and grammar.
614 Removed reference to price of printed copy.
615 Mention BISON_SIMPLE and BISON_HAIRY.
617 1999-12-13 Jesse Thilo <jthilo@gnu.org>
619 * configure.in, NEWS:
622 1999-10-27 Jesse Thilo <jthilo@gnu.org>
624 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
625 Added reference card.
627 1999-07-26 Jesse Thilo <jthilo@gnu.org>
629 * po/ru.po: Added Russian translation.
631 1999-07-26 Jesse Thilo <jthilo@gnu.org>
633 * configure.in: Added Russian translation.
635 1999-07-06 Jesse Thilo <jthilo@gnu.org>
637 * configure.in, NEWS, README:
638 Released version 1.28.
640 1999-06-14 Jesse Thilo <jthilo@gnu.org>
643 Squashed redefinition warning on some systems.
645 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
646 Have configure build version string instead of relying on ANSI string
649 1999-06-14 Jesse Thilo <jthilo@gnu.org>
651 * po/POTFILES.in: Got rid of version.c.
653 1999-06-14 Jesse Thilo <jthilo@gnu.org>
655 * acconfig.h, configure.in:
656 Have configure build version string instead of relying on ANSI string
659 1999-06-08 Jesse Thilo <jthilo@gnu.org>
662 Dropped mention of `+' for long-named options.
664 1999-05-30 Jesse Thilo <jthilo@gnu.org>
666 * src/files.c: Added <unistd.h> for unlink().
668 * src/Makefile.am, src/system.h:
671 1999-05-30 Jesse Thilo <jthilo@gnu.org>
673 * README: Added a FAQ list.
675 * configure.in, acconfig.h:
678 1999-05-30 Jesse Thilo <jthilo@gnu.org>
680 * doc/FAQ, doc/Makefile.am:
683 1999-05-19 Jesse Thilo <jthilo@gnu.org>
685 * src/alloc.h, src/symtab.h, src/version.c:
686 Protected inclusion of "config.h" with HAVE_CONFIG_H.
688 1999-04-18 Jesse Thilo <jthilo@gnu.org>
690 * src/.cvsignore, src/Makefile.am:
691 Reorganized: sources in `src', documentation in `doc'.
693 * src/lex.c (literalchar):
694 fixed the code for escaping double quotes (thanks
697 1999-04-18 Jesse Thilo <jthilo@gnu.org>
699 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
700 Adjusted paths to reflect directory reorganization.
702 1999-04-18 Jesse Thilo <jthilo@gnu.org>
704 * doc/.cvsignore, doc/Makefile.am:
705 Reorganized: sources in `src', documentation in `doc'.
707 1999-04-18 Jesse Thilo <jthilo@gnu.org>
710 Updated AC_INIT file to reflect directory reorganization.
712 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
713 Reorganized: sources in `src', documentation in `doc'.
715 1999-04-13 Jesse Thilo <jthilo@gnu.org>
718 Don't declare calloc() and realloc() if not necessary.
720 1999-04-13 Jesse Thilo <jthilo@gnu.org>
722 * configure.in, acconfig.h, acinclude.m4:
723 Don't declare calloc() and realloc() if not necessary.
725 1999-03-23 Jesse Thilo <jthilo@gnu.org>
727 * po/.cvsignore: Added i18n support.
729 1999-03-23 Jesse Thilo <jthilo@gnu.org>
731 * acconfig.h, configure.in, Makefile.am:
734 1999-03-22 Jesse Thilo <jthilo@gnu.org>
736 * src/bison.s1: Fixed #line numbers.
738 1999-03-15 Jesse Thilo <jthilo@gnu.org>
740 * po/es.po, po/fr.po, po/nl.po, po/de.po:
741 Added PO files from Translation Project.
743 1999-03-03 Jesse Thilo <jthilo@gnu.org>
746 Added support for non-ANSI compilers (ansi2knr).
748 1999-02-16 Jesse Thilo <jthilo@gnu.org>
750 * configure.in: Bumped version number to 1.27.
753 Added `bison.simple' to list of files removed by `make distclean'.
755 1999-02-12 Jesse Thilo <jthilo@gnu.org>
757 * src/files.c, src/files.h:
758 Defined locations of parser files in config.h instead of Makefile.
760 1999-02-12 Jesse Thilo <jthilo@gnu.org>
762 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
763 Defined locations of parser files in config.h instead of Makefile.
765 1999-02-09 Jesse Thilo <jthilo@gnu.org>
768 Removed inappropriate use of $< macro.
770 1999-02-05 Jesse Thilo <jthilo@gnu.org>
772 * po/Makefile.in.in, po/POTFILES.in:
773 Add `po' directory skeleton.
775 1999-01-27 Jesse Thilo <jthilo@gnu.org>
777 * README: Document help-bison list.
779 * configure.in: Add check for mkstemp().
781 1999-01-20 Jesse Thilo <jthilo@gnu.org>
783 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
784 Hush a few compiler warnings.
787 Add tryclose(), which verifies that fclose was successful.
788 Hush a couple of compiler warnings.
790 1999-01-20 Jesse Thilo <jthilo@gnu.org>
792 * Makefile.am, OChangeLog:
793 ChangeLog is now automatically generated. Include the old version as
796 1999-01-14 Jesse Thilo <jthilo@gnu.org>
798 * 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:
801 1999-01-14 Jesse Thilo <jthilo@gnu.org>
803 * doc/bison.texinfo: Fix formatting glitch.
805 * doc/bison.texinfo: Update FSF address.
807 1999-01-14 Jesse Thilo <jthilo@gnu.org>
809 * acconfig.h: Update FSF address.
811 1999-01-08 Jesse Thilo <jthilo@gnu.org>
814 Don't define PACKAGE here, since config.h defines it.
816 1998-12-30 Jesse Thilo <jthilo@gnu.org>
818 * src/reader.c: Update copyright date.
821 Ditch sprintf to statically-sized buffers in fatal/warn functions in
822 favor of output directly to stderr (avoids buffer overruns).
824 * src/reader.c: Some checks for premature EOF.
826 * 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:
827 Use prototypes if the compiler understands them.
829 * src/files.c: Honor TMPDIR on Unix hosts.
830 Use prototypes if the compiler understands them.
833 Fix a couple of buffer overrun bugs.
834 Use prototypes if the compiler understands them.
836 * src/system.h: Include unistd.h and ctype.h.
837 Use #ifdef instead of #if for NLS symbols.
839 1998-12-30 Jesse Thilo <jthilo@gnu.org>
842 Delete comment "consider using @set for edition number, etc..." since
845 1998-12-30 Jesse Thilo <jthilo@gnu.org>
848 Use prototypes if the compiler understands them.
850 * NEWS: Document 1.26 highlights.
852 * Makefile.am: Require Automake 1.3 or later.
855 Use prototypes if the compiler understands them.
857 1998-12-29 Jesse Thilo <jthilo@gnu.org>
860 Use VERSION symbol from automake for version number.
862 1998-12-29 Jesse Thilo <jthilo@gnu.org>
864 * acconfig.h, configure.in, version.cin:
865 Use VERSION symbol from automake for version number.
867 1998-11-28 Jesse Thilo <jthilo@gnu.org>
870 Distribute original version of simple parser (bison.s1), not built
871 version (bison.simple).
873 1998-11-28 Jesse Thilo <jthilo@gnu.org>
875 * doc/bison.texinfo: Add info dir entry.
878 Let automake put version number into documentation.
880 1998-11-26 Jesse Thilo <jthilo@gnu.org>
882 * src/bison.cld, src/build.com, src/vmshlp.mar:
883 Add non-RCS files from /gd/gnu/bison.
885 1998-11-26 Jesse Thilo <jthilo@gnu.org>
888 Document the BISON_HAIRY and BISON_SIMPLE variables.
890 1998-11-25 Jesse Thilo <jthilo@gnu.org>
892 * src/version.c: Build version.c automatically.
895 Fix token numbering (used to start at 258, not 257).
897 * src/system.h: Include config.h.
899 * src/getargs.c: Update bug report address.
901 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
902 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
904 1998-11-25 Jesse Thilo <jthilo@gnu.org>
907 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
909 * configure.in, version.cin:
910 Build version.c automatically.
912 * AUTHORS: Add AUTHORS file.
914 * README: Update bug report address.
917 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
919 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
922 1998-11-25 Jesse Thilo <jthilo@gnu.org>
924 * doc/bison.texinfo: Clean up some formatting.
926 1998-05-05 Richard Stallman <rms@gnu.org>
929 Explain better why to make a pure parser.
931 1998-01-05 Richard Stallman <rms@gnu.org>
933 * src/files.c (openfiles):
934 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
935 find a temporary directory, if possible. Do not unlink files while
938 1997-08-25 Richard Stallman <rms@gnu.org>
940 * src/reader.c (stack_offset;):
941 Change some warni to warns.
943 * src/lex.c (literalchar): Use warns, not warni.
945 1997-06-28 Richard Stallman <rms@gnu.org>
947 * src/bison.s1: Add a Bison version comment.
949 * src/main.c (fatal, warn, berror):
952 1997-06-28 Richard Stallman <rms@gnu.org>
954 * Makefile.in (bison_version): New variable.
955 (dist): Use that variable.
956 (bison.s1): Substitute the Bison version into bison.simple.
958 * bison.simple: Add a Bison version comment.
960 1997-06-18 Richard Stallman <rms@gnu.org>
962 * src/main.c (fatal, warn, berror):
963 Make error messages standard.
964 (toomany): Improve error message text.
966 * 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:
967 new.h renamed to alloc.h.
969 1997-06-18 Richard Stallman <rms@gnu.org>
971 * Makefile.in: new.h renamed to alloc.h.
973 1997-05-24 Richard Stallman <rms@gnu.org>
975 * src/lex.c (literalchar):
976 Fix the code for escaping \, " and '.
978 (lex): Avoid trouble when there are many chars
979 to discard in a char literal with just several chars in it.
981 1997-05-17 Richard Stallman <rms@gnu.org>
984 Use malloc, if using alloca is troublesome.
985 (YYSTACK_USE_ALLOCA): New flag macro.
986 Define it for some systems and compilers.
987 (YYSTACK_ALLOC): New macro.
988 (yyparse): Use YYSTACK_ALLOC to allocate stack.
989 If it was malloc'd, free it.
991 1997-05-17 Richard Stallman <rms@gnu.org>
994 Use malloc, if using alloca is troublesome.
995 (YYSTACK_USE_ALLOCA): New flag macro.
996 Define it for some systems and compilers.
997 (YYSTACK_ALLOC): New macro.
998 (yyparse): Use YYSTACK_ALLOC to allocate stack.
999 If it was malloc'd, free it.
1001 1997-04-23 Richard Stallman <rms@gnu.org>
1004 (alloca) [__hpux]: Always define as __builtin_alloca.
1006 1997-04-23 Richard Stallman <rms@gnu.org>
1009 (alloca) [__hpux]: Always define as __builtin_alloca.
1011 1997-04-22 Richard Stallman <rms@gnu.org>
1014 [__hpux]: Include alloca.h (right for HPUX 10)
1015 instead of declaring alloca (right for HPUX 9).
1017 * src/bison.s1 (__yy_memcpy):
1018 Declare arg `count' as unsigned int.
1019 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1021 1997-04-22 Richard Stallman <rms@gnu.org>
1024 [__hpux]: Include alloca.h (right for HPUX 10)
1025 instead of declaring alloca (right for HPUX 9).
1027 * bison.simple (__yy_memcpy):
1028 Declare arg `count' as unsigned int.
1029 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1031 1997-01-03 Richard Stallman <rms@gnu.org>
1033 * src/allocate.c: [__STDC__ or _MSC_VER]:
1034 Declare calloc and realloc to return void *.
1036 1997-01-02 Richard Stallman <rms@gnu.org>
1039 [_MSC_VER]: Include stdlib.h and process.h.
1040 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1042 * src/main.c (main): Return FAILURE as a value.
1043 (printable_version): Declare arg as int, not char.
1045 1997-01-02 Richard Stallman <rms@gnu.org>
1047 * Makefile.in (dist):
1048 Explicitly check for symlinks, and copy them.
1050 1996-12-19 Richard Stallman <rms@gnu.org>
1053 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1055 1996-12-18 Paul Eggert <eggert@gnu.org>
1057 * src/bison.s1 (yyparse):
1058 If __GNUC__ and YYPARSE_PARAM are both defined,
1059 declare yyparse to have a void * argument.
1061 1996-12-18 Paul Eggert <eggert@gnu.org>
1063 * bison.simple (yyparse):
1064 If __GNUC__ and YYPARSE_PARAM are both defined,
1065 declare yyparse to have a void * argument.
1067 1996-12-17 Richard Stallman <rms@gnu.org>
1069 * src/reduce.c (nbits): Add some casts.
1071 1996-08-12 Richard Stallman <rms@gnu.org>
1073 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1075 1996-08-12 Richard Stallman <rms@gnu.org>
1077 * bison.simple: Test _MSDOS as well as _MSDOS_.
1079 1996-07-31 Richard Stallman <rms@gnu.org>
1082 [__sun && __i386]: Include alloca.h.
1084 1996-07-31 Richard Stallman <rms@gnu.org>
1087 [__sun && __i386]: Include alloca.h.
1089 1996-07-30 Richard Stallman <rms@gnu.org>
1091 * src/bison.s1: Comment change.
1093 * src/bison.s1: Test _MSDOS_, not MSDOS.
1095 1996-07-30 Richard Stallman <rms@gnu.org>
1097 * bison.simple: Comment change.
1099 * bison.simple: Test _MSDOS_, not MSDOS.
1101 1996-06-01 Richard Stallman <rms@gnu.org>
1103 * 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:
1104 Insert `_' macro around many string constants.
1107 Insert `_' macro around many string constants.
1109 (main): Call setlocale, bindtextdomain and textdomain.
1111 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1112 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1113 [ENABLE_NLS]: Include libintl.h.
1114 [ENABLE_NLS] (gettext): Define.
1115 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1116 (N_, PACKAGE, LOCALEDIR): New macros.
1118 1996-06-01 Richard Stallman <rms@gnu.org>
1120 * POTFILES.in: New file.
1122 * Makefile.in (allocate.o):
1123 Define target explicitly.
1125 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1126 (LDFLAGS): Set to @LDFLAGS@.
1127 (configure): Run autoconf only if preceding `cd' succeeds.
1128 (bison.s1): Redirect output to temporary file then move the
1129 temporary to the target, rather than redirecting directly to bison.s1.
1130 (clean): Remove config.status and config.log.
1131 (distclean): Don't remove config.status here.
1133 1996-05-12 Richard Stallman <rms@gnu.org>
1136 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1138 1996-05-12 Richard Stallman <rms@gnu.org>
1141 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1143 1996-05-11 Richard Stallman <rms@gnu.org>
1145 * src/bison.s1 (__yy_memcpy):
1146 Really reorder the args, as was supposedly done on Feb 14 1995.
1147 (yyparse): Calls changed accordingly.
1149 1996-05-11 Richard Stallman <rms@gnu.org>
1151 * Makefile.in (dist): Don't use $(srcdir).
1153 * bison.simple (__yy_memcpy):
1154 Really reorder the args, as was supposedly done on Feb 14 1995.
1155 (yyparse): Calls changed accordingly.
1157 1996-01-27 Richard Stallman <rms@gnu.org>
1159 * src/output.c (output_rule_data):
1160 Test YYERROR_VERBOSE in the conditional
1161 around the definition of ttyname.
1163 1995-12-29 Richard Stallman <rms@gnu.org>
1166 Fix line numbers in #line commands.
1168 1995-12-29 Richard Stallman <rms@gnu.org>
1171 Fix line numbers in #line commands.
1173 1995-12-27 Richard Stallman <rms@gnu.org>
1175 * src/bison.s1 (YYPARSE_PARAM_DECL):
1176 In C++, make it always null.
1177 (YYPARSE_PARAM_ARG): New macro.
1178 (yyparse): Use YYPARSE_PARAM_ARG.
1180 1995-12-27 Richard Stallman <rms@gnu.org>
1182 * bison.simple (YYPARSE_PARAM_DECL):
1183 In C++, make it always null.
1184 (YYPARSE_PARAM_ARG): New macro.
1185 (yyparse): Use YYPARSE_PARAM_ARG.
1187 1995-11-29 Richard Stallman <rms@gnu.org>
1189 * doc/bison.texinfo:
1190 Describe literal string tokens, %raw, %no_lines, %token_table.
1192 1995-11-29 Daniel Hagerty <hag@gnu.org>
1194 * doc/bison.texinfo: Fixed update date
1196 1995-10-16 Richard Stallman <rms@gnu.org>
1198 * src/version.c: Version 1.25.
1200 1995-10-16 Richard Stallman <rms@gnu.org>
1202 * NEWS: *** empty log message ***
1204 1995-10-16 Richard Stallman <rms@gnu.org>
1206 * doc/bison.1, doc/bison.rnh:
1209 1995-10-15 Richard Stallman <rms@gnu.org>
1211 * src/vmsgetargs.c, src/getargs.c:
1212 Added -n, -k, and -raw switches.
1213 (noparserflag, toknumflag, rawtoknumflag): New variables.
1215 * src/symtab.h (SALIAS):
1216 New #define for adding aliases to %token.
1217 (struct bucket): Added `alias' field.
1219 * src/reduce.c (reduce_grammar):
1220 Revise error message.
1221 (print_notices): Remove final `.' from error message.
1223 * src/reader.c (reader_output_yylsp):
1225 (readgram): Use `#if 0' around code that accepted %command
1226 inside grammar rules: The documentation doesn't allow it,
1227 and it will fail since the %command processors scan for the next %.
1228 (parse_token_decl): Extended the %token
1229 declaration to allow a multi-character symbol as an alias.
1230 (parse_thong_decl): New function.
1231 (read_declarations): Added %thong declarations.
1232 (read_declarations): Handle NOOP to deal with allowing
1233 % declarations as another means to specify the flags.
1234 (readgram): Allow %prec prior to semantics embedded in a rule.
1235 (skip_to_char, read_declarations, copy_definition)
1236 (parse_token_decl, parse_start_decl, parse_type_decl)
1237 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1238 (get_type_name, copy_guard, copy_action, readgram)
1239 (get_type, packsymbols): Revised most error messages.
1240 Changed `fatal' to `warnxxx' to avoid aborting for error.
1241 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1242 (read_declarations): Improve the error message for
1243 an invalid character. Do not abort.
1244 (read_declarations, copy_guard, copy_action): Use
1245 printable_version to avoid unprintable characters in printed output.
1246 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1247 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1248 Allow the type of a non-terminal can be given
1249 more than once, as long as all specifications give the same type.
1252 (output_headers, output_trailers, output, output_gram)
1253 (output_rule_data): Implement noparserflag variable.
1254 Implement toknumflag variable.
1255 (output): Call reader_output_yylsp to output LTYPESTR.
1257 * src/main.c (main):
1258 If reader sees an error, don't process the grammar.
1259 (fatals): Updated to not use VARARGS1.
1260 (printable_version, int_to_string, warn, warni, warns, warnss)
1261 (warnsss): New error reporting functions. Avoid abort for error.
1264 Added THONG and NOOP for alias processing.
1265 Added SETOPT for the new code that allows setting options with %flags.
1268 Include getopt.h. Add some extern decls.
1269 (safegetc): New function to deal with EOF gracefully.
1270 (literalchar); new function to deal with reading \ escapes.
1271 (lex): Use literalchar.
1272 (lex): Implemented "..." tokens.
1273 (literalchar, lex, parse_percent_token): Made tokenbuffer
1274 always contain the token. This includes growing the token
1275 buffer while reading an integer.
1276 (parse_percent_token): Replaced if-else statement with percent_table.
1277 (parse_percent_token): Added % declarations as another
1278 way to specify the flags -n, -l, and -r. Also added hooks for
1279 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1280 major changes to files.c.
1281 (lex) Retain in the incoming stream a character following
1283 (skip_white_space, lex): Revised most error messages
1284 and changed fatal to warn to avoid aborting.
1285 (percent_table): Added %thong declarations.
1287 * src/gram.h: Comment changes.
1289 * src/files.c (openfiles, open_extra_files, done):
1291 and actfile file. Handle noparserflag. Both for -n switch.
1293 * src/conflicts.c (resolve_sr_conflict):
1294 Remove use of alloca.
1296 1995-06-01 Jim Meyering <meyering@gnu.org>
1298 * doc/bison.texinfo: *** empty log message ***
1300 1995-05-06 Richard Stallman <rms@gnu.org>
1302 * src/bison.s1: Comment change.
1304 1995-05-06 Richard Stallman <rms@gnu.org>
1306 * bison.simple: Comment change.
1308 1995-05-03 Richard Stallman <rms@gnu.org>
1310 * src/version.c: Version now 1.24.
1312 * src/bison.s1: Change distribution terms.
1314 * src/version.c: Version now 1.23.
1316 1995-05-03 Richard Stallman <rms@gnu.org>
1318 * doc/bison.texinfo:
1319 Rewrite "Conditions for Using Bison".
1320 Update version to 1.24.
1322 1995-05-03 Richard Stallman <rms@gnu.org>
1324 * bison.simple: Change distribution terms.
1326 1995-02-23 Richard Stallman <rms@gnu.org>
1328 * src/files.c: Test __VMS_POSIX as well as VMS.
1330 1995-02-14 Jim Meyering <meyering@gnu.org>
1332 * src/bison.s1 (__yy_memcpy):
1333 Renamed from __yy_bcopy to avoid
1334 confusion. Reverse FROM and TO arguments to be consistent with
1337 1995-02-14 Jim Meyering <meyering@gnu.org>
1339 * bison.simple (__yy_memcpy):
1340 Renamed from __yy_bcopy to avoid
1341 confusion. Reverse FROM and TO arguments to be consistent with
1344 1994-11-10 David J. MacKenzie <djm@gnu.org>
1350 * Makefile.in (DISTFILES): Include NEWS.
1352 * Makefile.in (DISTFILES):
1353 Include install-sh, not install.sh.
1355 * configure.in: Update to Autoconf v2 macro names.
1357 1994-10-05 David J. MacKenzie <djm@gnu.org>
1359 * Makefile.in: fix typo
1361 * Makefile.in (prefix, exec_prefix):
1362 Let configure set them.
1364 1994-09-28 David J. MacKenzie <djm@gnu.org>
1366 * Makefile.in: Set datadir to $(prefix)/share.
1368 1994-09-15 Richard Stallman <rms@gnu.org>
1371 Update copyright notice and GPL version.
1373 1994-09-15 Richard Stallman <rms@gnu.org>
1376 Update copyright notice and GPL version.
1378 1994-07-12 Richard Stallman <rms@gnu.org>
1380 * src/reduce.c, src/reader.c:
1383 1994-05-05 David J. MacKenzie <djm@gnu.org>
1385 * Makefile.in: entered into RCS
1387 1994-03-26 Richard Stallman <rms@gnu.org>
1389 * src/bison.s1: entered into RCS
1391 1994-03-26 Richard Stallman <rms@gnu.org>
1393 * bison.simple: entered into RCS
1395 1994-03-25 Richard Stallman <rms@gnu.org>
1397 * src/main.c: entered into RCS
1399 1994-03-24 Richard Stallman <rms@gnu.org>
1401 * src/conflicts.c: entered into RCS
1403 1994-01-02 Richard Stallman <rms@gnu.org>
1405 * Makefile.in: *** empty log message ***
1407 1993-11-21 Richard Stallman <rms@gnu.org>
1409 * src/bison.s1: *** empty log message ***
1411 1993-11-21 Richard Stallman <rms@gnu.org>
1413 * doc/bison.texinfo: entered into RCS
1415 * doc/bison.texinfo: *** empty log message ***
1417 1993-11-21 Richard Stallman <rms@gnu.org>
1419 * bison.simple: *** empty log message ***
1421 1993-10-25 David J. MacKenzie <djm@gnu.org>
1423 * doc/bison.texinfo: *** empty log message ***
1425 1993-10-19 Richard Stallman <rms@gnu.org>
1427 * src/bison.s1: *** empty log message ***
1429 1993-10-19 Richard Stallman <rms@gnu.org>
1431 * bison.simple: *** empty log message ***
1433 1993-10-14 Richard Stallman <rms@gnu.org>
1435 * src/bison.s1: *** empty log message ***
1437 1993-10-14 Richard Stallman <rms@gnu.org>
1439 * bison.simple: *** empty log message ***
1441 1993-09-14 David J. MacKenzie <djm@gnu.org>
1443 * doc/bison.texinfo: *** empty log message ***
1445 1993-09-13 Noah Friedman <friedman@gnu.org>
1447 * Makefile.in: *** empty log message ***
1449 1993-09-10 Richard Stallman <rms@gnu.org>
1451 * src/conflicts.c: *** empty log message ***
1453 * src/system.h: entered into RCS
1455 1993-09-10 Richard Stallman <rms@gnu.org>
1457 * doc/bison.1: entered into RCS
1459 1993-09-06 Noah Friedman <friedman@gnu.org>
1461 * src/version.c: entered into RCS
1463 1993-09-06 Noah Friedman <friedman@gnu.org>
1465 * Makefile.in: *** empty log message ***
1467 1993-07-30 David J. MacKenzie <djm@gnu.org>
1469 * Makefile.in: *** empty log message ***
1471 1993-07-24 Richard Stallman <rms@gnu.org>
1473 * src/bison.s1: *** empty log message ***
1475 1993-07-24 Richard Stallman <rms@gnu.org>
1477 * bison.simple: *** empty log message ***
1479 1993-07-08 David J. MacKenzie <djm@gnu.org>
1481 * Makefile.in: *** empty log message ***
1483 1993-07-04 Richard Stallman <rms@gnu.org>
1485 * src/bison.s1: *** empty log message ***
1487 1993-07-04 Richard Stallman <rms@gnu.org>
1489 * bison.simple: *** empty log message ***
1491 1993-06-26 David J. MacKenzie <djm@gnu.org>
1493 * src/getargs.c: entered into RCS
1495 1993-06-26 David J. MacKenzie <djm@gnu.org>
1497 * doc/bison.texinfo: *** empty log message ***
1499 * doc/bison.1: New file.
1501 1993-06-25 Richard Stallman <rms@gnu.org>
1503 * src/getargs.c: New file.
1505 1993-06-16 Richard Stallman <rms@gnu.org>
1507 * src/bison.s1: *** empty log message ***
1509 1993-06-16 Richard Stallman <rms@gnu.org>
1511 * bison.simple: *** empty log message ***
1513 1993-06-03 Richard Stallman <rms@gnu.org>
1515 * src/bison.s1: New file.
1517 1993-06-03 Richard Stallman <rms@gnu.org>
1519 * doc/bison.texinfo: *** empty log message ***
1521 1993-06-03 Richard Stallman <rms@gnu.org>
1523 * bison.simple: New file.
1525 1993-05-19 Richard Stallman <rms@gnu.org>
1527 * doc/bison.texinfo: New file.
1529 1993-05-07 Noah Friedman <friedman@gnu.org>
1531 * Makefile.in: *** empty log message ***
1533 1993-04-28 Noah Friedman <friedman@gnu.org>
1535 * src/reader.c: *** empty log message ***
1537 1993-04-23 Noah Friedman <friedman@gnu.org>
1539 * src/alloc.h: entered into RCS
1541 1993-04-20 David J. MacKenzie <djm@gnu.org>
1543 * src/version.c: *** empty log message ***
1545 * src/files.c, src/allocate.c:
1548 * src/reader.c: *** empty log message ***
1550 * src/lex.c: entered into RCS
1552 * src/conflicts.c: New file.
1554 * src/symtab.c: entered into RCS
1556 * src/alloc.h: New file.
1558 * src/LR0.c: entered into RCS
1560 1993-04-18 Noah Friedman <friedman@gnu.org>
1562 * src/reader.c: New file.
1564 * src/version.c: *** empty log message ***
1566 1993-04-18 Noah Friedman <friedman@gnu.org>
1568 * Makefile.in: *** empty log message ***
1570 1993-04-17 Noah Friedman <friedman@gnu.org>
1572 * Makefile.in: *** empty log message ***
1574 1993-04-15 Richard Stallman <rms@gnu.org>
1576 * src/main.c, src/files.c:
1579 1993-04-15 Noah Friedman <friedman@gnu.org>
1581 * configure.in: entered into RCS
1583 * configure.in: *** empty log message ***
1585 * configure.in: New file.
1587 1993-04-14 Richard Stallman <rms@gnu.org>
1589 * Makefile.in: New file.
1591 1993-04-13 Richard Stallman <rms@gnu.org>
1593 * src/version.c: New file.
1595 1993-03-25 Richard Stallman <rms@gnu.org>
1597 * src/output.c: entered into RCS
1599 1992-09-25 Richard Stallman <rms@gnu.org>
1601 * configure.bat: entered into RCS
1603 1992-06-22 Richard Stallman <rms@gnu.org>
1605 * src/vmsgetargs.c: entered into RCS
1607 1992-06-22 Richard Stallman <rms@gnu.org>
1609 * doc/bison.rnh: entered into RCS
1611 1992-04-20 David J. MacKenzie <djm@gnu.org>
1613 * README: entered into RCS
1615 1992-01-22 Richard Stallman <rms@gnu.org>
1617 * src/machine.h: entered into RCS
1619 1991-12-21 Richard Stallman <rms@gnu.org>
1621 * src/lalr.c, src/closure.c:
1624 1991-12-20 Richard Stallman <rms@gnu.org>
1626 * src/state.h: entered into RCS
1628 1991-12-18 Richard Stallman <rms@gnu.org>
1630 * src/print.c, src/nullable.c, src/derives.c:
1633 1991-11-03 David J. MacKenzie <djm@gnu.org>
1635 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1638 1988-09-09 Richard Stallman <rms@gnu.org>
1640 * src/bison.hairy: entered into RCS
1642 1987-12-16 Richard Stallman <rms@gnu.org>
1644 * REFERENCES: entered into RCS