1 2000-10-04 Akim Demaille <akim@epita.fr>
3 * doc/bison.texinfo: Various typos spotted by Neil Booth.
5 2000-10-04 Akim Demaille <akim@epita.fr>
7 When a literal string is used to define two different tokens,
9 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
11 * tests/regression.m4: New file.
12 Include the core of the sample provided by Piotr Gackiewicz.
13 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
16 2000-10-04 Akim Demaille <akim@epita.fr>
18 * src/reader.c (parse_expect_decl): Keep `count' within the size
22 2000-10-02 Paul Eggert <eggert@twinsun.com>
24 * bison.s1 (yyparse): Assign the default value
25 unconditionally, to avoid a GCC warning and make the parser a
28 2000-10-02 Akim Demaille <akim@epita.fr>
30 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
33 2000-10-02 Akim Demaille <akim@epita.fr>
35 * src/derives.c, src/print.c, src/reduce.c: To ease the
36 translation, move some `\n' out of the translated strings.
38 2000-10-02 Akim Demaille <akim@epita.fr>
40 The location tracking mechanism is precious for parse error
41 messages. Nevertheless, it is enabled only when `@n' is used in
42 the grammar, which is a different issue (you can use it in error
43 message, but not in the grammar per se). Therefore, there should
44 be another means to enable it.
46 * src/getargs.c (getargs): Support `--locations'.
48 * src/getargs.h (locationsflag): Export it.
49 * src/lex.c (percent_table): Support `%locations'.
50 * src/reader.c (yylsp_needed): Remove this variable, now replaced
52 * doc/bison.texinfo: Document `--locations' and `%locations'.
54 * tests/calc.m4: Test it.
56 For regularity of the names, replace each
57 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
58 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
59 In addition replace each `flag' with `_flag'.
61 2000-10-02 Akim Demaille <akim@epita.fr>
63 Also test parse error messages, including with YYERROR_VERBOSE.
65 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
67 Use it to check the computations.
68 Use it to check `nonassoc' is honored.
69 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
71 (_AT_CHECK_CALC): Adjust to this option.
72 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
74 2000-10-02 Akim Demaille <akim@epita.fr>
76 Test also `--verbose', `--defines' and `--name-prefix'. Testing
77 the latter demonstrates a flaw in the handling of non debugging
78 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
79 was used in order to simplify:
95 unfortunately this leads to a CPP conflict when
96 `--name-prefix=foo' is used since it produces `#define yydebug
99 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
100 (YYDPRINTF): New macro.
102 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
104 Also test `--verbose', `--defines' and `--name-prefix'.
106 2000-10-02 Akim Demaille <akim@epita.fr>
108 Improve the readability of the produced parsers.
110 * src/bison.s1: Formatting changes.
111 Improve the comment related to the `$' mark.
112 (yydefault): Don't fall through to `yyresume': `goto' there.
113 * src/output.c (output_parser): When the `$' is met, skip the end
115 New variable, `number_of_dollar_signs', to check there's exactly
116 one `$' in the parser skeleton.
118 2000-10-02 Akim Demaille <akim@epita.fr>
120 * lib/xstrdup.c: New file, from the fileutils.
121 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
122 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
123 instead of strlen + xmalloc + strcpy.
124 * src/symtab.c (copys): Remove, use xstrdup instead.
126 2000-10-02 Akim Demaille <akim@epita.fr>
128 * src/gram.h (associativity): New enum type which replaces the
129 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
130 `right_assoc', `left_assoc' and `non_assoc'.
131 Adjust all dependencies.
132 * src/reader.c: Formatting changes.
133 (LTYPESTR): Don't define it, use it as a literal in
134 `reader_output_yylsp'.
135 * src/symtab.h (symbol_class): New enum type which replaces the
136 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
137 `sunknown', `stoken and `snterm'.
139 2000-10-02 Akim Demaille <akim@epita.fr>
141 * src/getargs.c (fixed_outfiles): Rename as...
142 (yaccflag): for consistency and accuracy.
145 2000-10-02 Akim Demaille <akim@epita.fr>
147 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
148 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
149 difficult and introduced a lot of core dump. It turns out that
150 Bison used an implementation of `xmalloc' based on `calloc', and
151 at various places it does depend upon the initialization to 0. I
152 have not tried to isolate the pertinent places, and all the former
153 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
154 someone should address this issue.
156 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
157 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
160 * src/warshall.h: New file.
163 2000-10-02 Akim Demaille <akim@epita.fr>
165 Various anti-`extern in *.c' changes.
167 * src/system.h: Include `assert.h'.
169 2000-10-02 Akim Demaille <akim@epita.fr>
171 * src/state.h (nstates, final_state, first_state, first_shift)
172 (first_reduction): Move their exportation from here...
173 * src/LR0.h: to here.
175 * src/getargs.c (statisticsflag): New variable.
176 Add support for `--statistics'.
179 Remove a lot of now useless `extern' statements in most files.
181 2000-10-02 Akim Demaille <akim@epita.fr>
183 * src/LR0.h: New file.
186 2000-10-02 Akim Demaille <akim@epita.fr>
188 * src/print.h: New file.
190 * src/print.c: Formatting and ordering changes.
191 (verbose, terse): Replace with...
192 (print_results): this new function.
195 2000-10-02 Akim Demaille <akim@epita.fr>
197 * src/conflicts.c (conflict_report): New function.
198 (conflict_log, verbose_conflict_log): Replace with...
199 (print_conflicts): this function.
201 * src/conflicts.h: New file.
202 Propagate its inclusion.
204 2000-10-02 Akim Demaille <akim@epita.fr>
206 * src/nullable.h: New file.
207 Propagate its inclusion.
208 * src/nullable.c: Formatting changes.
210 2000-10-02 Akim Demaille <akim@epita.fr>
212 * src/reduce.h: New file.
213 Propagate its inclusion.
214 * src/reduce.c: Topological sort and other formatting changes.
215 (bool, TRUE, FALSE): Move their definition to...
216 * src/system.h: here.
218 2000-10-02 Akim Demaille <akim@epita.fr>
220 * src/files.c: Formatting changes.
221 (tryopen, tryclose, openfiles): Rename as...
222 (xfopen, xfclose, open_files): this.
223 (stringappend): static.
224 * src/files.h: Complete the list of exported symbols.
227 2000-10-02 Akim Demaille <akim@epita.fr>
229 * src/reader.h: New file.
230 Propagate its use instead of tedious list of `extern' and
232 * src/reader.c: Formatting changes, topological sort,
235 2000-10-02 Akim Demaille <akim@epita.fr>
237 * src/lex.h: Prototype `lex.c' exported functions.
238 * src/reader.c: Adjust.
239 * src/lex.c: Formatting changes.
240 (safegetc): Rename as...
243 2000-10-02 Akim Demaille <akim@epita.fr>
245 * src/lalr.h: New file.
246 Propagate its inclusion instead of prototypes and `extern'.
247 * src/lalr.c: Formatting changes, topological sorting etc.
249 2000-10-02 Akim Demaille <akim@epita.fr>
251 * src/output.c (token_actions): Introduce a temporary array,
252 YYDEFACT, that makes it possible for this function to use
255 2000-10-02 Akim Demaille <akim@epita.fr>
257 `user_toknums' is output as a `short[]' in `output.c', while it is
258 defined as a `int[]' in `reader.c'. For consistency with the
259 other output tables, `user_toknums' is now defined as a table of
262 * src/reader.c (user_toknums): Be a short table instead of an int
266 Factor the short table outputs.
268 * src/output.c (output_short_table): New function.
269 * src/output.c (output_gram, output_stos, output_rule_data)
270 (output_base, output_table, output_check): Use it.
272 2000-10-02 Akim Demaille <akim@epita.fr>
274 * src/output.c (output): Topological sort of the functions, in
275 order to get rid of the `static' prototypes.
276 No longer use `register'.
277 * src/output.h: New file.
278 Propagate its inclusion in files explicitly prototyping functions
281 2000-09-21 Akim Demaille <akim@epita.fr>
283 * src/atgeneral.m4: Update from Autoconf.
285 2000-09-21 Akim Demaille <akim@epita.fr>
287 * src/closure.h: New file.
288 * src/closure.c: Formatting changes, topological sort over the
289 functions, use of closure.h.
290 (initialize_closure, finalize_closure): Rename as...
291 (new_closure, free_closure): these. Adjust dependencies.
292 * src/LR0.c: Formatting changes, topological sort, use of
294 (initialize_states): Rename as...
296 * src/Makefile.am (noinst_HEADERS): Adjust.
298 2000-09-20 Akim Demaille <akim@epita.fr>
300 * src/acconfig.h: Don't protect config.h against multiple
303 * src/system.h: Define PARAMS.
304 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
305 purpose of config.h. system.h must not try to fix wrong
306 definitions in config.h.
308 2000-09-20 Akim Demaille <akim@epita.fr>
310 * src/derives.h: New file.
311 * src/main.c, src/derives.h: Use it.
313 * src/Makefile.am (noinst_HEADERS): Adjust.
315 2000-09-20 Akim Demaille <akim@epita.fr>
317 * tests/atgeneral.m4: Update from Autoconf.
318 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
319 (AT_CHECK_CALC): New macros.
320 Use these macros to test bison with options `', `--raw',
321 `--debug', `--yacc', `--yacc --debug'.
323 2000-09-19 Akim Demaille <akim@epita.fr>
325 * src/output.c: Formatting changes.
326 * src/machine.h: Remove, leaving its contents in...
327 * src/system.h: here.
329 Adjust all dependencies on stdio.h and machine.h.
330 * src/getargs.h: New file.
331 Let all `extern' declarations about getargs.c be replaced with
332 inclusion of `getargs.h'.
333 * src/Makefile.am (noinst_HEADERS): Adjust.
335 * tests/calc.m4 (yyin): Be initialized in main, not on the global
337 (yyerror): Returns void, not int.
338 * doc/bison.texinfo: Formatting changes.
340 2000-09-19 Akim Demaille <akim@epita.fr>
342 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
345 2000-09-18 Akim Demaille <akim@epita.fr>
347 * configure.in: Append WARNING_CFLAGS to CFLAGS.
348 * src/Makefile.am (INCLUDES): Don't.
349 Be ready to fetch headers in lib/.
351 2000-09-18 Akim Demaille <akim@epita.fr>
353 * doc/bison.texinfo: Update the copyright.
354 ANSIfy and GNUify the examples.
357 2000-09-18 Akim Demaille <akim@epita.fr>
359 First set of tests: use the `calc' example from the documentation.
361 * src/bison.s1 (yyparse): Condition the code using `yytname' which
362 is defined only when YYDEBUG is.
363 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
364 * src/files.c (tryopen, tryclose): Formatting changes.
365 Move to the top and be static.
366 * src/reader.c (read_signed_integer): Likewise.
367 * tests/calc.m4: New file.
368 * Makefile.am, suite.m4: Adjust.
369 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
371 2000-09-18 Akim Demaille <akim@epita.fr>
373 Add support for an Autotest test suite for Bison.
375 * m4/m4.m4, m4/atconfig.m4: New files.
376 * m4/Makefile.am (EXTRA_DIST): Adjust.
377 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
379 * src/getargs.c: Display a more standard --version message.
380 * src/reader.c (reader): Formatting changes.
381 No longer depend upon VERSION_STRING.
382 * configure.in: No longer use `dnl'.
383 Set up the test suite and the new directory `tests/.
384 (VERSION_STRING): Remove.
386 2000-04-14 Akim Demaille <akim@epita.fr>
388 * src/reader.c (copy_comment2): New function, same as former
389 `copy_comment', but outputs into two FILE *.
390 (copy_comment): Use it.
391 (parse_union_decl): Use it.
392 (get_type, parse_start_decl): Use the same `invalid' message.
393 (parse_start_decl, parse_union_decl): Use the same `multiple'
395 (parse_union_decl, copy_guard, copy_action): Use the same
397 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
399 2000-03-31 Akim Demaille <akim@epita.fr>
401 * src/files.c (tryopen, tryclose): Move to the top.
404 2000-03-31 Akim Demaille <akim@epita.fr>
406 * src/main.c (main): Don't call `done', exit does it.
408 2000-03-31 Akim Demaille <akim@epita.fr>
410 * allocate.c: s/return (foo)/return foo/.
413 * output.c: Likewise.
414 * reader.c: Likewise.
415 * symtab.c: Likewise.
416 * vmsgetargs.c: Likewise.
418 2000-03-31 Akim Demaille <akim@epita.fr>
420 Clean up the error reporting functions.
422 * src/report.c: New file.
423 * src/report.h: Likewise.
424 * src/Makefile.am: Adjust.
425 * m4/error.m4: New file.
426 * m4/Makefile.am: Adjust.
427 * configure.in (jm_PREREQ_ERROR): Call it.
428 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
430 (fatal, fatals): Remove. All callers use complain.c::fatal.
431 (warn, warni, warns, warnss, warnss): Remove. All callers use
432 complain.c::complain.
433 (toomany): Remove, use fatal instead.
434 * src/files.c (done): No argument, use complain_message_count.
435 * src/main.c (main): Register `done' to `atexit'.
437 * src/getargs.c (usage): More `fputs', less `fprintf'.
439 2000-03-28 Akim Demaille <akim@epita.fr>
441 * lib/: New directory.
442 * Makefile.am (SUBDIRS): Adjust.
443 * configure.in: Adjust.
444 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
446 * src/alloca.c: Moved to lib/.
447 * src/getopt.c: Likewise.
448 * src/getopt1.c: Likewise.
449 * src/getopt.h: Likewise.
450 * src/ansi2knr.c: Likewise.
451 * src/ansi2knr.1: Likewise.
452 * src/Makefile.am: Adjust.
453 * lib/Makefile.am: New file.
455 2000-03-28 Akim Demaille <akim@epita.fr>
457 * src/getargs.c (usage): Refresh the help message.
459 2000-03-17 Akim Demaille <akim@epita.fr>
461 * src/getopt1.c: Updated from textutils 2.0e
462 * src/getopt.c: Likewise.
463 * src/getopt.h: Likewise.
465 2000-03-17 Akim Demaille <akim@epita.fr>
467 * src/Makefile.am (bison.simple): Fix the awk program: quote only
468 the file name, not the whole `#line LINE FILE'.
470 2000-03-17 Akim Demaille <akim@epita.fr>
472 On syntax errors, report the token on which we choked.
474 * src/bison.s1 (yyparse): In the label yyerrlab, when
475 YYERROR_VERBOSE, add yychar in msg.
477 2000-03-17 Akim Demaille <akim@epita.fr>
479 * src/reader.c (copy_at): New function.
480 (copy_guard): Use it.
481 (copy_action): Use it.
483 2000-03-17 Akim Demaille <akim@epita.fr>
485 Be kind to translators, save some useless translations.
487 * src/main.c (banner): New function.
488 (fatal_banner): Use it.
489 (warn_banner): Use it.
491 2000-03-17 Akim Demaille <akim@epita.fr>
493 * src/reader.c (copy_definition): Use copy_string and
494 copy_comment. Removed now unused `match', `ended',
496 (copy_comment, copy_string): Moved, to be visible from
499 2000-03-17 Akim Demaille <akim@epita.fr>
501 * src/reader.c (copy_string): Declare `static inline'. No
502 problems with inline, since it is checked by configure.
503 (copy_comment): Likewise.
505 2000-03-17 Akim Demaille <akim@epita.fr>
507 * src/reader.c (packsymbols): Formatting changes.
509 2000-03-17 Akim Demaille <akim@epita.fr>
511 * src/reader.c (copy_comment): New function, factored out from:
512 (copy_action): Use it. Removed now unused `match', `ended',
514 (copy_guard): Likewise.
516 2000-03-17 Akim Demaille <akim@epita.fr>
518 * src/reader.c (copy_string): New function, factored out from:
519 (copy_action): Use it.
520 (copy_guard): Likewise.
522 2000-03-17 Akim Demaille <akim@epita.fr>
524 Change the handling of @s so that they behave exactly like $s.
525 There is now a pseudo variable @$ (readble and writable), location
526 of the lhs of the rule (by default ranging from the location of
527 the first symbol of the rhs, to the location of the last symbol,
528 or, if the rhs is empty, YYLLOC).
530 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
532 (yyparse): When providing a default semantic action, provide a
533 default location action.
534 (after the $): No longer change `*YYLSP', just stack YYLOC the
535 same way you stack YYVAL.
536 * src/reader.c (read_declarations): Use warns.
537 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
538 (copy_action, case '@'): Likewise.
539 Use a standard error message, to save useless work from
542 2000-03-17 Akim Demaille <akim@epita.fr>
544 * src/bison.s1: Formatting and cosmetics changes.
545 * src/reader.c: Likewise.
546 Update the Copyright notice.
548 2000-03-17 Akim Demaille <akim@epita.fr>
550 * src/bison.s1 (#line): All set to `#line' only, since the
551 Makefile now handles them.
553 2000-03-16 Akim Demaille <akim@epita.fr>
555 * src/output.c (output_rule_data): Output the documentation of
557 (Copyright notice): Update.
560 2000-03-16 Akim Demaille <akim@epita.fr>
562 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
563 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
564 One `#if YYDEBUG' remains, since it uses variables which are
565 defined only if `YYDEBUG != 0'.
567 2000-03-16 Akim Demaille <akim@epita.fr>
569 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
570 and related variables so that the similarities are highlighted.
572 2000-03-16 Akim Demaille <akim@epita.fr>
574 * src/bison.s1: Properly indent CPP directives.
576 2000-03-16 Akim Demaille <akim@epita.fr>
578 * src/bison.s1: Properly indent the `alloca' CPP section.
580 2000-03-16 Akim Demaille <akim@epita.fr>
582 Do not hard code values of directories in `configure.in'.
583 Update the `configure' tool chain.
585 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
587 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
588 (AC_OUTPUT): Add m4/Makefile.
589 Bump to bison 1.28a, 1.29 has never been released.
590 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
591 handled via src/Makefile.am.
592 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
593 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
595 * Makefile.am (SUBDIRS): Add m4.
596 (ACLOCAL_AM_FLAGS): New variable.
597 (AUTOMAKE_OPTIONS): Add check-news.
598 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
599 the proper line number and file name.
600 (DEFS): Propagate the location of bison library files and of the
602 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
604 * acinclude.m4: Remove, replaced by the directory m4.
605 * m4/Makefile.am (EXTRA_DIST): New variable.
606 * m4/gettext.m4: New file, from the fileutils.
607 * m4/lcmessage.m4: Likewise
608 * m4/progtest.m4: Likewise.
609 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
611 2000-03-10 Akim Demaille <akim@epita.fr>
614 Formatting changes of various comments.
615 Respect the GNU coding standards at various places.
616 Don't use `_()' when no translation is needed.
618 1999-12-13 Jesse Thilo <jthilo@gnu.org>
621 OS/2 honors TMPDIR environment variable.
623 1999-12-13 Jesse Thilo <jthilo@gnu.org>
625 * doc/bison.texinfo: Tweaked spelling and grammar.
627 Removed reference to price of printed copy.
628 Mention BISON_SIMPLE and BISON_HAIRY.
630 1999-12-13 Jesse Thilo <jthilo@gnu.org>
632 * configure.in, NEWS:
635 1999-10-27 Jesse Thilo <jthilo@gnu.org>
637 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
638 Added reference card.
640 1999-07-26 Jesse Thilo <jthilo@gnu.org>
642 * po/ru.po: Added Russian translation.
644 1999-07-26 Jesse Thilo <jthilo@gnu.org>
646 * configure.in: Added Russian translation.
648 1999-07-06 Jesse Thilo <jthilo@gnu.org>
650 * configure.in, NEWS, README:
651 Released version 1.28.
653 1999-06-14 Jesse Thilo <jthilo@gnu.org>
656 Squashed redefinition warning on some systems.
658 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
659 Have configure build version string instead of relying on ANSI string
662 1999-06-14 Jesse Thilo <jthilo@gnu.org>
664 * po/POTFILES.in: Got rid of version.c.
666 1999-06-14 Jesse Thilo <jthilo@gnu.org>
668 * acconfig.h, configure.in:
669 Have configure build version string instead of relying on ANSI string
672 1999-06-08 Jesse Thilo <jthilo@gnu.org>
675 Dropped mention of `+' for long-named options.
677 1999-05-30 Jesse Thilo <jthilo@gnu.org>
679 * src/files.c: Added <unistd.h> for unlink().
681 * src/Makefile.am, src/system.h:
684 1999-05-30 Jesse Thilo <jthilo@gnu.org>
686 * README: Added a FAQ list.
688 * configure.in, acconfig.h:
691 1999-05-30 Jesse Thilo <jthilo@gnu.org>
693 * doc/FAQ, doc/Makefile.am:
696 1999-05-19 Jesse Thilo <jthilo@gnu.org>
698 * src/alloc.h, src/symtab.h, src/version.c:
699 Protected inclusion of "config.h" with HAVE_CONFIG_H.
701 1999-04-18 Jesse Thilo <jthilo@gnu.org>
703 * src/.cvsignore, src/Makefile.am:
704 Reorganized: sources in `src', documentation in `doc'.
706 * src/lex.c (literalchar):
707 fixed the code for escaping double quotes (thanks
710 1999-04-18 Jesse Thilo <jthilo@gnu.org>
712 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
713 Adjusted paths to reflect directory reorganization.
715 1999-04-18 Jesse Thilo <jthilo@gnu.org>
717 * doc/.cvsignore, doc/Makefile.am:
718 Reorganized: sources in `src', documentation in `doc'.
720 1999-04-18 Jesse Thilo <jthilo@gnu.org>
723 Updated AC_INIT file to reflect directory reorganization.
725 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
726 Reorganized: sources in `src', documentation in `doc'.
728 1999-04-13 Jesse Thilo <jthilo@gnu.org>
731 Don't declare calloc() and realloc() if not necessary.
733 1999-04-13 Jesse Thilo <jthilo@gnu.org>
735 * configure.in, acconfig.h, acinclude.m4:
736 Don't declare calloc() and realloc() if not necessary.
738 1999-03-23 Jesse Thilo <jthilo@gnu.org>
740 * po/.cvsignore: Added i18n support.
742 1999-03-23 Jesse Thilo <jthilo@gnu.org>
744 * acconfig.h, configure.in, Makefile.am:
747 1999-03-22 Jesse Thilo <jthilo@gnu.org>
749 * src/bison.s1: Fixed #line numbers.
751 1999-03-15 Jesse Thilo <jthilo@gnu.org>
753 * po/es.po, po/fr.po, po/nl.po, po/de.po:
754 Added PO files from Translation Project.
756 1999-03-03 Jesse Thilo <jthilo@gnu.org>
759 Added support for non-ANSI compilers (ansi2knr).
761 1999-02-16 Jesse Thilo <jthilo@gnu.org>
763 * configure.in: Bumped version number to 1.27.
766 Added `bison.simple' to list of files removed by `make distclean'.
768 1999-02-12 Jesse Thilo <jthilo@gnu.org>
770 * src/files.c, src/files.h:
771 Defined locations of parser files in config.h instead of Makefile.
773 1999-02-12 Jesse Thilo <jthilo@gnu.org>
775 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
776 Defined locations of parser files in config.h instead of Makefile.
778 1999-02-09 Jesse Thilo <jthilo@gnu.org>
781 Removed inappropriate use of $< macro.
783 1999-02-05 Jesse Thilo <jthilo@gnu.org>
785 * po/Makefile.in.in, po/POTFILES.in:
786 Add `po' directory skeleton.
788 1999-01-27 Jesse Thilo <jthilo@gnu.org>
790 * README: Document help-bison list.
792 * configure.in: Add check for mkstemp().
794 1999-01-20 Jesse Thilo <jthilo@gnu.org>
796 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
797 Hush a few compiler warnings.
800 Add tryclose(), which verifies that fclose was successful.
801 Hush a couple of compiler warnings.
803 1999-01-20 Jesse Thilo <jthilo@gnu.org>
805 * Makefile.am, OChangeLog:
806 ChangeLog is now automatically generated. Include the old version as
809 1999-01-14 Jesse Thilo <jthilo@gnu.org>
811 * 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:
814 1999-01-14 Jesse Thilo <jthilo@gnu.org>
816 * doc/bison.texinfo: Fix formatting glitch.
818 * doc/bison.texinfo: Update FSF address.
820 1999-01-14 Jesse Thilo <jthilo@gnu.org>
822 * acconfig.h: Update FSF address.
824 1999-01-08 Jesse Thilo <jthilo@gnu.org>
827 Don't define PACKAGE here, since config.h defines it.
829 1998-12-30 Jesse Thilo <jthilo@gnu.org>
831 * src/reader.c: Update copyright date.
834 Ditch sprintf to statically-sized buffers in fatal/warn functions in
835 favor of output directly to stderr (avoids buffer overruns).
837 * src/reader.c: Some checks for premature EOF.
839 * 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:
840 Use prototypes if the compiler understands them.
842 * src/files.c: Honor TMPDIR on Unix hosts.
843 Use prototypes if the compiler understands them.
846 Fix a couple of buffer overrun bugs.
847 Use prototypes if the compiler understands them.
849 * src/system.h: Include unistd.h and ctype.h.
850 Use #ifdef instead of #if for NLS symbols.
852 1998-12-30 Jesse Thilo <jthilo@gnu.org>
855 Delete comment "consider using @set for edition number, etc..." since
858 1998-12-30 Jesse Thilo <jthilo@gnu.org>
861 Use prototypes if the compiler understands them.
863 * NEWS: Document 1.26 highlights.
865 * Makefile.am: Require Automake 1.3 or later.
868 Use prototypes if the compiler understands them.
870 1998-12-29 Jesse Thilo <jthilo@gnu.org>
873 Use VERSION symbol from automake for version number.
875 1998-12-29 Jesse Thilo <jthilo@gnu.org>
877 * acconfig.h, configure.in, version.cin:
878 Use VERSION symbol from automake for version number.
880 1998-11-28 Jesse Thilo <jthilo@gnu.org>
883 Distribute original version of simple parser (bison.s1), not built
884 version (bison.simple).
886 1998-11-28 Jesse Thilo <jthilo@gnu.org>
888 * doc/bison.texinfo: Add info dir entry.
891 Let automake put version number into documentation.
893 1998-11-26 Jesse Thilo <jthilo@gnu.org>
895 * src/bison.cld, src/build.com, src/vmshlp.mar:
896 Add non-RCS files from /gd/gnu/bison.
898 1998-11-26 Jesse Thilo <jthilo@gnu.org>
901 Document the BISON_HAIRY and BISON_SIMPLE variables.
903 1998-11-25 Jesse Thilo <jthilo@gnu.org>
905 * src/version.c: Build version.c automatically.
908 Fix token numbering (used to start at 258, not 257).
910 * src/system.h: Include config.h.
912 * src/getargs.c: Update bug report address.
914 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
915 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
917 1998-11-25 Jesse Thilo <jthilo@gnu.org>
920 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
922 * configure.in, version.cin:
923 Build version.c automatically.
925 * AUTHORS: Add AUTHORS file.
927 * README: Update bug report address.
930 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
932 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
935 1998-11-25 Jesse Thilo <jthilo@gnu.org>
937 * doc/bison.texinfo: Clean up some formatting.
939 1998-05-05 Richard Stallman <rms@gnu.org>
942 Explain better why to make a pure parser.
944 1998-01-05 Richard Stallman <rms@gnu.org>
946 * src/files.c (openfiles):
947 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
948 find a temporary directory, if possible. Do not unlink files while
951 1997-08-25 Richard Stallman <rms@gnu.org>
953 * src/reader.c (stack_offset;):
954 Change some warni to warns.
956 * src/lex.c (literalchar): Use warns, not warni.
958 1997-06-28 Richard Stallman <rms@gnu.org>
960 * src/bison.s1: Add a Bison version comment.
962 * src/main.c (fatal, warn, berror):
965 1997-06-28 Richard Stallman <rms@gnu.org>
967 * Makefile.in (bison_version): New variable.
968 (dist): Use that variable.
969 (bison.s1): Substitute the Bison version into bison.simple.
971 * bison.simple: Add a Bison version comment.
973 1997-06-18 Richard Stallman <rms@gnu.org>
975 * src/main.c (fatal, warn, berror):
976 Make error messages standard.
977 (toomany): Improve error message text.
979 * 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:
980 new.h renamed to alloc.h.
982 1997-06-18 Richard Stallman <rms@gnu.org>
984 * Makefile.in: new.h renamed to alloc.h.
986 1997-05-24 Richard Stallman <rms@gnu.org>
988 * src/lex.c (literalchar):
989 Fix the code for escaping \, " and '.
991 (lex): Avoid trouble when there are many chars
992 to discard in a char literal with just several chars in it.
994 1997-05-17 Richard Stallman <rms@gnu.org>
997 Use malloc, if using alloca is troublesome.
998 (YYSTACK_USE_ALLOCA): New flag macro.
999 Define it for some systems and compilers.
1000 (YYSTACK_ALLOC): New macro.
1001 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1002 If it was malloc'd, free it.
1004 1997-05-17 Richard Stallman <rms@gnu.org>
1007 Use malloc, if using alloca is troublesome.
1008 (YYSTACK_USE_ALLOCA): New flag macro.
1009 Define it for some systems and compilers.
1010 (YYSTACK_ALLOC): New macro.
1011 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1012 If it was malloc'd, free it.
1014 1997-04-23 Richard Stallman <rms@gnu.org>
1017 (alloca) [__hpux]: Always define as __builtin_alloca.
1019 1997-04-23 Richard Stallman <rms@gnu.org>
1022 (alloca) [__hpux]: Always define as __builtin_alloca.
1024 1997-04-22 Richard Stallman <rms@gnu.org>
1027 [__hpux]: Include alloca.h (right for HPUX 10)
1028 instead of declaring alloca (right for HPUX 9).
1030 * src/bison.s1 (__yy_memcpy):
1031 Declare arg `count' as unsigned int.
1032 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1034 1997-04-22 Richard Stallman <rms@gnu.org>
1037 [__hpux]: Include alloca.h (right for HPUX 10)
1038 instead of declaring alloca (right for HPUX 9).
1040 * bison.simple (__yy_memcpy):
1041 Declare arg `count' as unsigned int.
1042 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1044 1997-01-03 Richard Stallman <rms@gnu.org>
1046 * src/allocate.c: [__STDC__ or _MSC_VER]:
1047 Declare calloc and realloc to return void *.
1049 1997-01-02 Richard Stallman <rms@gnu.org>
1052 [_MSC_VER]: Include stdlib.h and process.h.
1053 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1055 * src/main.c (main): Return FAILURE as a value.
1056 (printable_version): Declare arg as int, not char.
1058 1997-01-02 Richard Stallman <rms@gnu.org>
1060 * Makefile.in (dist):
1061 Explicitly check for symlinks, and copy them.
1063 1996-12-19 Richard Stallman <rms@gnu.org>
1066 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1068 1996-12-18 Paul Eggert <eggert@gnu.org>
1070 * src/bison.s1 (yyparse):
1071 If __GNUC__ and YYPARSE_PARAM are both defined,
1072 declare yyparse to have a void * argument.
1074 1996-12-18 Paul Eggert <eggert@gnu.org>
1076 * bison.simple (yyparse):
1077 If __GNUC__ and YYPARSE_PARAM are both defined,
1078 declare yyparse to have a void * argument.
1080 1996-12-17 Richard Stallman <rms@gnu.org>
1082 * src/reduce.c (nbits): Add some casts.
1084 1996-08-12 Richard Stallman <rms@gnu.org>
1086 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1088 1996-08-12 Richard Stallman <rms@gnu.org>
1090 * bison.simple: Test _MSDOS as well as _MSDOS_.
1092 1996-07-31 Richard Stallman <rms@gnu.org>
1095 [__sun && __i386]: Include alloca.h.
1097 1996-07-31 Richard Stallman <rms@gnu.org>
1100 [__sun && __i386]: Include alloca.h.
1102 1996-07-30 Richard Stallman <rms@gnu.org>
1104 * src/bison.s1: Comment change.
1106 * src/bison.s1: Test _MSDOS_, not MSDOS.
1108 1996-07-30 Richard Stallman <rms@gnu.org>
1110 * bison.simple: Comment change.
1112 * bison.simple: Test _MSDOS_, not MSDOS.
1114 1996-06-01 Richard Stallman <rms@gnu.org>
1116 * 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:
1117 Insert `_' macro around many string constants.
1120 Insert `_' macro around many string constants.
1122 (main): Call setlocale, bindtextdomain and textdomain.
1124 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1125 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1126 [ENABLE_NLS]: Include libintl.h.
1127 [ENABLE_NLS] (gettext): Define.
1128 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1129 (N_, PACKAGE, LOCALEDIR): New macros.
1131 1996-06-01 Richard Stallman <rms@gnu.org>
1133 * POTFILES.in: New file.
1135 * Makefile.in (allocate.o):
1136 Define target explicitly.
1138 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1139 (LDFLAGS): Set to @LDFLAGS@.
1140 (configure): Run autoconf only if preceding `cd' succeeds.
1141 (bison.s1): Redirect output to temporary file then move the
1142 temporary to the target, rather than redirecting directly to bison.s1.
1143 (clean): Remove config.status and config.log.
1144 (distclean): Don't remove config.status here.
1146 1996-05-12 Richard Stallman <rms@gnu.org>
1149 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1151 1996-05-12 Richard Stallman <rms@gnu.org>
1154 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1156 1996-05-11 Richard Stallman <rms@gnu.org>
1158 * src/bison.s1 (__yy_memcpy):
1159 Really reorder the args, as was supposedly done on Feb 14 1995.
1160 (yyparse): Calls changed accordingly.
1162 1996-05-11 Richard Stallman <rms@gnu.org>
1164 * Makefile.in (dist): Don't use $(srcdir).
1166 * bison.simple (__yy_memcpy):
1167 Really reorder the args, as was supposedly done on Feb 14 1995.
1168 (yyparse): Calls changed accordingly.
1170 1996-01-27 Richard Stallman <rms@gnu.org>
1172 * src/output.c (output_rule_data):
1173 Test YYERROR_VERBOSE in the conditional
1174 around the definition of ttyname.
1176 1995-12-29 Richard Stallman <rms@gnu.org>
1179 Fix line numbers in #line commands.
1181 1995-12-29 Richard Stallman <rms@gnu.org>
1184 Fix line numbers in #line commands.
1186 1995-12-27 Richard Stallman <rms@gnu.org>
1188 * src/bison.s1 (YYPARSE_PARAM_DECL):
1189 In C++, make it always null.
1190 (YYPARSE_PARAM_ARG): New macro.
1191 (yyparse): Use YYPARSE_PARAM_ARG.
1193 1995-12-27 Richard Stallman <rms@gnu.org>
1195 * bison.simple (YYPARSE_PARAM_DECL):
1196 In C++, make it always null.
1197 (YYPARSE_PARAM_ARG): New macro.
1198 (yyparse): Use YYPARSE_PARAM_ARG.
1200 1995-11-29 Richard Stallman <rms@gnu.org>
1202 * doc/bison.texinfo:
1203 Describe literal string tokens, %raw, %no_lines, %token_table.
1205 1995-11-29 Daniel Hagerty <hag@gnu.org>
1207 * doc/bison.texinfo: Fixed update date
1209 1995-10-16 Richard Stallman <rms@gnu.org>
1211 * src/version.c: Version 1.25.
1213 1995-10-16 Richard Stallman <rms@gnu.org>
1215 * NEWS: *** empty log message ***
1217 1995-10-16 Richard Stallman <rms@gnu.org>
1219 * doc/bison.1, doc/bison.rnh:
1222 1995-10-15 Richard Stallman <rms@gnu.org>
1224 * src/vmsgetargs.c, src/getargs.c:
1225 Added -n, -k, and -raw switches.
1226 (noparserflag, toknumflag, rawtoknumflag): New variables.
1228 * src/symtab.h (SALIAS):
1229 New #define for adding aliases to %token.
1230 (struct bucket): Added `alias' field.
1232 * src/reduce.c (reduce_grammar):
1233 Revise error message.
1234 (print_notices): Remove final `.' from error message.
1236 * src/reader.c (reader_output_yylsp):
1238 (readgram): Use `#if 0' around code that accepted %command
1239 inside grammar rules: The documentation doesn't allow it,
1240 and it will fail since the %command processors scan for the next %.
1241 (parse_token_decl): Extended the %token
1242 declaration to allow a multi-character symbol as an alias.
1243 (parse_thong_decl): New function.
1244 (read_declarations): Added %thong declarations.
1245 (read_declarations): Handle NOOP to deal with allowing
1246 % declarations as another means to specify the flags.
1247 (readgram): Allow %prec prior to semantics embedded in a rule.
1248 (skip_to_char, read_declarations, copy_definition)
1249 (parse_token_decl, parse_start_decl, parse_type_decl)
1250 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1251 (get_type_name, copy_guard, copy_action, readgram)
1252 (get_type, packsymbols): Revised most error messages.
1253 Changed `fatal' to `warnxxx' to avoid aborting for error.
1254 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1255 (read_declarations): Improve the error message for
1256 an invalid character. Do not abort.
1257 (read_declarations, copy_guard, copy_action): Use
1258 printable_version to avoid unprintable characters in printed output.
1259 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1260 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1261 Allow the type of a non-terminal can be given
1262 more than once, as long as all specifications give the same type.
1265 (output_headers, output_trailers, output, output_gram)
1266 (output_rule_data): Implement noparserflag variable.
1267 Implement toknumflag variable.
1268 (output): Call reader_output_yylsp to output LTYPESTR.
1270 * src/main.c (main):
1271 If reader sees an error, don't process the grammar.
1272 (fatals): Updated to not use VARARGS1.
1273 (printable_version, int_to_string, warn, warni, warns, warnss)
1274 (warnsss): New error reporting functions. Avoid abort for error.
1277 Added THONG and NOOP for alias processing.
1278 Added SETOPT for the new code that allows setting options with %flags.
1281 Include getopt.h. Add some extern decls.
1282 (safegetc): New function to deal with EOF gracefully.
1283 (literalchar); new function to deal with reading \ escapes.
1284 (lex): Use literalchar.
1285 (lex): Implemented "..." tokens.
1286 (literalchar, lex, parse_percent_token): Made tokenbuffer
1287 always contain the token. This includes growing the token
1288 buffer while reading an integer.
1289 (parse_percent_token): Replaced if-else statement with percent_table.
1290 (parse_percent_token): Added % declarations as another
1291 way to specify the flags -n, -l, and -r. Also added hooks for
1292 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1293 major changes to files.c.
1294 (lex) Retain in the incoming stream a character following
1296 (skip_white_space, lex): Revised most error messages
1297 and changed fatal to warn to avoid aborting.
1298 (percent_table): Added %thong declarations.
1300 * src/gram.h: Comment changes.
1302 * src/files.c (openfiles, open_extra_files, done):
1304 and actfile file. Handle noparserflag. Both for -n switch.
1306 * src/conflicts.c (resolve_sr_conflict):
1307 Remove use of alloca.
1309 1995-06-01 Jim Meyering <meyering@gnu.org>
1311 * doc/bison.texinfo: *** empty log message ***
1313 1995-05-06 Richard Stallman <rms@gnu.org>
1315 * src/bison.s1: Comment change.
1317 1995-05-06 Richard Stallman <rms@gnu.org>
1319 * bison.simple: Comment change.
1321 1995-05-03 Richard Stallman <rms@gnu.org>
1323 * src/version.c: Version now 1.24.
1325 * src/bison.s1: Change distribution terms.
1327 * src/version.c: Version now 1.23.
1329 1995-05-03 Richard Stallman <rms@gnu.org>
1331 * doc/bison.texinfo:
1332 Rewrite "Conditions for Using Bison".
1333 Update version to 1.24.
1335 1995-05-03 Richard Stallman <rms@gnu.org>
1337 * bison.simple: Change distribution terms.
1339 1995-02-23 Richard Stallman <rms@gnu.org>
1341 * src/files.c: Test __VMS_POSIX as well as VMS.
1343 1995-02-14 Jim Meyering <meyering@gnu.org>
1345 * src/bison.s1 (__yy_memcpy):
1346 Renamed from __yy_bcopy to avoid
1347 confusion. Reverse FROM and TO arguments to be consistent with
1350 1995-02-14 Jim Meyering <meyering@gnu.org>
1352 * bison.simple (__yy_memcpy):
1353 Renamed from __yy_bcopy to avoid
1354 confusion. Reverse FROM and TO arguments to be consistent with
1357 1994-11-10 David J. MacKenzie <djm@gnu.org>
1363 * Makefile.in (DISTFILES): Include NEWS.
1365 * Makefile.in (DISTFILES):
1366 Include install-sh, not install.sh.
1368 * configure.in: Update to Autoconf v2 macro names.
1370 1994-10-05 David J. MacKenzie <djm@gnu.org>
1372 * Makefile.in: fix typo
1374 * Makefile.in (prefix, exec_prefix):
1375 Let configure set them.
1377 1994-09-28 David J. MacKenzie <djm@gnu.org>
1379 * Makefile.in: Set datadir to $(prefix)/share.
1381 1994-09-15 Richard Stallman <rms@gnu.org>
1384 Update copyright notice and GPL version.
1386 1994-09-15 Richard Stallman <rms@gnu.org>
1389 Update copyright notice and GPL version.
1391 1994-07-12 Richard Stallman <rms@gnu.org>
1393 * src/reduce.c, src/reader.c:
1396 1994-05-05 David J. MacKenzie <djm@gnu.org>
1398 * Makefile.in: entered into RCS
1400 1994-03-26 Richard Stallman <rms@gnu.org>
1402 * src/bison.s1: entered into RCS
1404 1994-03-26 Richard Stallman <rms@gnu.org>
1406 * bison.simple: entered into RCS
1408 1994-03-25 Richard Stallman <rms@gnu.org>
1410 * src/main.c: entered into RCS
1412 1994-03-24 Richard Stallman <rms@gnu.org>
1414 * src/conflicts.c: entered into RCS
1416 1994-01-02 Richard Stallman <rms@gnu.org>
1418 * Makefile.in: *** empty log message ***
1420 1993-11-21 Richard Stallman <rms@gnu.org>
1422 * src/bison.s1: *** empty log message ***
1424 1993-11-21 Richard Stallman <rms@gnu.org>
1426 * doc/bison.texinfo: entered into RCS
1428 * doc/bison.texinfo: *** empty log message ***
1430 1993-11-21 Richard Stallman <rms@gnu.org>
1432 * bison.simple: *** empty log message ***
1434 1993-10-25 David J. MacKenzie <djm@gnu.org>
1436 * doc/bison.texinfo: *** empty log message ***
1438 1993-10-19 Richard Stallman <rms@gnu.org>
1440 * src/bison.s1: *** empty log message ***
1442 1993-10-19 Richard Stallman <rms@gnu.org>
1444 * bison.simple: *** empty log message ***
1446 1993-10-14 Richard Stallman <rms@gnu.org>
1448 * src/bison.s1: *** empty log message ***
1450 1993-10-14 Richard Stallman <rms@gnu.org>
1452 * bison.simple: *** empty log message ***
1454 1993-09-14 David J. MacKenzie <djm@gnu.org>
1456 * doc/bison.texinfo: *** empty log message ***
1458 1993-09-13 Noah Friedman <friedman@gnu.org>
1460 * Makefile.in: *** empty log message ***
1462 1993-09-10 Richard Stallman <rms@gnu.org>
1464 * src/conflicts.c: *** empty log message ***
1466 * src/system.h: entered into RCS
1468 1993-09-10 Richard Stallman <rms@gnu.org>
1470 * doc/bison.1: entered into RCS
1472 1993-09-06 Noah Friedman <friedman@gnu.org>
1474 * src/version.c: entered into RCS
1476 1993-09-06 Noah Friedman <friedman@gnu.org>
1478 * Makefile.in: *** empty log message ***
1480 1993-07-30 David J. MacKenzie <djm@gnu.org>
1482 * Makefile.in: *** empty log message ***
1484 1993-07-24 Richard Stallman <rms@gnu.org>
1486 * src/bison.s1: *** empty log message ***
1488 1993-07-24 Richard Stallman <rms@gnu.org>
1490 * bison.simple: *** empty log message ***
1492 1993-07-08 David J. MacKenzie <djm@gnu.org>
1494 * Makefile.in: *** empty log message ***
1496 1993-07-04 Richard Stallman <rms@gnu.org>
1498 * src/bison.s1: *** empty log message ***
1500 1993-07-04 Richard Stallman <rms@gnu.org>
1502 * bison.simple: *** empty log message ***
1504 1993-06-26 David J. MacKenzie <djm@gnu.org>
1506 * src/getargs.c: entered into RCS
1508 1993-06-26 David J. MacKenzie <djm@gnu.org>
1510 * doc/bison.texinfo: *** empty log message ***
1512 * doc/bison.1: New file.
1514 1993-06-25 Richard Stallman <rms@gnu.org>
1516 * src/getargs.c: New file.
1518 1993-06-16 Richard Stallman <rms@gnu.org>
1520 * src/bison.s1: *** empty log message ***
1522 1993-06-16 Richard Stallman <rms@gnu.org>
1524 * bison.simple: *** empty log message ***
1526 1993-06-03 Richard Stallman <rms@gnu.org>
1528 * src/bison.s1: New file.
1530 1993-06-03 Richard Stallman <rms@gnu.org>
1532 * doc/bison.texinfo: *** empty log message ***
1534 1993-06-03 Richard Stallman <rms@gnu.org>
1536 * bison.simple: New file.
1538 1993-05-19 Richard Stallman <rms@gnu.org>
1540 * doc/bison.texinfo: New file.
1542 1993-05-07 Noah Friedman <friedman@gnu.org>
1544 * Makefile.in: *** empty log message ***
1546 1993-04-28 Noah Friedman <friedman@gnu.org>
1548 * src/reader.c: *** empty log message ***
1550 1993-04-23 Noah Friedman <friedman@gnu.org>
1552 * src/alloc.h: entered into RCS
1554 1993-04-20 David J. MacKenzie <djm@gnu.org>
1556 * src/version.c: *** empty log message ***
1558 * src/files.c, src/allocate.c:
1561 * src/reader.c: *** empty log message ***
1563 * src/lex.c: entered into RCS
1565 * src/conflicts.c: New file.
1567 * src/symtab.c: entered into RCS
1569 * src/alloc.h: New file.
1571 * src/LR0.c: entered into RCS
1573 1993-04-18 Noah Friedman <friedman@gnu.org>
1575 * src/reader.c: New file.
1577 * src/version.c: *** empty log message ***
1579 1993-04-18 Noah Friedman <friedman@gnu.org>
1581 * Makefile.in: *** empty log message ***
1583 1993-04-17 Noah Friedman <friedman@gnu.org>
1585 * Makefile.in: *** empty log message ***
1587 1993-04-15 Richard Stallman <rms@gnu.org>
1589 * src/main.c, src/files.c:
1592 1993-04-15 Noah Friedman <friedman@gnu.org>
1594 * configure.in: entered into RCS
1596 * configure.in: *** empty log message ***
1598 * configure.in: New file.
1600 1993-04-14 Richard Stallman <rms@gnu.org>
1602 * Makefile.in: New file.
1604 1993-04-13 Richard Stallman <rms@gnu.org>
1606 * src/version.c: New file.
1608 1993-03-25 Richard Stallman <rms@gnu.org>
1610 * src/output.c: entered into RCS
1612 1992-09-25 Richard Stallman <rms@gnu.org>
1614 * configure.bat: entered into RCS
1616 1992-06-22 Richard Stallman <rms@gnu.org>
1618 * src/vmsgetargs.c: entered into RCS
1620 1992-06-22 Richard Stallman <rms@gnu.org>
1622 * doc/bison.rnh: entered into RCS
1624 1992-04-20 David J. MacKenzie <djm@gnu.org>
1626 * README: entered into RCS
1628 1992-01-22 Richard Stallman <rms@gnu.org>
1630 * src/machine.h: entered into RCS
1632 1991-12-21 Richard Stallman <rms@gnu.org>
1634 * src/lalr.c, src/closure.c:
1637 1991-12-20 Richard Stallman <rms@gnu.org>
1639 * src/state.h: entered into RCS
1641 1991-12-18 Richard Stallman <rms@gnu.org>
1643 * src/print.c, src/nullable.c, src/derives.c:
1646 1991-11-03 David J. MacKenzie <djm@gnu.org>
1648 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1651 1988-09-09 Richard Stallman <rms@gnu.org>
1653 * src/bison.hairy: entered into RCS
1655 1987-12-16 Richard Stallman <rms@gnu.org>
1657 * REFERENCES: entered into RCS