1 2000-10-16 Akim Demaille <akim@epita.fr>
3 * src/lex.c (read_typename): New function.
5 * src/reader.c (copy_dollar): Likewise.
8 2000-10-16 Akim Demaille <akim@epita.fr>
10 * src/reader.c (copy_comment2): Expect the input stream to be on
11 the `/' which is suspected to open a comment, instead of being
12 called after `//' or `/*' was read.
13 (copy_comment, copy_definition, parse_union_decl, copy_action)
17 2000-10-16 Akim Demaille <akim@epita.fr>
19 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20 `read_signed_integer'.
23 2000-10-16 Akim Demaille <akim@epita.fr>
25 * src/reader.c (copy_dollar): New function.
26 (copy_guard, copy_action): Use it.
29 2000-10-16 Akim Demaille <akim@epita.fr>
31 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
32 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
33 New files, from Fileutils 4.0.27.
34 * src/main.c (printable_version): Remove.
35 * src/lex.c, src/reader.c: Use `quote'.
37 2000-10-04 Akim Demaille <akim@epita.fr>
39 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
41 2000-10-04 Akim Demaille <akim@epita.fr>
43 * doc/bison.texinfo: Various typos spotted by Neil Booth.
45 2000-10-04 Akim Demaille <akim@epita.fr>
47 When a literal string is used to define two different tokens,
49 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
51 * tests/regression.m4: New file.
52 Include the core of the sample provided by Piotr Gackiewicz.
53 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
56 2000-10-04 Akim Demaille <akim@epita.fr>
58 * src/reader.c (parse_expect_decl): Keep `count' within the size
62 2000-10-02 Paul Eggert <eggert@twinsun.com>
64 * bison.s1 (yyparse): Assign the default value
65 unconditionally, to avoid a GCC warning and make the parser a
68 2000-10-02 Akim Demaille <akim@epita.fr>
70 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
73 2000-10-02 Akim Demaille <akim@epita.fr>
75 * src/derives.c, src/print.c, src/reduce.c: To ease the
76 translation, move some `\n' out of the translated strings.
78 2000-10-02 Akim Demaille <akim@epita.fr>
80 The location tracking mechanism is precious for parse error
81 messages. Nevertheless, it is enabled only when `@n' is used in
82 the grammar, which is a different issue (you can use it in error
83 message, but not in the grammar per se). Therefore, there should
84 be another means to enable it.
86 * src/getargs.c (getargs): Support `--locations'.
88 * src/getargs.h (locationsflag): Export it.
89 * src/lex.c (percent_table): Support `%locations'.
90 * src/reader.c (yylsp_needed): Remove this variable, now replaced
92 * doc/bison.texinfo: Document `--locations' and `%locations'.
94 * tests/calc.m4: Test it.
96 For regularity of the names, replace each
97 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
98 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
99 In addition replace each `flag' with `_flag'.
101 2000-10-02 Akim Demaille <akim@epita.fr>
103 Also test parse error messages, including with YYERROR_VERBOSE.
105 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
107 Use it to check the computations.
108 Use it to check `nonassoc' is honored.
109 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
111 (_AT_CHECK_CALC): Adjust to this option.
112 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
114 2000-10-02 Akim Demaille <akim@epita.fr>
116 Test also `--verbose', `--defines' and `--name-prefix'. Testing
117 the latter demonstrates a flaw in the handling of non debugging
118 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
119 was used in order to simplify:
135 unfortunately this leads to a CPP conflict when
136 `--name-prefix=foo' is used since it produces `#define yydebug
139 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
140 (YYDPRINTF): New macro.
142 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
144 Also test `--verbose', `--defines' and `--name-prefix'.
146 2000-10-02 Akim Demaille <akim@epita.fr>
148 Improve the readability of the produced parsers.
150 * src/bison.s1: Formatting changes.
151 Improve the comment related to the `$' mark.
152 (yydefault): Don't fall through to `yyresume': `goto' there.
153 * src/output.c (output_parser): When the `$' is met, skip the end
155 New variable, `number_of_dollar_signs', to check there's exactly
156 one `$' in the parser skeleton.
158 2000-10-02 Akim Demaille <akim@epita.fr>
160 * lib/xstrdup.c: New file, from the fileutils.
161 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
162 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
163 instead of strlen + xmalloc + strcpy.
164 * src/symtab.c (copys): Remove, use xstrdup instead.
166 2000-10-02 Akim Demaille <akim@epita.fr>
168 * src/gram.h (associativity): New enum type which replaces the
169 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
170 `right_assoc', `left_assoc' and `non_assoc'.
171 Adjust all dependencies.
172 * src/reader.c: Formatting changes.
173 (LTYPESTR): Don't define it, use it as a literal in
174 `reader_output_yylsp'.
175 * src/symtab.h (symbol_class): New enum type which replaces the
176 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
177 `sunknown', `stoken and `snterm'.
179 2000-10-02 Akim Demaille <akim@epita.fr>
181 * src/getargs.c (fixed_outfiles): Rename as...
182 (yaccflag): for consistency and accuracy.
185 2000-10-02 Akim Demaille <akim@epita.fr>
187 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
188 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
189 difficult and introduced a lot of core dump. It turns out that
190 Bison used an implementation of `xmalloc' based on `calloc', and
191 at various places it does depend upon the initialization to 0. I
192 have not tried to isolate the pertinent places, and all the former
193 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
194 someone should address this issue.
196 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
197 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
200 * src/warshall.h: New file.
203 2000-10-02 Akim Demaille <akim@epita.fr>
205 Various anti-`extern in *.c' changes.
207 * src/system.h: Include `assert.h'.
209 2000-10-02 Akim Demaille <akim@epita.fr>
211 * src/state.h (nstates, final_state, first_state, first_shift)
212 (first_reduction): Move their exportation from here...
213 * src/LR0.h: to here.
215 * src/getargs.c (statisticsflag): New variable.
216 Add support for `--statistics'.
219 Remove a lot of now useless `extern' statements in most files.
221 2000-10-02 Akim Demaille <akim@epita.fr>
223 * src/LR0.h: New file.
226 2000-10-02 Akim Demaille <akim@epita.fr>
228 * src/print.h: New file.
230 * src/print.c: Formatting and ordering changes.
231 (verbose, terse): Replace with...
232 (print_results): this new function.
235 2000-10-02 Akim Demaille <akim@epita.fr>
237 * src/conflicts.c (conflict_report): New function.
238 (conflict_log, verbose_conflict_log): Replace with...
239 (print_conflicts): this function.
241 * src/conflicts.h: New file.
242 Propagate its inclusion.
244 2000-10-02 Akim Demaille <akim@epita.fr>
246 * src/nullable.h: New file.
247 Propagate its inclusion.
248 * src/nullable.c: Formatting changes.
250 2000-10-02 Akim Demaille <akim@epita.fr>
252 * src/reduce.h: New file.
253 Propagate its inclusion.
254 * src/reduce.c: Topological sort and other formatting changes.
255 (bool, TRUE, FALSE): Move their definition to...
256 * src/system.h: here.
258 2000-10-02 Akim Demaille <akim@epita.fr>
260 * src/files.c: Formatting changes.
261 (tryopen, tryclose, openfiles): Rename as...
262 (xfopen, xfclose, open_files): this.
263 (stringappend): static.
264 * src/files.h: Complete the list of exported symbols.
267 2000-10-02 Akim Demaille <akim@epita.fr>
269 * src/reader.h: New file.
270 Propagate its use instead of tedious list of `extern' and
272 * src/reader.c: Formatting changes, topological sort,
275 2000-10-02 Akim Demaille <akim@epita.fr>
277 * src/lex.h: Prototype `lex.c' exported functions.
278 * src/reader.c: Adjust.
279 * src/lex.c: Formatting changes.
280 (safegetc): Rename as...
283 2000-10-02 Akim Demaille <akim@epita.fr>
285 * src/lalr.h: New file.
286 Propagate its inclusion instead of prototypes and `extern'.
287 * src/lalr.c: Formatting changes, topological sorting etc.
289 2000-10-02 Akim Demaille <akim@epita.fr>
291 * src/output.c (token_actions): Introduce a temporary array,
292 YYDEFACT, that makes it possible for this function to use
295 2000-10-02 Akim Demaille <akim@epita.fr>
297 `user_toknums' is output as a `short[]' in `output.c', while it is
298 defined as a `int[]' in `reader.c'. For consistency with the
299 other output tables, `user_toknums' is now defined as a table of
302 * src/reader.c (user_toknums): Be a short table instead of an int
306 Factor the short table outputs.
308 * src/output.c (output_short_table): New function.
309 * src/output.c (output_gram, output_stos, output_rule_data)
310 (output_base, output_table, output_check): Use it.
312 2000-10-02 Akim Demaille <akim@epita.fr>
314 * src/output.c (output): Topological sort of the functions, in
315 order to get rid of the `static' prototypes.
316 No longer use `register'.
317 * src/output.h: New file.
318 Propagate its inclusion in files explicitly prototyping functions
321 2000-09-21 Akim Demaille <akim@epita.fr>
323 * src/atgeneral.m4: Update from Autoconf.
325 2000-09-21 Akim Demaille <akim@epita.fr>
327 * src/closure.h: New file.
328 * src/closure.c: Formatting changes, topological sort over the
329 functions, use of closure.h.
330 (initialize_closure, finalize_closure): Rename as...
331 (new_closure, free_closure): these. Adjust dependencies.
332 * src/LR0.c: Formatting changes, topological sort, use of
334 (initialize_states): Rename as...
336 * src/Makefile.am (noinst_HEADERS): Adjust.
338 2000-09-20 Akim Demaille <akim@epita.fr>
340 * src/acconfig.h: Don't protect config.h against multiple
343 * src/system.h: Define PARAMS.
344 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
345 purpose of config.h. system.h must not try to fix wrong
346 definitions in config.h.
348 2000-09-20 Akim Demaille <akim@epita.fr>
350 * src/derives.h: New file.
351 * src/main.c, src/derives.h: Use it.
353 * src/Makefile.am (noinst_HEADERS): Adjust.
355 2000-09-20 Akim Demaille <akim@epita.fr>
357 * tests/atgeneral.m4: Update from Autoconf.
358 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
359 (AT_CHECK_CALC): New macros.
360 Use these macros to test bison with options `', `--raw',
361 `--debug', `--yacc', `--yacc --debug'.
363 2000-09-19 Akim Demaille <akim@epita.fr>
365 * src/output.c: Formatting changes.
366 * src/machine.h: Remove, leaving its contents in...
367 * src/system.h: here.
369 Adjust all dependencies on stdio.h and machine.h.
370 * src/getargs.h: New file.
371 Let all `extern' declarations about getargs.c be replaced with
372 inclusion of `getargs.h'.
373 * src/Makefile.am (noinst_HEADERS): Adjust.
375 * tests/calc.m4 (yyin): Be initialized in main, not on the global
377 (yyerror): Returns void, not int.
378 * doc/bison.texinfo: Formatting changes.
380 2000-09-19 Akim Demaille <akim@epita.fr>
382 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
385 2000-09-18 Akim Demaille <akim@epita.fr>
387 * configure.in: Append WARNING_CFLAGS to CFLAGS.
388 * src/Makefile.am (INCLUDES): Don't.
389 Be ready to fetch headers in lib/.
391 2000-09-18 Akim Demaille <akim@epita.fr>
393 * doc/bison.texinfo: Update the copyright.
394 ANSIfy and GNUify the examples.
397 2000-09-18 Akim Demaille <akim@epita.fr>
399 First set of tests: use the `calc' example from the documentation.
401 * src/bison.s1 (yyparse): Condition the code using `yytname' which
402 is defined only when YYDEBUG is.
403 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
404 * src/files.c (tryopen, tryclose): Formatting changes.
405 Move to the top and be static.
406 * src/reader.c (read_signed_integer): Likewise.
407 * tests/calc.m4: New file.
408 * Makefile.am, suite.m4: Adjust.
409 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
411 2000-09-18 Akim Demaille <akim@epita.fr>
413 Add support for an Autotest test suite for Bison.
415 * m4/m4.m4, m4/atconfig.m4: New files.
416 * m4/Makefile.am (EXTRA_DIST): Adjust.
417 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
419 * src/getargs.c: Display a more standard --version message.
420 * src/reader.c (reader): Formatting changes.
421 No longer depend upon VERSION_STRING.
422 * configure.in: No longer use `dnl'.
423 Set up the test suite and the new directory `tests/.
424 (VERSION_STRING): Remove.
426 2000-04-14 Akim Demaille <akim@epita.fr>
428 * src/reader.c (copy_comment2): New function, same as former
429 `copy_comment', but outputs into two FILE *.
430 (copy_comment): Use it.
431 (parse_union_decl): Use it.
432 (get_type, parse_start_decl): Use the same `invalid' message.
433 (parse_start_decl, parse_union_decl): Use the same `multiple'
435 (parse_union_decl, copy_guard, copy_action): Use the same
437 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
439 2000-03-31 Akim Demaille <akim@epita.fr>
441 * src/files.c (tryopen, tryclose): Move to the top.
444 2000-03-31 Akim Demaille <akim@epita.fr>
446 * src/main.c (main): Don't call `done', exit does it.
448 2000-03-31 Akim Demaille <akim@epita.fr>
450 * allocate.c: s/return (foo)/return foo/.
453 * output.c: Likewise.
454 * reader.c: Likewise.
455 * symtab.c: Likewise.
456 * vmsgetargs.c: Likewise.
458 2000-03-31 Akim Demaille <akim@epita.fr>
460 Clean up the error reporting functions.
462 * src/report.c: New file.
463 * src/report.h: Likewise.
464 * src/Makefile.am: Adjust.
465 * m4/error.m4: New file.
466 * m4/Makefile.am: Adjust.
467 * configure.in (jm_PREREQ_ERROR): Call it.
468 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
470 (fatal, fatals): Remove. All callers use complain.c::fatal.
471 (warn, warni, warns, warnss, warnss): Remove. All callers use
472 complain.c::complain.
473 (toomany): Remove, use fatal instead.
474 * src/files.c (done): No argument, use complain_message_count.
475 * src/main.c (main): Register `done' to `atexit'.
477 * src/getargs.c (usage): More `fputs', less `fprintf'.
479 2000-03-28 Akim Demaille <akim@epita.fr>
481 * lib/: New directory.
482 * Makefile.am (SUBDIRS): Adjust.
483 * configure.in: Adjust.
484 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
486 * src/alloca.c: Moved to lib/.
487 * src/getopt.c: Likewise.
488 * src/getopt1.c: Likewise.
489 * src/getopt.h: Likewise.
490 * src/ansi2knr.c: Likewise.
491 * src/ansi2knr.1: Likewise.
492 * src/Makefile.am: Adjust.
493 * lib/Makefile.am: New file.
495 2000-03-28 Akim Demaille <akim@epita.fr>
497 * src/getargs.c (usage): Refresh the help message.
499 2000-03-17 Akim Demaille <akim@epita.fr>
501 * src/getopt1.c: Updated from textutils 2.0e
502 * src/getopt.c: Likewise.
503 * src/getopt.h: Likewise.
505 2000-03-17 Akim Demaille <akim@epita.fr>
507 * src/Makefile.am (bison.simple): Fix the awk program: quote only
508 the file name, not the whole `#line LINE FILE'.
510 2000-03-17 Akim Demaille <akim@epita.fr>
512 On syntax errors, report the token on which we choked.
514 * src/bison.s1 (yyparse): In the label yyerrlab, when
515 YYERROR_VERBOSE, add yychar in msg.
517 2000-03-17 Akim Demaille <akim@epita.fr>
519 * src/reader.c (copy_at): New function.
520 (copy_guard): Use it.
521 (copy_action): Use it.
523 2000-03-17 Akim Demaille <akim@epita.fr>
525 Be kind to translators, save some useless translations.
527 * src/main.c (banner): New function.
528 (fatal_banner): Use it.
529 (warn_banner): Use it.
531 2000-03-17 Akim Demaille <akim@epita.fr>
533 * src/reader.c (copy_definition): Use copy_string and
534 copy_comment. Removed now unused `match', `ended',
536 (copy_comment, copy_string): Moved, to be visible from
539 2000-03-17 Akim Demaille <akim@epita.fr>
541 * src/reader.c (copy_string): Declare `static inline'. No
542 problems with inline, since it is checked by configure.
543 (copy_comment): Likewise.
545 2000-03-17 Akim Demaille <akim@epita.fr>
547 * src/reader.c (packsymbols): Formatting changes.
549 2000-03-17 Akim Demaille <akim@epita.fr>
551 * src/reader.c (copy_comment): New function, factored out from:
552 (copy_action): Use it. Removed now unused `match', `ended',
554 (copy_guard): Likewise.
556 2000-03-17 Akim Demaille <akim@epita.fr>
558 * src/reader.c (copy_string): New function, factored out from:
559 (copy_action): Use it.
560 (copy_guard): Likewise.
562 2000-03-17 Akim Demaille <akim@epita.fr>
564 Change the handling of @s so that they behave exactly like $s.
565 There is now a pseudo variable @$ (readble and writable), location
566 of the lhs of the rule (by default ranging from the location of
567 the first symbol of the rhs, to the location of the last symbol,
568 or, if the rhs is empty, YYLLOC).
570 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
572 (yyparse): When providing a default semantic action, provide a
573 default location action.
574 (after the $): No longer change `*YYLSP', just stack YYLOC the
575 same way you stack YYVAL.
576 * src/reader.c (read_declarations): Use warns.
577 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
578 (copy_action, case '@'): Likewise.
579 Use a standard error message, to save useless work from
582 2000-03-17 Akim Demaille <akim@epita.fr>
584 * src/bison.s1: Formatting and cosmetics changes.
585 * src/reader.c: Likewise.
586 Update the Copyright notice.
588 2000-03-17 Akim Demaille <akim@epita.fr>
590 * src/bison.s1 (#line): All set to `#line' only, since the
591 Makefile now handles them.
593 2000-03-16 Akim Demaille <akim@epita.fr>
595 * src/output.c (output_rule_data): Output the documentation of
597 (Copyright notice): Update.
600 2000-03-16 Akim Demaille <akim@epita.fr>
602 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
603 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
604 One `#if YYDEBUG' remains, since it uses variables which are
605 defined only if `YYDEBUG != 0'.
607 2000-03-16 Akim Demaille <akim@epita.fr>
609 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
610 and related variables so that the similarities are highlighted.
612 2000-03-16 Akim Demaille <akim@epita.fr>
614 * src/bison.s1: Properly indent CPP directives.
616 2000-03-16 Akim Demaille <akim@epita.fr>
618 * src/bison.s1: Properly indent the `alloca' CPP section.
620 2000-03-16 Akim Demaille <akim@epita.fr>
622 Do not hard code values of directories in `configure.in'.
623 Update the `configure' tool chain.
625 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
627 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
628 (AC_OUTPUT): Add m4/Makefile.
629 Bump to bison 1.28a, 1.29 has never been released.
630 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
631 handled via src/Makefile.am.
632 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
633 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
635 * Makefile.am (SUBDIRS): Add m4.
636 (ACLOCAL_AM_FLAGS): New variable.
637 (AUTOMAKE_OPTIONS): Add check-news.
638 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
639 the proper line number and file name.
640 (DEFS): Propagate the location of bison library files and of the
642 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
644 * acinclude.m4: Remove, replaced by the directory m4.
645 * m4/Makefile.am (EXTRA_DIST): New variable.
646 * m4/gettext.m4: New file, from the fileutils.
647 * m4/lcmessage.m4: Likewise
648 * m4/progtest.m4: Likewise.
649 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
651 2000-03-10 Akim Demaille <akim@epita.fr>
654 Formatting changes of various comments.
655 Respect the GNU coding standards at various places.
656 Don't use `_()' when no translation is needed.
658 1999-12-13 Jesse Thilo <jthilo@gnu.org>
661 OS/2 honors TMPDIR environment variable.
663 1999-12-13 Jesse Thilo <jthilo@gnu.org>
665 * doc/bison.texinfo: Tweaked spelling and grammar.
667 Removed reference to price of printed copy.
668 Mention BISON_SIMPLE and BISON_HAIRY.
670 1999-12-13 Jesse Thilo <jthilo@gnu.org>
672 * configure.in, NEWS:
675 1999-10-27 Jesse Thilo <jthilo@gnu.org>
677 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
678 Added reference card.
680 1999-07-26 Jesse Thilo <jthilo@gnu.org>
682 * po/ru.po: Added Russian translation.
684 1999-07-26 Jesse Thilo <jthilo@gnu.org>
686 * configure.in: Added Russian translation.
688 1999-07-06 Jesse Thilo <jthilo@gnu.org>
690 * configure.in, NEWS, README:
691 Released version 1.28.
693 1999-06-14 Jesse Thilo <jthilo@gnu.org>
696 Squashed redefinition warning on some systems.
698 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
699 Have configure build version string instead of relying on ANSI string
702 1999-06-14 Jesse Thilo <jthilo@gnu.org>
704 * po/POTFILES.in: Got rid of version.c.
706 1999-06-14 Jesse Thilo <jthilo@gnu.org>
708 * acconfig.h, configure.in:
709 Have configure build version string instead of relying on ANSI string
712 1999-06-08 Jesse Thilo <jthilo@gnu.org>
715 Dropped mention of `+' for long-named options.
717 1999-05-30 Jesse Thilo <jthilo@gnu.org>
719 * src/files.c: Added <unistd.h> for unlink().
721 * src/Makefile.am, src/system.h:
724 1999-05-30 Jesse Thilo <jthilo@gnu.org>
726 * README: Added a FAQ list.
728 * configure.in, acconfig.h:
731 1999-05-30 Jesse Thilo <jthilo@gnu.org>
733 * doc/FAQ, doc/Makefile.am:
736 1999-05-19 Jesse Thilo <jthilo@gnu.org>
738 * src/alloc.h, src/symtab.h, src/version.c:
739 Protected inclusion of "config.h" with HAVE_CONFIG_H.
741 1999-04-18 Jesse Thilo <jthilo@gnu.org>
743 * src/.cvsignore, src/Makefile.am:
744 Reorganized: sources in `src', documentation in `doc'.
746 * src/lex.c (literalchar):
747 fixed the code for escaping double quotes (thanks
750 1999-04-18 Jesse Thilo <jthilo@gnu.org>
752 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
753 Adjusted paths to reflect directory reorganization.
755 1999-04-18 Jesse Thilo <jthilo@gnu.org>
757 * doc/.cvsignore, doc/Makefile.am:
758 Reorganized: sources in `src', documentation in `doc'.
760 1999-04-18 Jesse Thilo <jthilo@gnu.org>
763 Updated AC_INIT file to reflect directory reorganization.
765 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
766 Reorganized: sources in `src', documentation in `doc'.
768 1999-04-13 Jesse Thilo <jthilo@gnu.org>
771 Don't declare calloc() and realloc() if not necessary.
773 1999-04-13 Jesse Thilo <jthilo@gnu.org>
775 * configure.in, acconfig.h, acinclude.m4:
776 Don't declare calloc() and realloc() if not necessary.
778 1999-03-23 Jesse Thilo <jthilo@gnu.org>
780 * po/.cvsignore: Added i18n support.
782 1999-03-23 Jesse Thilo <jthilo@gnu.org>
784 * acconfig.h, configure.in, Makefile.am:
787 1999-03-22 Jesse Thilo <jthilo@gnu.org>
789 * src/bison.s1: Fixed #line numbers.
791 1999-03-15 Jesse Thilo <jthilo@gnu.org>
793 * po/es.po, po/fr.po, po/nl.po, po/de.po:
794 Added PO files from Translation Project.
796 1999-03-03 Jesse Thilo <jthilo@gnu.org>
799 Added support for non-ANSI compilers (ansi2knr).
801 1999-02-16 Jesse Thilo <jthilo@gnu.org>
803 * configure.in: Bumped version number to 1.27.
806 Added `bison.simple' to list of files removed by `make distclean'.
808 1999-02-12 Jesse Thilo <jthilo@gnu.org>
810 * src/files.c, src/files.h:
811 Defined locations of parser files in config.h instead of Makefile.
813 1999-02-12 Jesse Thilo <jthilo@gnu.org>
815 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
816 Defined locations of parser files in config.h instead of Makefile.
818 1999-02-09 Jesse Thilo <jthilo@gnu.org>
821 Removed inappropriate use of $< macro.
823 1999-02-05 Jesse Thilo <jthilo@gnu.org>
825 * po/Makefile.in.in, po/POTFILES.in:
826 Add `po' directory skeleton.
828 1999-01-27 Jesse Thilo <jthilo@gnu.org>
830 * README: Document help-bison list.
832 * configure.in: Add check for mkstemp().
834 1999-01-20 Jesse Thilo <jthilo@gnu.org>
836 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
837 Hush a few compiler warnings.
840 Add tryclose(), which verifies that fclose was successful.
841 Hush a couple of compiler warnings.
843 1999-01-20 Jesse Thilo <jthilo@gnu.org>
845 * Makefile.am, OChangeLog:
846 ChangeLog is now automatically generated. Include the old version as
849 1999-01-14 Jesse Thilo <jthilo@gnu.org>
851 * 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:
854 1999-01-14 Jesse Thilo <jthilo@gnu.org>
856 * doc/bison.texinfo: Fix formatting glitch.
858 * doc/bison.texinfo: Update FSF address.
860 1999-01-14 Jesse Thilo <jthilo@gnu.org>
862 * acconfig.h: Update FSF address.
864 1999-01-08 Jesse Thilo <jthilo@gnu.org>
867 Don't define PACKAGE here, since config.h defines it.
869 1998-12-30 Jesse Thilo <jthilo@gnu.org>
871 * src/reader.c: Update copyright date.
874 Ditch sprintf to statically-sized buffers in fatal/warn functions in
875 favor of output directly to stderr (avoids buffer overruns).
877 * src/reader.c: Some checks for premature EOF.
879 * 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:
880 Use prototypes if the compiler understands them.
882 * src/files.c: Honor TMPDIR on Unix hosts.
883 Use prototypes if the compiler understands them.
886 Fix a couple of buffer overrun bugs.
887 Use prototypes if the compiler understands them.
889 * src/system.h: Include unistd.h and ctype.h.
890 Use #ifdef instead of #if for NLS symbols.
892 1998-12-30 Jesse Thilo <jthilo@gnu.org>
895 Delete comment "consider using @set for edition number, etc..." since
898 1998-12-30 Jesse Thilo <jthilo@gnu.org>
901 Use prototypes if the compiler understands them.
903 * NEWS: Document 1.26 highlights.
905 * Makefile.am: Require Automake 1.3 or later.
908 Use prototypes if the compiler understands them.
910 1998-12-29 Jesse Thilo <jthilo@gnu.org>
913 Use VERSION symbol from automake for version number.
915 1998-12-29 Jesse Thilo <jthilo@gnu.org>
917 * acconfig.h, configure.in, version.cin:
918 Use VERSION symbol from automake for version number.
920 1998-11-28 Jesse Thilo <jthilo@gnu.org>
923 Distribute original version of simple parser (bison.s1), not built
924 version (bison.simple).
926 1998-11-28 Jesse Thilo <jthilo@gnu.org>
928 * doc/bison.texinfo: Add info dir entry.
931 Let automake put version number into documentation.
933 1998-11-26 Jesse Thilo <jthilo@gnu.org>
935 * src/bison.cld, src/build.com, src/vmshlp.mar:
936 Add non-RCS files from /gd/gnu/bison.
938 1998-11-26 Jesse Thilo <jthilo@gnu.org>
941 Document the BISON_HAIRY and BISON_SIMPLE variables.
943 1998-11-25 Jesse Thilo <jthilo@gnu.org>
945 * src/version.c: Build version.c automatically.
948 Fix token numbering (used to start at 258, not 257).
950 * src/system.h: Include config.h.
952 * src/getargs.c: Update bug report address.
954 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
955 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
957 1998-11-25 Jesse Thilo <jthilo@gnu.org>
960 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
962 * configure.in, version.cin:
963 Build version.c automatically.
965 * AUTHORS: Add AUTHORS file.
967 * README: Update bug report address.
970 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
972 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
975 1998-11-25 Jesse Thilo <jthilo@gnu.org>
977 * doc/bison.texinfo: Clean up some formatting.
979 1998-05-05 Richard Stallman <rms@gnu.org>
982 Explain better why to make a pure parser.
984 1998-01-05 Richard Stallman <rms@gnu.org>
986 * src/files.c (openfiles):
987 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
988 find a temporary directory, if possible. Do not unlink files while
991 1997-08-25 Richard Stallman <rms@gnu.org>
993 * src/reader.c (stack_offset;):
994 Change some warni to warns.
996 * src/lex.c (literalchar): Use warns, not warni.
998 1997-06-28 Richard Stallman <rms@gnu.org>
1000 * src/bison.s1: Add a Bison version comment.
1002 * src/main.c (fatal, warn, berror):
1005 1997-06-28 Richard Stallman <rms@gnu.org>
1007 * Makefile.in (bison_version): New variable.
1008 (dist): Use that variable.
1009 (bison.s1): Substitute the Bison version into bison.simple.
1011 * bison.simple: Add a Bison version comment.
1013 1997-06-18 Richard Stallman <rms@gnu.org>
1015 * src/main.c (fatal, warn, berror):
1016 Make error messages standard.
1017 (toomany): Improve error message text.
1019 * 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:
1020 new.h renamed to alloc.h.
1022 1997-06-18 Richard Stallman <rms@gnu.org>
1024 * Makefile.in: new.h renamed to alloc.h.
1026 1997-05-24 Richard Stallman <rms@gnu.org>
1028 * src/lex.c (literalchar):
1029 Fix the code for escaping \, " and '.
1031 (lex): Avoid trouble when there are many chars
1032 to discard in a char literal with just several chars in it.
1034 1997-05-17 Richard Stallman <rms@gnu.org>
1037 Use malloc, if using alloca is troublesome.
1038 (YYSTACK_USE_ALLOCA): New flag macro.
1039 Define it for some systems and compilers.
1040 (YYSTACK_ALLOC): New macro.
1041 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1042 If it was malloc'd, free it.
1044 1997-05-17 Richard Stallman <rms@gnu.org>
1047 Use malloc, if using alloca is troublesome.
1048 (YYSTACK_USE_ALLOCA): New flag macro.
1049 Define it for some systems and compilers.
1050 (YYSTACK_ALLOC): New macro.
1051 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1052 If it was malloc'd, free it.
1054 1997-04-23 Richard Stallman <rms@gnu.org>
1057 (alloca) [__hpux]: Always define as __builtin_alloca.
1059 1997-04-23 Richard Stallman <rms@gnu.org>
1062 (alloca) [__hpux]: Always define as __builtin_alloca.
1064 1997-04-22 Richard Stallman <rms@gnu.org>
1067 [__hpux]: Include alloca.h (right for HPUX 10)
1068 instead of declaring alloca (right for HPUX 9).
1070 * src/bison.s1 (__yy_memcpy):
1071 Declare arg `count' as unsigned int.
1072 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1074 1997-04-22 Richard Stallman <rms@gnu.org>
1077 [__hpux]: Include alloca.h (right for HPUX 10)
1078 instead of declaring alloca (right for HPUX 9).
1080 * bison.simple (__yy_memcpy):
1081 Declare arg `count' as unsigned int.
1082 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1084 1997-01-03 Richard Stallman <rms@gnu.org>
1086 * src/allocate.c: [__STDC__ or _MSC_VER]:
1087 Declare calloc and realloc to return void *.
1089 1997-01-02 Richard Stallman <rms@gnu.org>
1092 [_MSC_VER]: Include stdlib.h and process.h.
1093 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1095 * src/main.c (main): Return FAILURE as a value.
1096 (printable_version): Declare arg as int, not char.
1098 1997-01-02 Richard Stallman <rms@gnu.org>
1100 * Makefile.in (dist):
1101 Explicitly check for symlinks, and copy them.
1103 1996-12-19 Richard Stallman <rms@gnu.org>
1106 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1108 1996-12-18 Paul Eggert <eggert@gnu.org>
1110 * src/bison.s1 (yyparse):
1111 If __GNUC__ and YYPARSE_PARAM are both defined,
1112 declare yyparse to have a void * argument.
1114 1996-12-18 Paul Eggert <eggert@gnu.org>
1116 * bison.simple (yyparse):
1117 If __GNUC__ and YYPARSE_PARAM are both defined,
1118 declare yyparse to have a void * argument.
1120 1996-12-17 Richard Stallman <rms@gnu.org>
1122 * src/reduce.c (nbits): Add some casts.
1124 1996-08-12 Richard Stallman <rms@gnu.org>
1126 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1128 1996-08-12 Richard Stallman <rms@gnu.org>
1130 * bison.simple: Test _MSDOS as well as _MSDOS_.
1132 1996-07-31 Richard Stallman <rms@gnu.org>
1135 [__sun && __i386]: Include alloca.h.
1137 1996-07-31 Richard Stallman <rms@gnu.org>
1140 [__sun && __i386]: Include alloca.h.
1142 1996-07-30 Richard Stallman <rms@gnu.org>
1144 * src/bison.s1: Comment change.
1146 * src/bison.s1: Test _MSDOS_, not MSDOS.
1148 1996-07-30 Richard Stallman <rms@gnu.org>
1150 * bison.simple: Comment change.
1152 * bison.simple: Test _MSDOS_, not MSDOS.
1154 1996-06-01 Richard Stallman <rms@gnu.org>
1156 * 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:
1157 Insert `_' macro around many string constants.
1160 Insert `_' macro around many string constants.
1162 (main): Call setlocale, bindtextdomain and textdomain.
1164 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1165 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1166 [ENABLE_NLS]: Include libintl.h.
1167 [ENABLE_NLS] (gettext): Define.
1168 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1169 (N_, PACKAGE, LOCALEDIR): New macros.
1171 1996-06-01 Richard Stallman <rms@gnu.org>
1173 * POTFILES.in: New file.
1175 * Makefile.in (allocate.o):
1176 Define target explicitly.
1178 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1179 (LDFLAGS): Set to @LDFLAGS@.
1180 (configure): Run autoconf only if preceding `cd' succeeds.
1181 (bison.s1): Redirect output to temporary file then move the
1182 temporary to the target, rather than redirecting directly to bison.s1.
1183 (clean): Remove config.status and config.log.
1184 (distclean): Don't remove config.status here.
1186 1996-05-12 Richard Stallman <rms@gnu.org>
1189 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1191 1996-05-12 Richard Stallman <rms@gnu.org>
1194 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1196 1996-05-11 Richard Stallman <rms@gnu.org>
1198 * src/bison.s1 (__yy_memcpy):
1199 Really reorder the args, as was supposedly done on Feb 14 1995.
1200 (yyparse): Calls changed accordingly.
1202 1996-05-11 Richard Stallman <rms@gnu.org>
1204 * Makefile.in (dist): Don't use $(srcdir).
1206 * bison.simple (__yy_memcpy):
1207 Really reorder the args, as was supposedly done on Feb 14 1995.
1208 (yyparse): Calls changed accordingly.
1210 1996-01-27 Richard Stallman <rms@gnu.org>
1212 * src/output.c (output_rule_data):
1213 Test YYERROR_VERBOSE in the conditional
1214 around the definition of ttyname.
1216 1995-12-29 Richard Stallman <rms@gnu.org>
1219 Fix line numbers in #line commands.
1221 1995-12-29 Richard Stallman <rms@gnu.org>
1224 Fix line numbers in #line commands.
1226 1995-12-27 Richard Stallman <rms@gnu.org>
1228 * src/bison.s1 (YYPARSE_PARAM_DECL):
1229 In C++, make it always null.
1230 (YYPARSE_PARAM_ARG): New macro.
1231 (yyparse): Use YYPARSE_PARAM_ARG.
1233 1995-12-27 Richard Stallman <rms@gnu.org>
1235 * bison.simple (YYPARSE_PARAM_DECL):
1236 In C++, make it always null.
1237 (YYPARSE_PARAM_ARG): New macro.
1238 (yyparse): Use YYPARSE_PARAM_ARG.
1240 1995-11-29 Richard Stallman <rms@gnu.org>
1242 * doc/bison.texinfo:
1243 Describe literal string tokens, %raw, %no_lines, %token_table.
1245 1995-11-29 Daniel Hagerty <hag@gnu.org>
1247 * doc/bison.texinfo: Fixed update date
1249 1995-10-16 Richard Stallman <rms@gnu.org>
1251 * src/version.c: Version 1.25.
1253 1995-10-16 Richard Stallman <rms@gnu.org>
1255 * NEWS: *** empty log message ***
1257 1995-10-16 Richard Stallman <rms@gnu.org>
1259 * doc/bison.1, doc/bison.rnh:
1262 1995-10-15 Richard Stallman <rms@gnu.org>
1264 * src/vmsgetargs.c, src/getargs.c:
1265 Added -n, -k, and -raw switches.
1266 (noparserflag, toknumflag, rawtoknumflag): New variables.
1268 * src/symtab.h (SALIAS):
1269 New #define for adding aliases to %token.
1270 (struct bucket): Added `alias' field.
1272 * src/reduce.c (reduce_grammar):
1273 Revise error message.
1274 (print_notices): Remove final `.' from error message.
1276 * src/reader.c (reader_output_yylsp):
1278 (readgram): Use `#if 0' around code that accepted %command
1279 inside grammar rules: The documentation doesn't allow it,
1280 and it will fail since the %command processors scan for the next %.
1281 (parse_token_decl): Extended the %token
1282 declaration to allow a multi-character symbol as an alias.
1283 (parse_thong_decl): New function.
1284 (read_declarations): Added %thong declarations.
1285 (read_declarations): Handle NOOP to deal with allowing
1286 % declarations as another means to specify the flags.
1287 (readgram): Allow %prec prior to semantics embedded in a rule.
1288 (skip_to_char, read_declarations, copy_definition)
1289 (parse_token_decl, parse_start_decl, parse_type_decl)
1290 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1291 (get_type_name, copy_guard, copy_action, readgram)
1292 (get_type, packsymbols): Revised most error messages.
1293 Changed `fatal' to `warnxxx' to avoid aborting for error.
1294 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1295 (read_declarations): Improve the error message for
1296 an invalid character. Do not abort.
1297 (read_declarations, copy_guard, copy_action): Use
1298 printable_version to avoid unprintable characters in printed output.
1299 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1300 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1301 Allow the type of a non-terminal can be given
1302 more than once, as long as all specifications give the same type.
1305 (output_headers, output_trailers, output, output_gram)
1306 (output_rule_data): Implement noparserflag variable.
1307 Implement toknumflag variable.
1308 (output): Call reader_output_yylsp to output LTYPESTR.
1310 * src/main.c (main):
1311 If reader sees an error, don't process the grammar.
1312 (fatals): Updated to not use VARARGS1.
1313 (printable_version, int_to_string, warn, warni, warns, warnss)
1314 (warnsss): New error reporting functions. Avoid abort for error.
1317 Added THONG and NOOP for alias processing.
1318 Added SETOPT for the new code that allows setting options with %flags.
1321 Include getopt.h. Add some extern decls.
1322 (safegetc): New function to deal with EOF gracefully.
1323 (literalchar); new function to deal with reading \ escapes.
1324 (lex): Use literalchar.
1325 (lex): Implemented "..." tokens.
1326 (literalchar, lex, parse_percent_token): Made tokenbuffer
1327 always contain the token. This includes growing the token
1328 buffer while reading an integer.
1329 (parse_percent_token): Replaced if-else statement with percent_table.
1330 (parse_percent_token): Added % declarations as another
1331 way to specify the flags -n, -l, and -r. Also added hooks for
1332 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1333 major changes to files.c.
1334 (lex) Retain in the incoming stream a character following
1336 (skip_white_space, lex): Revised most error messages
1337 and changed fatal to warn to avoid aborting.
1338 (percent_table): Added %thong declarations.
1340 * src/gram.h: Comment changes.
1342 * src/files.c (openfiles, open_extra_files, done):
1344 and actfile file. Handle noparserflag. Both for -n switch.
1346 * src/conflicts.c (resolve_sr_conflict):
1347 Remove use of alloca.
1349 1995-06-01 Jim Meyering <meyering@gnu.org>
1351 * doc/bison.texinfo: *** empty log message ***
1353 1995-05-06 Richard Stallman <rms@gnu.org>
1355 * src/bison.s1: Comment change.
1357 1995-05-06 Richard Stallman <rms@gnu.org>
1359 * bison.simple: Comment change.
1361 1995-05-03 Richard Stallman <rms@gnu.org>
1363 * src/version.c: Version now 1.24.
1365 * src/bison.s1: Change distribution terms.
1367 * src/version.c: Version now 1.23.
1369 1995-05-03 Richard Stallman <rms@gnu.org>
1371 * doc/bison.texinfo:
1372 Rewrite "Conditions for Using Bison".
1373 Update version to 1.24.
1375 1995-05-03 Richard Stallman <rms@gnu.org>
1377 * bison.simple: Change distribution terms.
1379 1995-02-23 Richard Stallman <rms@gnu.org>
1381 * src/files.c: Test __VMS_POSIX as well as VMS.
1383 1995-02-14 Jim Meyering <meyering@gnu.org>
1385 * src/bison.s1 (__yy_memcpy):
1386 Renamed from __yy_bcopy to avoid
1387 confusion. Reverse FROM and TO arguments to be consistent with
1390 1995-02-14 Jim Meyering <meyering@gnu.org>
1392 * bison.simple (__yy_memcpy):
1393 Renamed from __yy_bcopy to avoid
1394 confusion. Reverse FROM and TO arguments to be consistent with
1397 1994-11-10 David J. MacKenzie <djm@gnu.org>
1403 * Makefile.in (DISTFILES): Include NEWS.
1405 * Makefile.in (DISTFILES):
1406 Include install-sh, not install.sh.
1408 * configure.in: Update to Autoconf v2 macro names.
1410 1994-10-05 David J. MacKenzie <djm@gnu.org>
1412 * Makefile.in: fix typo
1414 * Makefile.in (prefix, exec_prefix):
1415 Let configure set them.
1417 1994-09-28 David J. MacKenzie <djm@gnu.org>
1419 * Makefile.in: Set datadir to $(prefix)/share.
1421 1994-09-15 Richard Stallman <rms@gnu.org>
1424 Update copyright notice and GPL version.
1426 1994-09-15 Richard Stallman <rms@gnu.org>
1429 Update copyright notice and GPL version.
1431 1994-07-12 Richard Stallman <rms@gnu.org>
1433 * src/reduce.c, src/reader.c:
1436 1994-05-05 David J. MacKenzie <djm@gnu.org>
1438 * Makefile.in: entered into RCS
1440 1994-03-26 Richard Stallman <rms@gnu.org>
1442 * src/bison.s1: entered into RCS
1444 1994-03-26 Richard Stallman <rms@gnu.org>
1446 * bison.simple: entered into RCS
1448 1994-03-25 Richard Stallman <rms@gnu.org>
1450 * src/main.c: entered into RCS
1452 1994-03-24 Richard Stallman <rms@gnu.org>
1454 * src/conflicts.c: entered into RCS
1456 1994-01-02 Richard Stallman <rms@gnu.org>
1458 * Makefile.in: *** empty log message ***
1460 1993-11-21 Richard Stallman <rms@gnu.org>
1462 * src/bison.s1: *** empty log message ***
1464 1993-11-21 Richard Stallman <rms@gnu.org>
1466 * doc/bison.texinfo: entered into RCS
1468 * doc/bison.texinfo: *** empty log message ***
1470 1993-11-21 Richard Stallman <rms@gnu.org>
1472 * bison.simple: *** empty log message ***
1474 1993-10-25 David J. MacKenzie <djm@gnu.org>
1476 * doc/bison.texinfo: *** empty log message ***
1478 1993-10-19 Richard Stallman <rms@gnu.org>
1480 * src/bison.s1: *** empty log message ***
1482 1993-10-19 Richard Stallman <rms@gnu.org>
1484 * bison.simple: *** empty log message ***
1486 1993-10-14 Richard Stallman <rms@gnu.org>
1488 * src/bison.s1: *** empty log message ***
1490 1993-10-14 Richard Stallman <rms@gnu.org>
1492 * bison.simple: *** empty log message ***
1494 1993-09-14 David J. MacKenzie <djm@gnu.org>
1496 * doc/bison.texinfo: *** empty log message ***
1498 1993-09-13 Noah Friedman <friedman@gnu.org>
1500 * Makefile.in: *** empty log message ***
1502 1993-09-10 Richard Stallman <rms@gnu.org>
1504 * src/conflicts.c: *** empty log message ***
1506 * src/system.h: entered into RCS
1508 1993-09-10 Richard Stallman <rms@gnu.org>
1510 * doc/bison.1: entered into RCS
1512 1993-09-06 Noah Friedman <friedman@gnu.org>
1514 * src/version.c: entered into RCS
1516 1993-09-06 Noah Friedman <friedman@gnu.org>
1518 * Makefile.in: *** empty log message ***
1520 1993-07-30 David J. MacKenzie <djm@gnu.org>
1522 * Makefile.in: *** empty log message ***
1524 1993-07-24 Richard Stallman <rms@gnu.org>
1526 * src/bison.s1: *** empty log message ***
1528 1993-07-24 Richard Stallman <rms@gnu.org>
1530 * bison.simple: *** empty log message ***
1532 1993-07-08 David J. MacKenzie <djm@gnu.org>
1534 * Makefile.in: *** empty log message ***
1536 1993-07-04 Richard Stallman <rms@gnu.org>
1538 * src/bison.s1: *** empty log message ***
1540 1993-07-04 Richard Stallman <rms@gnu.org>
1542 * bison.simple: *** empty log message ***
1544 1993-06-26 David J. MacKenzie <djm@gnu.org>
1546 * src/getargs.c: entered into RCS
1548 1993-06-26 David J. MacKenzie <djm@gnu.org>
1550 * doc/bison.texinfo: *** empty log message ***
1552 * doc/bison.1: New file.
1554 1993-06-25 Richard Stallman <rms@gnu.org>
1556 * src/getargs.c: New file.
1558 1993-06-16 Richard Stallman <rms@gnu.org>
1560 * src/bison.s1: *** empty log message ***
1562 1993-06-16 Richard Stallman <rms@gnu.org>
1564 * bison.simple: *** empty log message ***
1566 1993-06-03 Richard Stallman <rms@gnu.org>
1568 * src/bison.s1: New file.
1570 1993-06-03 Richard Stallman <rms@gnu.org>
1572 * doc/bison.texinfo: *** empty log message ***
1574 1993-06-03 Richard Stallman <rms@gnu.org>
1576 * bison.simple: New file.
1578 1993-05-19 Richard Stallman <rms@gnu.org>
1580 * doc/bison.texinfo: New file.
1582 1993-05-07 Noah Friedman <friedman@gnu.org>
1584 * Makefile.in: *** empty log message ***
1586 1993-04-28 Noah Friedman <friedman@gnu.org>
1588 * src/reader.c: *** empty log message ***
1590 1993-04-23 Noah Friedman <friedman@gnu.org>
1592 * src/alloc.h: entered into RCS
1594 1993-04-20 David J. MacKenzie <djm@gnu.org>
1596 * src/version.c: *** empty log message ***
1598 * src/files.c, src/allocate.c:
1601 * src/reader.c: *** empty log message ***
1603 * src/lex.c: entered into RCS
1605 * src/conflicts.c: New file.
1607 * src/symtab.c: entered into RCS
1609 * src/alloc.h: New file.
1611 * src/LR0.c: entered into RCS
1613 1993-04-18 Noah Friedman <friedman@gnu.org>
1615 * src/reader.c: New file.
1617 * src/version.c: *** empty log message ***
1619 1993-04-18 Noah Friedman <friedman@gnu.org>
1621 * Makefile.in: *** empty log message ***
1623 1993-04-17 Noah Friedman <friedman@gnu.org>
1625 * Makefile.in: *** empty log message ***
1627 1993-04-15 Richard Stallman <rms@gnu.org>
1629 * src/main.c, src/files.c:
1632 1993-04-15 Noah Friedman <friedman@gnu.org>
1634 * configure.in: entered into RCS
1636 * configure.in: *** empty log message ***
1638 * configure.in: New file.
1640 1993-04-14 Richard Stallman <rms@gnu.org>
1642 * Makefile.in: New file.
1644 1993-04-13 Richard Stallman <rms@gnu.org>
1646 * src/version.c: New file.
1648 1993-03-25 Richard Stallman <rms@gnu.org>
1650 * src/output.c: entered into RCS
1652 1992-09-25 Richard Stallman <rms@gnu.org>
1654 * configure.bat: entered into RCS
1656 1992-06-22 Richard Stallman <rms@gnu.org>
1658 * src/vmsgetargs.c: entered into RCS
1660 1992-06-22 Richard Stallman <rms@gnu.org>
1662 * doc/bison.rnh: entered into RCS
1664 1992-04-20 David J. MacKenzie <djm@gnu.org>
1666 * README: entered into RCS
1668 1992-01-22 Richard Stallman <rms@gnu.org>
1670 * src/machine.h: entered into RCS
1672 1991-12-21 Richard Stallman <rms@gnu.org>
1674 * src/lalr.c, src/closure.c:
1677 1991-12-20 Richard Stallman <rms@gnu.org>
1679 * src/state.h: entered into RCS
1681 1991-12-18 Richard Stallman <rms@gnu.org>
1683 * src/print.c, src/nullable.c, src/derives.c:
1686 1991-11-03 David J. MacKenzie <djm@gnu.org>
1688 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1691 1988-09-09 Richard Stallman <rms@gnu.org>
1693 * src/bison.hairy: entered into RCS
1695 1987-12-16 Richard Stallman <rms@gnu.org>
1697 * REFERENCES: entered into RCS