1 2000-10-16 Akim Demaille <akim@epita.fr>
3 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
4 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
5 New files, from Fileutils 4.0.27.
6 * src/main.c (printable_version): Remove.
7 * src/lex.c, src/reader.c: Use `quote'.
9 2000-10-04 Akim Demaille <akim@epita.fr>
11 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
13 2000-10-04 Akim Demaille <akim@epita.fr>
15 * doc/bison.texinfo: Various typos spotted by Neil Booth.
17 2000-10-04 Akim Demaille <akim@epita.fr>
19 When a literal string is used to define two different tokens,
21 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23 * tests/regression.m4: New file.
24 Include the core of the sample provided by Piotr Gackiewicz.
25 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
28 2000-10-04 Akim Demaille <akim@epita.fr>
30 * src/reader.c (parse_expect_decl): Keep `count' within the size
34 2000-10-02 Paul Eggert <eggert@twinsun.com>
36 * bison.s1 (yyparse): Assign the default value
37 unconditionally, to avoid a GCC warning and make the parser a
40 2000-10-02 Akim Demaille <akim@epita.fr>
42 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
45 2000-10-02 Akim Demaille <akim@epita.fr>
47 * src/derives.c, src/print.c, src/reduce.c: To ease the
48 translation, move some `\n' out of the translated strings.
50 2000-10-02 Akim Demaille <akim@epita.fr>
52 The location tracking mechanism is precious for parse error
53 messages. Nevertheless, it is enabled only when `@n' is used in
54 the grammar, which is a different issue (you can use it in error
55 message, but not in the grammar per se). Therefore, there should
56 be another means to enable it.
58 * src/getargs.c (getargs): Support `--locations'.
60 * src/getargs.h (locationsflag): Export it.
61 * src/lex.c (percent_table): Support `%locations'.
62 * src/reader.c (yylsp_needed): Remove this variable, now replaced
64 * doc/bison.texinfo: Document `--locations' and `%locations'.
66 * tests/calc.m4: Test it.
68 For regularity of the names, replace each
69 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
70 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
71 In addition replace each `flag' with `_flag'.
73 2000-10-02 Akim Demaille <akim@epita.fr>
75 Also test parse error messages, including with YYERROR_VERBOSE.
77 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
79 Use it to check the computations.
80 Use it to check `nonassoc' is honored.
81 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
83 (_AT_CHECK_CALC): Adjust to this option.
84 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
86 2000-10-02 Akim Demaille <akim@epita.fr>
88 Test also `--verbose', `--defines' and `--name-prefix'. Testing
89 the latter demonstrates a flaw in the handling of non debugging
90 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
91 was used in order to simplify:
107 unfortunately this leads to a CPP conflict when
108 `--name-prefix=foo' is used since it produces `#define yydebug
111 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
112 (YYDPRINTF): New macro.
114 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
116 Also test `--verbose', `--defines' and `--name-prefix'.
118 2000-10-02 Akim Demaille <akim@epita.fr>
120 Improve the readability of the produced parsers.
122 * src/bison.s1: Formatting changes.
123 Improve the comment related to the `$' mark.
124 (yydefault): Don't fall through to `yyresume': `goto' there.
125 * src/output.c (output_parser): When the `$' is met, skip the end
127 New variable, `number_of_dollar_signs', to check there's exactly
128 one `$' in the parser skeleton.
130 2000-10-02 Akim Demaille <akim@epita.fr>
132 * lib/xstrdup.c: New file, from the fileutils.
133 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
134 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
135 instead of strlen + xmalloc + strcpy.
136 * src/symtab.c (copys): Remove, use xstrdup instead.
138 2000-10-02 Akim Demaille <akim@epita.fr>
140 * src/gram.h (associativity): New enum type which replaces the
141 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
142 `right_assoc', `left_assoc' and `non_assoc'.
143 Adjust all dependencies.
144 * src/reader.c: Formatting changes.
145 (LTYPESTR): Don't define it, use it as a literal in
146 `reader_output_yylsp'.
147 * src/symtab.h (symbol_class): New enum type which replaces the
148 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
149 `sunknown', `stoken and `snterm'.
151 2000-10-02 Akim Demaille <akim@epita.fr>
153 * src/getargs.c (fixed_outfiles): Rename as...
154 (yaccflag): for consistency and accuracy.
157 2000-10-02 Akim Demaille <akim@epita.fr>
159 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
160 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
161 difficult and introduced a lot of core dump. It turns out that
162 Bison used an implementation of `xmalloc' based on `calloc', and
163 at various places it does depend upon the initialization to 0. I
164 have not tried to isolate the pertinent places, and all the former
165 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
166 someone should address this issue.
168 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
169 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
172 * src/warshall.h: New file.
175 2000-10-02 Akim Demaille <akim@epita.fr>
177 Various anti-`extern in *.c' changes.
179 * src/system.h: Include `assert.h'.
181 2000-10-02 Akim Demaille <akim@epita.fr>
183 * src/state.h (nstates, final_state, first_state, first_shift)
184 (first_reduction): Move their exportation from here...
185 * src/LR0.h: to here.
187 * src/getargs.c (statisticsflag): New variable.
188 Add support for `--statistics'.
191 Remove a lot of now useless `extern' statements in most files.
193 2000-10-02 Akim Demaille <akim@epita.fr>
195 * src/LR0.h: New file.
198 2000-10-02 Akim Demaille <akim@epita.fr>
200 * src/print.h: New file.
202 * src/print.c: Formatting and ordering changes.
203 (verbose, terse): Replace with...
204 (print_results): this new function.
207 2000-10-02 Akim Demaille <akim@epita.fr>
209 * src/conflicts.c (conflict_report): New function.
210 (conflict_log, verbose_conflict_log): Replace with...
211 (print_conflicts): this function.
213 * src/conflicts.h: New file.
214 Propagate its inclusion.
216 2000-10-02 Akim Demaille <akim@epita.fr>
218 * src/nullable.h: New file.
219 Propagate its inclusion.
220 * src/nullable.c: Formatting changes.
222 2000-10-02 Akim Demaille <akim@epita.fr>
224 * src/reduce.h: New file.
225 Propagate its inclusion.
226 * src/reduce.c: Topological sort and other formatting changes.
227 (bool, TRUE, FALSE): Move their definition to...
228 * src/system.h: here.
230 2000-10-02 Akim Demaille <akim@epita.fr>
232 * src/files.c: Formatting changes.
233 (tryopen, tryclose, openfiles): Rename as...
234 (xfopen, xfclose, open_files): this.
235 (stringappend): static.
236 * src/files.h: Complete the list of exported symbols.
239 2000-10-02 Akim Demaille <akim@epita.fr>
241 * src/reader.h: New file.
242 Propagate its use instead of tedious list of `extern' and
244 * src/reader.c: Formatting changes, topological sort,
247 2000-10-02 Akim Demaille <akim@epita.fr>
249 * src/lex.h: Prototype `lex.c' exported functions.
250 * src/reader.c: Adjust.
251 * src/lex.c: Formatting changes.
252 (safegetc): Rename as...
255 2000-10-02 Akim Demaille <akim@epita.fr>
257 * src/lalr.h: New file.
258 Propagate its inclusion instead of prototypes and `extern'.
259 * src/lalr.c: Formatting changes, topological sorting etc.
261 2000-10-02 Akim Demaille <akim@epita.fr>
263 * src/output.c (token_actions): Introduce a temporary array,
264 YYDEFACT, that makes it possible for this function to use
267 2000-10-02 Akim Demaille <akim@epita.fr>
269 `user_toknums' is output as a `short[]' in `output.c', while it is
270 defined as a `int[]' in `reader.c'. For consistency with the
271 other output tables, `user_toknums' is now defined as a table of
274 * src/reader.c (user_toknums): Be a short table instead of an int
278 Factor the short table outputs.
280 * src/output.c (output_short_table): New function.
281 * src/output.c (output_gram, output_stos, output_rule_data)
282 (output_base, output_table, output_check): Use it.
284 2000-10-02 Akim Demaille <akim@epita.fr>
286 * src/output.c (output): Topological sort of the functions, in
287 order to get rid of the `static' prototypes.
288 No longer use `register'.
289 * src/output.h: New file.
290 Propagate its inclusion in files explicitly prototyping functions
293 2000-09-21 Akim Demaille <akim@epita.fr>
295 * src/atgeneral.m4: Update from Autoconf.
297 2000-09-21 Akim Demaille <akim@epita.fr>
299 * src/closure.h: New file.
300 * src/closure.c: Formatting changes, topological sort over the
301 functions, use of closure.h.
302 (initialize_closure, finalize_closure): Rename as...
303 (new_closure, free_closure): these. Adjust dependencies.
304 * src/LR0.c: Formatting changes, topological sort, use of
306 (initialize_states): Rename as...
308 * src/Makefile.am (noinst_HEADERS): Adjust.
310 2000-09-20 Akim Demaille <akim@epita.fr>
312 * src/acconfig.h: Don't protect config.h against multiple
315 * src/system.h: Define PARAMS.
316 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
317 purpose of config.h. system.h must not try to fix wrong
318 definitions in config.h.
320 2000-09-20 Akim Demaille <akim@epita.fr>
322 * src/derives.h: New file.
323 * src/main.c, src/derives.h: Use it.
325 * src/Makefile.am (noinst_HEADERS): Adjust.
327 2000-09-20 Akim Demaille <akim@epita.fr>
329 * tests/atgeneral.m4: Update from Autoconf.
330 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
331 (AT_CHECK_CALC): New macros.
332 Use these macros to test bison with options `', `--raw',
333 `--debug', `--yacc', `--yacc --debug'.
335 2000-09-19 Akim Demaille <akim@epita.fr>
337 * src/output.c: Formatting changes.
338 * src/machine.h: Remove, leaving its contents in...
339 * src/system.h: here.
341 Adjust all dependencies on stdio.h and machine.h.
342 * src/getargs.h: New file.
343 Let all `extern' declarations about getargs.c be replaced with
344 inclusion of `getargs.h'.
345 * src/Makefile.am (noinst_HEADERS): Adjust.
347 * tests/calc.m4 (yyin): Be initialized in main, not on the global
349 (yyerror): Returns void, not int.
350 * doc/bison.texinfo: Formatting changes.
352 2000-09-19 Akim Demaille <akim@epita.fr>
354 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
357 2000-09-18 Akim Demaille <akim@epita.fr>
359 * configure.in: Append WARNING_CFLAGS to CFLAGS.
360 * src/Makefile.am (INCLUDES): Don't.
361 Be ready to fetch headers in lib/.
363 2000-09-18 Akim Demaille <akim@epita.fr>
365 * doc/bison.texinfo: Update the copyright.
366 ANSIfy and GNUify the examples.
369 2000-09-18 Akim Demaille <akim@epita.fr>
371 First set of tests: use the `calc' example from the documentation.
373 * src/bison.s1 (yyparse): Condition the code using `yytname' which
374 is defined only when YYDEBUG is.
375 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
376 * src/files.c (tryopen, tryclose): Formatting changes.
377 Move to the top and be static.
378 * src/reader.c (read_signed_integer): Likewise.
379 * tests/calc.m4: New file.
380 * Makefile.am, suite.m4: Adjust.
381 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
383 2000-09-18 Akim Demaille <akim@epita.fr>
385 Add support for an Autotest test suite for Bison.
387 * m4/m4.m4, m4/atconfig.m4: New files.
388 * m4/Makefile.am (EXTRA_DIST): Adjust.
389 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
391 * src/getargs.c: Display a more standard --version message.
392 * src/reader.c (reader): Formatting changes.
393 No longer depend upon VERSION_STRING.
394 * configure.in: No longer use `dnl'.
395 Set up the test suite and the new directory `tests/.
396 (VERSION_STRING): Remove.
398 2000-04-14 Akim Demaille <akim@epita.fr>
400 * src/reader.c (copy_comment2): New function, same as former
401 `copy_comment', but outputs into two FILE *.
402 (copy_comment): Use it.
403 (parse_union_decl): Use it.
404 (get_type, parse_start_decl): Use the same `invalid' message.
405 (parse_start_decl, parse_union_decl): Use the same `multiple'
407 (parse_union_decl, copy_guard, copy_action): Use the same
409 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
411 2000-03-31 Akim Demaille <akim@epita.fr>
413 * src/files.c (tryopen, tryclose): Move to the top.
416 2000-03-31 Akim Demaille <akim@epita.fr>
418 * src/main.c (main): Don't call `done', exit does it.
420 2000-03-31 Akim Demaille <akim@epita.fr>
422 * allocate.c: s/return (foo)/return foo/.
425 * output.c: Likewise.
426 * reader.c: Likewise.
427 * symtab.c: Likewise.
428 * vmsgetargs.c: Likewise.
430 2000-03-31 Akim Demaille <akim@epita.fr>
432 Clean up the error reporting functions.
434 * src/report.c: New file.
435 * src/report.h: Likewise.
436 * src/Makefile.am: Adjust.
437 * m4/error.m4: New file.
438 * m4/Makefile.am: Adjust.
439 * configure.in (jm_PREREQ_ERROR): Call it.
440 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
442 (fatal, fatals): Remove. All callers use complain.c::fatal.
443 (warn, warni, warns, warnss, warnss): Remove. All callers use
444 complain.c::complain.
445 (toomany): Remove, use fatal instead.
446 * src/files.c (done): No argument, use complain_message_count.
447 * src/main.c (main): Register `done' to `atexit'.
449 * src/getargs.c (usage): More `fputs', less `fprintf'.
451 2000-03-28 Akim Demaille <akim@epita.fr>
453 * lib/: New directory.
454 * Makefile.am (SUBDIRS): Adjust.
455 * configure.in: Adjust.
456 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
458 * src/alloca.c: Moved to lib/.
459 * src/getopt.c: Likewise.
460 * src/getopt1.c: Likewise.
461 * src/getopt.h: Likewise.
462 * src/ansi2knr.c: Likewise.
463 * src/ansi2knr.1: Likewise.
464 * src/Makefile.am: Adjust.
465 * lib/Makefile.am: New file.
467 2000-03-28 Akim Demaille <akim@epita.fr>
469 * src/getargs.c (usage): Refresh the help message.
471 2000-03-17 Akim Demaille <akim@epita.fr>
473 * src/getopt1.c: Updated from textutils 2.0e
474 * src/getopt.c: Likewise.
475 * src/getopt.h: Likewise.
477 2000-03-17 Akim Demaille <akim@epita.fr>
479 * src/Makefile.am (bison.simple): Fix the awk program: quote only
480 the file name, not the whole `#line LINE FILE'.
482 2000-03-17 Akim Demaille <akim@epita.fr>
484 On syntax errors, report the token on which we choked.
486 * src/bison.s1 (yyparse): In the label yyerrlab, when
487 YYERROR_VERBOSE, add yychar in msg.
489 2000-03-17 Akim Demaille <akim@epita.fr>
491 * src/reader.c (copy_at): New function.
492 (copy_guard): Use it.
493 (copy_action): Use it.
495 2000-03-17 Akim Demaille <akim@epita.fr>
497 Be kind to translators, save some useless translations.
499 * src/main.c (banner): New function.
500 (fatal_banner): Use it.
501 (warn_banner): Use it.
503 2000-03-17 Akim Demaille <akim@epita.fr>
505 * src/reader.c (copy_definition): Use copy_string and
506 copy_comment. Removed now unused `match', `ended',
508 (copy_comment, copy_string): Moved, to be visible from
511 2000-03-17 Akim Demaille <akim@epita.fr>
513 * src/reader.c (copy_string): Declare `static inline'. No
514 problems with inline, since it is checked by configure.
515 (copy_comment): Likewise.
517 2000-03-17 Akim Demaille <akim@epita.fr>
519 * src/reader.c (packsymbols): Formatting changes.
521 2000-03-17 Akim Demaille <akim@epita.fr>
523 * src/reader.c (copy_comment): New function, factored out from:
524 (copy_action): Use it. Removed now unused `match', `ended',
526 (copy_guard): Likewise.
528 2000-03-17 Akim Demaille <akim@epita.fr>
530 * src/reader.c (copy_string): New function, factored out from:
531 (copy_action): Use it.
532 (copy_guard): Likewise.
534 2000-03-17 Akim Demaille <akim@epita.fr>
536 Change the handling of @s so that they behave exactly like $s.
537 There is now a pseudo variable @$ (readble and writable), location
538 of the lhs of the rule (by default ranging from the location of
539 the first symbol of the rhs, to the location of the last symbol,
540 or, if the rhs is empty, YYLLOC).
542 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
544 (yyparse): When providing a default semantic action, provide a
545 default location action.
546 (after the $): No longer change `*YYLSP', just stack YYLOC the
547 same way you stack YYVAL.
548 * src/reader.c (read_declarations): Use warns.
549 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
550 (copy_action, case '@'): Likewise.
551 Use a standard error message, to save useless work from
554 2000-03-17 Akim Demaille <akim@epita.fr>
556 * src/bison.s1: Formatting and cosmetics changes.
557 * src/reader.c: Likewise.
558 Update the Copyright notice.
560 2000-03-17 Akim Demaille <akim@epita.fr>
562 * src/bison.s1 (#line): All set to `#line' only, since the
563 Makefile now handles them.
565 2000-03-16 Akim Demaille <akim@epita.fr>
567 * src/output.c (output_rule_data): Output the documentation of
569 (Copyright notice): Update.
572 2000-03-16 Akim Demaille <akim@epita.fr>
574 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
575 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
576 One `#if YYDEBUG' remains, since it uses variables which are
577 defined only if `YYDEBUG != 0'.
579 2000-03-16 Akim Demaille <akim@epita.fr>
581 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
582 and related variables so that the similarities are highlighted.
584 2000-03-16 Akim Demaille <akim@epita.fr>
586 * src/bison.s1: Properly indent CPP directives.
588 2000-03-16 Akim Demaille <akim@epita.fr>
590 * src/bison.s1: Properly indent the `alloca' CPP section.
592 2000-03-16 Akim Demaille <akim@epita.fr>
594 Do not hard code values of directories in `configure.in'.
595 Update the `configure' tool chain.
597 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
599 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
600 (AC_OUTPUT): Add m4/Makefile.
601 Bump to bison 1.28a, 1.29 has never been released.
602 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
603 handled via src/Makefile.am.
604 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
605 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
607 * Makefile.am (SUBDIRS): Add m4.
608 (ACLOCAL_AM_FLAGS): New variable.
609 (AUTOMAKE_OPTIONS): Add check-news.
610 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
611 the proper line number and file name.
612 (DEFS): Propagate the location of bison library files and of the
614 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
616 * acinclude.m4: Remove, replaced by the directory m4.
617 * m4/Makefile.am (EXTRA_DIST): New variable.
618 * m4/gettext.m4: New file, from the fileutils.
619 * m4/lcmessage.m4: Likewise
620 * m4/progtest.m4: Likewise.
621 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
623 2000-03-10 Akim Demaille <akim@epita.fr>
626 Formatting changes of various comments.
627 Respect the GNU coding standards at various places.
628 Don't use `_()' when no translation is needed.
630 1999-12-13 Jesse Thilo <jthilo@gnu.org>
633 OS/2 honors TMPDIR environment variable.
635 1999-12-13 Jesse Thilo <jthilo@gnu.org>
637 * doc/bison.texinfo: Tweaked spelling and grammar.
639 Removed reference to price of printed copy.
640 Mention BISON_SIMPLE and BISON_HAIRY.
642 1999-12-13 Jesse Thilo <jthilo@gnu.org>
644 * configure.in, NEWS:
647 1999-10-27 Jesse Thilo <jthilo@gnu.org>
649 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
650 Added reference card.
652 1999-07-26 Jesse Thilo <jthilo@gnu.org>
654 * po/ru.po: Added Russian translation.
656 1999-07-26 Jesse Thilo <jthilo@gnu.org>
658 * configure.in: Added Russian translation.
660 1999-07-06 Jesse Thilo <jthilo@gnu.org>
662 * configure.in, NEWS, README:
663 Released version 1.28.
665 1999-06-14 Jesse Thilo <jthilo@gnu.org>
668 Squashed redefinition warning on some systems.
670 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
671 Have configure build version string instead of relying on ANSI string
674 1999-06-14 Jesse Thilo <jthilo@gnu.org>
676 * po/POTFILES.in: Got rid of version.c.
678 1999-06-14 Jesse Thilo <jthilo@gnu.org>
680 * acconfig.h, configure.in:
681 Have configure build version string instead of relying on ANSI string
684 1999-06-08 Jesse Thilo <jthilo@gnu.org>
687 Dropped mention of `+' for long-named options.
689 1999-05-30 Jesse Thilo <jthilo@gnu.org>
691 * src/files.c: Added <unistd.h> for unlink().
693 * src/Makefile.am, src/system.h:
696 1999-05-30 Jesse Thilo <jthilo@gnu.org>
698 * README: Added a FAQ list.
700 * configure.in, acconfig.h:
703 1999-05-30 Jesse Thilo <jthilo@gnu.org>
705 * doc/FAQ, doc/Makefile.am:
708 1999-05-19 Jesse Thilo <jthilo@gnu.org>
710 * src/alloc.h, src/symtab.h, src/version.c:
711 Protected inclusion of "config.h" with HAVE_CONFIG_H.
713 1999-04-18 Jesse Thilo <jthilo@gnu.org>
715 * src/.cvsignore, src/Makefile.am:
716 Reorganized: sources in `src', documentation in `doc'.
718 * src/lex.c (literalchar):
719 fixed the code for escaping double quotes (thanks
722 1999-04-18 Jesse Thilo <jthilo@gnu.org>
724 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
725 Adjusted paths to reflect directory reorganization.
727 1999-04-18 Jesse Thilo <jthilo@gnu.org>
729 * doc/.cvsignore, doc/Makefile.am:
730 Reorganized: sources in `src', documentation in `doc'.
732 1999-04-18 Jesse Thilo <jthilo@gnu.org>
735 Updated AC_INIT file to reflect directory reorganization.
737 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
738 Reorganized: sources in `src', documentation in `doc'.
740 1999-04-13 Jesse Thilo <jthilo@gnu.org>
743 Don't declare calloc() and realloc() if not necessary.
745 1999-04-13 Jesse Thilo <jthilo@gnu.org>
747 * configure.in, acconfig.h, acinclude.m4:
748 Don't declare calloc() and realloc() if not necessary.
750 1999-03-23 Jesse Thilo <jthilo@gnu.org>
752 * po/.cvsignore: Added i18n support.
754 1999-03-23 Jesse Thilo <jthilo@gnu.org>
756 * acconfig.h, configure.in, Makefile.am:
759 1999-03-22 Jesse Thilo <jthilo@gnu.org>
761 * src/bison.s1: Fixed #line numbers.
763 1999-03-15 Jesse Thilo <jthilo@gnu.org>
765 * po/es.po, po/fr.po, po/nl.po, po/de.po:
766 Added PO files from Translation Project.
768 1999-03-03 Jesse Thilo <jthilo@gnu.org>
771 Added support for non-ANSI compilers (ansi2knr).
773 1999-02-16 Jesse Thilo <jthilo@gnu.org>
775 * configure.in: Bumped version number to 1.27.
778 Added `bison.simple' to list of files removed by `make distclean'.
780 1999-02-12 Jesse Thilo <jthilo@gnu.org>
782 * src/files.c, src/files.h:
783 Defined locations of parser files in config.h instead of Makefile.
785 1999-02-12 Jesse Thilo <jthilo@gnu.org>
787 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
788 Defined locations of parser files in config.h instead of Makefile.
790 1999-02-09 Jesse Thilo <jthilo@gnu.org>
793 Removed inappropriate use of $< macro.
795 1999-02-05 Jesse Thilo <jthilo@gnu.org>
797 * po/Makefile.in.in, po/POTFILES.in:
798 Add `po' directory skeleton.
800 1999-01-27 Jesse Thilo <jthilo@gnu.org>
802 * README: Document help-bison list.
804 * configure.in: Add check for mkstemp().
806 1999-01-20 Jesse Thilo <jthilo@gnu.org>
808 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
809 Hush a few compiler warnings.
812 Add tryclose(), which verifies that fclose was successful.
813 Hush a couple of compiler warnings.
815 1999-01-20 Jesse Thilo <jthilo@gnu.org>
817 * Makefile.am, OChangeLog:
818 ChangeLog is now automatically generated. Include the old version as
821 1999-01-14 Jesse Thilo <jthilo@gnu.org>
823 * 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:
826 1999-01-14 Jesse Thilo <jthilo@gnu.org>
828 * doc/bison.texinfo: Fix formatting glitch.
830 * doc/bison.texinfo: Update FSF address.
832 1999-01-14 Jesse Thilo <jthilo@gnu.org>
834 * acconfig.h: Update FSF address.
836 1999-01-08 Jesse Thilo <jthilo@gnu.org>
839 Don't define PACKAGE here, since config.h defines it.
841 1998-12-30 Jesse Thilo <jthilo@gnu.org>
843 * src/reader.c: Update copyright date.
846 Ditch sprintf to statically-sized buffers in fatal/warn functions in
847 favor of output directly to stderr (avoids buffer overruns).
849 * src/reader.c: Some checks for premature EOF.
851 * 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:
852 Use prototypes if the compiler understands them.
854 * src/files.c: Honor TMPDIR on Unix hosts.
855 Use prototypes if the compiler understands them.
858 Fix a couple of buffer overrun bugs.
859 Use prototypes if the compiler understands them.
861 * src/system.h: Include unistd.h and ctype.h.
862 Use #ifdef instead of #if for NLS symbols.
864 1998-12-30 Jesse Thilo <jthilo@gnu.org>
867 Delete comment "consider using @set for edition number, etc..." since
870 1998-12-30 Jesse Thilo <jthilo@gnu.org>
873 Use prototypes if the compiler understands them.
875 * NEWS: Document 1.26 highlights.
877 * Makefile.am: Require Automake 1.3 or later.
880 Use prototypes if the compiler understands them.
882 1998-12-29 Jesse Thilo <jthilo@gnu.org>
885 Use VERSION symbol from automake for version number.
887 1998-12-29 Jesse Thilo <jthilo@gnu.org>
889 * acconfig.h, configure.in, version.cin:
890 Use VERSION symbol from automake for version number.
892 1998-11-28 Jesse Thilo <jthilo@gnu.org>
895 Distribute original version of simple parser (bison.s1), not built
896 version (bison.simple).
898 1998-11-28 Jesse Thilo <jthilo@gnu.org>
900 * doc/bison.texinfo: Add info dir entry.
903 Let automake put version number into documentation.
905 1998-11-26 Jesse Thilo <jthilo@gnu.org>
907 * src/bison.cld, src/build.com, src/vmshlp.mar:
908 Add non-RCS files from /gd/gnu/bison.
910 1998-11-26 Jesse Thilo <jthilo@gnu.org>
913 Document the BISON_HAIRY and BISON_SIMPLE variables.
915 1998-11-25 Jesse Thilo <jthilo@gnu.org>
917 * src/version.c: Build version.c automatically.
920 Fix token numbering (used to start at 258, not 257).
922 * src/system.h: Include config.h.
924 * src/getargs.c: Update bug report address.
926 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
927 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
929 1998-11-25 Jesse Thilo <jthilo@gnu.org>
932 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
934 * configure.in, version.cin:
935 Build version.c automatically.
937 * AUTHORS: Add AUTHORS file.
939 * README: Update bug report address.
942 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
944 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
947 1998-11-25 Jesse Thilo <jthilo@gnu.org>
949 * doc/bison.texinfo: Clean up some formatting.
951 1998-05-05 Richard Stallman <rms@gnu.org>
954 Explain better why to make a pure parser.
956 1998-01-05 Richard Stallman <rms@gnu.org>
958 * src/files.c (openfiles):
959 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
960 find a temporary directory, if possible. Do not unlink files while
963 1997-08-25 Richard Stallman <rms@gnu.org>
965 * src/reader.c (stack_offset;):
966 Change some warni to warns.
968 * src/lex.c (literalchar): Use warns, not warni.
970 1997-06-28 Richard Stallman <rms@gnu.org>
972 * src/bison.s1: Add a Bison version comment.
974 * src/main.c (fatal, warn, berror):
977 1997-06-28 Richard Stallman <rms@gnu.org>
979 * Makefile.in (bison_version): New variable.
980 (dist): Use that variable.
981 (bison.s1): Substitute the Bison version into bison.simple.
983 * bison.simple: Add a Bison version comment.
985 1997-06-18 Richard Stallman <rms@gnu.org>
987 * src/main.c (fatal, warn, berror):
988 Make error messages standard.
989 (toomany): Improve error message text.
991 * 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:
992 new.h renamed to alloc.h.
994 1997-06-18 Richard Stallman <rms@gnu.org>
996 * Makefile.in: new.h renamed to alloc.h.
998 1997-05-24 Richard Stallman <rms@gnu.org>
1000 * src/lex.c (literalchar):
1001 Fix the code for escaping \, " and '.
1003 (lex): Avoid trouble when there are many chars
1004 to discard in a char literal with just several chars in it.
1006 1997-05-17 Richard Stallman <rms@gnu.org>
1009 Use malloc, if using alloca is troublesome.
1010 (YYSTACK_USE_ALLOCA): New flag macro.
1011 Define it for some systems and compilers.
1012 (YYSTACK_ALLOC): New macro.
1013 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1014 If it was malloc'd, free it.
1016 1997-05-17 Richard Stallman <rms@gnu.org>
1019 Use malloc, if using alloca is troublesome.
1020 (YYSTACK_USE_ALLOCA): New flag macro.
1021 Define it for some systems and compilers.
1022 (YYSTACK_ALLOC): New macro.
1023 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1024 If it was malloc'd, free it.
1026 1997-04-23 Richard Stallman <rms@gnu.org>
1029 (alloca) [__hpux]: Always define as __builtin_alloca.
1031 1997-04-23 Richard Stallman <rms@gnu.org>
1034 (alloca) [__hpux]: Always define as __builtin_alloca.
1036 1997-04-22 Richard Stallman <rms@gnu.org>
1039 [__hpux]: Include alloca.h (right for HPUX 10)
1040 instead of declaring alloca (right for HPUX 9).
1042 * src/bison.s1 (__yy_memcpy):
1043 Declare arg `count' as unsigned int.
1044 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1046 1997-04-22 Richard Stallman <rms@gnu.org>
1049 [__hpux]: Include alloca.h (right for HPUX 10)
1050 instead of declaring alloca (right for HPUX 9).
1052 * bison.simple (__yy_memcpy):
1053 Declare arg `count' as unsigned int.
1054 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1056 1997-01-03 Richard Stallman <rms@gnu.org>
1058 * src/allocate.c: [__STDC__ or _MSC_VER]:
1059 Declare calloc and realloc to return void *.
1061 1997-01-02 Richard Stallman <rms@gnu.org>
1064 [_MSC_VER]: Include stdlib.h and process.h.
1065 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1067 * src/main.c (main): Return FAILURE as a value.
1068 (printable_version): Declare arg as int, not char.
1070 1997-01-02 Richard Stallman <rms@gnu.org>
1072 * Makefile.in (dist):
1073 Explicitly check for symlinks, and copy them.
1075 1996-12-19 Richard Stallman <rms@gnu.org>
1078 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1080 1996-12-18 Paul Eggert <eggert@gnu.org>
1082 * src/bison.s1 (yyparse):
1083 If __GNUC__ and YYPARSE_PARAM are both defined,
1084 declare yyparse to have a void * argument.
1086 1996-12-18 Paul Eggert <eggert@gnu.org>
1088 * bison.simple (yyparse):
1089 If __GNUC__ and YYPARSE_PARAM are both defined,
1090 declare yyparse to have a void * argument.
1092 1996-12-17 Richard Stallman <rms@gnu.org>
1094 * src/reduce.c (nbits): Add some casts.
1096 1996-08-12 Richard Stallman <rms@gnu.org>
1098 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1100 1996-08-12 Richard Stallman <rms@gnu.org>
1102 * bison.simple: Test _MSDOS as well as _MSDOS_.
1104 1996-07-31 Richard Stallman <rms@gnu.org>
1107 [__sun && __i386]: Include alloca.h.
1109 1996-07-31 Richard Stallman <rms@gnu.org>
1112 [__sun && __i386]: Include alloca.h.
1114 1996-07-30 Richard Stallman <rms@gnu.org>
1116 * src/bison.s1: Comment change.
1118 * src/bison.s1: Test _MSDOS_, not MSDOS.
1120 1996-07-30 Richard Stallman <rms@gnu.org>
1122 * bison.simple: Comment change.
1124 * bison.simple: Test _MSDOS_, not MSDOS.
1126 1996-06-01 Richard Stallman <rms@gnu.org>
1128 * 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:
1129 Insert `_' macro around many string constants.
1132 Insert `_' macro around many string constants.
1134 (main): Call setlocale, bindtextdomain and textdomain.
1136 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1137 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1138 [ENABLE_NLS]: Include libintl.h.
1139 [ENABLE_NLS] (gettext): Define.
1140 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1141 (N_, PACKAGE, LOCALEDIR): New macros.
1143 1996-06-01 Richard Stallman <rms@gnu.org>
1145 * POTFILES.in: New file.
1147 * Makefile.in (allocate.o):
1148 Define target explicitly.
1150 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1151 (LDFLAGS): Set to @LDFLAGS@.
1152 (configure): Run autoconf only if preceding `cd' succeeds.
1153 (bison.s1): Redirect output to temporary file then move the
1154 temporary to the target, rather than redirecting directly to bison.s1.
1155 (clean): Remove config.status and config.log.
1156 (distclean): Don't remove config.status here.
1158 1996-05-12 Richard Stallman <rms@gnu.org>
1161 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1163 1996-05-12 Richard Stallman <rms@gnu.org>
1166 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1168 1996-05-11 Richard Stallman <rms@gnu.org>
1170 * src/bison.s1 (__yy_memcpy):
1171 Really reorder the args, as was supposedly done on Feb 14 1995.
1172 (yyparse): Calls changed accordingly.
1174 1996-05-11 Richard Stallman <rms@gnu.org>
1176 * Makefile.in (dist): Don't use $(srcdir).
1178 * bison.simple (__yy_memcpy):
1179 Really reorder the args, as was supposedly done on Feb 14 1995.
1180 (yyparse): Calls changed accordingly.
1182 1996-01-27 Richard Stallman <rms@gnu.org>
1184 * src/output.c (output_rule_data):
1185 Test YYERROR_VERBOSE in the conditional
1186 around the definition of ttyname.
1188 1995-12-29 Richard Stallman <rms@gnu.org>
1191 Fix line numbers in #line commands.
1193 1995-12-29 Richard Stallman <rms@gnu.org>
1196 Fix line numbers in #line commands.
1198 1995-12-27 Richard Stallman <rms@gnu.org>
1200 * src/bison.s1 (YYPARSE_PARAM_DECL):
1201 In C++, make it always null.
1202 (YYPARSE_PARAM_ARG): New macro.
1203 (yyparse): Use YYPARSE_PARAM_ARG.
1205 1995-12-27 Richard Stallman <rms@gnu.org>
1207 * bison.simple (YYPARSE_PARAM_DECL):
1208 In C++, make it always null.
1209 (YYPARSE_PARAM_ARG): New macro.
1210 (yyparse): Use YYPARSE_PARAM_ARG.
1212 1995-11-29 Richard Stallman <rms@gnu.org>
1214 * doc/bison.texinfo:
1215 Describe literal string tokens, %raw, %no_lines, %token_table.
1217 1995-11-29 Daniel Hagerty <hag@gnu.org>
1219 * doc/bison.texinfo: Fixed update date
1221 1995-10-16 Richard Stallman <rms@gnu.org>
1223 * src/version.c: Version 1.25.
1225 1995-10-16 Richard Stallman <rms@gnu.org>
1227 * NEWS: *** empty log message ***
1229 1995-10-16 Richard Stallman <rms@gnu.org>
1231 * doc/bison.1, doc/bison.rnh:
1234 1995-10-15 Richard Stallman <rms@gnu.org>
1236 * src/vmsgetargs.c, src/getargs.c:
1237 Added -n, -k, and -raw switches.
1238 (noparserflag, toknumflag, rawtoknumflag): New variables.
1240 * src/symtab.h (SALIAS):
1241 New #define for adding aliases to %token.
1242 (struct bucket): Added `alias' field.
1244 * src/reduce.c (reduce_grammar):
1245 Revise error message.
1246 (print_notices): Remove final `.' from error message.
1248 * src/reader.c (reader_output_yylsp):
1250 (readgram): Use `#if 0' around code that accepted %command
1251 inside grammar rules: The documentation doesn't allow it,
1252 and it will fail since the %command processors scan for the next %.
1253 (parse_token_decl): Extended the %token
1254 declaration to allow a multi-character symbol as an alias.
1255 (parse_thong_decl): New function.
1256 (read_declarations): Added %thong declarations.
1257 (read_declarations): Handle NOOP to deal with allowing
1258 % declarations as another means to specify the flags.
1259 (readgram): Allow %prec prior to semantics embedded in a rule.
1260 (skip_to_char, read_declarations, copy_definition)
1261 (parse_token_decl, parse_start_decl, parse_type_decl)
1262 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1263 (get_type_name, copy_guard, copy_action, readgram)
1264 (get_type, packsymbols): Revised most error messages.
1265 Changed `fatal' to `warnxxx' to avoid aborting for error.
1266 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1267 (read_declarations): Improve the error message for
1268 an invalid character. Do not abort.
1269 (read_declarations, copy_guard, copy_action): Use
1270 printable_version to avoid unprintable characters in printed output.
1271 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1272 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1273 Allow the type of a non-terminal can be given
1274 more than once, as long as all specifications give the same type.
1277 (output_headers, output_trailers, output, output_gram)
1278 (output_rule_data): Implement noparserflag variable.
1279 Implement toknumflag variable.
1280 (output): Call reader_output_yylsp to output LTYPESTR.
1282 * src/main.c (main):
1283 If reader sees an error, don't process the grammar.
1284 (fatals): Updated to not use VARARGS1.
1285 (printable_version, int_to_string, warn, warni, warns, warnss)
1286 (warnsss): New error reporting functions. Avoid abort for error.
1289 Added THONG and NOOP for alias processing.
1290 Added SETOPT for the new code that allows setting options with %flags.
1293 Include getopt.h. Add some extern decls.
1294 (safegetc): New function to deal with EOF gracefully.
1295 (literalchar); new function to deal with reading \ escapes.
1296 (lex): Use literalchar.
1297 (lex): Implemented "..." tokens.
1298 (literalchar, lex, parse_percent_token): Made tokenbuffer
1299 always contain the token. This includes growing the token
1300 buffer while reading an integer.
1301 (parse_percent_token): Replaced if-else statement with percent_table.
1302 (parse_percent_token): Added % declarations as another
1303 way to specify the flags -n, -l, and -r. Also added hooks for
1304 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1305 major changes to files.c.
1306 (lex) Retain in the incoming stream a character following
1308 (skip_white_space, lex): Revised most error messages
1309 and changed fatal to warn to avoid aborting.
1310 (percent_table): Added %thong declarations.
1312 * src/gram.h: Comment changes.
1314 * src/files.c (openfiles, open_extra_files, done):
1316 and actfile file. Handle noparserflag. Both for -n switch.
1318 * src/conflicts.c (resolve_sr_conflict):
1319 Remove use of alloca.
1321 1995-06-01 Jim Meyering <meyering@gnu.org>
1323 * doc/bison.texinfo: *** empty log message ***
1325 1995-05-06 Richard Stallman <rms@gnu.org>
1327 * src/bison.s1: Comment change.
1329 1995-05-06 Richard Stallman <rms@gnu.org>
1331 * bison.simple: Comment change.
1333 1995-05-03 Richard Stallman <rms@gnu.org>
1335 * src/version.c: Version now 1.24.
1337 * src/bison.s1: Change distribution terms.
1339 * src/version.c: Version now 1.23.
1341 1995-05-03 Richard Stallman <rms@gnu.org>
1343 * doc/bison.texinfo:
1344 Rewrite "Conditions for Using Bison".
1345 Update version to 1.24.
1347 1995-05-03 Richard Stallman <rms@gnu.org>
1349 * bison.simple: Change distribution terms.
1351 1995-02-23 Richard Stallman <rms@gnu.org>
1353 * src/files.c: Test __VMS_POSIX as well as VMS.
1355 1995-02-14 Jim Meyering <meyering@gnu.org>
1357 * src/bison.s1 (__yy_memcpy):
1358 Renamed from __yy_bcopy to avoid
1359 confusion. Reverse FROM and TO arguments to be consistent with
1362 1995-02-14 Jim Meyering <meyering@gnu.org>
1364 * bison.simple (__yy_memcpy):
1365 Renamed from __yy_bcopy to avoid
1366 confusion. Reverse FROM and TO arguments to be consistent with
1369 1994-11-10 David J. MacKenzie <djm@gnu.org>
1375 * Makefile.in (DISTFILES): Include NEWS.
1377 * Makefile.in (DISTFILES):
1378 Include install-sh, not install.sh.
1380 * configure.in: Update to Autoconf v2 macro names.
1382 1994-10-05 David J. MacKenzie <djm@gnu.org>
1384 * Makefile.in: fix typo
1386 * Makefile.in (prefix, exec_prefix):
1387 Let configure set them.
1389 1994-09-28 David J. MacKenzie <djm@gnu.org>
1391 * Makefile.in: Set datadir to $(prefix)/share.
1393 1994-09-15 Richard Stallman <rms@gnu.org>
1396 Update copyright notice and GPL version.
1398 1994-09-15 Richard Stallman <rms@gnu.org>
1401 Update copyright notice and GPL version.
1403 1994-07-12 Richard Stallman <rms@gnu.org>
1405 * src/reduce.c, src/reader.c:
1408 1994-05-05 David J. MacKenzie <djm@gnu.org>
1410 * Makefile.in: entered into RCS
1412 1994-03-26 Richard Stallman <rms@gnu.org>
1414 * src/bison.s1: entered into RCS
1416 1994-03-26 Richard Stallman <rms@gnu.org>
1418 * bison.simple: entered into RCS
1420 1994-03-25 Richard Stallman <rms@gnu.org>
1422 * src/main.c: entered into RCS
1424 1994-03-24 Richard Stallman <rms@gnu.org>
1426 * src/conflicts.c: entered into RCS
1428 1994-01-02 Richard Stallman <rms@gnu.org>
1430 * Makefile.in: *** empty log message ***
1432 1993-11-21 Richard Stallman <rms@gnu.org>
1434 * src/bison.s1: *** empty log message ***
1436 1993-11-21 Richard Stallman <rms@gnu.org>
1438 * doc/bison.texinfo: entered into RCS
1440 * doc/bison.texinfo: *** empty log message ***
1442 1993-11-21 Richard Stallman <rms@gnu.org>
1444 * bison.simple: *** empty log message ***
1446 1993-10-25 David J. MacKenzie <djm@gnu.org>
1448 * doc/bison.texinfo: *** empty log message ***
1450 1993-10-19 Richard Stallman <rms@gnu.org>
1452 * src/bison.s1: *** empty log message ***
1454 1993-10-19 Richard Stallman <rms@gnu.org>
1456 * bison.simple: *** empty log message ***
1458 1993-10-14 Richard Stallman <rms@gnu.org>
1460 * src/bison.s1: *** empty log message ***
1462 1993-10-14 Richard Stallman <rms@gnu.org>
1464 * bison.simple: *** empty log message ***
1466 1993-09-14 David J. MacKenzie <djm@gnu.org>
1468 * doc/bison.texinfo: *** empty log message ***
1470 1993-09-13 Noah Friedman <friedman@gnu.org>
1472 * Makefile.in: *** empty log message ***
1474 1993-09-10 Richard Stallman <rms@gnu.org>
1476 * src/conflicts.c: *** empty log message ***
1478 * src/system.h: entered into RCS
1480 1993-09-10 Richard Stallman <rms@gnu.org>
1482 * doc/bison.1: entered into RCS
1484 1993-09-06 Noah Friedman <friedman@gnu.org>
1486 * src/version.c: entered into RCS
1488 1993-09-06 Noah Friedman <friedman@gnu.org>
1490 * Makefile.in: *** empty log message ***
1492 1993-07-30 David J. MacKenzie <djm@gnu.org>
1494 * Makefile.in: *** empty log message ***
1496 1993-07-24 Richard Stallman <rms@gnu.org>
1498 * src/bison.s1: *** empty log message ***
1500 1993-07-24 Richard Stallman <rms@gnu.org>
1502 * bison.simple: *** empty log message ***
1504 1993-07-08 David J. MacKenzie <djm@gnu.org>
1506 * Makefile.in: *** empty log message ***
1508 1993-07-04 Richard Stallman <rms@gnu.org>
1510 * src/bison.s1: *** empty log message ***
1512 1993-07-04 Richard Stallman <rms@gnu.org>
1514 * bison.simple: *** empty log message ***
1516 1993-06-26 David J. MacKenzie <djm@gnu.org>
1518 * src/getargs.c: entered into RCS
1520 1993-06-26 David J. MacKenzie <djm@gnu.org>
1522 * doc/bison.texinfo: *** empty log message ***
1524 * doc/bison.1: New file.
1526 1993-06-25 Richard Stallman <rms@gnu.org>
1528 * src/getargs.c: New file.
1530 1993-06-16 Richard Stallman <rms@gnu.org>
1532 * src/bison.s1: *** empty log message ***
1534 1993-06-16 Richard Stallman <rms@gnu.org>
1536 * bison.simple: *** empty log message ***
1538 1993-06-03 Richard Stallman <rms@gnu.org>
1540 * src/bison.s1: New file.
1542 1993-06-03 Richard Stallman <rms@gnu.org>
1544 * doc/bison.texinfo: *** empty log message ***
1546 1993-06-03 Richard Stallman <rms@gnu.org>
1548 * bison.simple: New file.
1550 1993-05-19 Richard Stallman <rms@gnu.org>
1552 * doc/bison.texinfo: New file.
1554 1993-05-07 Noah Friedman <friedman@gnu.org>
1556 * Makefile.in: *** empty log message ***
1558 1993-04-28 Noah Friedman <friedman@gnu.org>
1560 * src/reader.c: *** empty log message ***
1562 1993-04-23 Noah Friedman <friedman@gnu.org>
1564 * src/alloc.h: entered into RCS
1566 1993-04-20 David J. MacKenzie <djm@gnu.org>
1568 * src/version.c: *** empty log message ***
1570 * src/files.c, src/allocate.c:
1573 * src/reader.c: *** empty log message ***
1575 * src/lex.c: entered into RCS
1577 * src/conflicts.c: New file.
1579 * src/symtab.c: entered into RCS
1581 * src/alloc.h: New file.
1583 * src/LR0.c: entered into RCS
1585 1993-04-18 Noah Friedman <friedman@gnu.org>
1587 * src/reader.c: New file.
1589 * src/version.c: *** empty log message ***
1591 1993-04-18 Noah Friedman <friedman@gnu.org>
1593 * Makefile.in: *** empty log message ***
1595 1993-04-17 Noah Friedman <friedman@gnu.org>
1597 * Makefile.in: *** empty log message ***
1599 1993-04-15 Richard Stallman <rms@gnu.org>
1601 * src/main.c, src/files.c:
1604 1993-04-15 Noah Friedman <friedman@gnu.org>
1606 * configure.in: entered into RCS
1608 * configure.in: *** empty log message ***
1610 * configure.in: New file.
1612 1993-04-14 Richard Stallman <rms@gnu.org>
1614 * Makefile.in: New file.
1616 1993-04-13 Richard Stallman <rms@gnu.org>
1618 * src/version.c: New file.
1620 1993-03-25 Richard Stallman <rms@gnu.org>
1622 * src/output.c: entered into RCS
1624 1992-09-25 Richard Stallman <rms@gnu.org>
1626 * configure.bat: entered into RCS
1628 1992-06-22 Richard Stallman <rms@gnu.org>
1630 * src/vmsgetargs.c: entered into RCS
1632 1992-06-22 Richard Stallman <rms@gnu.org>
1634 * doc/bison.rnh: entered into RCS
1636 1992-04-20 David J. MacKenzie <djm@gnu.org>
1638 * README: entered into RCS
1640 1992-01-22 Richard Stallman <rms@gnu.org>
1642 * src/machine.h: entered into RCS
1644 1991-12-21 Richard Stallman <rms@gnu.org>
1646 * src/lalr.c, src/closure.c:
1649 1991-12-20 Richard Stallman <rms@gnu.org>
1651 * src/state.h: entered into RCS
1653 1991-12-18 Richard Stallman <rms@gnu.org>
1655 * src/print.c, src/nullable.c, src/derives.c:
1658 1991-11-03 David J. MacKenzie <djm@gnu.org>
1660 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1663 1988-09-09 Richard Stallman <rms@gnu.org>
1665 * src/bison.hairy: entered into RCS
1667 1987-12-16 Richard Stallman <rms@gnu.org>
1669 * REFERENCES: entered into RCS