1 2000-10-02 Akim Demaille <akim@epita.fr>
3 The location tracking mechanism is precious for parse error
4 messages. Nevertheless, it is enabled only when `@n' is used in
5 the grammar, which is a different issue (you can use it in error
6 message, but not in the grammar per se). Therefore, there should
7 be another means to enable it.
9 * src/getargs.c (getargs): Support `--locations'.
11 * src/getargs.h (locationsflag): Export it.
12 * src/lex.c (percent_table): Support `%locations'.
13 * src/reader.c (yylsp_needed): Remove this variable, now replaced
15 * doc/bison.texinfo: Document `--locations' and `%locations'.
17 * tests/calc.m4: Test it.
19 For regularity of the names, replace each
20 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22 In addition replace each `flag' with `_flag'.
25 2000-10-02 Akim Demaille <akim@epita.fr>
27 Also test parse error messages, including with YYERROR_VERBOSE.
29 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
31 Use it to check the computations.
32 Use it to check `nonassoc' is honored.
33 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
35 (_AT_CHECK_CALC): Adjust to this option.
36 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
39 2000-10-02 Akim Demaille <akim@epita.fr>
41 Test also `--verbose', `--defines' and `--name-prefix'. Testing
42 the latter demonstrates a flaw in the handling of non debugging
43 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
44 was used in order to simplify:
60 unfortunately this leads to a CPP conflict when
61 `--name-prefix=foo' is used since it produces `#define yydebug
64 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
65 (YYDPRINTF): New macro.
67 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
69 Also test `--verbose', `--defines' and `--name-prefix'.
72 2000-10-02 Akim Demaille <akim@epita.fr>
74 Improve the readability of the produced parsers.
76 * src/bison.s1: Formatting changes.
77 Improve the comment related to the `$' mark.
78 (yydefault): Don't fall through to `yyresume': `goto' there.
79 * src/output.c (output_parser): When the `$' is met, skip the end
81 New variable, `number_of_dollar_signs', to check there's exactly
82 one `$' in the parser skeleton.
85 2000-10-02 Akim Demaille <akim@epita.fr>
87 * lib/xstrdup.c: New file, from the fileutils.
88 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
89 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
90 instead of strlen + xmalloc + strcpy.
91 * src/symtab.c (copys): Remove, use xstrdup instead.
94 2000-10-02 Akim Demaille <akim@epita.fr>
96 * src/gram.h (associativity): New enum type which replaces the
97 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
98 `right_assoc', `left_assoc' and `non_assoc'.
99 Adjust all dependencies.
100 * src/reader.c: Formatting changes.
101 (LTYPESTR): Don't define it, use it as a literal in
102 `reader_output_yylsp'.
103 * src/symtab.h (symbol_class): New enum type which replaces the
104 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
105 `sunknown', `stoken and `snterm'.
107 2000-10-02 Akim Demaille <akim@epita.fr>
109 * src/getargs.c (fixed_outfiles): Rename as...
110 (yaccflag): for consistency and accuracy.
114 2000-10-02 Akim Demaille <akim@epita.fr>
116 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
117 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
118 difficult and introduced a lot of core dump. It turns out that
119 Bison used an implementation of `xmalloc' based on `calloc', and
120 at various places it does depend upon the initialization to 0. I
121 have not tried to isolate the pertinent places, and all the former
122 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
123 someone should address this issue.
125 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
126 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
129 * src/warshall.h: New file.
132 2000-10-02 Akim Demaille <akim@epita.fr>
134 Various anti-`extern in *.c' changes.
136 * src/system.h: Include `assert.h'.
139 2000-10-02 Akim Demaille <akim@epita.fr>
141 * src/state.h (nstates, final_state, first_state, first_shift)
142 (first_reduction): Move their exportation from here...
143 * src/LR0.h: to here.
145 * src/getargs.c (statisticsflag): New variable.
146 Add support for `--statistics'.
149 Remove a lot of now useless `extern' statements in most files.
152 2000-10-02 Akim Demaille <akim@epita.fr>
154 * src/LR0.h: New file.
158 2000-10-02 Akim Demaille <akim@epita.fr>
160 * src/print.h: New file.
162 * src/print.c: Formatting and ordering changes.
163 (verbose, terse): Replace with...
164 (print_results): this new function.
168 2000-10-02 Akim Demaille <akim@epita.fr>
170 * src/conflicts.c (conflict_report): New function.
171 (conflict_log, verbose_conflict_log): Replace with...
172 (print_conflicts): this function.
174 * src/conflicts.h: New file.
175 Propagate its inclusion.
178 2000-10-02 Akim Demaille <akim@epita.fr>
180 * src/nullable.h: New file.
181 Propagate its inclusion.
182 * src/nullable.c: Formatting changes.
185 2000-10-02 Akim Demaille <akim@epita.fr>
187 * src/reduce.h: New file.
188 Propagate its inclusion.
189 * src/reduce.c: Topological sort and other formatting changes.
190 (bool, TRUE, FALSE): Move their definition to...
191 * src/system.h: here.
194 2000-10-02 Akim Demaille <akim@epita.fr>
196 * src/files.c: Formatting changes.
197 (tryopen, tryclose, openfiles): Rename as...
198 (xfopen, xfclose, open_files): this.
199 (stringappend): static.
200 * src/files.h: Complete the list of exported symbols.
204 2000-10-02 Akim Demaille <akim@epita.fr>
206 * src/reader.h: New file.
207 Propagate its use instead of tedious list of `extern' and
209 * src/reader.c: Formatting changes, topological sort,
213 2000-10-02 Akim Demaille <akim@epita.fr>
215 * src/lex.h: Prototype `lex.c' exported functions.
216 * src/reader.c: Adjust.
217 * src/lex.c: Formatting changes.
218 (safegetc): Rename as...
222 2000-10-02 Akim Demaille <akim@epita.fr>
224 * src/lalr.h: New file.
225 Propagate its inclusion instead of prototypes and `extern'.
226 * src/lalr.c: Formatting changes, topological sorting etc.
229 2000-10-02 Akim Demaille <akim@epita.fr>
231 * src/output.c (token_actions): Introduce a temporary array,
232 YYDEFACT, that makes it possible for this function to use
236 2000-10-02 Akim Demaille <akim@epita.fr>
238 `user_toknums' is output as a `short[]' in `output.c', while it is
239 defined as a `int[]' in `reader.c'. For consistency with the
240 other output tables, `user_toknums' is now defined as a table of
243 * src/reader.c (user_toknums): Be a short table instead of an int
247 Factor the short table outputs.
249 * src/output.c (output_short_table): New function.
250 * src/output.c (output_gram, output_stos, output_rule_data)
251 (output_base, output_table, output_check): Use it.
253 2000-10-02 Akim Demaille <akim@epita.fr>
255 * src/output.c (output): Topological sort of the functions, in
256 order to get rid of the `static' prototypes.
257 No longer use `register'.
258 * src/output.h: New file.
259 Propagate its inclusion in files explicitly prototyping functions
262 2000-09-21 Akim Demaille <akim@epita.fr>
264 * src/atgeneral.m4: Update from Autoconf.
266 2000-09-21 Akim Demaille <akim@epita.fr>
268 * src/closure.h: New file.
269 * src/closure.c: Formatting changes, topological sort over the
270 functions, use of closure.h.
271 (initialize_closure, finalize_closure): Rename as...
272 (new_closure, free_closure): these. Adjust dependencies.
273 * src/LR0.c: Formatting changes, topological sort, use of
275 (initialize_states): Rename as...
277 * src/Makefile.am (noinst_HEADERS): Adjust.
279 2000-09-20 Akim Demaille <akim@epita.fr>
281 * src/acconfig.h: Don't protect config.h against multiple
284 * src/system.h: Define PARAMS.
285 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
286 purpose of config.h. system.h must not try to fix wrong
287 definitions in config.h.
289 2000-09-20 Akim Demaille <akim@epita.fr>
291 * src/derives.h: New file.
292 * src/main.c, src/derives.h: Use it.
294 * src/Makefile.am (noinst_HEADERS): Adjust.
296 2000-09-20 Akim Demaille <akim@epita.fr>
298 * tests/atgeneral.m4: Update from Autoconf.
299 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
300 (AT_CHECK_CALC): New macros.
301 Use these macros to test bison with options `', `--raw',
302 `--debug', `--yacc', `--yacc --debug'.
304 2000-09-19 Akim Demaille <akim@epita.fr>
306 * src/output.c: Formatting changes.
307 * src/machine.h: Remove, leaving its contents in...
308 * src/system.h: here.
310 Adjust all dependencies on stdio.h and machine.h.
311 * src/getargs.h: New file.
312 Let all `extern' declarations about getargs.c be replaced with
313 inclusion of `getargs.h'.
314 * src/Makefile.am (noinst_HEADERS): Adjust.
316 * tests/calc.m4 (yyin): Be initialized in main, not on the global
318 (yyerror): Returns void, not int.
319 * doc/bison.texinfo: Formatting changes.
321 2000-09-19 Akim Demaille <akim@epita.fr>
323 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
326 2000-09-18 Akim Demaille <akim@epita.fr>
328 * configure.in: Append WARNING_CFLAGS to CFLAGS.
329 * src/Makefile.am (INCLUDES): Don't.
330 Be ready to fetch headers in lib/.
332 2000-09-18 Akim Demaille <akim@epita.fr>
334 * doc/bison.texinfo: Update the copyright.
335 ANSIfy and GNUify the examples.
338 2000-09-18 Akim Demaille <akim@epita.fr>
340 First set of tests: use the `calc' example from the documentation.
342 * src/bison.s1 (yyparse): Condition the code using `yytname' which
343 is defined only when YYDEBUG is.
344 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
345 * src/files.c (tryopen, tryclose): Formatting changes.
346 Move to the top and be static.
347 * src/reader.c (read_signed_integer): Likewise.
348 * tests/calc.m4: New file.
349 * Makefile.am, suite.m4: Adjust.
350 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
352 2000-09-18 Akim Demaille <akim@epita.fr>
354 Add support for an Autotest test suite for Bison.
356 * m4/m4.m4, m4/atconfig.m4: New files.
357 * m4/Makefile.am (EXTRA_DIST): Adjust.
358 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
360 * src/getargs.c: Display a more standard --version message.
361 * src/reader.c (reader): Formatting changes.
362 No longer depend upon VERSION_STRING.
363 * configure.in: No longer use `dnl'.
364 Set up the test suite and the new directory `tests/.
365 (VERSION_STRING): Remove.
367 2000-04-14 Akim Demaille <akim@epita.fr>
369 * src/reader.c (copy_comment2): New function, same as former
370 `copy_comment', but outputs into two FILE *.
371 (copy_comment): Use it.
372 (parse_union_decl): Use it.
373 (get_type, parse_start_decl): Use the same `invalid' message.
374 (parse_start_decl, parse_union_decl): Use the same `multiple'
376 (parse_union_decl, copy_guard, copy_action): Use the same
378 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
380 2000-03-31 Akim Demaille <akim@epita.fr>
382 * src/files.c (tryopen, tryclose): Move to the top.
385 2000-03-31 Akim Demaille <akim@epita.fr>
387 * src/main.c (main): Don't call `done', exit does it.
389 2000-03-31 Akim Demaille <akim@epita.fr>
391 * allocate.c: s/return (foo)/return foo/.
394 * output.c: Likewise.
395 * reader.c: Likewise.
396 * symtab.c: Likewise.
397 * vmsgetargs.c: Likewise.
399 2000-03-31 Akim Demaille <akim@epita.fr>
401 Clean up the error reporting functions.
403 * src/report.c: New file.
404 * src/report.h: Likewise.
405 * src/Makefile.am: Adjust.
406 * m4/error.m4: New file.
407 * m4/Makefile.am: Adjust.
408 * configure.in (jm_PREREQ_ERROR): Call it.
409 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
411 (fatal, fatals): Remove. All callers use complain.c::fatal.
412 (warn, warni, warns, warnss, warnss): Remove. All callers use
413 complain.c::complain.
414 (toomany): Remove, use fatal instead.
415 * src/files.c (done): No argument, use complain_message_count.
416 * src/main.c (main): Register `done' to `atexit'.
418 * src/getargs.c (usage): More `fputs', less `fprintf'.
420 2000-03-28 Akim Demaille <akim@epita.fr>
422 * lib/: New directory.
423 * Makefile.am (SUBDIRS): Adjust.
424 * configure.in: Adjust.
425 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
427 * src/alloca.c: Moved to lib/.
428 * src/getopt.c: Likewise.
429 * src/getopt1.c: Likewise.
430 * src/getopt.h: Likewise.
431 * src/ansi2knr.c: Likewise.
432 * src/ansi2knr.1: Likewise.
433 * src/Makefile.am: Adjust.
434 * lib/Makefile.am: New file.
436 2000-03-28 Akim Demaille <akim@epita.fr>
438 * src/getargs.c (usage): Refresh the help message.
440 2000-03-17 Akim Demaille <akim@epita.fr>
442 * src/getopt1.c: Updated from textutils 2.0e
443 * src/getopt.c: Likewise.
444 * src/getopt.h: Likewise.
446 2000-03-17 Akim Demaille <akim@epita.fr>
448 * src/Makefile.am (bison.simple): Fix the awk program: quote only
449 the file name, not the whole `#line LINE FILE'.
451 2000-03-17 Akim Demaille <akim@epita.fr>
453 On syntax errors, report the token on which we choked.
455 * src/bison.s1 (yyparse): In the label yyerrlab, when
456 YYERROR_VERBOSE, add yychar in msg.
458 2000-03-17 Akim Demaille <akim@epita.fr>
460 * src/reader.c (copy_at): New function.
461 (copy_guard): Use it.
462 (copy_action): Use it.
464 2000-03-17 Akim Demaille <akim@epita.fr>
466 Be kind to translators, save some useless translations.
468 * src/main.c (banner): New function.
469 (fatal_banner): Use it.
470 (warn_banner): Use it.
472 2000-03-17 Akim Demaille <akim@epita.fr>
474 * src/reader.c (copy_definition): Use copy_string and
475 copy_comment. Removed now unused `match', `ended',
477 (copy_comment, copy_string): Moved, to be visible from
480 2000-03-17 Akim Demaille <akim@epita.fr>
482 * src/reader.c (copy_string): Declare `static inline'. No
483 problems with inline, since it is checked by configure.
484 (copy_comment): Likewise.
486 2000-03-17 Akim Demaille <akim@epita.fr>
488 * src/reader.c (packsymbols): Formatting changes.
490 2000-03-17 Akim Demaille <akim@epita.fr>
492 * src/reader.c (copy_comment): New function, factored out from:
493 (copy_action): Use it. Removed now unused `match', `ended',
495 (copy_guard): Likewise.
497 2000-03-17 Akim Demaille <akim@epita.fr>
499 * src/reader.c (copy_string): New function, factored out from:
500 (copy_action): Use it.
501 (copy_guard): Likewise.
503 2000-03-17 Akim Demaille <akim@epita.fr>
505 Change the handling of @s so that they behave exactly like $s.
506 There is now a pseudo variable @$ (readble and writable), location
507 of the lhs of the rule (by default ranging from the location of
508 the first symbol of the rhs, to the location of the last symbol,
509 or, if the rhs is empty, YYLLOC).
511 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
513 (yyparse): When providing a default semantic action, provide a
514 default location action.
515 (after the $): No longer change `*YYLSP', just stack YYLOC the
516 same way you stack YYVAL.
517 * src/reader.c (read_declarations): Use warns.
518 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
519 (copy_action, case '@'): Likewise.
520 Use a standard error message, to save useless work from
523 2000-03-17 Akim Demaille <akim@epita.fr>
525 * src/bison.s1: Formatting and cosmetics changes.
526 * src/reader.c: Likewise.
527 Update the Copyright notice.
529 2000-03-17 Akim Demaille <akim@epita.fr>
531 * src/bison.s1 (#line): All set to `#line' only, since the
532 Makefile now handles them.
534 2000-03-16 Akim Demaille <akim@epita.fr>
536 * src/output.c (output_rule_data): Output the documentation of
538 (Copyright notice): Update.
541 2000-03-16 Akim Demaille <akim@epita.fr>
543 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
544 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
545 One `#if YYDEBUG' remains, since it uses variables which are
546 defined only if `YYDEBUG != 0'.
548 2000-03-16 Akim Demaille <akim@epita.fr>
550 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
551 and related variables so that the similarities are highlighted.
553 2000-03-16 Akim Demaille <akim@epita.fr>
555 * src/bison.s1: Properly indent CPP directives.
557 2000-03-16 Akim Demaille <akim@epita.fr>
559 * src/bison.s1: Properly indent the `alloca' CPP section.
561 2000-03-16 Akim Demaille <akim@epita.fr>
563 Do not hard code values of directories in `configure.in'.
564 Update the `configure' tool chain.
566 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
568 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
569 (AC_OUTPUT): Add m4/Makefile.
570 Bump to bison 1.28a, 1.29 has never been released.
571 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
572 handled via src/Makefile.am.
573 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
574 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
576 * Makefile.am (SUBDIRS): Add m4.
577 (ACLOCAL_AM_FLAGS): New variable.
578 (AUTOMAKE_OPTIONS): Add check-news.
579 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
580 the proper line number and file name.
581 (DEFS): Propagate the location of bison library files and of the
583 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
585 * acinclude.m4: Remove, replaced by the directory m4.
586 * m4/Makefile.am (EXTRA_DIST): New variable.
587 * m4/gettext.m4: New file, from the fileutils.
588 * m4/lcmessage.m4: Likewise
589 * m4/progtest.m4: Likewise.
590 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
592 2000-03-10 Akim Demaille <akim@epita.fr>
595 Formatting changes of various comments.
596 Respect the GNU coding standards at various places.
597 Don't use `_()' when no translation is needed.
599 1999-12-13 Jesse Thilo <jthilo@gnu.org>
602 OS/2 honors TMPDIR environment variable.
604 1999-12-13 Jesse Thilo <jthilo@gnu.org>
606 * doc/bison.texinfo: Tweaked spelling and grammar.
608 Removed reference to price of printed copy.
609 Mention BISON_SIMPLE and BISON_HAIRY.
611 1999-12-13 Jesse Thilo <jthilo@gnu.org>
613 * configure.in, NEWS:
616 1999-10-27 Jesse Thilo <jthilo@gnu.org>
618 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
619 Added reference card.
621 1999-07-26 Jesse Thilo <jthilo@gnu.org>
623 * po/ru.po: Added Russian translation.
625 1999-07-26 Jesse Thilo <jthilo@gnu.org>
627 * configure.in: Added Russian translation.
629 1999-07-06 Jesse Thilo <jthilo@gnu.org>
631 * configure.in, NEWS, README:
632 Released version 1.28.
634 1999-06-14 Jesse Thilo <jthilo@gnu.org>
637 Squashed redefinition warning on some systems.
639 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
640 Have configure build version string instead of relying on ANSI string
643 1999-06-14 Jesse Thilo <jthilo@gnu.org>
645 * po/POTFILES.in: Got rid of version.c.
647 1999-06-14 Jesse Thilo <jthilo@gnu.org>
649 * acconfig.h, configure.in:
650 Have configure build version string instead of relying on ANSI string
653 1999-06-08 Jesse Thilo <jthilo@gnu.org>
656 Dropped mention of `+' for long-named options.
658 1999-05-30 Jesse Thilo <jthilo@gnu.org>
660 * src/files.c: Added <unistd.h> for unlink().
662 * src/Makefile.am, src/system.h:
665 1999-05-30 Jesse Thilo <jthilo@gnu.org>
667 * README: Added a FAQ list.
669 * configure.in, acconfig.h:
672 1999-05-30 Jesse Thilo <jthilo@gnu.org>
674 * doc/FAQ, doc/Makefile.am:
677 1999-05-19 Jesse Thilo <jthilo@gnu.org>
679 * src/alloc.h, src/symtab.h, src/version.c:
680 Protected inclusion of "config.h" with HAVE_CONFIG_H.
682 1999-04-18 Jesse Thilo <jthilo@gnu.org>
684 * src/.cvsignore, src/Makefile.am:
685 Reorganized: sources in `src', documentation in `doc'.
687 * src/lex.c (literalchar):
688 fixed the code for escaping double quotes (thanks
691 1999-04-18 Jesse Thilo <jthilo@gnu.org>
693 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
694 Adjusted paths to reflect directory reorganization.
696 1999-04-18 Jesse Thilo <jthilo@gnu.org>
698 * doc/.cvsignore, doc/Makefile.am:
699 Reorganized: sources in `src', documentation in `doc'.
701 1999-04-18 Jesse Thilo <jthilo@gnu.org>
704 Updated AC_INIT file to reflect directory reorganization.
706 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
707 Reorganized: sources in `src', documentation in `doc'.
709 1999-04-13 Jesse Thilo <jthilo@gnu.org>
712 Don't declare calloc() and realloc() if not necessary.
714 1999-04-13 Jesse Thilo <jthilo@gnu.org>
716 * configure.in, acconfig.h, acinclude.m4:
717 Don't declare calloc() and realloc() if not necessary.
719 1999-03-23 Jesse Thilo <jthilo@gnu.org>
721 * po/.cvsignore: Added i18n support.
723 1999-03-23 Jesse Thilo <jthilo@gnu.org>
725 * acconfig.h, configure.in, Makefile.am:
728 1999-03-22 Jesse Thilo <jthilo@gnu.org>
730 * src/bison.s1: Fixed #line numbers.
732 1999-03-15 Jesse Thilo <jthilo@gnu.org>
734 * po/es.po, po/fr.po, po/nl.po, po/de.po:
735 Added PO files from Translation Project.
737 1999-03-03 Jesse Thilo <jthilo@gnu.org>
740 Added support for non-ANSI compilers (ansi2knr).
742 1999-02-16 Jesse Thilo <jthilo@gnu.org>
744 * configure.in: Bumped version number to 1.27.
747 Added `bison.simple' to list of files removed by `make distclean'.
749 1999-02-12 Jesse Thilo <jthilo@gnu.org>
751 * src/files.c, src/files.h:
752 Defined locations of parser files in config.h instead of Makefile.
754 1999-02-12 Jesse Thilo <jthilo@gnu.org>
756 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
757 Defined locations of parser files in config.h instead of Makefile.
759 1999-02-09 Jesse Thilo <jthilo@gnu.org>
762 Removed inappropriate use of $< macro.
764 1999-02-05 Jesse Thilo <jthilo@gnu.org>
766 * po/Makefile.in.in, po/POTFILES.in:
767 Add `po' directory skeleton.
769 1999-01-27 Jesse Thilo <jthilo@gnu.org>
771 * README: Document help-bison list.
773 * configure.in: Add check for mkstemp().
775 1999-01-20 Jesse Thilo <jthilo@gnu.org>
777 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
778 Hush a few compiler warnings.
781 Add tryclose(), which verifies that fclose was successful.
782 Hush a couple of compiler warnings.
784 1999-01-20 Jesse Thilo <jthilo@gnu.org>
786 * Makefile.am, OChangeLog:
787 ChangeLog is now automatically generated. Include the old version as
790 1999-01-14 Jesse Thilo <jthilo@gnu.org>
792 * 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:
795 1999-01-14 Jesse Thilo <jthilo@gnu.org>
797 * doc/bison.texinfo: Fix formatting glitch.
799 * doc/bison.texinfo: Update FSF address.
801 1999-01-14 Jesse Thilo <jthilo@gnu.org>
803 * acconfig.h: Update FSF address.
805 1999-01-08 Jesse Thilo <jthilo@gnu.org>
808 Don't define PACKAGE here, since config.h defines it.
810 1998-12-30 Jesse Thilo <jthilo@gnu.org>
812 * src/reader.c: Update copyright date.
815 Ditch sprintf to statically-sized buffers in fatal/warn functions in
816 favor of output directly to stderr (avoids buffer overruns).
818 * src/reader.c: Some checks for premature EOF.
820 * 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:
821 Use prototypes if the compiler understands them.
823 * src/files.c: Honor TMPDIR on Unix hosts.
824 Use prototypes if the compiler understands them.
827 Fix a couple of buffer overrun bugs.
828 Use prototypes if the compiler understands them.
830 * src/system.h: Include unistd.h and ctype.h.
831 Use #ifdef instead of #if for NLS symbols.
833 1998-12-30 Jesse Thilo <jthilo@gnu.org>
836 Delete comment "consider using @set for edition number, etc..." since
839 1998-12-30 Jesse Thilo <jthilo@gnu.org>
842 Use prototypes if the compiler understands them.
844 * NEWS: Document 1.26 highlights.
846 * Makefile.am: Require Automake 1.3 or later.
849 Use prototypes if the compiler understands them.
851 1998-12-29 Jesse Thilo <jthilo@gnu.org>
854 Use VERSION symbol from automake for version number.
856 1998-12-29 Jesse Thilo <jthilo@gnu.org>
858 * acconfig.h, configure.in, version.cin:
859 Use VERSION symbol from automake for version number.
861 1998-11-28 Jesse Thilo <jthilo@gnu.org>
864 Distribute original version of simple parser (bison.s1), not built
865 version (bison.simple).
867 1998-11-28 Jesse Thilo <jthilo@gnu.org>
869 * doc/bison.texinfo: Add info dir entry.
872 Let automake put version number into documentation.
874 1998-11-26 Jesse Thilo <jthilo@gnu.org>
876 * src/bison.cld, src/build.com, src/vmshlp.mar:
877 Add non-RCS files from /gd/gnu/bison.
879 1998-11-26 Jesse Thilo <jthilo@gnu.org>
882 Document the BISON_HAIRY and BISON_SIMPLE variables.
884 1998-11-25 Jesse Thilo <jthilo@gnu.org>
886 * src/version.c: Build version.c automatically.
889 Fix token numbering (used to start at 258, not 257).
891 * src/system.h: Include config.h.
893 * src/getargs.c: Update bug report address.
895 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
896 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
898 1998-11-25 Jesse Thilo <jthilo@gnu.org>
901 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
903 * configure.in, version.cin:
904 Build version.c automatically.
906 * AUTHORS: Add AUTHORS file.
908 * README: Update bug report address.
911 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
913 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
916 1998-11-25 Jesse Thilo <jthilo@gnu.org>
918 * doc/bison.texinfo: Clean up some formatting.
920 1998-05-05 Richard Stallman <rms@gnu.org>
923 Explain better why to make a pure parser.
925 1998-01-05 Richard Stallman <rms@gnu.org>
927 * src/files.c (openfiles):
928 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
929 find a temporary directory, if possible. Do not unlink files while
932 1997-08-25 Richard Stallman <rms@gnu.org>
934 * src/reader.c (stack_offset;):
935 Change some warni to warns.
937 * src/lex.c (literalchar): Use warns, not warni.
939 1997-06-28 Richard Stallman <rms@gnu.org>
941 * src/bison.s1: Add a Bison version comment.
943 * src/main.c (fatal, warn, berror):
946 1997-06-28 Richard Stallman <rms@gnu.org>
948 * Makefile.in (bison_version): New variable.
949 (dist): Use that variable.
950 (bison.s1): Substitute the Bison version into bison.simple.
952 * bison.simple: Add a Bison version comment.
954 1997-06-18 Richard Stallman <rms@gnu.org>
956 * src/main.c (fatal, warn, berror):
957 Make error messages standard.
958 (toomany): Improve error message text.
960 * 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:
961 new.h renamed to alloc.h.
963 1997-06-18 Richard Stallman <rms@gnu.org>
965 * Makefile.in: new.h renamed to alloc.h.
967 1997-05-24 Richard Stallman <rms@gnu.org>
969 * src/lex.c (literalchar):
970 Fix the code for escaping \, " and '.
972 (lex): Avoid trouble when there are many chars
973 to discard in a char literal with just several chars in it.
975 1997-05-17 Richard Stallman <rms@gnu.org>
978 Use malloc, if using alloca is troublesome.
979 (YYSTACK_USE_ALLOCA): New flag macro.
980 Define it for some systems and compilers.
981 (YYSTACK_ALLOC): New macro.
982 (yyparse): Use YYSTACK_ALLOC to allocate stack.
983 If it was malloc'd, free it.
985 1997-05-17 Richard Stallman <rms@gnu.org>
988 Use malloc, if using alloca is troublesome.
989 (YYSTACK_USE_ALLOCA): New flag macro.
990 Define it for some systems and compilers.
991 (YYSTACK_ALLOC): New macro.
992 (yyparse): Use YYSTACK_ALLOC to allocate stack.
993 If it was malloc'd, free it.
995 1997-04-23 Richard Stallman <rms@gnu.org>
998 (alloca) [__hpux]: Always define as __builtin_alloca.
1000 1997-04-23 Richard Stallman <rms@gnu.org>
1003 (alloca) [__hpux]: Always define as __builtin_alloca.
1005 1997-04-22 Richard Stallman <rms@gnu.org>
1008 [__hpux]: Include alloca.h (right for HPUX 10)
1009 instead of declaring alloca (right for HPUX 9).
1011 * src/bison.s1 (__yy_memcpy):
1012 Declare arg `count' as unsigned int.
1013 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1015 1997-04-22 Richard Stallman <rms@gnu.org>
1018 [__hpux]: Include alloca.h (right for HPUX 10)
1019 instead of declaring alloca (right for HPUX 9).
1021 * bison.simple (__yy_memcpy):
1022 Declare arg `count' as unsigned int.
1023 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1025 1997-01-03 Richard Stallman <rms@gnu.org>
1027 * src/allocate.c: [__STDC__ or _MSC_VER]:
1028 Declare calloc and realloc to return void *.
1030 1997-01-02 Richard Stallman <rms@gnu.org>
1033 [_MSC_VER]: Include stdlib.h and process.h.
1034 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1036 * src/main.c (main): Return FAILURE as a value.
1037 (printable_version): Declare arg as int, not char.
1039 1997-01-02 Richard Stallman <rms@gnu.org>
1041 * Makefile.in (dist):
1042 Explicitly check for symlinks, and copy them.
1044 1996-12-19 Richard Stallman <rms@gnu.org>
1047 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1049 1996-12-18 Paul Eggert <eggert@gnu.org>
1051 * src/bison.s1 (yyparse):
1052 If __GNUC__ and YYPARSE_PARAM are both defined,
1053 declare yyparse to have a void * argument.
1055 1996-12-18 Paul Eggert <eggert@gnu.org>
1057 * bison.simple (yyparse):
1058 If __GNUC__ and YYPARSE_PARAM are both defined,
1059 declare yyparse to have a void * argument.
1061 1996-12-17 Richard Stallman <rms@gnu.org>
1063 * src/reduce.c (nbits): Add some casts.
1065 1996-08-12 Richard Stallman <rms@gnu.org>
1067 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1069 1996-08-12 Richard Stallman <rms@gnu.org>
1071 * bison.simple: Test _MSDOS as well as _MSDOS_.
1073 1996-07-31 Richard Stallman <rms@gnu.org>
1076 [__sun && __i386]: Include alloca.h.
1078 1996-07-31 Richard Stallman <rms@gnu.org>
1081 [__sun && __i386]: Include alloca.h.
1083 1996-07-30 Richard Stallman <rms@gnu.org>
1085 * src/bison.s1: Comment change.
1087 * src/bison.s1: Test _MSDOS_, not MSDOS.
1089 1996-07-30 Richard Stallman <rms@gnu.org>
1091 * bison.simple: Comment change.
1093 * bison.simple: Test _MSDOS_, not MSDOS.
1095 1996-06-01 Richard Stallman <rms@gnu.org>
1097 * 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:
1098 Insert `_' macro around many string constants.
1101 Insert `_' macro around many string constants.
1103 (main): Call setlocale, bindtextdomain and textdomain.
1105 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1106 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1107 [ENABLE_NLS]: Include libintl.h.
1108 [ENABLE_NLS] (gettext): Define.
1109 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1110 (N_, PACKAGE, LOCALEDIR): New macros.
1112 1996-06-01 Richard Stallman <rms@gnu.org>
1114 * POTFILES.in: New file.
1116 * Makefile.in (allocate.o):
1117 Define target explicitly.
1119 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1120 (LDFLAGS): Set to @LDFLAGS@.
1121 (configure): Run autoconf only if preceding `cd' succeeds.
1122 (bison.s1): Redirect output to temporary file then move the
1123 temporary to the target, rather than redirecting directly to bison.s1.
1124 (clean): Remove config.status and config.log.
1125 (distclean): Don't remove config.status here.
1127 1996-05-12 Richard Stallman <rms@gnu.org>
1130 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1132 1996-05-12 Richard Stallman <rms@gnu.org>
1135 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1137 1996-05-11 Richard Stallman <rms@gnu.org>
1139 * src/bison.s1 (__yy_memcpy):
1140 Really reorder the args, as was supposedly done on Feb 14 1995.
1141 (yyparse): Calls changed accordingly.
1143 1996-05-11 Richard Stallman <rms@gnu.org>
1145 * Makefile.in (dist): Don't use $(srcdir).
1147 * bison.simple (__yy_memcpy):
1148 Really reorder the args, as was supposedly done on Feb 14 1995.
1149 (yyparse): Calls changed accordingly.
1151 1996-01-27 Richard Stallman <rms@gnu.org>
1153 * src/output.c (output_rule_data):
1154 Test YYERROR_VERBOSE in the conditional
1155 around the definition of ttyname.
1157 1995-12-29 Richard Stallman <rms@gnu.org>
1160 Fix line numbers in #line commands.
1162 1995-12-29 Richard Stallman <rms@gnu.org>
1165 Fix line numbers in #line commands.
1167 1995-12-27 Richard Stallman <rms@gnu.org>
1169 * src/bison.s1 (YYPARSE_PARAM_DECL):
1170 In C++, make it always null.
1171 (YYPARSE_PARAM_ARG): New macro.
1172 (yyparse): Use YYPARSE_PARAM_ARG.
1174 1995-12-27 Richard Stallman <rms@gnu.org>
1176 * bison.simple (YYPARSE_PARAM_DECL):
1177 In C++, make it always null.
1178 (YYPARSE_PARAM_ARG): New macro.
1179 (yyparse): Use YYPARSE_PARAM_ARG.
1181 1995-11-29 Richard Stallman <rms@gnu.org>
1183 * doc/bison.texinfo:
1184 Describe literal string tokens, %raw, %no_lines, %token_table.
1186 1995-11-29 Daniel Hagerty <hag@gnu.org>
1188 * doc/bison.texinfo: Fixed update date
1190 1995-10-16 Richard Stallman <rms@gnu.org>
1192 * src/version.c: Version 1.25.
1194 1995-10-16 Richard Stallman <rms@gnu.org>
1196 * NEWS: *** empty log message ***
1198 1995-10-16 Richard Stallman <rms@gnu.org>
1200 * doc/bison.1, doc/bison.rnh:
1203 1995-10-15 Richard Stallman <rms@gnu.org>
1205 * src/vmsgetargs.c, src/getargs.c:
1206 Added -n, -k, and -raw switches.
1207 (noparserflag, toknumflag, rawtoknumflag): New variables.
1209 * src/symtab.h (SALIAS):
1210 New #define for adding aliases to %token.
1211 (struct bucket): Added `alias' field.
1213 * src/reduce.c (reduce_grammar):
1214 Revise error message.
1215 (print_notices): Remove final `.' from error message.
1217 * src/reader.c (reader_output_yylsp):
1219 (readgram): Use `#if 0' around code that accepted %command
1220 inside grammar rules: The documentation doesn't allow it,
1221 and it will fail since the %command processors scan for the next %.
1222 (parse_token_decl): Extended the %token
1223 declaration to allow a multi-character symbol as an alias.
1224 (parse_thong_decl): New function.
1225 (read_declarations): Added %thong declarations.
1226 (read_declarations): Handle NOOP to deal with allowing
1227 % declarations as another means to specify the flags.
1228 (readgram): Allow %prec prior to semantics embedded in a rule.
1229 (skip_to_char, read_declarations, copy_definition)
1230 (parse_token_decl, parse_start_decl, parse_type_decl)
1231 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1232 (get_type_name, copy_guard, copy_action, readgram)
1233 (get_type, packsymbols): Revised most error messages.
1234 Changed `fatal' to `warnxxx' to avoid aborting for error.
1235 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1236 (read_declarations): Improve the error message for
1237 an invalid character. Do not abort.
1238 (read_declarations, copy_guard, copy_action): Use
1239 printable_version to avoid unprintable characters in printed output.
1240 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1241 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1242 Allow the type of a non-terminal can be given
1243 more than once, as long as all specifications give the same type.
1246 (output_headers, output_trailers, output, output_gram)
1247 (output_rule_data): Implement noparserflag variable.
1248 Implement toknumflag variable.
1249 (output): Call reader_output_yylsp to output LTYPESTR.
1251 * src/main.c (main):
1252 If reader sees an error, don't process the grammar.
1253 (fatals): Updated to not use VARARGS1.
1254 (printable_version, int_to_string, warn, warni, warns, warnss)
1255 (warnsss): New error reporting functions. Avoid abort for error.
1258 Added THONG and NOOP for alias processing.
1259 Added SETOPT for the new code that allows setting options with %flags.
1262 Include getopt.h. Add some extern decls.
1263 (safegetc): New function to deal with EOF gracefully.
1264 (literalchar); new function to deal with reading \ escapes.
1265 (lex): Use literalchar.
1266 (lex): Implemented "..." tokens.
1267 (literalchar, lex, parse_percent_token): Made tokenbuffer
1268 always contain the token. This includes growing the token
1269 buffer while reading an integer.
1270 (parse_percent_token): Replaced if-else statement with percent_table.
1271 (parse_percent_token): Added % declarations as another
1272 way to specify the flags -n, -l, and -r. Also added hooks for
1273 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1274 major changes to files.c.
1275 (lex) Retain in the incoming stream a character following
1277 (skip_white_space, lex): Revised most error messages
1278 and changed fatal to warn to avoid aborting.
1279 (percent_table): Added %thong declarations.
1281 * src/gram.h: Comment changes.
1283 * src/files.c (openfiles, open_extra_files, done):
1285 and actfile file. Handle noparserflag. Both for -n switch.
1287 * src/conflicts.c (resolve_sr_conflict):
1288 Remove use of alloca.
1290 1995-06-01 Jim Meyering <meyering@gnu.org>
1292 * doc/bison.texinfo: *** empty log message ***
1294 1995-05-06 Richard Stallman <rms@gnu.org>
1296 * src/bison.s1: Comment change.
1298 1995-05-06 Richard Stallman <rms@gnu.org>
1300 * bison.simple: Comment change.
1302 1995-05-03 Richard Stallman <rms@gnu.org>
1304 * src/version.c: Version now 1.24.
1306 * src/bison.s1: Change distribution terms.
1308 * src/version.c: Version now 1.23.
1310 1995-05-03 Richard Stallman <rms@gnu.org>
1312 * doc/bison.texinfo:
1313 Rewrite "Conditions for Using Bison".
1314 Update version to 1.24.
1316 1995-05-03 Richard Stallman <rms@gnu.org>
1318 * bison.simple: Change distribution terms.
1320 1995-02-23 Richard Stallman <rms@gnu.org>
1322 * src/files.c: Test __VMS_POSIX as well as VMS.
1324 1995-02-14 Jim Meyering <meyering@gnu.org>
1326 * src/bison.s1 (__yy_memcpy):
1327 Renamed from __yy_bcopy to avoid
1328 confusion. Reverse FROM and TO arguments to be consistent with
1331 1995-02-14 Jim Meyering <meyering@gnu.org>
1333 * bison.simple (__yy_memcpy):
1334 Renamed from __yy_bcopy to avoid
1335 confusion. Reverse FROM and TO arguments to be consistent with
1338 1994-11-10 David J. MacKenzie <djm@gnu.org>
1344 * Makefile.in (DISTFILES): Include NEWS.
1346 * Makefile.in (DISTFILES):
1347 Include install-sh, not install.sh.
1349 * configure.in: Update to Autoconf v2 macro names.
1351 1994-10-05 David J. MacKenzie <djm@gnu.org>
1353 * Makefile.in: fix typo
1355 * Makefile.in (prefix, exec_prefix):
1356 Let configure set them.
1358 1994-09-28 David J. MacKenzie <djm@gnu.org>
1360 * Makefile.in: Set datadir to $(prefix)/share.
1362 1994-09-15 Richard Stallman <rms@gnu.org>
1365 Update copyright notice and GPL version.
1367 1994-09-15 Richard Stallman <rms@gnu.org>
1370 Update copyright notice and GPL version.
1372 1994-07-12 Richard Stallman <rms@gnu.org>
1374 * src/reduce.c, src/reader.c:
1377 1994-05-05 David J. MacKenzie <djm@gnu.org>
1379 * Makefile.in: entered into RCS
1381 1994-03-26 Richard Stallman <rms@gnu.org>
1383 * src/bison.s1: entered into RCS
1385 1994-03-26 Richard Stallman <rms@gnu.org>
1387 * bison.simple: entered into RCS
1389 1994-03-25 Richard Stallman <rms@gnu.org>
1391 * src/main.c: entered into RCS
1393 1994-03-24 Richard Stallman <rms@gnu.org>
1395 * src/conflicts.c: entered into RCS
1397 1994-01-02 Richard Stallman <rms@gnu.org>
1399 * Makefile.in: *** empty log message ***
1401 1993-11-21 Richard Stallman <rms@gnu.org>
1403 * src/bison.s1: *** empty log message ***
1405 1993-11-21 Richard Stallman <rms@gnu.org>
1407 * doc/bison.texinfo: entered into RCS
1409 * doc/bison.texinfo: *** empty log message ***
1411 1993-11-21 Richard Stallman <rms@gnu.org>
1413 * bison.simple: *** empty log message ***
1415 1993-10-25 David J. MacKenzie <djm@gnu.org>
1417 * doc/bison.texinfo: *** empty log message ***
1419 1993-10-19 Richard Stallman <rms@gnu.org>
1421 * src/bison.s1: *** empty log message ***
1423 1993-10-19 Richard Stallman <rms@gnu.org>
1425 * bison.simple: *** empty log message ***
1427 1993-10-14 Richard Stallman <rms@gnu.org>
1429 * src/bison.s1: *** empty log message ***
1431 1993-10-14 Richard Stallman <rms@gnu.org>
1433 * bison.simple: *** empty log message ***
1435 1993-09-14 David J. MacKenzie <djm@gnu.org>
1437 * doc/bison.texinfo: *** empty log message ***
1439 1993-09-13 Noah Friedman <friedman@gnu.org>
1441 * Makefile.in: *** empty log message ***
1443 1993-09-10 Richard Stallman <rms@gnu.org>
1445 * src/conflicts.c: *** empty log message ***
1447 * src/system.h: entered into RCS
1449 1993-09-10 Richard Stallman <rms@gnu.org>
1451 * doc/bison.1: entered into RCS
1453 1993-09-06 Noah Friedman <friedman@gnu.org>
1455 * src/version.c: entered into RCS
1457 1993-09-06 Noah Friedman <friedman@gnu.org>
1459 * Makefile.in: *** empty log message ***
1461 1993-07-30 David J. MacKenzie <djm@gnu.org>
1463 * Makefile.in: *** empty log message ***
1465 1993-07-24 Richard Stallman <rms@gnu.org>
1467 * src/bison.s1: *** empty log message ***
1469 1993-07-24 Richard Stallman <rms@gnu.org>
1471 * bison.simple: *** empty log message ***
1473 1993-07-08 David J. MacKenzie <djm@gnu.org>
1475 * Makefile.in: *** empty log message ***
1477 1993-07-04 Richard Stallman <rms@gnu.org>
1479 * src/bison.s1: *** empty log message ***
1481 1993-07-04 Richard Stallman <rms@gnu.org>
1483 * bison.simple: *** empty log message ***
1485 1993-06-26 David J. MacKenzie <djm@gnu.org>
1487 * src/getargs.c: entered into RCS
1489 1993-06-26 David J. MacKenzie <djm@gnu.org>
1491 * doc/bison.texinfo: *** empty log message ***
1493 * doc/bison.1: New file.
1495 1993-06-25 Richard Stallman <rms@gnu.org>
1497 * src/getargs.c: New file.
1499 1993-06-16 Richard Stallman <rms@gnu.org>
1501 * src/bison.s1: *** empty log message ***
1503 1993-06-16 Richard Stallman <rms@gnu.org>
1505 * bison.simple: *** empty log message ***
1507 1993-06-03 Richard Stallman <rms@gnu.org>
1509 * src/bison.s1: New file.
1511 1993-06-03 Richard Stallman <rms@gnu.org>
1513 * doc/bison.texinfo: *** empty log message ***
1515 1993-06-03 Richard Stallman <rms@gnu.org>
1517 * bison.simple: New file.
1519 1993-05-19 Richard Stallman <rms@gnu.org>
1521 * doc/bison.texinfo: New file.
1523 1993-05-07 Noah Friedman <friedman@gnu.org>
1525 * Makefile.in: *** empty log message ***
1527 1993-04-28 Noah Friedman <friedman@gnu.org>
1529 * src/reader.c: *** empty log message ***
1531 1993-04-23 Noah Friedman <friedman@gnu.org>
1533 * src/alloc.h: entered into RCS
1535 1993-04-20 David J. MacKenzie <djm@gnu.org>
1537 * src/version.c: *** empty log message ***
1539 * src/files.c, src/allocate.c:
1542 * src/reader.c: *** empty log message ***
1544 * src/lex.c: entered into RCS
1546 * src/conflicts.c: New file.
1548 * src/symtab.c: entered into RCS
1550 * src/alloc.h: New file.
1552 * src/LR0.c: entered into RCS
1554 1993-04-18 Noah Friedman <friedman@gnu.org>
1556 * src/reader.c: New file.
1558 * src/version.c: *** empty log message ***
1560 1993-04-18 Noah Friedman <friedman@gnu.org>
1562 * Makefile.in: *** empty log message ***
1564 1993-04-17 Noah Friedman <friedman@gnu.org>
1566 * Makefile.in: *** empty log message ***
1568 1993-04-15 Richard Stallman <rms@gnu.org>
1570 * src/main.c, src/files.c:
1573 1993-04-15 Noah Friedman <friedman@gnu.org>
1575 * configure.in: entered into RCS
1577 * configure.in: *** empty log message ***
1579 * configure.in: New file.
1581 1993-04-14 Richard Stallman <rms@gnu.org>
1583 * Makefile.in: New file.
1585 1993-04-13 Richard Stallman <rms@gnu.org>
1587 * src/version.c: New file.
1589 1993-03-25 Richard Stallman <rms@gnu.org>
1591 * src/output.c: entered into RCS
1593 1992-09-25 Richard Stallman <rms@gnu.org>
1595 * configure.bat: entered into RCS
1597 1992-06-22 Richard Stallman <rms@gnu.org>
1599 * src/vmsgetargs.c: entered into RCS
1601 1992-06-22 Richard Stallman <rms@gnu.org>
1603 * doc/bison.rnh: entered into RCS
1605 1992-04-20 David J. MacKenzie <djm@gnu.org>
1607 * README: entered into RCS
1609 1992-01-22 Richard Stallman <rms@gnu.org>
1611 * src/machine.h: entered into RCS
1613 1991-12-21 Richard Stallman <rms@gnu.org>
1615 * src/lalr.c, src/closure.c:
1618 1991-12-20 Richard Stallman <rms@gnu.org>
1620 * src/state.h: entered into RCS
1622 1991-12-18 Richard Stallman <rms@gnu.org>
1624 * src/print.c, src/nullable.c, src/derives.c:
1627 1991-11-03 David J. MacKenzie <djm@gnu.org>
1629 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1632 1988-09-09 Richard Stallman <rms@gnu.org>
1634 * src/bison.hairy: entered into RCS
1636 1987-12-16 Richard Stallman <rms@gnu.org>
1638 * REFERENCES: entered into RCS