1 2000-03-31 Akim Demaille <akim@epita.fr>
3 * src/main.c (main): Don't call `done', exit does it.
5 2000-03-31 Akim Demaille <akim@epita.fr>
7 * allocate.c: s/return (foo)/return foo/.
13 * vmsgetargs.c: Likewise.
15 2000-03-31 Akim Demaille <akim@epita.fr>
17 Clean up the error reporting functions.
19 * src/report.c: New file.
20 * src/report.h: Likewise.
21 * src/Makefile.am: Adjust.
22 * m4/error.m4: New file.
23 * m4/Makefile.am: Adjust.
24 * configure.in (jm_PREREQ_ERROR): Call it.
25 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
27 (fatal, fatals): Remove. All callers use complain.c::fatal.
28 (warn, warni, warns, warnss, warnss): Remove. All callers use
30 (toomany): Remove, use fatal instead.
31 * src/files.c (done): No argument, use complain_message_count.
32 * src/main.c (main): Register `done' to `atexit'.
34 * src/getargs.c (usage): More `fputs', less `fprintf'.
36 2000-03-28 Akim Demaille <akim@epita.fr>
38 * lib/: New directory.
39 * Makefile.am (SUBDIRS): Adjust.
40 * configure.in: Adjust.
41 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
43 * src/alloca.c: Moved to lib/.
44 * src/getopt.c: Likewise.
45 * src/getopt1.c: Likewise.
46 * src/getopt.h: Likewise.
47 * src/ansi2knr.c: Likewise.
48 * src/ansi2knr.1: Likewise.
49 * src/Makefile.am: Adjust.
50 * lib/Makefile.am: New file.
52 2000-03-28 Akim Demaille <akim@epita.fr>
54 * src/getargs.c (usage): Refresh the help message.
56 2000-03-17 Akim Demaille <akim@epita.fr>
58 * src/getopt1.c: Updated from textutils 2.0e
59 * src/getopt.c: Likewise.
60 * src/getopt.h: Likewise.
62 2000-03-17 Akim Demaille <akim@epita.fr>
64 * src/Makefile.am (bison.simple): Fix the awk program: quote only
65 the file name, not the whole `#line LINE FILE'.
67 2000-03-17 Akim Demaille <akim@epita.fr>
69 On syntax errors, report the token on which we choked.
71 * src/bison.s1 (yyparse): In the label yyerrlab, when
72 YYERROR_VERBOSE, add yychar in msg.
74 2000-03-17 Akim Demaille <akim@epita.fr>
76 * src/reader.c (copy_at): New function.
78 (copy_action): Use it.
80 2000-03-17 Akim Demaille <akim@epita.fr>
82 Be kind to translators, save some useless translations.
84 * src/main.c (banner): New function.
85 (fatal_banner): Use it.
86 (warn_banner): Use it.
88 2000-03-17 Akim Demaille <akim@epita.fr>
90 * src/reader.c (copy_definition): Use copy_string and
91 copy_comment. Removed now unused `match', `ended',
93 (copy_comment, copy_string): Moved, to be visible from
96 2000-03-17 Akim Demaille <akim@epita.fr>
98 * src/reader.c (copy_string): Declare `static inline'. No
99 problems with inline, since it is checked by configure.
100 (copy_comment): Likewise.
102 2000-03-17 Akim Demaille <akim@epita.fr>
104 * src/reader.c (packsymbols): Formatting changes.
106 2000-03-17 Akim Demaille <akim@epita.fr>
108 * src/reader.c (copy_comment): New function, factored out from:
109 (copy_action): Use it. Removed now unused `match', `ended',
111 (copy_guard): Likewise.
113 2000-03-17 Akim Demaille <akim@epita.fr>
115 * src/reader.c (copy_string): New function, factored out from:
116 (copy_action): Use it.
117 (copy_guard): Likewise.
119 2000-03-17 Akim Demaille <akim@epita.fr>
121 Change the handling of @s so that they behave exactly like $s.
122 There is now a pseudo variable @$ (readble and writable), location
123 of the lhs of the rule (by default ranging from the location of
124 the first symbol of the rhs, to the location of the last symbol,
125 or, if the rhs is empty, YYLLOC).
127 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
129 (yyparse): When providing a default semantic action, provide a
130 default location action.
131 (after the $): No longer change `*YYLSP', just stack YYLOC the
132 same way you stack YYVAL.
133 * src/reader.c (read_declarations): Use warns.
134 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
135 (copy_action, case '@'): Likewise.
136 Use a standard error message, to save useless work from
139 2000-03-17 Akim Demaille <akim@epita.fr>
141 * src/bison.s1: Formatting and cosmetics changes.
142 * src/reader.c: Likewise.
143 Update the Copyright notice.
145 2000-03-17 Akim Demaille <akim@epita.fr>
147 * src/bison.s1 (#line): All set to `#line' only, since the
148 Makefile now handles them.
150 2000-03-16 Akim Demaille <akim@epita.fr>
152 * src/output.c (output_rule_data): Output the documentation of
154 (Copyright notice): Update.
157 2000-03-16 Akim Demaille <akim@epita.fr>
159 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
160 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
161 One `#if YYDEBUG' remains, since it uses variables which are
162 defined only if `YYDEBUG != 0'.
164 2000-03-16 Akim Demaille <akim@epita.fr>
166 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
167 and related variables so that the similarities are highlighted.
169 2000-03-16 Akim Demaille <akim@epita.fr>
171 * src/bison.s1: Properly indent CPP directives.
173 2000-03-16 Akim Demaille <akim@epita.fr>
175 * src/bison.s1: Properly indent the `alloca' CPP section.
177 2000-03-16 Akim Demaille <akim@epita.fr>
179 Do not hard code values of directories in `configure.in'.
180 Update the `configure' tool chain.
182 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
184 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
185 (AC_OUTPUT): Add m4/Makefile.
186 Bump to bison 1.28a, 1.29 has never been released.
187 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
188 handled via src/Makefile.am.
189 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
190 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
192 * Makefile.am (SUBDIRS): Add m4.
193 (ACLOCAL_AM_FLAGS): New variable.
194 (AUTOMAKE_OPTIONS): Add check-news.
195 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
196 the proper line number and file name.
197 (DEFS): Propagate the location of bison library files and of the
199 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
201 * acinclude.m4: Remove, replaced by the directory m4.
202 * m4/Makefile.am (EXTRA_DIST): New variable.
203 * m4/gettext.m4: New file, from the fileutils.
204 * m4/lcmessage.m4: Likewise
205 * m4/progtest.m4: Likewise.
206 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
208 2000-03-10 Akim Demaille <akim@epita.fr>
211 Formatting changes of various comments.
212 Respect the GNU coding standards at various places.
213 Don't use `_()' when no translation is needed.
215 1999-12-13 Jesse Thilo <jthilo@gnu.org>
218 OS/2 honors TMPDIR environment variable.
220 1999-12-13 Jesse Thilo <jthilo@gnu.org>
222 * doc/bison.texinfo: Tweaked spelling and grammar.
224 Removed reference to price of printed copy.
225 Mention BISON_SIMPLE and BISON_HAIRY.
227 1999-12-13 Jesse Thilo <jthilo@gnu.org>
229 * configure.in, NEWS:
232 1999-10-27 Jesse Thilo <jthilo@gnu.org>
234 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
235 Added reference card.
237 1999-07-26 Jesse Thilo <jthilo@gnu.org>
239 * po/ru.po: Added Russian translation.
241 1999-07-26 Jesse Thilo <jthilo@gnu.org>
243 * configure.in: Added Russian translation.
245 1999-07-06 Jesse Thilo <jthilo@gnu.org>
247 * configure.in, NEWS, README:
248 Released version 1.28.
250 1999-06-14 Jesse Thilo <jthilo@gnu.org>
253 Squashed redefinition warning on some systems.
255 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
256 Have configure build version string instead of relying on ANSI string
259 1999-06-14 Jesse Thilo <jthilo@gnu.org>
261 * po/POTFILES.in: Got rid of version.c.
263 1999-06-14 Jesse Thilo <jthilo@gnu.org>
265 * acconfig.h, configure.in:
266 Have configure build version string instead of relying on ANSI string
269 1999-06-08 Jesse Thilo <jthilo@gnu.org>
272 Dropped mention of `+' for long-named options.
274 1999-05-30 Jesse Thilo <jthilo@gnu.org>
276 * src/files.c: Added <unistd.h> for unlink().
278 * src/Makefile.am, src/system.h:
281 1999-05-30 Jesse Thilo <jthilo@gnu.org>
283 * README: Added a FAQ list.
285 * configure.in, acconfig.h:
288 1999-05-30 Jesse Thilo <jthilo@gnu.org>
290 * doc/FAQ, doc/Makefile.am:
293 1999-05-19 Jesse Thilo <jthilo@gnu.org>
295 * src/alloc.h, src/symtab.h, src/version.c:
296 Protected inclusion of "config.h" with HAVE_CONFIG_H.
298 1999-04-18 Jesse Thilo <jthilo@gnu.org>
300 * src/.cvsignore, src/Makefile.am:
301 Reorganized: sources in `src', documentation in `doc'.
303 * src/lex.c (literalchar):
304 fixed the code for escaping double quotes (thanks
307 1999-04-18 Jesse Thilo <jthilo@gnu.org>
309 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
310 Adjusted paths to reflect directory reorganization.
312 1999-04-18 Jesse Thilo <jthilo@gnu.org>
314 * doc/.cvsignore, doc/Makefile.am:
315 Reorganized: sources in `src', documentation in `doc'.
317 1999-04-18 Jesse Thilo <jthilo@gnu.org>
320 Updated AC_INIT file to reflect directory reorganization.
322 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
323 Reorganized: sources in `src', documentation in `doc'.
325 1999-04-13 Jesse Thilo <jthilo@gnu.org>
328 Don't declare calloc() and realloc() if not necessary.
330 1999-04-13 Jesse Thilo <jthilo@gnu.org>
332 * configure.in, acconfig.h, acinclude.m4:
333 Don't declare calloc() and realloc() if not necessary.
335 1999-03-23 Jesse Thilo <jthilo@gnu.org>
337 * po/.cvsignore: Added i18n support.
339 1999-03-23 Jesse Thilo <jthilo@gnu.org>
341 * acconfig.h, configure.in, Makefile.am:
344 1999-03-22 Jesse Thilo <jthilo@gnu.org>
346 * src/bison.s1: Fixed #line numbers.
348 1999-03-15 Jesse Thilo <jthilo@gnu.org>
350 * po/es.po, po/fr.po, po/nl.po, po/de.po:
351 Added PO files from Translation Project.
353 1999-03-03 Jesse Thilo <jthilo@gnu.org>
356 Added support for non-ANSI compilers (ansi2knr).
358 1999-02-16 Jesse Thilo <jthilo@gnu.org>
360 * configure.in: Bumped version number to 1.27.
363 Added `bison.simple' to list of files removed by `make distclean'.
365 1999-02-12 Jesse Thilo <jthilo@gnu.org>
367 * src/files.c, src/files.h:
368 Defined locations of parser files in config.h instead of Makefile.
370 1999-02-12 Jesse Thilo <jthilo@gnu.org>
372 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
373 Defined locations of parser files in config.h instead of Makefile.
375 1999-02-09 Jesse Thilo <jthilo@gnu.org>
378 Removed inappropriate use of $< macro.
380 1999-02-05 Jesse Thilo <jthilo@gnu.org>
382 * po/Makefile.in.in, po/POTFILES.in:
383 Add `po' directory skeleton.
385 1999-01-27 Jesse Thilo <jthilo@gnu.org>
387 * README: Document help-bison list.
389 * configure.in: Add check for mkstemp().
391 1999-01-20 Jesse Thilo <jthilo@gnu.org>
393 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
394 Hush a few compiler warnings.
397 Add tryclose(), which verifies that fclose was successful.
398 Hush a couple of compiler warnings.
400 1999-01-20 Jesse Thilo <jthilo@gnu.org>
402 * Makefile.am, OChangeLog:
403 ChangeLog is now automatically generated. Include the old version as
406 1999-01-14 Jesse Thilo <jthilo@gnu.org>
408 * 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:
411 1999-01-14 Jesse Thilo <jthilo@gnu.org>
413 * doc/bison.texinfo: Fix formatting glitch.
415 * doc/bison.texinfo: Update FSF address.
417 1999-01-14 Jesse Thilo <jthilo@gnu.org>
419 * acconfig.h: Update FSF address.
421 1999-01-08 Jesse Thilo <jthilo@gnu.org>
424 Don't define PACKAGE here, since config.h defines it.
426 1998-12-30 Jesse Thilo <jthilo@gnu.org>
428 * src/reader.c: Update copyright date.
431 Ditch sprintf to statically-sized buffers in fatal/warn functions in
432 favor of output directly to stderr (avoids buffer overruns).
434 * src/reader.c: Some checks for premature EOF.
436 * 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:
437 Use prototypes if the compiler understands them.
439 * src/files.c: Honor TMPDIR on Unix hosts.
440 Use prototypes if the compiler understands them.
443 Fix a couple of buffer overrun bugs.
444 Use prototypes if the compiler understands them.
446 * src/system.h: Include unistd.h and ctype.h.
447 Use #ifdef instead of #if for NLS symbols.
449 1998-12-30 Jesse Thilo <jthilo@gnu.org>
452 Delete comment "consider using @set for edition number, etc..." since
455 1998-12-30 Jesse Thilo <jthilo@gnu.org>
458 Use prototypes if the compiler understands them.
460 * NEWS: Document 1.26 highlights.
462 * Makefile.am: Require Automake 1.3 or later.
465 Use prototypes if the compiler understands them.
467 1998-12-29 Jesse Thilo <jthilo@gnu.org>
470 Use VERSION symbol from automake for version number.
472 1998-12-29 Jesse Thilo <jthilo@gnu.org>
474 * acconfig.h, configure.in, version.cin:
475 Use VERSION symbol from automake for version number.
477 1998-11-28 Jesse Thilo <jthilo@gnu.org>
480 Distribute original version of simple parser (bison.s1), not built
481 version (bison.simple).
483 1998-11-28 Jesse Thilo <jthilo@gnu.org>
485 * doc/bison.texinfo: Add info dir entry.
488 Let automake put version number into documentation.
490 1998-11-26 Jesse Thilo <jthilo@gnu.org>
492 * src/bison.cld, src/build.com, src/vmshlp.mar:
493 Add non-RCS files from /gd/gnu/bison.
495 1998-11-26 Jesse Thilo <jthilo@gnu.org>
498 Document the BISON_HAIRY and BISON_SIMPLE variables.
500 1998-11-25 Jesse Thilo <jthilo@gnu.org>
502 * src/version.c: Build version.c automatically.
505 Fix token numbering (used to start at 258, not 257).
507 * src/system.h: Include config.h.
509 * src/getargs.c: Update bug report address.
511 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
512 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
514 1998-11-25 Jesse Thilo <jthilo@gnu.org>
517 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
519 * configure.in, version.cin:
520 Build version.c automatically.
522 * AUTHORS: Add AUTHORS file.
524 * README: Update bug report address.
527 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
529 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
532 1998-11-25 Jesse Thilo <jthilo@gnu.org>
534 * doc/bison.texinfo: Clean up some formatting.
536 1998-05-05 Richard Stallman <rms@gnu.org>
539 Explain better why to make a pure parser.
541 1998-01-05 Richard Stallman <rms@gnu.org>
543 * src/files.c (openfiles):
544 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
545 find a temporary directory, if possible. Do not unlink files while
548 1997-08-25 Richard Stallman <rms@gnu.org>
550 * src/reader.c (stack_offset;):
551 Change some warni to warns.
553 * src/lex.c (literalchar): Use warns, not warni.
555 1997-06-28 Richard Stallman <rms@gnu.org>
557 * src/bison.s1: Add a Bison version comment.
559 * src/main.c (fatal, warn, berror):
562 1997-06-28 Richard Stallman <rms@gnu.org>
564 * Makefile.in (bison_version): New variable.
565 (dist): Use that variable.
566 (bison.s1): Substitute the Bison version into bison.simple.
568 * bison.simple: Add a Bison version comment.
570 1997-06-18 Richard Stallman <rms@gnu.org>
572 * src/main.c (fatal, warn, berror):
573 Make error messages standard.
574 (toomany): Improve error message text.
576 * 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:
577 new.h renamed to alloc.h.
579 1997-06-18 Richard Stallman <rms@gnu.org>
581 * Makefile.in: new.h renamed to alloc.h.
583 1997-05-24 Richard Stallman <rms@gnu.org>
585 * src/lex.c (literalchar):
586 Fix the code for escaping \, " and '.
588 (lex): Avoid trouble when there are many chars
589 to discard in a char literal with just several chars in it.
591 1997-05-17 Richard Stallman <rms@gnu.org>
594 Use malloc, if using alloca is troublesome.
595 (YYSTACK_USE_ALLOCA): New flag macro.
596 Define it for some systems and compilers.
597 (YYSTACK_ALLOC): New macro.
598 (yyparse): Use YYSTACK_ALLOC to allocate stack.
599 If it was malloc'd, free it.
601 1997-05-17 Richard Stallman <rms@gnu.org>
604 Use malloc, if using alloca is troublesome.
605 (YYSTACK_USE_ALLOCA): New flag macro.
606 Define it for some systems and compilers.
607 (YYSTACK_ALLOC): New macro.
608 (yyparse): Use YYSTACK_ALLOC to allocate stack.
609 If it was malloc'd, free it.
611 1997-04-23 Richard Stallman <rms@gnu.org>
614 (alloca) [__hpux]: Always define as __builtin_alloca.
616 1997-04-23 Richard Stallman <rms@gnu.org>
619 (alloca) [__hpux]: Always define as __builtin_alloca.
621 1997-04-22 Richard Stallman <rms@gnu.org>
624 [__hpux]: Include alloca.h (right for HPUX 10)
625 instead of declaring alloca (right for HPUX 9).
627 * src/bison.s1 (__yy_memcpy):
628 Declare arg `count' as unsigned int.
629 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
631 1997-04-22 Richard Stallman <rms@gnu.org>
634 [__hpux]: Include alloca.h (right for HPUX 10)
635 instead of declaring alloca (right for HPUX 9).
637 * bison.simple (__yy_memcpy):
638 Declare arg `count' as unsigned int.
639 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
641 1997-01-03 Richard Stallman <rms@gnu.org>
643 * src/allocate.c: [__STDC__ or _MSC_VER]:
644 Declare calloc and realloc to return void *.
646 1997-01-02 Richard Stallman <rms@gnu.org>
649 [_MSC_VER]: Include stdlib.h and process.h.
650 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
652 * src/main.c (main): Return FAILURE as a value.
653 (printable_version): Declare arg as int, not char.
655 1997-01-02 Richard Stallman <rms@gnu.org>
657 * Makefile.in (dist):
658 Explicitly check for symlinks, and copy them.
660 1996-12-19 Richard Stallman <rms@gnu.org>
663 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
665 1996-12-18 Paul Eggert <eggert@gnu.org>
667 * src/bison.s1 (yyparse):
668 If __GNUC__ and YYPARSE_PARAM are both defined,
669 declare yyparse to have a void * argument.
671 1996-12-18 Paul Eggert <eggert@gnu.org>
673 * bison.simple (yyparse):
674 If __GNUC__ and YYPARSE_PARAM are both defined,
675 declare yyparse to have a void * argument.
677 1996-12-17 Richard Stallman <rms@gnu.org>
679 * src/reduce.c (nbits): Add some casts.
681 1996-08-12 Richard Stallman <rms@gnu.org>
683 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
685 1996-08-12 Richard Stallman <rms@gnu.org>
687 * bison.simple: Test _MSDOS as well as _MSDOS_.
689 1996-07-31 Richard Stallman <rms@gnu.org>
692 [__sun && __i386]: Include alloca.h.
694 1996-07-31 Richard Stallman <rms@gnu.org>
697 [__sun && __i386]: Include alloca.h.
699 1996-07-30 Richard Stallman <rms@gnu.org>
701 * src/bison.s1: Comment change.
703 * src/bison.s1: Test _MSDOS_, not MSDOS.
705 1996-07-30 Richard Stallman <rms@gnu.org>
707 * bison.simple: Comment change.
709 * bison.simple: Test _MSDOS_, not MSDOS.
711 1996-06-01 Richard Stallman <rms@gnu.org>
713 * 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:
714 Insert `_' macro around many string constants.
717 Insert `_' macro around many string constants.
719 (main): Call setlocale, bindtextdomain and textdomain.
721 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
722 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
723 [ENABLE_NLS]: Include libintl.h.
724 [ENABLE_NLS] (gettext): Define.
725 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
726 (N_, PACKAGE, LOCALEDIR): New macros.
728 1996-06-01 Richard Stallman <rms@gnu.org>
730 * POTFILES.in: New file.
732 * Makefile.in (allocate.o):
733 Define target explicitly.
735 * Makefile.in (CFLAGS): Set to @CFLAGS@.
736 (LDFLAGS): Set to @LDFLAGS@.
737 (configure): Run autoconf only if preceding `cd' succeeds.
738 (bison.s1): Redirect output to temporary file then move the
739 temporary to the target, rather than redirecting directly to bison.s1.
740 (clean): Remove config.status and config.log.
741 (distclean): Don't remove config.status here.
743 1996-05-12 Richard Stallman <rms@gnu.org>
746 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
748 1996-05-12 Richard Stallman <rms@gnu.org>
751 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
753 1996-05-11 Richard Stallman <rms@gnu.org>
755 * src/bison.s1 (__yy_memcpy):
756 Really reorder the args, as was supposedly done on Feb 14 1995.
757 (yyparse): Calls changed accordingly.
759 1996-05-11 Richard Stallman <rms@gnu.org>
761 * Makefile.in (dist): Don't use $(srcdir).
763 * bison.simple (__yy_memcpy):
764 Really reorder the args, as was supposedly done on Feb 14 1995.
765 (yyparse): Calls changed accordingly.
767 1996-01-27 Richard Stallman <rms@gnu.org>
769 * src/output.c (output_rule_data):
770 Test YYERROR_VERBOSE in the conditional
771 around the definition of ttyname.
773 1995-12-29 Richard Stallman <rms@gnu.org>
776 Fix line numbers in #line commands.
778 1995-12-29 Richard Stallman <rms@gnu.org>
781 Fix line numbers in #line commands.
783 1995-12-27 Richard Stallman <rms@gnu.org>
785 * src/bison.s1 (YYPARSE_PARAM_DECL):
786 In C++, make it always null.
787 (YYPARSE_PARAM_ARG): New macro.
788 (yyparse): Use YYPARSE_PARAM_ARG.
790 1995-12-27 Richard Stallman <rms@gnu.org>
792 * bison.simple (YYPARSE_PARAM_DECL):
793 In C++, make it always null.
794 (YYPARSE_PARAM_ARG): New macro.
795 (yyparse): Use YYPARSE_PARAM_ARG.
797 1995-11-29 Richard Stallman <rms@gnu.org>
800 Describe literal string tokens, %raw, %no_lines, %token_table.
802 1995-11-29 Daniel Hagerty <hag@gnu.org>
804 * doc/bison.texinfo: Fixed update date
806 1995-10-16 Richard Stallman <rms@gnu.org>
808 * src/version.c: Version 1.25.
810 1995-10-16 Richard Stallman <rms@gnu.org>
812 * NEWS: *** empty log message ***
814 1995-10-16 Richard Stallman <rms@gnu.org>
816 * doc/bison.1, doc/bison.rnh:
819 1995-10-15 Richard Stallman <rms@gnu.org>
821 * src/vmsgetargs.c, src/getargs.c:
822 Added -n, -k, and -raw switches.
823 (noparserflag, toknumflag, rawtoknumflag): New variables.
825 * src/symtab.h (SALIAS):
826 New #define for adding aliases to %token.
827 (struct bucket): Added `alias' field.
829 * src/reduce.c (reduce_grammar):
830 Revise error message.
831 (print_notices): Remove final `.' from error message.
833 * src/reader.c (reader_output_yylsp):
835 (readgram): Use `#if 0' around code that accepted %command
836 inside grammar rules: The documentation doesn't allow it,
837 and it will fail since the %command processors scan for the next %.
838 (parse_token_decl): Extended the %token
839 declaration to allow a multi-character symbol as an alias.
840 (parse_thong_decl): New function.
841 (read_declarations): Added %thong declarations.
842 (read_declarations): Handle NOOP to deal with allowing
843 % declarations as another means to specify the flags.
844 (readgram): Allow %prec prior to semantics embedded in a rule.
845 (skip_to_char, read_declarations, copy_definition)
846 (parse_token_decl, parse_start_decl, parse_type_decl)
847 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
848 (get_type_name, copy_guard, copy_action, readgram)
849 (get_type, packsymbols): Revised most error messages.
850 Changed `fatal' to `warnxxx' to avoid aborting for error.
851 Revised and use multiple warnxxx functions to avoid using VARARGS1.
852 (read_declarations): Improve the error message for
853 an invalid character. Do not abort.
854 (read_declarations, copy_guard, copy_action): Use
855 printable_version to avoid unprintable characters in printed output.
856 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
857 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
858 Allow the type of a non-terminal can be given
859 more than once, as long as all specifications give the same type.
862 (output_headers, output_trailers, output, output_gram)
863 (output_rule_data): Implement noparserflag variable.
864 Implement toknumflag variable.
865 (output): Call reader_output_yylsp to output LTYPESTR.
868 If reader sees an error, don't process the grammar.
869 (fatals): Updated to not use VARARGS1.
870 (printable_version, int_to_string, warn, warni, warns, warnss)
871 (warnsss): New error reporting functions. Avoid abort for error.
874 Added THONG and NOOP for alias processing.
875 Added SETOPT for the new code that allows setting options with %flags.
878 Include getopt.h. Add some extern decls.
879 (safegetc): New function to deal with EOF gracefully.
880 (literalchar); new function to deal with reading \ escapes.
881 (lex): Use literalchar.
882 (lex): Implemented "..." tokens.
883 (literalchar, lex, parse_percent_token): Made tokenbuffer
884 always contain the token. This includes growing the token
885 buffer while reading an integer.
886 (parse_percent_token): Replaced if-else statement with percent_table.
887 (parse_percent_token): Added % declarations as another
888 way to specify the flags -n, -l, and -r. Also added hooks for
889 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
890 major changes to files.c.
891 (lex) Retain in the incoming stream a character following
893 (skip_white_space, lex): Revised most error messages
894 and changed fatal to warn to avoid aborting.
895 (percent_table): Added %thong declarations.
897 * src/gram.h: Comment changes.
899 * src/files.c (openfiles, open_extra_files, done):
901 and actfile file. Handle noparserflag. Both for -n switch.
903 * src/conflicts.c (resolve_sr_conflict):
904 Remove use of alloca.
906 1995-06-01 Jim Meyering <meyering@gnu.org>
908 * doc/bison.texinfo: *** empty log message ***
910 1995-05-06 Richard Stallman <rms@gnu.org>
912 * src/bison.s1: Comment change.
914 1995-05-06 Richard Stallman <rms@gnu.org>
916 * bison.simple: Comment change.
918 1995-05-03 Richard Stallman <rms@gnu.org>
920 * src/version.c: Version now 1.24.
922 * src/bison.s1: Change distribution terms.
924 * src/version.c: Version now 1.23.
926 1995-05-03 Richard Stallman <rms@gnu.org>
929 Rewrite "Conditions for Using Bison".
930 Update version to 1.24.
932 1995-05-03 Richard Stallman <rms@gnu.org>
934 * bison.simple: Change distribution terms.
936 1995-02-23 Richard Stallman <rms@gnu.org>
938 * src/files.c: Test __VMS_POSIX as well as VMS.
940 1995-02-14 Jim Meyering <meyering@gnu.org>
942 * src/bison.s1 (__yy_memcpy):
943 Renamed from __yy_bcopy to avoid
944 confusion. Reverse FROM and TO arguments to be consistent with
947 1995-02-14 Jim Meyering <meyering@gnu.org>
949 * bison.simple (__yy_memcpy):
950 Renamed from __yy_bcopy to avoid
951 confusion. Reverse FROM and TO arguments to be consistent with
954 1994-11-10 David J. MacKenzie <djm@gnu.org>
960 * Makefile.in (DISTFILES): Include NEWS.
962 * Makefile.in (DISTFILES):
963 Include install-sh, not install.sh.
965 * configure.in: Update to Autoconf v2 macro names.
967 1994-10-05 David J. MacKenzie <djm@gnu.org>
969 * Makefile.in: fix typo
971 * Makefile.in (prefix, exec_prefix):
972 Let configure set them.
974 1994-09-28 David J. MacKenzie <djm@gnu.org>
976 * Makefile.in: Set datadir to $(prefix)/share.
978 1994-09-15 Richard Stallman <rms@gnu.org>
981 Update copyright notice and GPL version.
983 1994-09-15 Richard Stallman <rms@gnu.org>
986 Update copyright notice and GPL version.
988 1994-07-12 Richard Stallman <rms@gnu.org>
990 * src/reduce.c, src/reader.c:
993 1994-05-05 David J. MacKenzie <djm@gnu.org>
995 * Makefile.in: entered into RCS
997 1994-03-26 Richard Stallman <rms@gnu.org>
999 * src/bison.s1: entered into RCS
1001 1994-03-26 Richard Stallman <rms@gnu.org>
1003 * bison.simple: entered into RCS
1005 1994-03-25 Richard Stallman <rms@gnu.org>
1007 * src/main.c: entered into RCS
1009 1994-03-24 Richard Stallman <rms@gnu.org>
1011 * src/conflicts.c: entered into RCS
1013 1994-01-02 Richard Stallman <rms@gnu.org>
1015 * Makefile.in: *** empty log message ***
1017 1993-11-21 Richard Stallman <rms@gnu.org>
1019 * src/bison.s1: *** empty log message ***
1021 1993-11-21 Richard Stallman <rms@gnu.org>
1023 * doc/bison.texinfo: entered into RCS
1025 * doc/bison.texinfo: *** empty log message ***
1027 1993-11-21 Richard Stallman <rms@gnu.org>
1029 * bison.simple: *** empty log message ***
1031 1993-10-25 David J. MacKenzie <djm@gnu.org>
1033 * doc/bison.texinfo: *** empty log message ***
1035 1993-10-19 Richard Stallman <rms@gnu.org>
1037 * src/bison.s1: *** empty log message ***
1039 1993-10-19 Richard Stallman <rms@gnu.org>
1041 * bison.simple: *** empty log message ***
1043 1993-10-14 Richard Stallman <rms@gnu.org>
1045 * src/bison.s1: *** empty log message ***
1047 1993-10-14 Richard Stallman <rms@gnu.org>
1049 * bison.simple: *** empty log message ***
1051 1993-09-14 David J. MacKenzie <djm@gnu.org>
1053 * doc/bison.texinfo: *** empty log message ***
1055 1993-09-13 Noah Friedman <friedman@gnu.org>
1057 * Makefile.in: *** empty log message ***
1059 1993-09-10 Richard Stallman <rms@gnu.org>
1061 * src/conflicts.c: *** empty log message ***
1063 * src/system.h: entered into RCS
1065 1993-09-10 Richard Stallman <rms@gnu.org>
1067 * doc/bison.1: entered into RCS
1069 1993-09-06 Noah Friedman <friedman@gnu.org>
1071 * src/version.c: entered into RCS
1073 1993-09-06 Noah Friedman <friedman@gnu.org>
1075 * Makefile.in: *** empty log message ***
1077 1993-07-30 David J. MacKenzie <djm@gnu.org>
1079 * Makefile.in: *** empty log message ***
1081 1993-07-24 Richard Stallman <rms@gnu.org>
1083 * src/bison.s1: *** empty log message ***
1085 1993-07-24 Richard Stallman <rms@gnu.org>
1087 * bison.simple: *** empty log message ***
1089 1993-07-08 David J. MacKenzie <djm@gnu.org>
1091 * Makefile.in: *** empty log message ***
1093 1993-07-04 Richard Stallman <rms@gnu.org>
1095 * src/bison.s1: *** empty log message ***
1097 1993-07-04 Richard Stallman <rms@gnu.org>
1099 * bison.simple: *** empty log message ***
1101 1993-06-26 David J. MacKenzie <djm@gnu.org>
1103 * src/getargs.c: entered into RCS
1105 1993-06-26 David J. MacKenzie <djm@gnu.org>
1107 * doc/bison.texinfo: *** empty log message ***
1109 * doc/bison.1: New file.
1111 1993-06-25 Richard Stallman <rms@gnu.org>
1113 * src/getargs.c: New file.
1115 1993-06-16 Richard Stallman <rms@gnu.org>
1117 * src/bison.s1: *** empty log message ***
1119 1993-06-16 Richard Stallman <rms@gnu.org>
1121 * bison.simple: *** empty log message ***
1123 1993-06-03 Richard Stallman <rms@gnu.org>
1125 * src/bison.s1: New file.
1127 1993-06-03 Richard Stallman <rms@gnu.org>
1129 * doc/bison.texinfo: *** empty log message ***
1131 1993-06-03 Richard Stallman <rms@gnu.org>
1133 * bison.simple: New file.
1135 1993-05-19 Richard Stallman <rms@gnu.org>
1137 * doc/bison.texinfo: New file.
1139 1993-05-07 Noah Friedman <friedman@gnu.org>
1141 * Makefile.in: *** empty log message ***
1143 1993-04-28 Noah Friedman <friedman@gnu.org>
1145 * src/reader.c: *** empty log message ***
1147 1993-04-23 Noah Friedman <friedman@gnu.org>
1149 * src/alloc.h: entered into RCS
1151 1993-04-20 David J. MacKenzie <djm@gnu.org>
1153 * src/version.c: *** empty log message ***
1155 * src/files.c, src/allocate.c:
1158 * src/reader.c: *** empty log message ***
1160 * src/lex.c: entered into RCS
1162 * src/conflicts.c: New file.
1164 * src/symtab.c: entered into RCS
1166 * src/alloc.h: New file.
1168 * src/LR0.c: entered into RCS
1170 1993-04-18 Noah Friedman <friedman@gnu.org>
1172 * src/reader.c: New file.
1174 * src/version.c: *** empty log message ***
1176 1993-04-18 Noah Friedman <friedman@gnu.org>
1178 * Makefile.in: *** empty log message ***
1180 1993-04-17 Noah Friedman <friedman@gnu.org>
1182 * Makefile.in: *** empty log message ***
1184 1993-04-15 Richard Stallman <rms@gnu.org>
1186 * src/main.c, src/files.c:
1189 1993-04-15 Noah Friedman <friedman@gnu.org>
1191 * configure.in: entered into RCS
1193 * configure.in: *** empty log message ***
1195 * configure.in: New file.
1197 1993-04-14 Richard Stallman <rms@gnu.org>
1199 * Makefile.in: New file.
1201 1993-04-13 Richard Stallman <rms@gnu.org>
1203 * src/version.c: New file.
1205 1993-03-25 Richard Stallman <rms@gnu.org>
1207 * src/output.c: entered into RCS
1209 1992-09-25 Richard Stallman <rms@gnu.org>
1211 * configure.bat: entered into RCS
1213 1992-06-22 Richard Stallman <rms@gnu.org>
1215 * src/vmsgetargs.c: entered into RCS
1217 1992-06-22 Richard Stallman <rms@gnu.org>
1219 * doc/bison.rnh: entered into RCS
1221 1992-04-20 David J. MacKenzie <djm@gnu.org>
1223 * README: entered into RCS
1225 1992-01-22 Richard Stallman <rms@gnu.org>
1227 * src/machine.h: entered into RCS
1229 1991-12-21 Richard Stallman <rms@gnu.org>
1231 * src/lalr.c, src/closure.c:
1234 1991-12-20 Richard Stallman <rms@gnu.org>
1236 * src/state.h: entered into RCS
1238 1991-12-18 Richard Stallman <rms@gnu.org>
1240 * src/print.c, src/nullable.c, src/derives.c:
1243 1991-11-03 David J. MacKenzie <djm@gnu.org>
1245 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1248 1988-09-09 Richard Stallman <rms@gnu.org>
1250 * src/bison.hairy: entered into RCS
1252 1987-12-16 Richard Stallman <rms@gnu.org>
1254 * REFERENCES: entered into RCS