1 2000-10-02 Akim Demaille <akim@epita.fr>
3 Also test parse error messages, including with YYERROR_VERBOSE.
5 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
7 Use it to check the computations.
8 Use it to check `nonassoc' is honored.
9 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
11 (_AT_CHECK_CALC): Adjust to this option.
12 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
15 2000-10-02 Akim Demaille <akim@epita.fr>
17 Test also `--verbose', `--defines' and `--name-prefix'. Testing
18 the latter demonstrates a flaw in the handling of non debugging
19 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20 was used in order to simplify:
36 unfortunately this leads to a CPP conflict when
37 `--name-prefix=foo' is used since it produces `#define yydebug
40 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
41 (YYDPRINTF): New macro.
43 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
45 Also test `--verbose', `--defines' and `--name-prefix'.
48 2000-10-02 Akim Demaille <akim@epita.fr>
50 Improve the readability of the produced parsers.
52 * src/bison.s1: Formatting changes.
53 Improve the comment related to the `$' mark.
54 (yydefault): Don't fall through to `yyresume': `goto' there.
55 * src/output.c (output_parser): When the `$' is met, skip the end
57 New variable, `number_of_dollar_signs', to check there's exactly
58 one `$' in the parser skeleton.
61 2000-10-02 Akim Demaille <akim@epita.fr>
63 * lib/xstrdup.c: New file, from the fileutils.
64 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
65 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
66 instead of strlen + xmalloc + strcpy.
67 * src/symtab.c (copys): Remove, use xstrdup instead.
70 2000-10-02 Akim Demaille <akim@epita.fr>
72 * src/gram.h (associativity): New enum type which replaces the
73 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
74 `right_assoc', `left_assoc' and `non_assoc'.
75 Adjust all dependencies.
76 * src/reader.c: Formatting changes.
77 (LTYPESTR): Don't define it, use it as a literal in
78 `reader_output_yylsp'.
79 * src/symtab.h (symbol_class): New enum type which replaces the
80 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
81 `sunknown', `stoken and `snterm'.
83 2000-10-02 Akim Demaille <akim@epita.fr>
85 * src/getargs.c (fixed_outfiles): Rename as...
86 (yaccflag): for consistency and accuracy.
90 2000-10-02 Akim Demaille <akim@epita.fr>
92 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
93 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
94 difficult and introduced a lot of core dump. It turns out that
95 Bison used an implementation of `xmalloc' based on `calloc', and
96 at various places it does depend upon the initialization to 0. I
97 have not tried to isolate the pertinent places, and all the former
98 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
99 someone should address this issue.
101 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
102 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
105 * src/warshall.h: New file.
108 2000-10-02 Akim Demaille <akim@epita.fr>
110 Various anti-`extern in *.c' changes.
112 * src/system.h: Include `assert.h'.
115 2000-10-02 Akim Demaille <akim@epita.fr>
117 * src/state.h (nstates, final_state, first_state, first_shift)
118 (first_reduction): Move their exportation from here...
119 * src/LR0.h: to here.
121 * src/getargs.c (statisticsflag): New variable.
122 Add support for `--statistics'.
125 Remove a lot of now useless `extern' statements in most files.
128 2000-10-02 Akim Demaille <akim@epita.fr>
130 * src/LR0.h: New file.
134 2000-10-02 Akim Demaille <akim@epita.fr>
136 * src/print.h: New file.
138 * src/print.c: Formatting and ordering changes.
139 (verbose, terse): Replace with...
140 (print_results): this new function.
144 2000-10-02 Akim Demaille <akim@epita.fr>
146 * src/conflicts.c (conflict_report): New function.
147 (conflict_log, verbose_conflict_log): Replace with...
148 (print_conflicts): this function.
150 * src/conflicts.h: New file.
151 Propagate its inclusion.
154 2000-10-02 Akim Demaille <akim@epita.fr>
156 * src/nullable.h: New file.
157 Propagate its inclusion.
158 * src/nullable.c: Formatting changes.
161 2000-10-02 Akim Demaille <akim@epita.fr>
163 * src/reduce.h: New file.
164 Propagate its inclusion.
165 * src/reduce.c: Topological sort and other formatting changes.
166 (bool, TRUE, FALSE): Move their definition to...
167 * src/system.h: here.
170 2000-10-02 Akim Demaille <akim@epita.fr>
172 * src/files.c: Formatting changes.
173 (tryopen, tryclose, openfiles): Rename as...
174 (xfopen, xfclose, open_files): this.
175 (stringappend): static.
176 * src/files.h: Complete the list of exported symbols.
180 2000-10-02 Akim Demaille <akim@epita.fr>
182 * src/reader.h: New file.
183 Propagate its use instead of tedious list of `extern' and
185 * src/reader.c: Formatting changes, topological sort,
189 2000-10-02 Akim Demaille <akim@epita.fr>
191 * src/lex.h: Prototype `lex.c' exported functions.
192 * src/reader.c: Adjust.
193 * src/lex.c: Formatting changes.
194 (safegetc): Rename as...
198 2000-10-02 Akim Demaille <akim@epita.fr>
200 * src/lalr.h: New file.
201 Propagate its inclusion instead of prototypes and `extern'.
202 * src/lalr.c: Formatting changes, topological sorting etc.
205 2000-10-02 Akim Demaille <akim@epita.fr>
207 * src/output.c (token_actions): Introduce a temporary array,
208 YYDEFACT, that makes it possible for this function to use
212 2000-10-02 Akim Demaille <akim@epita.fr>
214 `user_toknums' is output as a `short[]' in `output.c', while it is
215 defined as a `int[]' in `reader.c'. For consistency with the
216 other output tables, `user_toknums' is now defined as a table of
219 * src/reader.c (user_toknums): Be a short table instead of an int
223 Factor the short table outputs.
225 * src/output.c (output_short_table): New function.
226 * src/output.c (output_gram, output_stos, output_rule_data)
227 (output_base, output_table, output_check): Use it.
229 2000-10-02 Akim Demaille <akim@epita.fr>
231 * src/output.c (output): Topological sort of the functions, in
232 order to get rid of the `static' prototypes.
233 No longer use `register'.
234 * src/output.h: New file.
235 Propagate its inclusion in files explicitly prototyping functions
238 2000-09-21 Akim Demaille <akim@epita.fr>
240 * src/atgeneral.m4: Update from Autoconf.
242 2000-09-21 Akim Demaille <akim@epita.fr>
244 * src/closure.h: New file.
245 * src/closure.c: Formatting changes, topological sort over the
246 functions, use of closure.h.
247 (initialize_closure, finalize_closure): Rename as...
248 (new_closure, free_closure): these. Adjust dependencies.
249 * src/LR0.c: Formatting changes, topological sort, use of
251 (initialize_states): Rename as...
253 * src/Makefile.am (noinst_HEADERS): Adjust.
255 2000-09-20 Akim Demaille <akim@epita.fr>
257 * src/acconfig.h: Don't protect config.h against multiple
260 * src/system.h: Define PARAMS.
261 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
262 purpose of config.h. system.h must not try to fix wrong
263 definitions in config.h.
265 2000-09-20 Akim Demaille <akim@epita.fr>
267 * src/derives.h: New file.
268 * src/main.c, src/derives.h: Use it.
270 * src/Makefile.am (noinst_HEADERS): Adjust.
272 2000-09-20 Akim Demaille <akim@epita.fr>
274 * tests/atgeneral.m4: Update from Autoconf.
275 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
276 (AT_CHECK_CALC): New macros.
277 Use these macros to test bison with options `', `--raw',
278 `--debug', `--yacc', `--yacc --debug'.
280 2000-09-19 Akim Demaille <akim@epita.fr>
282 * src/output.c: Formatting changes.
283 * src/machine.h: Remove, leaving its contents in...
284 * src/system.h: here.
286 Adjust all dependencies on stdio.h and machine.h.
287 * src/getargs.h: New file.
288 Let all `extern' declarations about getargs.c be replaced with
289 inclusion of `getargs.h'.
290 * src/Makefile.am (noinst_HEADERS): Adjust.
292 * tests/calc.m4 (yyin): Be initialized in main, not on the global
294 (yyerror): Returns void, not int.
295 * doc/bison.texinfo: Formatting changes.
297 2000-09-19 Akim Demaille <akim@epita.fr>
299 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
302 2000-09-18 Akim Demaille <akim@epita.fr>
304 * configure.in: Append WARNING_CFLAGS to CFLAGS.
305 * src/Makefile.am (INCLUDES): Don't.
306 Be ready to fetch headers in lib/.
308 2000-09-18 Akim Demaille <akim@epita.fr>
310 * doc/bison.texinfo: Update the copyright.
311 ANSIfy and GNUify the examples.
314 2000-09-18 Akim Demaille <akim@epita.fr>
316 First set of tests: use the `calc' example from the documentation.
318 * src/bison.s1 (yyparse): Condition the code using `yytname' which
319 is defined only when YYDEBUG is.
320 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
321 * src/files.c (tryopen, tryclose): Formatting changes.
322 Move to the top and be static.
323 * src/reader.c (read_signed_integer): Likewise.
324 * tests/calc.m4: New file.
325 * Makefile.am, suite.m4: Adjust.
326 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
328 2000-09-18 Akim Demaille <akim@epita.fr>
330 Add support for an Autotest test suite for Bison.
332 * m4/m4.m4, m4/atconfig.m4: New files.
333 * m4/Makefile.am (EXTRA_DIST): Adjust.
334 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
336 * src/getargs.c: Display a more standard --version message.
337 * src/reader.c (reader): Formatting changes.
338 No longer depend upon VERSION_STRING.
339 * configure.in: No longer use `dnl'.
340 Set up the test suite and the new directory `tests/.
341 (VERSION_STRING): Remove.
343 2000-04-14 Akim Demaille <akim@epita.fr>
345 * src/reader.c (copy_comment2): New function, same as former
346 `copy_comment', but outputs into two FILE *.
347 (copy_comment): Use it.
348 (parse_union_decl): Use it.
349 (get_type, parse_start_decl): Use the same `invalid' message.
350 (parse_start_decl, parse_union_decl): Use the same `multiple'
352 (parse_union_decl, copy_guard, copy_action): Use the same
354 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
356 2000-03-31 Akim Demaille <akim@epita.fr>
358 * src/files.c (tryopen, tryclose): Move to the top.
361 2000-03-31 Akim Demaille <akim@epita.fr>
363 * src/main.c (main): Don't call `done', exit does it.
365 2000-03-31 Akim Demaille <akim@epita.fr>
367 * allocate.c: s/return (foo)/return foo/.
370 * output.c: Likewise.
371 * reader.c: Likewise.
372 * symtab.c: Likewise.
373 * vmsgetargs.c: Likewise.
375 2000-03-31 Akim Demaille <akim@epita.fr>
377 Clean up the error reporting functions.
379 * src/report.c: New file.
380 * src/report.h: Likewise.
381 * src/Makefile.am: Adjust.
382 * m4/error.m4: New file.
383 * m4/Makefile.am: Adjust.
384 * configure.in (jm_PREREQ_ERROR): Call it.
385 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
387 (fatal, fatals): Remove. All callers use complain.c::fatal.
388 (warn, warni, warns, warnss, warnss): Remove. All callers use
389 complain.c::complain.
390 (toomany): Remove, use fatal instead.
391 * src/files.c (done): No argument, use complain_message_count.
392 * src/main.c (main): Register `done' to `atexit'.
394 * src/getargs.c (usage): More `fputs', less `fprintf'.
396 2000-03-28 Akim Demaille <akim@epita.fr>
398 * lib/: New directory.
399 * Makefile.am (SUBDIRS): Adjust.
400 * configure.in: Adjust.
401 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
403 * src/alloca.c: Moved to lib/.
404 * src/getopt.c: Likewise.
405 * src/getopt1.c: Likewise.
406 * src/getopt.h: Likewise.
407 * src/ansi2knr.c: Likewise.
408 * src/ansi2knr.1: Likewise.
409 * src/Makefile.am: Adjust.
410 * lib/Makefile.am: New file.
412 2000-03-28 Akim Demaille <akim@epita.fr>
414 * src/getargs.c (usage): Refresh the help message.
416 2000-03-17 Akim Demaille <akim@epita.fr>
418 * src/getopt1.c: Updated from textutils 2.0e
419 * src/getopt.c: Likewise.
420 * src/getopt.h: Likewise.
422 2000-03-17 Akim Demaille <akim@epita.fr>
424 * src/Makefile.am (bison.simple): Fix the awk program: quote only
425 the file name, not the whole `#line LINE FILE'.
427 2000-03-17 Akim Demaille <akim@epita.fr>
429 On syntax errors, report the token on which we choked.
431 * src/bison.s1 (yyparse): In the label yyerrlab, when
432 YYERROR_VERBOSE, add yychar in msg.
434 2000-03-17 Akim Demaille <akim@epita.fr>
436 * src/reader.c (copy_at): New function.
437 (copy_guard): Use it.
438 (copy_action): Use it.
440 2000-03-17 Akim Demaille <akim@epita.fr>
442 Be kind to translators, save some useless translations.
444 * src/main.c (banner): New function.
445 (fatal_banner): Use it.
446 (warn_banner): Use it.
448 2000-03-17 Akim Demaille <akim@epita.fr>
450 * src/reader.c (copy_definition): Use copy_string and
451 copy_comment. Removed now unused `match', `ended',
453 (copy_comment, copy_string): Moved, to be visible from
456 2000-03-17 Akim Demaille <akim@epita.fr>
458 * src/reader.c (copy_string): Declare `static inline'. No
459 problems with inline, since it is checked by configure.
460 (copy_comment): Likewise.
462 2000-03-17 Akim Demaille <akim@epita.fr>
464 * src/reader.c (packsymbols): Formatting changes.
466 2000-03-17 Akim Demaille <akim@epita.fr>
468 * src/reader.c (copy_comment): New function, factored out from:
469 (copy_action): Use it. Removed now unused `match', `ended',
471 (copy_guard): Likewise.
473 2000-03-17 Akim Demaille <akim@epita.fr>
475 * src/reader.c (copy_string): New function, factored out from:
476 (copy_action): Use it.
477 (copy_guard): Likewise.
479 2000-03-17 Akim Demaille <akim@epita.fr>
481 Change the handling of @s so that they behave exactly like $s.
482 There is now a pseudo variable @$ (readble and writable), location
483 of the lhs of the rule (by default ranging from the location of
484 the first symbol of the rhs, to the location of the last symbol,
485 or, if the rhs is empty, YYLLOC).
487 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
489 (yyparse): When providing a default semantic action, provide a
490 default location action.
491 (after the $): No longer change `*YYLSP', just stack YYLOC the
492 same way you stack YYVAL.
493 * src/reader.c (read_declarations): Use warns.
494 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
495 (copy_action, case '@'): Likewise.
496 Use a standard error message, to save useless work from
499 2000-03-17 Akim Demaille <akim@epita.fr>
501 * src/bison.s1: Formatting and cosmetics changes.
502 * src/reader.c: Likewise.
503 Update the Copyright notice.
505 2000-03-17 Akim Demaille <akim@epita.fr>
507 * src/bison.s1 (#line): All set to `#line' only, since the
508 Makefile now handles them.
510 2000-03-16 Akim Demaille <akim@epita.fr>
512 * src/output.c (output_rule_data): Output the documentation of
514 (Copyright notice): Update.
517 2000-03-16 Akim Demaille <akim@epita.fr>
519 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
520 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
521 One `#if YYDEBUG' remains, since it uses variables which are
522 defined only if `YYDEBUG != 0'.
524 2000-03-16 Akim Demaille <akim@epita.fr>
526 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
527 and related variables so that the similarities are highlighted.
529 2000-03-16 Akim Demaille <akim@epita.fr>
531 * src/bison.s1: Properly indent CPP directives.
533 2000-03-16 Akim Demaille <akim@epita.fr>
535 * src/bison.s1: Properly indent the `alloca' CPP section.
537 2000-03-16 Akim Demaille <akim@epita.fr>
539 Do not hard code values of directories in `configure.in'.
540 Update the `configure' tool chain.
542 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
544 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
545 (AC_OUTPUT): Add m4/Makefile.
546 Bump to bison 1.28a, 1.29 has never been released.
547 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
548 handled via src/Makefile.am.
549 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
550 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
552 * Makefile.am (SUBDIRS): Add m4.
553 (ACLOCAL_AM_FLAGS): New variable.
554 (AUTOMAKE_OPTIONS): Add check-news.
555 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
556 the proper line number and file name.
557 (DEFS): Propagate the location of bison library files and of the
559 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
561 * acinclude.m4: Remove, replaced by the directory m4.
562 * m4/Makefile.am (EXTRA_DIST): New variable.
563 * m4/gettext.m4: New file, from the fileutils.
564 * m4/lcmessage.m4: Likewise
565 * m4/progtest.m4: Likewise.
566 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
568 2000-03-10 Akim Demaille <akim@epita.fr>
571 Formatting changes of various comments.
572 Respect the GNU coding standards at various places.
573 Don't use `_()' when no translation is needed.
575 1999-12-13 Jesse Thilo <jthilo@gnu.org>
578 OS/2 honors TMPDIR environment variable.
580 1999-12-13 Jesse Thilo <jthilo@gnu.org>
582 * doc/bison.texinfo: Tweaked spelling and grammar.
584 Removed reference to price of printed copy.
585 Mention BISON_SIMPLE and BISON_HAIRY.
587 1999-12-13 Jesse Thilo <jthilo@gnu.org>
589 * configure.in, NEWS:
592 1999-10-27 Jesse Thilo <jthilo@gnu.org>
594 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
595 Added reference card.
597 1999-07-26 Jesse Thilo <jthilo@gnu.org>
599 * po/ru.po: Added Russian translation.
601 1999-07-26 Jesse Thilo <jthilo@gnu.org>
603 * configure.in: Added Russian translation.
605 1999-07-06 Jesse Thilo <jthilo@gnu.org>
607 * configure.in, NEWS, README:
608 Released version 1.28.
610 1999-06-14 Jesse Thilo <jthilo@gnu.org>
613 Squashed redefinition warning on some systems.
615 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
616 Have configure build version string instead of relying on ANSI string
619 1999-06-14 Jesse Thilo <jthilo@gnu.org>
621 * po/POTFILES.in: Got rid of version.c.
623 1999-06-14 Jesse Thilo <jthilo@gnu.org>
625 * acconfig.h, configure.in:
626 Have configure build version string instead of relying on ANSI string
629 1999-06-08 Jesse Thilo <jthilo@gnu.org>
632 Dropped mention of `+' for long-named options.
634 1999-05-30 Jesse Thilo <jthilo@gnu.org>
636 * src/files.c: Added <unistd.h> for unlink().
638 * src/Makefile.am, src/system.h:
641 1999-05-30 Jesse Thilo <jthilo@gnu.org>
643 * README: Added a FAQ list.
645 * configure.in, acconfig.h:
648 1999-05-30 Jesse Thilo <jthilo@gnu.org>
650 * doc/FAQ, doc/Makefile.am:
653 1999-05-19 Jesse Thilo <jthilo@gnu.org>
655 * src/alloc.h, src/symtab.h, src/version.c:
656 Protected inclusion of "config.h" with HAVE_CONFIG_H.
658 1999-04-18 Jesse Thilo <jthilo@gnu.org>
660 * src/.cvsignore, src/Makefile.am:
661 Reorganized: sources in `src', documentation in `doc'.
663 * src/lex.c (literalchar):
664 fixed the code for escaping double quotes (thanks
667 1999-04-18 Jesse Thilo <jthilo@gnu.org>
669 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
670 Adjusted paths to reflect directory reorganization.
672 1999-04-18 Jesse Thilo <jthilo@gnu.org>
674 * doc/.cvsignore, doc/Makefile.am:
675 Reorganized: sources in `src', documentation in `doc'.
677 1999-04-18 Jesse Thilo <jthilo@gnu.org>
680 Updated AC_INIT file to reflect directory reorganization.
682 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
683 Reorganized: sources in `src', documentation in `doc'.
685 1999-04-13 Jesse Thilo <jthilo@gnu.org>
688 Don't declare calloc() and realloc() if not necessary.
690 1999-04-13 Jesse Thilo <jthilo@gnu.org>
692 * configure.in, acconfig.h, acinclude.m4:
693 Don't declare calloc() and realloc() if not necessary.
695 1999-03-23 Jesse Thilo <jthilo@gnu.org>
697 * po/.cvsignore: Added i18n support.
699 1999-03-23 Jesse Thilo <jthilo@gnu.org>
701 * acconfig.h, configure.in, Makefile.am:
704 1999-03-22 Jesse Thilo <jthilo@gnu.org>
706 * src/bison.s1: Fixed #line numbers.
708 1999-03-15 Jesse Thilo <jthilo@gnu.org>
710 * po/es.po, po/fr.po, po/nl.po, po/de.po:
711 Added PO files from Translation Project.
713 1999-03-03 Jesse Thilo <jthilo@gnu.org>
716 Added support for non-ANSI compilers (ansi2knr).
718 1999-02-16 Jesse Thilo <jthilo@gnu.org>
720 * configure.in: Bumped version number to 1.27.
723 Added `bison.simple' to list of files removed by `make distclean'.
725 1999-02-12 Jesse Thilo <jthilo@gnu.org>
727 * src/files.c, src/files.h:
728 Defined locations of parser files in config.h instead of Makefile.
730 1999-02-12 Jesse Thilo <jthilo@gnu.org>
732 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
733 Defined locations of parser files in config.h instead of Makefile.
735 1999-02-09 Jesse Thilo <jthilo@gnu.org>
738 Removed inappropriate use of $< macro.
740 1999-02-05 Jesse Thilo <jthilo@gnu.org>
742 * po/Makefile.in.in, po/POTFILES.in:
743 Add `po' directory skeleton.
745 1999-01-27 Jesse Thilo <jthilo@gnu.org>
747 * README: Document help-bison list.
749 * configure.in: Add check for mkstemp().
751 1999-01-20 Jesse Thilo <jthilo@gnu.org>
753 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
754 Hush a few compiler warnings.
757 Add tryclose(), which verifies that fclose was successful.
758 Hush a couple of compiler warnings.
760 1999-01-20 Jesse Thilo <jthilo@gnu.org>
762 * Makefile.am, OChangeLog:
763 ChangeLog is now automatically generated. Include the old version as
766 1999-01-14 Jesse Thilo <jthilo@gnu.org>
768 * 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:
771 1999-01-14 Jesse Thilo <jthilo@gnu.org>
773 * doc/bison.texinfo: Fix formatting glitch.
775 * doc/bison.texinfo: Update FSF address.
777 1999-01-14 Jesse Thilo <jthilo@gnu.org>
779 * acconfig.h: Update FSF address.
781 1999-01-08 Jesse Thilo <jthilo@gnu.org>
784 Don't define PACKAGE here, since config.h defines it.
786 1998-12-30 Jesse Thilo <jthilo@gnu.org>
788 * src/reader.c: Update copyright date.
791 Ditch sprintf to statically-sized buffers in fatal/warn functions in
792 favor of output directly to stderr (avoids buffer overruns).
794 * src/reader.c: Some checks for premature EOF.
796 * 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:
797 Use prototypes if the compiler understands them.
799 * src/files.c: Honor TMPDIR on Unix hosts.
800 Use prototypes if the compiler understands them.
803 Fix a couple of buffer overrun bugs.
804 Use prototypes if the compiler understands them.
806 * src/system.h: Include unistd.h and ctype.h.
807 Use #ifdef instead of #if for NLS symbols.
809 1998-12-30 Jesse Thilo <jthilo@gnu.org>
812 Delete comment "consider using @set for edition number, etc..." since
815 1998-12-30 Jesse Thilo <jthilo@gnu.org>
818 Use prototypes if the compiler understands them.
820 * NEWS: Document 1.26 highlights.
822 * Makefile.am: Require Automake 1.3 or later.
825 Use prototypes if the compiler understands them.
827 1998-12-29 Jesse Thilo <jthilo@gnu.org>
830 Use VERSION symbol from automake for version number.
832 1998-12-29 Jesse Thilo <jthilo@gnu.org>
834 * acconfig.h, configure.in, version.cin:
835 Use VERSION symbol from automake for version number.
837 1998-11-28 Jesse Thilo <jthilo@gnu.org>
840 Distribute original version of simple parser (bison.s1), not built
841 version (bison.simple).
843 1998-11-28 Jesse Thilo <jthilo@gnu.org>
845 * doc/bison.texinfo: Add info dir entry.
848 Let automake put version number into documentation.
850 1998-11-26 Jesse Thilo <jthilo@gnu.org>
852 * src/bison.cld, src/build.com, src/vmshlp.mar:
853 Add non-RCS files from /gd/gnu/bison.
855 1998-11-26 Jesse Thilo <jthilo@gnu.org>
858 Document the BISON_HAIRY and BISON_SIMPLE variables.
860 1998-11-25 Jesse Thilo <jthilo@gnu.org>
862 * src/version.c: Build version.c automatically.
865 Fix token numbering (used to start at 258, not 257).
867 * src/system.h: Include config.h.
869 * src/getargs.c: Update bug report address.
871 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
872 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
874 1998-11-25 Jesse Thilo <jthilo@gnu.org>
877 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
879 * configure.in, version.cin:
880 Build version.c automatically.
882 * AUTHORS: Add AUTHORS file.
884 * README: Update bug report address.
887 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
889 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
892 1998-11-25 Jesse Thilo <jthilo@gnu.org>
894 * doc/bison.texinfo: Clean up some formatting.
896 1998-05-05 Richard Stallman <rms@gnu.org>
899 Explain better why to make a pure parser.
901 1998-01-05 Richard Stallman <rms@gnu.org>
903 * src/files.c (openfiles):
904 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
905 find a temporary directory, if possible. Do not unlink files while
908 1997-08-25 Richard Stallman <rms@gnu.org>
910 * src/reader.c (stack_offset;):
911 Change some warni to warns.
913 * src/lex.c (literalchar): Use warns, not warni.
915 1997-06-28 Richard Stallman <rms@gnu.org>
917 * src/bison.s1: Add a Bison version comment.
919 * src/main.c (fatal, warn, berror):
922 1997-06-28 Richard Stallman <rms@gnu.org>
924 * Makefile.in (bison_version): New variable.
925 (dist): Use that variable.
926 (bison.s1): Substitute the Bison version into bison.simple.
928 * bison.simple: Add a Bison version comment.
930 1997-06-18 Richard Stallman <rms@gnu.org>
932 * src/main.c (fatal, warn, berror):
933 Make error messages standard.
934 (toomany): Improve error message text.
936 * 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:
937 new.h renamed to alloc.h.
939 1997-06-18 Richard Stallman <rms@gnu.org>
941 * Makefile.in: new.h renamed to alloc.h.
943 1997-05-24 Richard Stallman <rms@gnu.org>
945 * src/lex.c (literalchar):
946 Fix the code for escaping \, " and '.
948 (lex): Avoid trouble when there are many chars
949 to discard in a char literal with just several chars in it.
951 1997-05-17 Richard Stallman <rms@gnu.org>
954 Use malloc, if using alloca is troublesome.
955 (YYSTACK_USE_ALLOCA): New flag macro.
956 Define it for some systems and compilers.
957 (YYSTACK_ALLOC): New macro.
958 (yyparse): Use YYSTACK_ALLOC to allocate stack.
959 If it was malloc'd, free it.
961 1997-05-17 Richard Stallman <rms@gnu.org>
964 Use malloc, if using alloca is troublesome.
965 (YYSTACK_USE_ALLOCA): New flag macro.
966 Define it for some systems and compilers.
967 (YYSTACK_ALLOC): New macro.
968 (yyparse): Use YYSTACK_ALLOC to allocate stack.
969 If it was malloc'd, free it.
971 1997-04-23 Richard Stallman <rms@gnu.org>
974 (alloca) [__hpux]: Always define as __builtin_alloca.
976 1997-04-23 Richard Stallman <rms@gnu.org>
979 (alloca) [__hpux]: Always define as __builtin_alloca.
981 1997-04-22 Richard Stallman <rms@gnu.org>
984 [__hpux]: Include alloca.h (right for HPUX 10)
985 instead of declaring alloca (right for HPUX 9).
987 * src/bison.s1 (__yy_memcpy):
988 Declare arg `count' as unsigned int.
989 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
991 1997-04-22 Richard Stallman <rms@gnu.org>
994 [__hpux]: Include alloca.h (right for HPUX 10)
995 instead of declaring alloca (right for HPUX 9).
997 * bison.simple (__yy_memcpy):
998 Declare arg `count' as unsigned int.
999 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1001 1997-01-03 Richard Stallman <rms@gnu.org>
1003 * src/allocate.c: [__STDC__ or _MSC_VER]:
1004 Declare calloc and realloc to return void *.
1006 1997-01-02 Richard Stallman <rms@gnu.org>
1009 [_MSC_VER]: Include stdlib.h and process.h.
1010 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1012 * src/main.c (main): Return FAILURE as a value.
1013 (printable_version): Declare arg as int, not char.
1015 1997-01-02 Richard Stallman <rms@gnu.org>
1017 * Makefile.in (dist):
1018 Explicitly check for symlinks, and copy them.
1020 1996-12-19 Richard Stallman <rms@gnu.org>
1023 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1025 1996-12-18 Paul Eggert <eggert@gnu.org>
1027 * src/bison.s1 (yyparse):
1028 If __GNUC__ and YYPARSE_PARAM are both defined,
1029 declare yyparse to have a void * argument.
1031 1996-12-18 Paul Eggert <eggert@gnu.org>
1033 * bison.simple (yyparse):
1034 If __GNUC__ and YYPARSE_PARAM are both defined,
1035 declare yyparse to have a void * argument.
1037 1996-12-17 Richard Stallman <rms@gnu.org>
1039 * src/reduce.c (nbits): Add some casts.
1041 1996-08-12 Richard Stallman <rms@gnu.org>
1043 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1045 1996-08-12 Richard Stallman <rms@gnu.org>
1047 * bison.simple: Test _MSDOS as well as _MSDOS_.
1049 1996-07-31 Richard Stallman <rms@gnu.org>
1052 [__sun && __i386]: Include alloca.h.
1054 1996-07-31 Richard Stallman <rms@gnu.org>
1057 [__sun && __i386]: Include alloca.h.
1059 1996-07-30 Richard Stallman <rms@gnu.org>
1061 * src/bison.s1: Comment change.
1063 * src/bison.s1: Test _MSDOS_, not MSDOS.
1065 1996-07-30 Richard Stallman <rms@gnu.org>
1067 * bison.simple: Comment change.
1069 * bison.simple: Test _MSDOS_, not MSDOS.
1071 1996-06-01 Richard Stallman <rms@gnu.org>
1073 * 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:
1074 Insert `_' macro around many string constants.
1077 Insert `_' macro around many string constants.
1079 (main): Call setlocale, bindtextdomain and textdomain.
1081 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1082 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1083 [ENABLE_NLS]: Include libintl.h.
1084 [ENABLE_NLS] (gettext): Define.
1085 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1086 (N_, PACKAGE, LOCALEDIR): New macros.
1088 1996-06-01 Richard Stallman <rms@gnu.org>
1090 * POTFILES.in: New file.
1092 * Makefile.in (allocate.o):
1093 Define target explicitly.
1095 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1096 (LDFLAGS): Set to @LDFLAGS@.
1097 (configure): Run autoconf only if preceding `cd' succeeds.
1098 (bison.s1): Redirect output to temporary file then move the
1099 temporary to the target, rather than redirecting directly to bison.s1.
1100 (clean): Remove config.status and config.log.
1101 (distclean): Don't remove config.status here.
1103 1996-05-12 Richard Stallman <rms@gnu.org>
1106 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1108 1996-05-12 Richard Stallman <rms@gnu.org>
1111 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1113 1996-05-11 Richard Stallman <rms@gnu.org>
1115 * src/bison.s1 (__yy_memcpy):
1116 Really reorder the args, as was supposedly done on Feb 14 1995.
1117 (yyparse): Calls changed accordingly.
1119 1996-05-11 Richard Stallman <rms@gnu.org>
1121 * Makefile.in (dist): Don't use $(srcdir).
1123 * bison.simple (__yy_memcpy):
1124 Really reorder the args, as was supposedly done on Feb 14 1995.
1125 (yyparse): Calls changed accordingly.
1127 1996-01-27 Richard Stallman <rms@gnu.org>
1129 * src/output.c (output_rule_data):
1130 Test YYERROR_VERBOSE in the conditional
1131 around the definition of ttyname.
1133 1995-12-29 Richard Stallman <rms@gnu.org>
1136 Fix line numbers in #line commands.
1138 1995-12-29 Richard Stallman <rms@gnu.org>
1141 Fix line numbers in #line commands.
1143 1995-12-27 Richard Stallman <rms@gnu.org>
1145 * src/bison.s1 (YYPARSE_PARAM_DECL):
1146 In C++, make it always null.
1147 (YYPARSE_PARAM_ARG): New macro.
1148 (yyparse): Use YYPARSE_PARAM_ARG.
1150 1995-12-27 Richard Stallman <rms@gnu.org>
1152 * bison.simple (YYPARSE_PARAM_DECL):
1153 In C++, make it always null.
1154 (YYPARSE_PARAM_ARG): New macro.
1155 (yyparse): Use YYPARSE_PARAM_ARG.
1157 1995-11-29 Richard Stallman <rms@gnu.org>
1159 * doc/bison.texinfo:
1160 Describe literal string tokens, %raw, %no_lines, %token_table.
1162 1995-11-29 Daniel Hagerty <hag@gnu.org>
1164 * doc/bison.texinfo: Fixed update date
1166 1995-10-16 Richard Stallman <rms@gnu.org>
1168 * src/version.c: Version 1.25.
1170 1995-10-16 Richard Stallman <rms@gnu.org>
1172 * NEWS: *** empty log message ***
1174 1995-10-16 Richard Stallman <rms@gnu.org>
1176 * doc/bison.1, doc/bison.rnh:
1179 1995-10-15 Richard Stallman <rms@gnu.org>
1181 * src/vmsgetargs.c, src/getargs.c:
1182 Added -n, -k, and -raw switches.
1183 (noparserflag, toknumflag, rawtoknumflag): New variables.
1185 * src/symtab.h (SALIAS):
1186 New #define for adding aliases to %token.
1187 (struct bucket): Added `alias' field.
1189 * src/reduce.c (reduce_grammar):
1190 Revise error message.
1191 (print_notices): Remove final `.' from error message.
1193 * src/reader.c (reader_output_yylsp):
1195 (readgram): Use `#if 0' around code that accepted %command
1196 inside grammar rules: The documentation doesn't allow it,
1197 and it will fail since the %command processors scan for the next %.
1198 (parse_token_decl): Extended the %token
1199 declaration to allow a multi-character symbol as an alias.
1200 (parse_thong_decl): New function.
1201 (read_declarations): Added %thong declarations.
1202 (read_declarations): Handle NOOP to deal with allowing
1203 % declarations as another means to specify the flags.
1204 (readgram): Allow %prec prior to semantics embedded in a rule.
1205 (skip_to_char, read_declarations, copy_definition)
1206 (parse_token_decl, parse_start_decl, parse_type_decl)
1207 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1208 (get_type_name, copy_guard, copy_action, readgram)
1209 (get_type, packsymbols): Revised most error messages.
1210 Changed `fatal' to `warnxxx' to avoid aborting for error.
1211 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1212 (read_declarations): Improve the error message for
1213 an invalid character. Do not abort.
1214 (read_declarations, copy_guard, copy_action): Use
1215 printable_version to avoid unprintable characters in printed output.
1216 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1217 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1218 Allow the type of a non-terminal can be given
1219 more than once, as long as all specifications give the same type.
1222 (output_headers, output_trailers, output, output_gram)
1223 (output_rule_data): Implement noparserflag variable.
1224 Implement toknumflag variable.
1225 (output): Call reader_output_yylsp to output LTYPESTR.
1227 * src/main.c (main):
1228 If reader sees an error, don't process the grammar.
1229 (fatals): Updated to not use VARARGS1.
1230 (printable_version, int_to_string, warn, warni, warns, warnss)
1231 (warnsss): New error reporting functions. Avoid abort for error.
1234 Added THONG and NOOP for alias processing.
1235 Added SETOPT for the new code that allows setting options with %flags.
1238 Include getopt.h. Add some extern decls.
1239 (safegetc): New function to deal with EOF gracefully.
1240 (literalchar); new function to deal with reading \ escapes.
1241 (lex): Use literalchar.
1242 (lex): Implemented "..." tokens.
1243 (literalchar, lex, parse_percent_token): Made tokenbuffer
1244 always contain the token. This includes growing the token
1245 buffer while reading an integer.
1246 (parse_percent_token): Replaced if-else statement with percent_table.
1247 (parse_percent_token): Added % declarations as another
1248 way to specify the flags -n, -l, and -r. Also added hooks for
1249 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1250 major changes to files.c.
1251 (lex) Retain in the incoming stream a character following
1253 (skip_white_space, lex): Revised most error messages
1254 and changed fatal to warn to avoid aborting.
1255 (percent_table): Added %thong declarations.
1257 * src/gram.h: Comment changes.
1259 * src/files.c (openfiles, open_extra_files, done):
1261 and actfile file. Handle noparserflag. Both for -n switch.
1263 * src/conflicts.c (resolve_sr_conflict):
1264 Remove use of alloca.
1266 1995-06-01 Jim Meyering <meyering@gnu.org>
1268 * doc/bison.texinfo: *** empty log message ***
1270 1995-05-06 Richard Stallman <rms@gnu.org>
1272 * src/bison.s1: Comment change.
1274 1995-05-06 Richard Stallman <rms@gnu.org>
1276 * bison.simple: Comment change.
1278 1995-05-03 Richard Stallman <rms@gnu.org>
1280 * src/version.c: Version now 1.24.
1282 * src/bison.s1: Change distribution terms.
1284 * src/version.c: Version now 1.23.
1286 1995-05-03 Richard Stallman <rms@gnu.org>
1288 * doc/bison.texinfo:
1289 Rewrite "Conditions for Using Bison".
1290 Update version to 1.24.
1292 1995-05-03 Richard Stallman <rms@gnu.org>
1294 * bison.simple: Change distribution terms.
1296 1995-02-23 Richard Stallman <rms@gnu.org>
1298 * src/files.c: Test __VMS_POSIX as well as VMS.
1300 1995-02-14 Jim Meyering <meyering@gnu.org>
1302 * src/bison.s1 (__yy_memcpy):
1303 Renamed from __yy_bcopy to avoid
1304 confusion. Reverse FROM and TO arguments to be consistent with
1307 1995-02-14 Jim Meyering <meyering@gnu.org>
1309 * bison.simple (__yy_memcpy):
1310 Renamed from __yy_bcopy to avoid
1311 confusion. Reverse FROM and TO arguments to be consistent with
1314 1994-11-10 David J. MacKenzie <djm@gnu.org>
1320 * Makefile.in (DISTFILES): Include NEWS.
1322 * Makefile.in (DISTFILES):
1323 Include install-sh, not install.sh.
1325 * configure.in: Update to Autoconf v2 macro names.
1327 1994-10-05 David J. MacKenzie <djm@gnu.org>
1329 * Makefile.in: fix typo
1331 * Makefile.in (prefix, exec_prefix):
1332 Let configure set them.
1334 1994-09-28 David J. MacKenzie <djm@gnu.org>
1336 * Makefile.in: Set datadir to $(prefix)/share.
1338 1994-09-15 Richard Stallman <rms@gnu.org>
1341 Update copyright notice and GPL version.
1343 1994-09-15 Richard Stallman <rms@gnu.org>
1346 Update copyright notice and GPL version.
1348 1994-07-12 Richard Stallman <rms@gnu.org>
1350 * src/reduce.c, src/reader.c:
1353 1994-05-05 David J. MacKenzie <djm@gnu.org>
1355 * Makefile.in: entered into RCS
1357 1994-03-26 Richard Stallman <rms@gnu.org>
1359 * src/bison.s1: entered into RCS
1361 1994-03-26 Richard Stallman <rms@gnu.org>
1363 * bison.simple: entered into RCS
1365 1994-03-25 Richard Stallman <rms@gnu.org>
1367 * src/main.c: entered into RCS
1369 1994-03-24 Richard Stallman <rms@gnu.org>
1371 * src/conflicts.c: entered into RCS
1373 1994-01-02 Richard Stallman <rms@gnu.org>
1375 * Makefile.in: *** empty log message ***
1377 1993-11-21 Richard Stallman <rms@gnu.org>
1379 * src/bison.s1: *** empty log message ***
1381 1993-11-21 Richard Stallman <rms@gnu.org>
1383 * doc/bison.texinfo: entered into RCS
1385 * doc/bison.texinfo: *** empty log message ***
1387 1993-11-21 Richard Stallman <rms@gnu.org>
1389 * bison.simple: *** empty log message ***
1391 1993-10-25 David J. MacKenzie <djm@gnu.org>
1393 * doc/bison.texinfo: *** empty log message ***
1395 1993-10-19 Richard Stallman <rms@gnu.org>
1397 * src/bison.s1: *** empty log message ***
1399 1993-10-19 Richard Stallman <rms@gnu.org>
1401 * bison.simple: *** empty log message ***
1403 1993-10-14 Richard Stallman <rms@gnu.org>
1405 * src/bison.s1: *** empty log message ***
1407 1993-10-14 Richard Stallman <rms@gnu.org>
1409 * bison.simple: *** empty log message ***
1411 1993-09-14 David J. MacKenzie <djm@gnu.org>
1413 * doc/bison.texinfo: *** empty log message ***
1415 1993-09-13 Noah Friedman <friedman@gnu.org>
1417 * Makefile.in: *** empty log message ***
1419 1993-09-10 Richard Stallman <rms@gnu.org>
1421 * src/conflicts.c: *** empty log message ***
1423 * src/system.h: entered into RCS
1425 1993-09-10 Richard Stallman <rms@gnu.org>
1427 * doc/bison.1: entered into RCS
1429 1993-09-06 Noah Friedman <friedman@gnu.org>
1431 * src/version.c: entered into RCS
1433 1993-09-06 Noah Friedman <friedman@gnu.org>
1435 * Makefile.in: *** empty log message ***
1437 1993-07-30 David J. MacKenzie <djm@gnu.org>
1439 * Makefile.in: *** empty log message ***
1441 1993-07-24 Richard Stallman <rms@gnu.org>
1443 * src/bison.s1: *** empty log message ***
1445 1993-07-24 Richard Stallman <rms@gnu.org>
1447 * bison.simple: *** empty log message ***
1449 1993-07-08 David J. MacKenzie <djm@gnu.org>
1451 * Makefile.in: *** empty log message ***
1453 1993-07-04 Richard Stallman <rms@gnu.org>
1455 * src/bison.s1: *** empty log message ***
1457 1993-07-04 Richard Stallman <rms@gnu.org>
1459 * bison.simple: *** empty log message ***
1461 1993-06-26 David J. MacKenzie <djm@gnu.org>
1463 * src/getargs.c: entered into RCS
1465 1993-06-26 David J. MacKenzie <djm@gnu.org>
1467 * doc/bison.texinfo: *** empty log message ***
1469 * doc/bison.1: New file.
1471 1993-06-25 Richard Stallman <rms@gnu.org>
1473 * src/getargs.c: New file.
1475 1993-06-16 Richard Stallman <rms@gnu.org>
1477 * src/bison.s1: *** empty log message ***
1479 1993-06-16 Richard Stallman <rms@gnu.org>
1481 * bison.simple: *** empty log message ***
1483 1993-06-03 Richard Stallman <rms@gnu.org>
1485 * src/bison.s1: New file.
1487 1993-06-03 Richard Stallman <rms@gnu.org>
1489 * doc/bison.texinfo: *** empty log message ***
1491 1993-06-03 Richard Stallman <rms@gnu.org>
1493 * bison.simple: New file.
1495 1993-05-19 Richard Stallman <rms@gnu.org>
1497 * doc/bison.texinfo: New file.
1499 1993-05-07 Noah Friedman <friedman@gnu.org>
1501 * Makefile.in: *** empty log message ***
1503 1993-04-28 Noah Friedman <friedman@gnu.org>
1505 * src/reader.c: *** empty log message ***
1507 1993-04-23 Noah Friedman <friedman@gnu.org>
1509 * src/alloc.h: entered into RCS
1511 1993-04-20 David J. MacKenzie <djm@gnu.org>
1513 * src/version.c: *** empty log message ***
1515 * src/files.c, src/allocate.c:
1518 * src/reader.c: *** empty log message ***
1520 * src/lex.c: entered into RCS
1522 * src/conflicts.c: New file.
1524 * src/symtab.c: entered into RCS
1526 * src/alloc.h: New file.
1528 * src/LR0.c: entered into RCS
1530 1993-04-18 Noah Friedman <friedman@gnu.org>
1532 * src/reader.c: New file.
1534 * src/version.c: *** empty log message ***
1536 1993-04-18 Noah Friedman <friedman@gnu.org>
1538 * Makefile.in: *** empty log message ***
1540 1993-04-17 Noah Friedman <friedman@gnu.org>
1542 * Makefile.in: *** empty log message ***
1544 1993-04-15 Richard Stallman <rms@gnu.org>
1546 * src/main.c, src/files.c:
1549 1993-04-15 Noah Friedman <friedman@gnu.org>
1551 * configure.in: entered into RCS
1553 * configure.in: *** empty log message ***
1555 * configure.in: New file.
1557 1993-04-14 Richard Stallman <rms@gnu.org>
1559 * Makefile.in: New file.
1561 1993-04-13 Richard Stallman <rms@gnu.org>
1563 * src/version.c: New file.
1565 1993-03-25 Richard Stallman <rms@gnu.org>
1567 * src/output.c: entered into RCS
1569 1992-09-25 Richard Stallman <rms@gnu.org>
1571 * configure.bat: entered into RCS
1573 1992-06-22 Richard Stallman <rms@gnu.org>
1575 * src/vmsgetargs.c: entered into RCS
1577 1992-06-22 Richard Stallman <rms@gnu.org>
1579 * doc/bison.rnh: entered into RCS
1581 1992-04-20 David J. MacKenzie <djm@gnu.org>
1583 * README: entered into RCS
1585 1992-01-22 Richard Stallman <rms@gnu.org>
1587 * src/machine.h: entered into RCS
1589 1991-12-21 Richard Stallman <rms@gnu.org>
1591 * src/lalr.c, src/closure.c:
1594 1991-12-20 Richard Stallman <rms@gnu.org>
1596 * src/state.h: entered into RCS
1598 1991-12-18 Richard Stallman <rms@gnu.org>
1600 * src/print.c, src/nullable.c, src/derives.c:
1603 1991-11-03 David J. MacKenzie <djm@gnu.org>
1605 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1608 1988-09-09 Richard Stallman <rms@gnu.org>
1610 * src/bison.hairy: entered into RCS
1612 1987-12-16 Richard Stallman <rms@gnu.org>
1614 * REFERENCES: entered into RCS