1 2000-10-02 Akim Demaille <akim@epita.fr>
3 Improve the readability of the produced parsers.
5 * src/bison.s1: Formatting changes.
6 Improve the comment related to the `$' mark.
7 (yydefault): Don't fall through to `yyresume': `goto' there.
8 * src/output.c (output_parser): When the `$' is met, skip the end
10 New variable, `number_of_dollar_signs', to check there's exactly
11 one `$' in the parser skeleton.
14 2000-10-02 Akim Demaille <akim@epita.fr>
16 * lib/xstrdup.c: New file, from the fileutils.
17 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
18 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
19 instead of strlen + xmalloc + strcpy.
20 * src/symtab.c (copys): Remove, use xstrdup instead.
23 2000-10-02 Akim Demaille <akim@epita.fr>
25 * src/gram.h (associativity): New enum type which replaces the
26 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
27 `right_assoc', `left_assoc' and `non_assoc'.
28 Adjust all dependencies.
29 * src/reader.c: Formatting changes.
30 (LTYPESTR): Don't define it, use it as a literal in
31 `reader_output_yylsp'.
32 * src/symtab.h (symbol_class): New enum type which replaces the
33 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
34 `sunknown', `stoken and `snterm'.
36 2000-10-02 Akim Demaille <akim@epita.fr>
38 * src/getargs.c (fixed_outfiles): Rename as...
39 (yaccflag): for consistency and accuracy.
43 2000-10-02 Akim Demaille <akim@epita.fr>
45 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
46 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
47 difficult and introduced a lot of core dump. It turns out that
48 Bison used an implementation of `xmalloc' based on `calloc', and
49 at various places it does depend upon the initialization to 0. I
50 have not tried to isolate the pertinent places, and all the former
51 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
52 someone should address this issue.
54 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
55 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
58 * src/warshall.h: New file.
61 2000-10-02 Akim Demaille <akim@epita.fr>
63 Various anti-`extern in *.c' changes.
65 * src/system.h: Include `assert.h'.
68 2000-10-02 Akim Demaille <akim@epita.fr>
70 * src/state.h (nstates, final_state, first_state, first_shift)
71 (first_reduction): Move their exportation from here...
74 * src/getargs.c (statisticsflag): New variable.
75 Add support for `--statistics'.
78 Remove a lot of now useless `extern' statements in most files.
81 2000-10-02 Akim Demaille <akim@epita.fr>
83 * src/LR0.h: New file.
87 2000-10-02 Akim Demaille <akim@epita.fr>
89 * src/print.h: New file.
91 * src/print.c: Formatting and ordering changes.
92 (verbose, terse): Replace with...
93 (print_results): this new function.
97 2000-10-02 Akim Demaille <akim@epita.fr>
99 * src/conflicts.c (conflict_report): New function.
100 (conflict_log, verbose_conflict_log): Replace with...
101 (print_conflicts): this function.
103 * src/conflicts.h: New file.
104 Propagate its inclusion.
107 2000-10-02 Akim Demaille <akim@epita.fr>
109 * src/nullable.h: New file.
110 Propagate its inclusion.
111 * src/nullable.c: Formatting changes.
114 2000-10-02 Akim Demaille <akim@epita.fr>
116 * src/reduce.h: New file.
117 Propagate its inclusion.
118 * src/reduce.c: Topological sort and other formatting changes.
119 (bool, TRUE, FALSE): Move their definition to...
120 * src/system.h: here.
123 2000-10-02 Akim Demaille <akim@epita.fr>
125 * src/files.c: Formatting changes.
126 (tryopen, tryclose, openfiles): Rename as...
127 (xfopen, xfclose, open_files): this.
128 (stringappend): static.
129 * src/files.h: Complete the list of exported symbols.
133 2000-10-02 Akim Demaille <akim@epita.fr>
135 * src/reader.h: New file.
136 Propagate its use instead of tedious list of `extern' and
138 * src/reader.c: Formatting changes, topological sort,
142 2000-10-02 Akim Demaille <akim@epita.fr>
144 * src/lex.h: Prototype `lex.c' exported functions.
145 * src/reader.c: Adjust.
146 * src/lex.c: Formatting changes.
147 (safegetc): Rename as...
151 2000-10-02 Akim Demaille <akim@epita.fr>
153 * src/lalr.h: New file.
154 Propagate its inclusion instead of prototypes and `extern'.
155 * src/lalr.c: Formatting changes, topological sorting etc.
158 2000-10-02 Akim Demaille <akim@epita.fr>
160 * src/output.c (token_actions): Introduce a temporary array,
161 YYDEFACT, that makes it possible for this function to use
165 2000-10-02 Akim Demaille <akim@epita.fr>
167 `user_toknums' is output as a `short[]' in `output.c', while it is
168 defined as a `int[]' in `reader.c'. For consistency with the
169 other output tables, `user_toknums' is now defined as a table of
172 * src/reader.c (user_toknums): Be a short table instead of an int
176 Factor the short table outputs.
178 * src/output.c (output_short_table): New function.
179 * src/output.c (output_gram, output_stos, output_rule_data)
180 (output_base, output_table, output_check): Use it.
182 2000-10-02 Akim Demaille <akim@epita.fr>
184 * src/output.c (output): Topological sort of the functions, in
185 order to get rid of the `static' prototypes.
186 No longer use `register'.
187 * src/output.h: New file.
188 Propagate its inclusion in files explicitly prototyping functions
191 2000-09-21 Akim Demaille <akim@epita.fr>
193 * src/atgeneral.m4: Update from Autoconf.
195 2000-09-21 Akim Demaille <akim@epita.fr>
197 * src/closure.h: New file.
198 * src/closure.c: Formatting changes, topological sort over the
199 functions, use of closure.h.
200 (initialize_closure, finalize_closure): Rename as...
201 (new_closure, free_closure): these. Adjust dependencies.
202 * src/LR0.c: Formatting changes, topological sort, use of
204 (initialize_states): Rename as...
206 * src/Makefile.am (noinst_HEADERS): Adjust.
208 2000-09-20 Akim Demaille <akim@epita.fr>
210 * src/acconfig.h: Don't protect config.h against multiple
213 * src/system.h: Define PARAMS.
214 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
215 purpose of config.h. system.h must not try to fix wrong
216 definitions in config.h.
218 2000-09-20 Akim Demaille <akim@epita.fr>
220 * src/derives.h: New file.
221 * src/main.c, src/derives.h: Use it.
223 * src/Makefile.am (noinst_HEADERS): Adjust.
225 2000-09-20 Akim Demaille <akim@epita.fr>
227 * tests/atgeneral.m4: Update from Autoconf.
228 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
229 (AT_CHECK_CALC): New macros.
230 Use these macros to test bison with options `', `--raw',
231 `--debug', `--yacc', `--yacc --debug'.
233 2000-09-19 Akim Demaille <akim@epita.fr>
235 * src/output.c: Formatting changes.
236 * src/machine.h: Remove, leaving its contents in...
237 * src/system.h: here.
239 Adjust all dependencies on stdio.h and machine.h.
240 * src/getargs.h: New file.
241 Let all `extern' declarations about getargs.c be replaced with
242 inclusion of `getargs.h'.
243 * src/Makefile.am (noinst_HEADERS): Adjust.
245 * tests/calc.m4 (yyin): Be initialized in main, not on the global
247 (yyerror): Returns void, not int.
248 * doc/bison.texinfo: Formatting changes.
250 2000-09-19 Akim Demaille <akim@epita.fr>
252 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
255 2000-09-18 Akim Demaille <akim@epita.fr>
257 * configure.in: Append WARNING_CFLAGS to CFLAGS.
258 * src/Makefile.am (INCLUDES): Don't.
259 Be ready to fetch headers in lib/.
261 2000-09-18 Akim Demaille <akim@epita.fr>
263 * doc/bison.texinfo: Update the copyright.
264 ANSIfy and GNUify the examples.
267 2000-09-18 Akim Demaille <akim@epita.fr>
269 First set of tests: use the `calc' example from the documentation.
271 * src/bison.s1 (yyparse): Condition the code using `yytname' which
272 is defined only when YYDEBUG is.
273 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
274 * src/files.c (tryopen, tryclose): Formatting changes.
275 Move to the top and be static.
276 * src/reader.c (read_signed_integer): Likewise.
277 * tests/calc.m4: New file.
278 * Makefile.am, suite.m4: Adjust.
279 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
281 2000-09-18 Akim Demaille <akim@epita.fr>
283 Add support for an Autotest test suite for Bison.
285 * m4/m4.m4, m4/atconfig.m4: New files.
286 * m4/Makefile.am (EXTRA_DIST): Adjust.
287 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
289 * src/getargs.c: Display a more standard --version message.
290 * src/reader.c (reader): Formatting changes.
291 No longer depend upon VERSION_STRING.
292 * configure.in: No longer use `dnl'.
293 Set up the test suite and the new directory `tests/.
294 (VERSION_STRING): Remove.
296 2000-04-14 Akim Demaille <akim@epita.fr>
298 * src/reader.c (copy_comment2): New function, same as former
299 `copy_comment', but outputs into two FILE *.
300 (copy_comment): Use it.
301 (parse_union_decl): Use it.
302 (get_type, parse_start_decl): Use the same `invalid' message.
303 (parse_start_decl, parse_union_decl): Use the same `multiple'
305 (parse_union_decl, copy_guard, copy_action): Use the same
307 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
309 2000-03-31 Akim Demaille <akim@epita.fr>
311 * src/files.c (tryopen, tryclose): Move to the top.
314 2000-03-31 Akim Demaille <akim@epita.fr>
316 * src/main.c (main): Don't call `done', exit does it.
318 2000-03-31 Akim Demaille <akim@epita.fr>
320 * allocate.c: s/return (foo)/return foo/.
323 * output.c: Likewise.
324 * reader.c: Likewise.
325 * symtab.c: Likewise.
326 * vmsgetargs.c: Likewise.
328 2000-03-31 Akim Demaille <akim@epita.fr>
330 Clean up the error reporting functions.
332 * src/report.c: New file.
333 * src/report.h: Likewise.
334 * src/Makefile.am: Adjust.
335 * m4/error.m4: New file.
336 * m4/Makefile.am: Adjust.
337 * configure.in (jm_PREREQ_ERROR): Call it.
338 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
340 (fatal, fatals): Remove. All callers use complain.c::fatal.
341 (warn, warni, warns, warnss, warnss): Remove. All callers use
342 complain.c::complain.
343 (toomany): Remove, use fatal instead.
344 * src/files.c (done): No argument, use complain_message_count.
345 * src/main.c (main): Register `done' to `atexit'.
347 * src/getargs.c (usage): More `fputs', less `fprintf'.
349 2000-03-28 Akim Demaille <akim@epita.fr>
351 * lib/: New directory.
352 * Makefile.am (SUBDIRS): Adjust.
353 * configure.in: Adjust.
354 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
356 * src/alloca.c: Moved to lib/.
357 * src/getopt.c: Likewise.
358 * src/getopt1.c: Likewise.
359 * src/getopt.h: Likewise.
360 * src/ansi2knr.c: Likewise.
361 * src/ansi2knr.1: Likewise.
362 * src/Makefile.am: Adjust.
363 * lib/Makefile.am: New file.
365 2000-03-28 Akim Demaille <akim@epita.fr>
367 * src/getargs.c (usage): Refresh the help message.
369 2000-03-17 Akim Demaille <akim@epita.fr>
371 * src/getopt1.c: Updated from textutils 2.0e
372 * src/getopt.c: Likewise.
373 * src/getopt.h: Likewise.
375 2000-03-17 Akim Demaille <akim@epita.fr>
377 * src/Makefile.am (bison.simple): Fix the awk program: quote only
378 the file name, not the whole `#line LINE FILE'.
380 2000-03-17 Akim Demaille <akim@epita.fr>
382 On syntax errors, report the token on which we choked.
384 * src/bison.s1 (yyparse): In the label yyerrlab, when
385 YYERROR_VERBOSE, add yychar in msg.
387 2000-03-17 Akim Demaille <akim@epita.fr>
389 * src/reader.c (copy_at): New function.
390 (copy_guard): Use it.
391 (copy_action): Use it.
393 2000-03-17 Akim Demaille <akim@epita.fr>
395 Be kind to translators, save some useless translations.
397 * src/main.c (banner): New function.
398 (fatal_banner): Use it.
399 (warn_banner): Use it.
401 2000-03-17 Akim Demaille <akim@epita.fr>
403 * src/reader.c (copy_definition): Use copy_string and
404 copy_comment. Removed now unused `match', `ended',
406 (copy_comment, copy_string): Moved, to be visible from
409 2000-03-17 Akim Demaille <akim@epita.fr>
411 * src/reader.c (copy_string): Declare `static inline'. No
412 problems with inline, since it is checked by configure.
413 (copy_comment): Likewise.
415 2000-03-17 Akim Demaille <akim@epita.fr>
417 * src/reader.c (packsymbols): Formatting changes.
419 2000-03-17 Akim Demaille <akim@epita.fr>
421 * src/reader.c (copy_comment): New function, factored out from:
422 (copy_action): Use it. Removed now unused `match', `ended',
424 (copy_guard): Likewise.
426 2000-03-17 Akim Demaille <akim@epita.fr>
428 * src/reader.c (copy_string): New function, factored out from:
429 (copy_action): Use it.
430 (copy_guard): Likewise.
432 2000-03-17 Akim Demaille <akim@epita.fr>
434 Change the handling of @s so that they behave exactly like $s.
435 There is now a pseudo variable @$ (readble and writable), location
436 of the lhs of the rule (by default ranging from the location of
437 the first symbol of the rhs, to the location of the last symbol,
438 or, if the rhs is empty, YYLLOC).
440 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
442 (yyparse): When providing a default semantic action, provide a
443 default location action.
444 (after the $): No longer change `*YYLSP', just stack YYLOC the
445 same way you stack YYVAL.
446 * src/reader.c (read_declarations): Use warns.
447 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
448 (copy_action, case '@'): Likewise.
449 Use a standard error message, to save useless work from
452 2000-03-17 Akim Demaille <akim@epita.fr>
454 * src/bison.s1: Formatting and cosmetics changes.
455 * src/reader.c: Likewise.
456 Update the Copyright notice.
458 2000-03-17 Akim Demaille <akim@epita.fr>
460 * src/bison.s1 (#line): All set to `#line' only, since the
461 Makefile now handles them.
463 2000-03-16 Akim Demaille <akim@epita.fr>
465 * src/output.c (output_rule_data): Output the documentation of
467 (Copyright notice): Update.
470 2000-03-16 Akim Demaille <akim@epita.fr>
472 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
473 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
474 One `#if YYDEBUG' remains, since it uses variables which are
475 defined only if `YYDEBUG != 0'.
477 2000-03-16 Akim Demaille <akim@epita.fr>
479 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
480 and related variables so that the similarities are highlighted.
482 2000-03-16 Akim Demaille <akim@epita.fr>
484 * src/bison.s1: Properly indent CPP directives.
486 2000-03-16 Akim Demaille <akim@epita.fr>
488 * src/bison.s1: Properly indent the `alloca' CPP section.
490 2000-03-16 Akim Demaille <akim@epita.fr>
492 Do not hard code values of directories in `configure.in'.
493 Update the `configure' tool chain.
495 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
497 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
498 (AC_OUTPUT): Add m4/Makefile.
499 Bump to bison 1.28a, 1.29 has never been released.
500 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
501 handled via src/Makefile.am.
502 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
503 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
505 * Makefile.am (SUBDIRS): Add m4.
506 (ACLOCAL_AM_FLAGS): New variable.
507 (AUTOMAKE_OPTIONS): Add check-news.
508 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
509 the proper line number and file name.
510 (DEFS): Propagate the location of bison library files and of the
512 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
514 * acinclude.m4: Remove, replaced by the directory m4.
515 * m4/Makefile.am (EXTRA_DIST): New variable.
516 * m4/gettext.m4: New file, from the fileutils.
517 * m4/lcmessage.m4: Likewise
518 * m4/progtest.m4: Likewise.
519 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
521 2000-03-10 Akim Demaille <akim@epita.fr>
524 Formatting changes of various comments.
525 Respect the GNU coding standards at various places.
526 Don't use `_()' when no translation is needed.
528 1999-12-13 Jesse Thilo <jthilo@gnu.org>
531 OS/2 honors TMPDIR environment variable.
533 1999-12-13 Jesse Thilo <jthilo@gnu.org>
535 * doc/bison.texinfo: Tweaked spelling and grammar.
537 Removed reference to price of printed copy.
538 Mention BISON_SIMPLE and BISON_HAIRY.
540 1999-12-13 Jesse Thilo <jthilo@gnu.org>
542 * configure.in, NEWS:
545 1999-10-27 Jesse Thilo <jthilo@gnu.org>
547 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
548 Added reference card.
550 1999-07-26 Jesse Thilo <jthilo@gnu.org>
552 * po/ru.po: Added Russian translation.
554 1999-07-26 Jesse Thilo <jthilo@gnu.org>
556 * configure.in: Added Russian translation.
558 1999-07-06 Jesse Thilo <jthilo@gnu.org>
560 * configure.in, NEWS, README:
561 Released version 1.28.
563 1999-06-14 Jesse Thilo <jthilo@gnu.org>
566 Squashed redefinition warning on some systems.
568 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
569 Have configure build version string instead of relying on ANSI string
572 1999-06-14 Jesse Thilo <jthilo@gnu.org>
574 * po/POTFILES.in: Got rid of version.c.
576 1999-06-14 Jesse Thilo <jthilo@gnu.org>
578 * acconfig.h, configure.in:
579 Have configure build version string instead of relying on ANSI string
582 1999-06-08 Jesse Thilo <jthilo@gnu.org>
585 Dropped mention of `+' for long-named options.
587 1999-05-30 Jesse Thilo <jthilo@gnu.org>
589 * src/files.c: Added <unistd.h> for unlink().
591 * src/Makefile.am, src/system.h:
594 1999-05-30 Jesse Thilo <jthilo@gnu.org>
596 * README: Added a FAQ list.
598 * configure.in, acconfig.h:
601 1999-05-30 Jesse Thilo <jthilo@gnu.org>
603 * doc/FAQ, doc/Makefile.am:
606 1999-05-19 Jesse Thilo <jthilo@gnu.org>
608 * src/alloc.h, src/symtab.h, src/version.c:
609 Protected inclusion of "config.h" with HAVE_CONFIG_H.
611 1999-04-18 Jesse Thilo <jthilo@gnu.org>
613 * src/.cvsignore, src/Makefile.am:
614 Reorganized: sources in `src', documentation in `doc'.
616 * src/lex.c (literalchar):
617 fixed the code for escaping double quotes (thanks
620 1999-04-18 Jesse Thilo <jthilo@gnu.org>
622 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
623 Adjusted paths to reflect directory reorganization.
625 1999-04-18 Jesse Thilo <jthilo@gnu.org>
627 * doc/.cvsignore, doc/Makefile.am:
628 Reorganized: sources in `src', documentation in `doc'.
630 1999-04-18 Jesse Thilo <jthilo@gnu.org>
633 Updated AC_INIT file to reflect directory reorganization.
635 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
636 Reorganized: sources in `src', documentation in `doc'.
638 1999-04-13 Jesse Thilo <jthilo@gnu.org>
641 Don't declare calloc() and realloc() if not necessary.
643 1999-04-13 Jesse Thilo <jthilo@gnu.org>
645 * configure.in, acconfig.h, acinclude.m4:
646 Don't declare calloc() and realloc() if not necessary.
648 1999-03-23 Jesse Thilo <jthilo@gnu.org>
650 * po/.cvsignore: Added i18n support.
652 1999-03-23 Jesse Thilo <jthilo@gnu.org>
654 * acconfig.h, configure.in, Makefile.am:
657 1999-03-22 Jesse Thilo <jthilo@gnu.org>
659 * src/bison.s1: Fixed #line numbers.
661 1999-03-15 Jesse Thilo <jthilo@gnu.org>
663 * po/es.po, po/fr.po, po/nl.po, po/de.po:
664 Added PO files from Translation Project.
666 1999-03-03 Jesse Thilo <jthilo@gnu.org>
669 Added support for non-ANSI compilers (ansi2knr).
671 1999-02-16 Jesse Thilo <jthilo@gnu.org>
673 * configure.in: Bumped version number to 1.27.
676 Added `bison.simple' to list of files removed by `make distclean'.
678 1999-02-12 Jesse Thilo <jthilo@gnu.org>
680 * src/files.c, src/files.h:
681 Defined locations of parser files in config.h instead of Makefile.
683 1999-02-12 Jesse Thilo <jthilo@gnu.org>
685 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
686 Defined locations of parser files in config.h instead of Makefile.
688 1999-02-09 Jesse Thilo <jthilo@gnu.org>
691 Removed inappropriate use of $< macro.
693 1999-02-05 Jesse Thilo <jthilo@gnu.org>
695 * po/Makefile.in.in, po/POTFILES.in:
696 Add `po' directory skeleton.
698 1999-01-27 Jesse Thilo <jthilo@gnu.org>
700 * README: Document help-bison list.
702 * configure.in: Add check for mkstemp().
704 1999-01-20 Jesse Thilo <jthilo@gnu.org>
706 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
707 Hush a few compiler warnings.
710 Add tryclose(), which verifies that fclose was successful.
711 Hush a couple of compiler warnings.
713 1999-01-20 Jesse Thilo <jthilo@gnu.org>
715 * Makefile.am, OChangeLog:
716 ChangeLog is now automatically generated. Include the old version as
719 1999-01-14 Jesse Thilo <jthilo@gnu.org>
721 * 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:
724 1999-01-14 Jesse Thilo <jthilo@gnu.org>
726 * doc/bison.texinfo: Fix formatting glitch.
728 * doc/bison.texinfo: Update FSF address.
730 1999-01-14 Jesse Thilo <jthilo@gnu.org>
732 * acconfig.h: Update FSF address.
734 1999-01-08 Jesse Thilo <jthilo@gnu.org>
737 Don't define PACKAGE here, since config.h defines it.
739 1998-12-30 Jesse Thilo <jthilo@gnu.org>
741 * src/reader.c: Update copyright date.
744 Ditch sprintf to statically-sized buffers in fatal/warn functions in
745 favor of output directly to stderr (avoids buffer overruns).
747 * src/reader.c: Some checks for premature EOF.
749 * 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:
750 Use prototypes if the compiler understands them.
752 * src/files.c: Honor TMPDIR on Unix hosts.
753 Use prototypes if the compiler understands them.
756 Fix a couple of buffer overrun bugs.
757 Use prototypes if the compiler understands them.
759 * src/system.h: Include unistd.h and ctype.h.
760 Use #ifdef instead of #if for NLS symbols.
762 1998-12-30 Jesse Thilo <jthilo@gnu.org>
765 Delete comment "consider using @set for edition number, etc..." since
768 1998-12-30 Jesse Thilo <jthilo@gnu.org>
771 Use prototypes if the compiler understands them.
773 * NEWS: Document 1.26 highlights.
775 * Makefile.am: Require Automake 1.3 or later.
778 Use prototypes if the compiler understands them.
780 1998-12-29 Jesse Thilo <jthilo@gnu.org>
783 Use VERSION symbol from automake for version number.
785 1998-12-29 Jesse Thilo <jthilo@gnu.org>
787 * acconfig.h, configure.in, version.cin:
788 Use VERSION symbol from automake for version number.
790 1998-11-28 Jesse Thilo <jthilo@gnu.org>
793 Distribute original version of simple parser (bison.s1), not built
794 version (bison.simple).
796 1998-11-28 Jesse Thilo <jthilo@gnu.org>
798 * doc/bison.texinfo: Add info dir entry.
801 Let automake put version number into documentation.
803 1998-11-26 Jesse Thilo <jthilo@gnu.org>
805 * src/bison.cld, src/build.com, src/vmshlp.mar:
806 Add non-RCS files from /gd/gnu/bison.
808 1998-11-26 Jesse Thilo <jthilo@gnu.org>
811 Document the BISON_HAIRY and BISON_SIMPLE variables.
813 1998-11-25 Jesse Thilo <jthilo@gnu.org>
815 * src/version.c: Build version.c automatically.
818 Fix token numbering (used to start at 258, not 257).
820 * src/system.h: Include config.h.
822 * src/getargs.c: Update bug report address.
824 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
825 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
827 1998-11-25 Jesse Thilo <jthilo@gnu.org>
830 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
832 * configure.in, version.cin:
833 Build version.c automatically.
835 * AUTHORS: Add AUTHORS file.
837 * README: Update bug report address.
840 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
842 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
845 1998-11-25 Jesse Thilo <jthilo@gnu.org>
847 * doc/bison.texinfo: Clean up some formatting.
849 1998-05-05 Richard Stallman <rms@gnu.org>
852 Explain better why to make a pure parser.
854 1998-01-05 Richard Stallman <rms@gnu.org>
856 * src/files.c (openfiles):
857 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
858 find a temporary directory, if possible. Do not unlink files while
861 1997-08-25 Richard Stallman <rms@gnu.org>
863 * src/reader.c (stack_offset;):
864 Change some warni to warns.
866 * src/lex.c (literalchar): Use warns, not warni.
868 1997-06-28 Richard Stallman <rms@gnu.org>
870 * src/bison.s1: Add a Bison version comment.
872 * src/main.c (fatal, warn, berror):
875 1997-06-28 Richard Stallman <rms@gnu.org>
877 * Makefile.in (bison_version): New variable.
878 (dist): Use that variable.
879 (bison.s1): Substitute the Bison version into bison.simple.
881 * bison.simple: Add a Bison version comment.
883 1997-06-18 Richard Stallman <rms@gnu.org>
885 * src/main.c (fatal, warn, berror):
886 Make error messages standard.
887 (toomany): Improve error message text.
889 * 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:
890 new.h renamed to alloc.h.
892 1997-06-18 Richard Stallman <rms@gnu.org>
894 * Makefile.in: new.h renamed to alloc.h.
896 1997-05-24 Richard Stallman <rms@gnu.org>
898 * src/lex.c (literalchar):
899 Fix the code for escaping \, " and '.
901 (lex): Avoid trouble when there are many chars
902 to discard in a char literal with just several chars in it.
904 1997-05-17 Richard Stallman <rms@gnu.org>
907 Use malloc, if using alloca is troublesome.
908 (YYSTACK_USE_ALLOCA): New flag macro.
909 Define it for some systems and compilers.
910 (YYSTACK_ALLOC): New macro.
911 (yyparse): Use YYSTACK_ALLOC to allocate stack.
912 If it was malloc'd, free it.
914 1997-05-17 Richard Stallman <rms@gnu.org>
917 Use malloc, if using alloca is troublesome.
918 (YYSTACK_USE_ALLOCA): New flag macro.
919 Define it for some systems and compilers.
920 (YYSTACK_ALLOC): New macro.
921 (yyparse): Use YYSTACK_ALLOC to allocate stack.
922 If it was malloc'd, free it.
924 1997-04-23 Richard Stallman <rms@gnu.org>
927 (alloca) [__hpux]: Always define as __builtin_alloca.
929 1997-04-23 Richard Stallman <rms@gnu.org>
932 (alloca) [__hpux]: Always define as __builtin_alloca.
934 1997-04-22 Richard Stallman <rms@gnu.org>
937 [__hpux]: Include alloca.h (right for HPUX 10)
938 instead of declaring alloca (right for HPUX 9).
940 * src/bison.s1 (__yy_memcpy):
941 Declare arg `count' as unsigned int.
942 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
944 1997-04-22 Richard Stallman <rms@gnu.org>
947 [__hpux]: Include alloca.h (right for HPUX 10)
948 instead of declaring alloca (right for HPUX 9).
950 * bison.simple (__yy_memcpy):
951 Declare arg `count' as unsigned int.
952 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
954 1997-01-03 Richard Stallman <rms@gnu.org>
956 * src/allocate.c: [__STDC__ or _MSC_VER]:
957 Declare calloc and realloc to return void *.
959 1997-01-02 Richard Stallman <rms@gnu.org>
962 [_MSC_VER]: Include stdlib.h and process.h.
963 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
965 * src/main.c (main): Return FAILURE as a value.
966 (printable_version): Declare arg as int, not char.
968 1997-01-02 Richard Stallman <rms@gnu.org>
970 * Makefile.in (dist):
971 Explicitly check for symlinks, and copy them.
973 1996-12-19 Richard Stallman <rms@gnu.org>
976 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
978 1996-12-18 Paul Eggert <eggert@gnu.org>
980 * src/bison.s1 (yyparse):
981 If __GNUC__ and YYPARSE_PARAM are both defined,
982 declare yyparse to have a void * argument.
984 1996-12-18 Paul Eggert <eggert@gnu.org>
986 * bison.simple (yyparse):
987 If __GNUC__ and YYPARSE_PARAM are both defined,
988 declare yyparse to have a void * argument.
990 1996-12-17 Richard Stallman <rms@gnu.org>
992 * src/reduce.c (nbits): Add some casts.
994 1996-08-12 Richard Stallman <rms@gnu.org>
996 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
998 1996-08-12 Richard Stallman <rms@gnu.org>
1000 * bison.simple: Test _MSDOS as well as _MSDOS_.
1002 1996-07-31 Richard Stallman <rms@gnu.org>
1005 [__sun && __i386]: Include alloca.h.
1007 1996-07-31 Richard Stallman <rms@gnu.org>
1010 [__sun && __i386]: Include alloca.h.
1012 1996-07-30 Richard Stallman <rms@gnu.org>
1014 * src/bison.s1: Comment change.
1016 * src/bison.s1: Test _MSDOS_, not MSDOS.
1018 1996-07-30 Richard Stallman <rms@gnu.org>
1020 * bison.simple: Comment change.
1022 * bison.simple: Test _MSDOS_, not MSDOS.
1024 1996-06-01 Richard Stallman <rms@gnu.org>
1026 * 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:
1027 Insert `_' macro around many string constants.
1030 Insert `_' macro around many string constants.
1032 (main): Call setlocale, bindtextdomain and textdomain.
1034 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1035 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1036 [ENABLE_NLS]: Include libintl.h.
1037 [ENABLE_NLS] (gettext): Define.
1038 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1039 (N_, PACKAGE, LOCALEDIR): New macros.
1041 1996-06-01 Richard Stallman <rms@gnu.org>
1043 * POTFILES.in: New file.
1045 * Makefile.in (allocate.o):
1046 Define target explicitly.
1048 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1049 (LDFLAGS): Set to @LDFLAGS@.
1050 (configure): Run autoconf only if preceding `cd' succeeds.
1051 (bison.s1): Redirect output to temporary file then move the
1052 temporary to the target, rather than redirecting directly to bison.s1.
1053 (clean): Remove config.status and config.log.
1054 (distclean): Don't remove config.status here.
1056 1996-05-12 Richard Stallman <rms@gnu.org>
1059 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1061 1996-05-12 Richard Stallman <rms@gnu.org>
1064 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1066 1996-05-11 Richard Stallman <rms@gnu.org>
1068 * src/bison.s1 (__yy_memcpy):
1069 Really reorder the args, as was supposedly done on Feb 14 1995.
1070 (yyparse): Calls changed accordingly.
1072 1996-05-11 Richard Stallman <rms@gnu.org>
1074 * Makefile.in (dist): Don't use $(srcdir).
1076 * bison.simple (__yy_memcpy):
1077 Really reorder the args, as was supposedly done on Feb 14 1995.
1078 (yyparse): Calls changed accordingly.
1080 1996-01-27 Richard Stallman <rms@gnu.org>
1082 * src/output.c (output_rule_data):
1083 Test YYERROR_VERBOSE in the conditional
1084 around the definition of ttyname.
1086 1995-12-29 Richard Stallman <rms@gnu.org>
1089 Fix line numbers in #line commands.
1091 1995-12-29 Richard Stallman <rms@gnu.org>
1094 Fix line numbers in #line commands.
1096 1995-12-27 Richard Stallman <rms@gnu.org>
1098 * src/bison.s1 (YYPARSE_PARAM_DECL):
1099 In C++, make it always null.
1100 (YYPARSE_PARAM_ARG): New macro.
1101 (yyparse): Use YYPARSE_PARAM_ARG.
1103 1995-12-27 Richard Stallman <rms@gnu.org>
1105 * bison.simple (YYPARSE_PARAM_DECL):
1106 In C++, make it always null.
1107 (YYPARSE_PARAM_ARG): New macro.
1108 (yyparse): Use YYPARSE_PARAM_ARG.
1110 1995-11-29 Richard Stallman <rms@gnu.org>
1112 * doc/bison.texinfo:
1113 Describe literal string tokens, %raw, %no_lines, %token_table.
1115 1995-11-29 Daniel Hagerty <hag@gnu.org>
1117 * doc/bison.texinfo: Fixed update date
1119 1995-10-16 Richard Stallman <rms@gnu.org>
1121 * src/version.c: Version 1.25.
1123 1995-10-16 Richard Stallman <rms@gnu.org>
1125 * NEWS: *** empty log message ***
1127 1995-10-16 Richard Stallman <rms@gnu.org>
1129 * doc/bison.1, doc/bison.rnh:
1132 1995-10-15 Richard Stallman <rms@gnu.org>
1134 * src/vmsgetargs.c, src/getargs.c:
1135 Added -n, -k, and -raw switches.
1136 (noparserflag, toknumflag, rawtoknumflag): New variables.
1138 * src/symtab.h (SALIAS):
1139 New #define for adding aliases to %token.
1140 (struct bucket): Added `alias' field.
1142 * src/reduce.c (reduce_grammar):
1143 Revise error message.
1144 (print_notices): Remove final `.' from error message.
1146 * src/reader.c (reader_output_yylsp):
1148 (readgram): Use `#if 0' around code that accepted %command
1149 inside grammar rules: The documentation doesn't allow it,
1150 and it will fail since the %command processors scan for the next %.
1151 (parse_token_decl): Extended the %token
1152 declaration to allow a multi-character symbol as an alias.
1153 (parse_thong_decl): New function.
1154 (read_declarations): Added %thong declarations.
1155 (read_declarations): Handle NOOP to deal with allowing
1156 % declarations as another means to specify the flags.
1157 (readgram): Allow %prec prior to semantics embedded in a rule.
1158 (skip_to_char, read_declarations, copy_definition)
1159 (parse_token_decl, parse_start_decl, parse_type_decl)
1160 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1161 (get_type_name, copy_guard, copy_action, readgram)
1162 (get_type, packsymbols): Revised most error messages.
1163 Changed `fatal' to `warnxxx' to avoid aborting for error.
1164 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1165 (read_declarations): Improve the error message for
1166 an invalid character. Do not abort.
1167 (read_declarations, copy_guard, copy_action): Use
1168 printable_version to avoid unprintable characters in printed output.
1169 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1170 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1171 Allow the type of a non-terminal can be given
1172 more than once, as long as all specifications give the same type.
1175 (output_headers, output_trailers, output, output_gram)
1176 (output_rule_data): Implement noparserflag variable.
1177 Implement toknumflag variable.
1178 (output): Call reader_output_yylsp to output LTYPESTR.
1180 * src/main.c (main):
1181 If reader sees an error, don't process the grammar.
1182 (fatals): Updated to not use VARARGS1.
1183 (printable_version, int_to_string, warn, warni, warns, warnss)
1184 (warnsss): New error reporting functions. Avoid abort for error.
1187 Added THONG and NOOP for alias processing.
1188 Added SETOPT for the new code that allows setting options with %flags.
1191 Include getopt.h. Add some extern decls.
1192 (safegetc): New function to deal with EOF gracefully.
1193 (literalchar); new function to deal with reading \ escapes.
1194 (lex): Use literalchar.
1195 (lex): Implemented "..." tokens.
1196 (literalchar, lex, parse_percent_token): Made tokenbuffer
1197 always contain the token. This includes growing the token
1198 buffer while reading an integer.
1199 (parse_percent_token): Replaced if-else statement with percent_table.
1200 (parse_percent_token): Added % declarations as another
1201 way to specify the flags -n, -l, and -r. Also added hooks for
1202 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1203 major changes to files.c.
1204 (lex) Retain in the incoming stream a character following
1206 (skip_white_space, lex): Revised most error messages
1207 and changed fatal to warn to avoid aborting.
1208 (percent_table): Added %thong declarations.
1210 * src/gram.h: Comment changes.
1212 * src/files.c (openfiles, open_extra_files, done):
1214 and actfile file. Handle noparserflag. Both for -n switch.
1216 * src/conflicts.c (resolve_sr_conflict):
1217 Remove use of alloca.
1219 1995-06-01 Jim Meyering <meyering@gnu.org>
1221 * doc/bison.texinfo: *** empty log message ***
1223 1995-05-06 Richard Stallman <rms@gnu.org>
1225 * src/bison.s1: Comment change.
1227 1995-05-06 Richard Stallman <rms@gnu.org>
1229 * bison.simple: Comment change.
1231 1995-05-03 Richard Stallman <rms@gnu.org>
1233 * src/version.c: Version now 1.24.
1235 * src/bison.s1: Change distribution terms.
1237 * src/version.c: Version now 1.23.
1239 1995-05-03 Richard Stallman <rms@gnu.org>
1241 * doc/bison.texinfo:
1242 Rewrite "Conditions for Using Bison".
1243 Update version to 1.24.
1245 1995-05-03 Richard Stallman <rms@gnu.org>
1247 * bison.simple: Change distribution terms.
1249 1995-02-23 Richard Stallman <rms@gnu.org>
1251 * src/files.c: Test __VMS_POSIX as well as VMS.
1253 1995-02-14 Jim Meyering <meyering@gnu.org>
1255 * src/bison.s1 (__yy_memcpy):
1256 Renamed from __yy_bcopy to avoid
1257 confusion. Reverse FROM and TO arguments to be consistent with
1260 1995-02-14 Jim Meyering <meyering@gnu.org>
1262 * bison.simple (__yy_memcpy):
1263 Renamed from __yy_bcopy to avoid
1264 confusion. Reverse FROM and TO arguments to be consistent with
1267 1994-11-10 David J. MacKenzie <djm@gnu.org>
1273 * Makefile.in (DISTFILES): Include NEWS.
1275 * Makefile.in (DISTFILES):
1276 Include install-sh, not install.sh.
1278 * configure.in: Update to Autoconf v2 macro names.
1280 1994-10-05 David J. MacKenzie <djm@gnu.org>
1282 * Makefile.in: fix typo
1284 * Makefile.in (prefix, exec_prefix):
1285 Let configure set them.
1287 1994-09-28 David J. MacKenzie <djm@gnu.org>
1289 * Makefile.in: Set datadir to $(prefix)/share.
1291 1994-09-15 Richard Stallman <rms@gnu.org>
1294 Update copyright notice and GPL version.
1296 1994-09-15 Richard Stallman <rms@gnu.org>
1299 Update copyright notice and GPL version.
1301 1994-07-12 Richard Stallman <rms@gnu.org>
1303 * src/reduce.c, src/reader.c:
1306 1994-05-05 David J. MacKenzie <djm@gnu.org>
1308 * Makefile.in: entered into RCS
1310 1994-03-26 Richard Stallman <rms@gnu.org>
1312 * src/bison.s1: entered into RCS
1314 1994-03-26 Richard Stallman <rms@gnu.org>
1316 * bison.simple: entered into RCS
1318 1994-03-25 Richard Stallman <rms@gnu.org>
1320 * src/main.c: entered into RCS
1322 1994-03-24 Richard Stallman <rms@gnu.org>
1324 * src/conflicts.c: entered into RCS
1326 1994-01-02 Richard Stallman <rms@gnu.org>
1328 * Makefile.in: *** empty log message ***
1330 1993-11-21 Richard Stallman <rms@gnu.org>
1332 * src/bison.s1: *** empty log message ***
1334 1993-11-21 Richard Stallman <rms@gnu.org>
1336 * doc/bison.texinfo: entered into RCS
1338 * doc/bison.texinfo: *** empty log message ***
1340 1993-11-21 Richard Stallman <rms@gnu.org>
1342 * bison.simple: *** empty log message ***
1344 1993-10-25 David J. MacKenzie <djm@gnu.org>
1346 * doc/bison.texinfo: *** empty log message ***
1348 1993-10-19 Richard Stallman <rms@gnu.org>
1350 * src/bison.s1: *** empty log message ***
1352 1993-10-19 Richard Stallman <rms@gnu.org>
1354 * bison.simple: *** empty log message ***
1356 1993-10-14 Richard Stallman <rms@gnu.org>
1358 * src/bison.s1: *** empty log message ***
1360 1993-10-14 Richard Stallman <rms@gnu.org>
1362 * bison.simple: *** empty log message ***
1364 1993-09-14 David J. MacKenzie <djm@gnu.org>
1366 * doc/bison.texinfo: *** empty log message ***
1368 1993-09-13 Noah Friedman <friedman@gnu.org>
1370 * Makefile.in: *** empty log message ***
1372 1993-09-10 Richard Stallman <rms@gnu.org>
1374 * src/conflicts.c: *** empty log message ***
1376 * src/system.h: entered into RCS
1378 1993-09-10 Richard Stallman <rms@gnu.org>
1380 * doc/bison.1: entered into RCS
1382 1993-09-06 Noah Friedman <friedman@gnu.org>
1384 * src/version.c: entered into RCS
1386 1993-09-06 Noah Friedman <friedman@gnu.org>
1388 * Makefile.in: *** empty log message ***
1390 1993-07-30 David J. MacKenzie <djm@gnu.org>
1392 * Makefile.in: *** empty log message ***
1394 1993-07-24 Richard Stallman <rms@gnu.org>
1396 * src/bison.s1: *** empty log message ***
1398 1993-07-24 Richard Stallman <rms@gnu.org>
1400 * bison.simple: *** empty log message ***
1402 1993-07-08 David J. MacKenzie <djm@gnu.org>
1404 * Makefile.in: *** empty log message ***
1406 1993-07-04 Richard Stallman <rms@gnu.org>
1408 * src/bison.s1: *** empty log message ***
1410 1993-07-04 Richard Stallman <rms@gnu.org>
1412 * bison.simple: *** empty log message ***
1414 1993-06-26 David J. MacKenzie <djm@gnu.org>
1416 * src/getargs.c: entered into RCS
1418 1993-06-26 David J. MacKenzie <djm@gnu.org>
1420 * doc/bison.texinfo: *** empty log message ***
1422 * doc/bison.1: New file.
1424 1993-06-25 Richard Stallman <rms@gnu.org>
1426 * src/getargs.c: New file.
1428 1993-06-16 Richard Stallman <rms@gnu.org>
1430 * src/bison.s1: *** empty log message ***
1432 1993-06-16 Richard Stallman <rms@gnu.org>
1434 * bison.simple: *** empty log message ***
1436 1993-06-03 Richard Stallman <rms@gnu.org>
1438 * src/bison.s1: New file.
1440 1993-06-03 Richard Stallman <rms@gnu.org>
1442 * doc/bison.texinfo: *** empty log message ***
1444 1993-06-03 Richard Stallman <rms@gnu.org>
1446 * bison.simple: New file.
1448 1993-05-19 Richard Stallman <rms@gnu.org>
1450 * doc/bison.texinfo: New file.
1452 1993-05-07 Noah Friedman <friedman@gnu.org>
1454 * Makefile.in: *** empty log message ***
1456 1993-04-28 Noah Friedman <friedman@gnu.org>
1458 * src/reader.c: *** empty log message ***
1460 1993-04-23 Noah Friedman <friedman@gnu.org>
1462 * src/alloc.h: entered into RCS
1464 1993-04-20 David J. MacKenzie <djm@gnu.org>
1466 * src/version.c: *** empty log message ***
1468 * src/files.c, src/allocate.c:
1471 * src/reader.c: *** empty log message ***
1473 * src/lex.c: entered into RCS
1475 * src/conflicts.c: New file.
1477 * src/symtab.c: entered into RCS
1479 * src/alloc.h: New file.
1481 * src/LR0.c: entered into RCS
1483 1993-04-18 Noah Friedman <friedman@gnu.org>
1485 * src/reader.c: New file.
1487 * src/version.c: *** empty log message ***
1489 1993-04-18 Noah Friedman <friedman@gnu.org>
1491 * Makefile.in: *** empty log message ***
1493 1993-04-17 Noah Friedman <friedman@gnu.org>
1495 * Makefile.in: *** empty log message ***
1497 1993-04-15 Richard Stallman <rms@gnu.org>
1499 * src/main.c, src/files.c:
1502 1993-04-15 Noah Friedman <friedman@gnu.org>
1504 * configure.in: entered into RCS
1506 * configure.in: *** empty log message ***
1508 * configure.in: New file.
1510 1993-04-14 Richard Stallman <rms@gnu.org>
1512 * Makefile.in: New file.
1514 1993-04-13 Richard Stallman <rms@gnu.org>
1516 * src/version.c: New file.
1518 1993-03-25 Richard Stallman <rms@gnu.org>
1520 * src/output.c: entered into RCS
1522 1992-09-25 Richard Stallman <rms@gnu.org>
1524 * configure.bat: entered into RCS
1526 1992-06-22 Richard Stallman <rms@gnu.org>
1528 * src/vmsgetargs.c: entered into RCS
1530 1992-06-22 Richard Stallman <rms@gnu.org>
1532 * doc/bison.rnh: entered into RCS
1534 1992-04-20 David J. MacKenzie <djm@gnu.org>
1536 * README: entered into RCS
1538 1992-01-22 Richard Stallman <rms@gnu.org>
1540 * src/machine.h: entered into RCS
1542 1991-12-21 Richard Stallman <rms@gnu.org>
1544 * src/lalr.c, src/closure.c:
1547 1991-12-20 Richard Stallman <rms@gnu.org>
1549 * src/state.h: entered into RCS
1551 1991-12-18 Richard Stallman <rms@gnu.org>
1553 * src/print.c, src/nullable.c, src/derives.c:
1556 1991-11-03 David J. MacKenzie <djm@gnu.org>
1558 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1561 1988-09-09 Richard Stallman <rms@gnu.org>
1563 * src/bison.hairy: entered into RCS
1565 1987-12-16 Richard Stallman <rms@gnu.org>
1567 * REFERENCES: entered into RCS