]> git.saurik.com Git - bison.git/blame - ChangeLog
* src/closure.h: New file.
[bison.git] / ChangeLog
CommitLineData
2fa6973e
AD
12000-09-20 Akim Demaille <akim@epita.fr>
2
3 * src/closure.h: New file.
4 * src/closure.c: Formatting changes, topological sort over the
5 functions, use of closure.h.
6 (initialize_closure, finalize_closure): Rename as...
7 (new_closure, free_closure): these. Adjust dependencies.
8 * src/LR0.c: Formatting changes, topological sort, use of
9 cloture.h.
10 (initialize_states): Rename as...
11 (new_states): this.
12 * src/Makefile.am (noinst_HEADERS): Adjust.
13
499daa50
AD
142000-09-20 Akim Demaille <akim@epita.fr>
15
16 * src/acconfig.h: Don't protect config.h against multiple
17 inclusion.
18 Don't define PARAMS.
19 * src/system.h: Define PARAMS.
20 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21 purpose of config.h. system.h must not try to fix wrong
22 definitions in config.h.
23
cc84fd5d
AD
242000-09-20 Akim Demaille <akim@epita.fr>
25
26 * src/derives.h: New file.
27 * src/main.c, src/derives.h: Use it.
28 Formatting changes.
29 * src/Makefile.am (noinst_HEADERS): Adjust.
30
db5b3a89
AD
312000-09-20 Akim Demaille <akim@epita.fr>
32
33 * tests/atgeneral.m4: Update from Autoconf.
34 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
35 (AT_CHECK_CALC): New macros.
36 Use these macros to test bison with options `', `--raw',
37 `--debug', `--yacc', `--yacc --debug'.
38
ceed8467
AD
392000-09-19 Akim Demaille <akim@epita.fr>
40
41 * src/output.c: Formatting changes.
42 * src/machine.h: Remove, leaving its contents in...
43 * src/system.h: here.
44 Include stdio.h.
45 Adjust all dependencies on stdio.h and machine.h.
46 * src/getargs.h: New file.
47 Let all `extern' declarations about getargs.c be replaced with
48 inclusion of `getargs.h'.
49 * src/Makefile.am (noinst_HEADERS): Adjust.
50
51 * tests/calc.m4 (yyin): Be initialized in main, not on the global
52 scope.
53 (yyerror): Returns void, not int.
54 * doc/bison.texinfo: Formatting changes.
55
05a1d24b
AD
562000-09-19 Akim Demaille <akim@epita.fr>
57
58 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
59 portable.
60
cbd25751
AD
612000-09-18 Akim Demaille <akim@epita.fr>
62
63 * configure.in: Append WARNING_CFLAGS to CFLAGS.
64 * src/Makefile.am (INCLUDES): Don't.
65 Be ready to fetch headers in lib/.
66
13863333
AD
672000-09-18 Akim Demaille <akim@epita.fr>
68
69 * doc/bison.texinfo: Update the copyright.
70 ANSIfy and GNUify the examples.
71 Remove the old menu.
72
0d533154
AD
732000-09-18 Akim Demaille <akim@epita.fr>
74
75 First set of tests: use the `calc' example from the documentation.
76
77 * src/bison.s1 (yyparse): Condition the code using `yytname' which
78 is defined only when YYDEBUG is.
79 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
80 * src/files.c (tryopen, tryclose): Formatting changes.
81 Move to the top and be static.
82 * src/reader.c (read_signed_integer): Likewise.
83 * tests/calc.m4: New file.
84 * Makefile.am, suite.m4: Adjust.
85 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
86
e79137ac
AD
872000-09-18 Akim Demaille <akim@epita.fr>
88
89 Add support for an Autotest test suite for Bison.
90
91 * m4/m4.m4, m4/atconfig.m4: New files.
92 * m4/Makefile.am (EXTRA_DIST): Adjust.
93 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
94 files.
95 * src/getargs.c: Display a more standard --version message.
96 * src/reader.c (reader): Formatting changes.
97 No longer depend upon VERSION_STRING.
98 * configure.in: No longer use `dnl'.
99 Set up the test suite and the new directory `tests/.
100 (VERSION_STRING): Remove.
101
27821bff
AD
1022000-04-14 Akim Demaille <akim@epita.fr>
103
104 * src/reader.c (copy_comment2): New function, same as former
105 `copy_comment', but outputs into two FILE *.
106 (copy_comment): Use it.
107 (parse_union_decl): Use it.
108 (get_type, parse_start_decl): Use the same `invalid' message.
109 (parse_start_decl, parse_union_decl): Use the same `multiple'
110 message.
111 (parse_union_decl, copy_guard, copy_action): Use the same
112 `unmatched' message.
113 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
114
cfe5fbc0
AD
1152000-03-31 Akim Demaille <akim@epita.fr>
116
117 * src/files.c (tryopen, tryclose): Move to the top.
118 Be static.
119
cb7db13e
AD
1202000-03-31 Akim Demaille <akim@epita.fr>
121
122 * src/main.c (main): Don't call `done', exit does it.
123
a0f6b076
AD
1242000-03-31 Akim Demaille <akim@epita.fr>
125
36281465
AD
126 * allocate.c: s/return (foo)/return foo/.
127 * lalr.c: Likewise.
128 * LR0.c: Likewise.
129 * output.c: Likewise.
130 * reader.c: Likewise.
131 * symtab.c: Likewise.
132 * vmsgetargs.c: Likewise.
133
1342000-03-31 Akim Demaille <akim@epita.fr>
135
136 Clean up the error reporting functions.
a0f6b076
AD
137
138 * src/report.c: New file.
139 * src/report.h: Likewise.
140 * src/Makefile.am: Adjust.
141 * m4/error.m4: New file.
142 * m4/Makefile.am: Adjust.
143 * configure.in (jm_PREREQ_ERROR): Call it.
144 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
145 Remove.
146 (fatal, fatals): Remove. All callers use complain.c::fatal.
147 (warn, warni, warns, warnss, warnss): Remove. All callers use
148 complain.c::complain.
149 (toomany): Remove, use fatal instead.
150 * src/files.c (done): No argument, use complain_message_count.
151 * src/main.c (main): Register `done' to `atexit'.
152
153 * src/getargs.c (usage): More `fputs', less `fprintf'.
154
18539825
AD
1552000-03-28 Akim Demaille <akim@epita.fr>
156
157 * lib/: New directory.
158 * Makefile.am (SUBDIRS): Adjust.
159 * configure.in: Adjust.
160 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
161 useless.
162 * src/alloca.c: Moved to lib/.
163 * src/getopt.c: Likewise.
164 * src/getopt1.c: Likewise.
165 * src/getopt.h: Likewise.
166 * src/ansi2knr.c: Likewise.
167 * src/ansi2knr.1: Likewise.
168 * src/Makefile.am: Adjust.
169 * lib/Makefile.am: New file.
170
9f306f2a
AD
1712000-03-28 Akim Demaille <akim@epita.fr>
172
173 * src/getargs.c (usage): Refresh the help message.
174
0ba347b6
AD
1752000-03-17 Akim Demaille <akim@epita.fr>
176
177 * src/getopt1.c: Updated from textutils 2.0e
178 * src/getopt.c: Likewise.
179 * src/getopt.h: Likewise.
180
dbe7f271
AD
1812000-03-17 Akim Demaille <akim@epita.fr>
182
183 * src/Makefile.am (bison.simple): Fix the awk program: quote only
184 the file name, not the whole `#line LINE FILE'.
185
75bbe78d
AD
1862000-03-17 Akim Demaille <akim@epita.fr>
187
188 On syntax errors, report the token on which we choked.
189
aa5fd0ee
AD
190 * src/bison.s1 (yyparse): In the label yyerrlab, when
191 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 192
7b306f52
AD
1932000-03-17 Akim Demaille <akim@epita.fr>
194
aa5fd0ee 195 * src/reader.c (copy_at): New function.
7b306f52
AD
196 (copy_guard): Use it.
197 (copy_action): Use it.
198
e87b5700
AD
1992000-03-17 Akim Demaille <akim@epita.fr>
200
201 Be kind to translators, save some useless translations.
202
aa5fd0ee 203 * src/main.c (banner): New function.
e87b5700
AD
204 (fatal_banner): Use it.
205 (warn_banner): Use it.
206
ae3c3164
AD
2072000-03-17 Akim Demaille <akim@epita.fr>
208
aa5fd0ee
AD
209 * src/reader.c (copy_definition): Use copy_string and
210 copy_comment. Removed now unused `match', `ended',
211 `cplus_comment'.
ae3c3164
AD
212 (copy_comment, copy_string): Moved, to be visible from
213 copy_definition.
214
4dc58e7c
AD
2152000-03-17 Akim Demaille <akim@epita.fr>
216
aa5fd0ee
AD
217 * src/reader.c (copy_string): Declare `static inline'. No
218 problems with inline, since it is checked by configure.
4dc58e7c
AD
219 (copy_comment): Likewise.
220
0a6384c4
AD
2212000-03-17 Akim Demaille <akim@epita.fr>
222
aa5fd0ee 223 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 224
3cef001a
AD
2252000-03-17 Akim Demaille <akim@epita.fr>
226
aa5fd0ee 227 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
228 (copy_action): Use it. Removed now unused `match', `ended',
229 `cplus_comment'.
230 (copy_guard): Likewise.
231
ca36d2ef
AD
2322000-03-17 Akim Demaille <akim@epita.fr>
233
aa5fd0ee 234 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
235 (copy_action): Use it.
236 (copy_guard): Likewise.
237
6666f98f
AD
2382000-03-17 Akim Demaille <akim@epita.fr>
239
240 Change the handling of @s so that they behave exactly like $s.
241 There is now a pseudo variable @$ (readble and writable), location
242 of the lhs of the rule (by default ranging from the location of
243 the first symbol of the rhs, to the location of the last symbol,
244 or, if the rhs is empty, YYLLOC).
245
246 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
247 yyval.
248 (yyparse): When providing a default semantic action, provide a
249 default location action.
250 (after the $): No longer change `*YYLSP', just stack YYLOC the
251 same way you stack YYVAL.
252 * src/reader.c (read_declarations): Use warns.
253 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
254 (copy_action, case '@'): Likewise.
255 Use a standard error message, to save useless work from
256 translators.
257
41aca2e0
AD
2582000-03-17 Akim Demaille <akim@epita.fr>
259
aa5fd0ee
AD
260 * src/bison.s1: Formatting and cosmetics changes.
261 * src/reader.c: Likewise.
41aca2e0
AD
262 Update the Copyright notice.
263
dc08c1d5
AD
2642000-03-17 Akim Demaille <akim@epita.fr>
265
aa5fd0ee
AD
266 * src/bison.s1 (#line): All set to `#line' only, since the
267 Makefile now handles them.
dc08c1d5 268
9ee3c97b
AD
2692000-03-16 Akim Demaille <akim@epita.fr>
270
271 * src/output.c (output_rule_data): Output the documentation of
272 some of the tables.
273 (Copyright notice): Update.
274 Formatting changes.
275
0de741ca
AD
2762000-03-16 Akim Demaille <akim@epita.fr>
277
278 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
279 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
280 One `#if YYDEBUG' remains, since it uses variables which are
281 defined only if `YYDEBUG != 0'.
282
bb10be54
AD
2832000-03-16 Akim Demaille <akim@epita.fr>
284
285 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
286 and related variables so that the similarities are highlighted.
287
b07b484a
AD
2882000-03-16 Akim Demaille <akim@epita.fr>
289
290 * src/bison.s1: Properly indent CPP directives.
291
361f60b3
AD
2922000-03-16 Akim Demaille <akim@epita.fr>
293
294 * src/bison.s1: Properly indent the `alloca' CPP section.
295
8c44d3ec
AD
2962000-03-16 Akim Demaille <akim@epita.fr>
297
298 Do not hard code values of directories in `configure.in'.
299 Update the `configure' tool chain.
300
301 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
302 src/makefile.am.
303 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
304 (AC_OUTPUT): Add m4/Makefile.
305 Bump to bison 1.28a, 1.29 has never been released.
306 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
307 handled via src/Makefile.am.
308 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
309 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
310 autoheader.
311 * Makefile.am (SUBDIRS): Add m4.
312 (ACLOCAL_AM_FLAGS): New variable.
313 (AUTOMAKE_OPTIONS): Add check-news.
314 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
315 the proper line number and file name.
316 (DEFS): Propagate the location of bison library files and of the
317 locale files.
318 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
319 builddir.
320 * acinclude.m4: Remove, replaced by the directory m4.
321 * m4/Makefile.am (EXTRA_DIST): New variable.
322 * m4/gettext.m4: New file, from the fileutils.
323 * m4/lcmessage.m4: Likewise
324 * m4/progtest.m4: Likewise.
325 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
326
f95997e7
AD
3272000-03-10 Akim Demaille <akim@epita.fr>
328
329 * src/closure.c:
330 Formatting changes of various comments.
331 Respect the GNU coding standards at various places.
332 Don't use `_()' when no translation is needed.
333
3341999-12-13 Jesse Thilo <jthilo@gnu.org>
335
336 * src/files.c:
337 OS/2 honors TMPDIR environment variable.
338
3391999-12-13 Jesse Thilo <jthilo@gnu.org>
340
341 * doc/bison.texinfo: Tweaked spelling and grammar.
342 Updated ISBN.
343 Removed reference to price of printed copy.
344 Mention BISON_SIMPLE and BISON_HAIRY.
345
3461999-12-13 Jesse Thilo <jthilo@gnu.org>
347
348 * configure.in, NEWS:
349 Bison 1.29 released.
350
3511999-10-27 Jesse Thilo <jthilo@gnu.org>
352
353 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
354 Added reference card.
355
3561999-07-26 Jesse Thilo <jthilo@gnu.org>
357
358 * po/ru.po: Added Russian translation.
359
3601999-07-26 Jesse Thilo <jthilo@gnu.org>
361
362 * configure.in: Added Russian translation.
363
3641999-07-06 Jesse Thilo <jthilo@gnu.org>
365
366 * configure.in, NEWS, README:
367 Released version 1.28.
368
3691999-06-14 Jesse Thilo <jthilo@gnu.org>
370
371 * src/system.h:
372 Squashed redefinition warning on some systems.
373
374 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
375 Have configure build version string instead of relying on ANSI string
376 concatentation.
377
3781999-06-14 Jesse Thilo <jthilo@gnu.org>
379
380 * po/POTFILES.in: Got rid of version.c.
381
3821999-06-14 Jesse Thilo <jthilo@gnu.org>
383
384 * acconfig.h, configure.in:
385 Have configure build version string instead of relying on ANSI string
386 concatentation.
387
3881999-06-08 Jesse Thilo <jthilo@gnu.org>
389
390 * doc/bison.1:
391 Dropped mention of `+' for long-named options.
392
3931999-05-30 Jesse Thilo <jthilo@gnu.org>
394
395 * src/files.c: Added <unistd.h> for unlink().
396
397 * src/Makefile.am, src/system.h:
398 I18n fixes.
399
4001999-05-30 Jesse Thilo <jthilo@gnu.org>
401
402 * README: Added a FAQ list.
403
404 * configure.in, acconfig.h:
405 I18n fixes.
406
4071999-05-30 Jesse Thilo <jthilo@gnu.org>
408
409 * doc/FAQ, doc/Makefile.am:
410 Added a FAQ list.
411
4121999-05-19 Jesse Thilo <jthilo@gnu.org>
413
414 * src/alloc.h, src/symtab.h, src/version.c:
415 Protected inclusion of "config.h" with HAVE_CONFIG_H.
416
4171999-04-18 Jesse Thilo <jthilo@gnu.org>
418
419 * src/.cvsignore, src/Makefile.am:
420 Reorganized: sources in `src', documentation in `doc'.
421
422 * src/lex.c (literalchar):
423 fixed the code for escaping double quotes (thanks
424 Jonathan Czisny.)
425
4261999-04-18 Jesse Thilo <jthilo@gnu.org>
427
428 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
429 Adjusted paths to reflect directory reorganization.
430
4311999-04-18 Jesse Thilo <jthilo@gnu.org>
432
433 * doc/.cvsignore, doc/Makefile.am:
434 Reorganized: sources in `src', documentation in `doc'.
435
4361999-04-18 Jesse Thilo <jthilo@gnu.org>
437
438 * configure.in:
439 Updated AC_INIT file to reflect directory reorganization.
440
441 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
442 Reorganized: sources in `src', documentation in `doc'.
443
4441999-04-13 Jesse Thilo <jthilo@gnu.org>
445
446 * src/allocate.c:
447 Don't declare calloc() and realloc() if not necessary.
448
4491999-04-13 Jesse Thilo <jthilo@gnu.org>
450
451 * configure.in, acconfig.h, acinclude.m4:
452 Don't declare calloc() and realloc() if not necessary.
453
4541999-03-23 Jesse Thilo <jthilo@gnu.org>
455
456 * po/.cvsignore: Added i18n support.
457
4581999-03-23 Jesse Thilo <jthilo@gnu.org>
459
460 * acconfig.h, configure.in, Makefile.am:
461 Added i18n support.
462
4631999-03-22 Jesse Thilo <jthilo@gnu.org>
464
465 * src/bison.s1: Fixed #line numbers.
466
4671999-03-15 Jesse Thilo <jthilo@gnu.org>
468
469 * po/es.po, po/fr.po, po/nl.po, po/de.po:
470 Added PO files from Translation Project.
471
4721999-03-03 Jesse Thilo <jthilo@gnu.org>
473
474 * Makefile.am:
475 Added support for non-ANSI compilers (ansi2knr).
476
4771999-02-16 Jesse Thilo <jthilo@gnu.org>
478
479 * configure.in: Bumped version number to 1.27.
480
481 * Makefile.am:
482 Added `bison.simple' to list of files removed by `make distclean'.
483
4841999-02-12 Jesse Thilo <jthilo@gnu.org>
485
486 * src/files.c, src/files.h:
487 Defined locations of parser files in config.h instead of Makefile.
488
4891999-02-12 Jesse Thilo <jthilo@gnu.org>
490
491 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
492 Defined locations of parser files in config.h instead of Makefile.
493
4941999-02-09 Jesse Thilo <jthilo@gnu.org>
495
496 * Makefile.am:
497 Removed inappropriate use of $< macro.
498
4991999-02-05 Jesse Thilo <jthilo@gnu.org>
500
501 * po/Makefile.in.in, po/POTFILES.in:
502 Add `po' directory skeleton.
503
5041999-01-27 Jesse Thilo <jthilo@gnu.org>
505
506 * README: Document help-bison list.
507
508 * configure.in: Add check for mkstemp().
509
5101999-01-20 Jesse Thilo <jthilo@gnu.org>
511
512 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
513 Hush a few compiler warnings.
514
515 * src/files.c:
516 Add tryclose(), which verifies that fclose was successful.
517 Hush a couple of compiler warnings.
518
5191999-01-20 Jesse Thilo <jthilo@gnu.org>
520
521 * Makefile.am, OChangeLog:
522 ChangeLog is now automatically generated. Include the old version as
523 OChangeLog.
524
5251999-01-14 Jesse Thilo <jthilo@gnu.org>
526
527 * 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:
528 Update FSF address.
529
5301999-01-14 Jesse Thilo <jthilo@gnu.org>
531
532 * doc/bison.texinfo: Fix formatting glitch.
533
534 * doc/bison.texinfo: Update FSF address.
535
5361999-01-14 Jesse Thilo <jthilo@gnu.org>
537
538 * acconfig.h: Update FSF address.
539
5401999-01-08 Jesse Thilo <jthilo@gnu.org>
541
542 * src/system.h:
543 Don't define PACKAGE here, since config.h defines it.
544
5451998-12-30 Jesse Thilo <jthilo@gnu.org>
546
547 * src/reader.c: Update copyright date.
548
549 * src/main.c:
550 Ditch sprintf to statically-sized buffers in fatal/warn functions in
551 favor of output directly to stderr (avoids buffer overruns).
552
553 * src/reader.c: Some checks for premature EOF.
554
555 * 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:
556 Use prototypes if the compiler understands them.
557
558 * src/files.c: Honor TMPDIR on Unix hosts.
559 Use prototypes if the compiler understands them.
560
561 * src/reader.c:
562 Fix a couple of buffer overrun bugs.
563 Use prototypes if the compiler understands them.
564
565 * src/system.h: Include unistd.h and ctype.h.
566 Use #ifdef instead of #if for NLS symbols.
567
5681998-12-30 Jesse Thilo <jthilo@gnu.org>
569
570 * doc/bison.texinfo:
571 Delete comment "consider using @set for edition number, etc..." since
572 we now are doing so.
573
5741998-12-30 Jesse Thilo <jthilo@gnu.org>
575
576 * configure.in:
577 Use prototypes if the compiler understands them.
578
579 * NEWS: Document 1.26 highlights.
580
581 * Makefile.am: Require Automake 1.3 or later.
582
583 * acconfig.h:
584 Use prototypes if the compiler understands them.
585
5861998-12-29 Jesse Thilo <jthilo@gnu.org>
587
588 * src/version.c:
589 Use VERSION symbol from automake for version number.
590
5911998-12-29 Jesse Thilo <jthilo@gnu.org>
592
593 * acconfig.h, configure.in, version.cin:
594 Use VERSION symbol from automake for version number.
595
5961998-11-28 Jesse Thilo <jthilo@gnu.org>
597
598 * Makefile.am:
599 Distribute original version of simple parser (bison.s1), not built
600 version (bison.simple).
601
6021998-11-28 Jesse Thilo <jthilo@gnu.org>
603
604 * doc/bison.texinfo: Add info dir entry.
605
606 * doc/bison.texinfo:
607 Let automake put version number into documentation.
608
6091998-11-26 Jesse Thilo <jthilo@gnu.org>
610
611 * src/bison.cld, src/build.com, src/vmshlp.mar:
612 Add non-RCS files from /gd/gnu/bison.
613
6141998-11-26 Jesse Thilo <jthilo@gnu.org>
615
616 * doc/bison.1:
617 Document the BISON_HAIRY and BISON_SIMPLE variables.
618
6191998-11-25 Jesse Thilo <jthilo@gnu.org>
620
621 * src/version.c: Build version.c automatically.
622
623 * src/reader.c:
624 Fix token numbering (used to start at 258, not 257).
625
626 * src/system.h: Include config.h.
627
628 * src/getargs.c: Update bug report address.
629
630 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
631 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
632
6331998-11-25 Jesse Thilo <jthilo@gnu.org>
634
635 * Makefile.am:
636 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
637
638 * configure.in, version.cin:
639 Build version.c automatically.
640
641 * AUTHORS: Add AUTHORS file.
642
643 * README: Update bug report address.
644
645 * bison.simple:
646 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
647
648 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
649 Add automake stuff.
650
6511998-11-25 Jesse Thilo <jthilo@gnu.org>
652
653 * doc/bison.texinfo: Clean up some formatting.
654
6551998-05-05 Richard Stallman <rms@gnu.org>
656
657 * doc/bison.texinfo:
658 Explain better why to make a pure parser.
659
6601998-01-05 Richard Stallman <rms@gnu.org>
661
662 * src/files.c (openfiles):
663 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
664 find a temporary directory, if possible. Do not unlink files while
665 they are open.
666
6671997-08-25 Richard Stallman <rms@gnu.org>
668
669 * src/reader.c (stack_offset;):
670 Change some warni to warns.
671
672 * src/lex.c (literalchar): Use warns, not warni.
673
6741997-06-28 Richard Stallman <rms@gnu.org>
675
676 * src/bison.s1: Add a Bison version comment.
677
678 * src/main.c (fatal, warn, berror):
679 Use program_name.
680
6811997-06-28 Richard Stallman <rms@gnu.org>
682
683 * Makefile.in (bison_version): New variable.
684 (dist): Use that variable.
685 (bison.s1): Substitute the Bison version into bison.simple.
686
687 * bison.simple: Add a Bison version comment.
688
6891997-06-18 Richard Stallman <rms@gnu.org>
690
691 * src/main.c (fatal, warn, berror):
692 Make error messages standard.
693 (toomany): Improve error message text.
694
695 * 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:
696 new.h renamed to alloc.h.
697
6981997-06-18 Richard Stallman <rms@gnu.org>
699
700 * Makefile.in: new.h renamed to alloc.h.
701
7021997-05-24 Richard Stallman <rms@gnu.org>
703
704 * src/lex.c (literalchar):
705 Fix the code for escaping \, " and '.
706
707 (lex): Avoid trouble when there are many chars
708 to discard in a char literal with just several chars in it.
709
7101997-05-17 Richard Stallman <rms@gnu.org>
711
712 * src/bison.s1:
713 Use malloc, if using alloca is troublesome.
714 (YYSTACK_USE_ALLOCA): New flag macro.
715 Define it for some systems and compilers.
716 (YYSTACK_ALLOC): New macro.
717 (yyparse): Use YYSTACK_ALLOC to allocate stack.
718 If it was malloc'd, free it.
719
7201997-05-17 Richard Stallman <rms@gnu.org>
721
722 * bison.simple:
723 Use malloc, if using alloca is troublesome.
724 (YYSTACK_USE_ALLOCA): New flag macro.
725 Define it for some systems and compilers.
726 (YYSTACK_ALLOC): New macro.
727 (yyparse): Use YYSTACK_ALLOC to allocate stack.
728 If it was malloc'd, free it.
729
7301997-04-23 Richard Stallman <rms@gnu.org>
731
732 * src/bison.s1:
733 (alloca) [__hpux]: Always define as __builtin_alloca.
734
7351997-04-23 Richard Stallman <rms@gnu.org>
736
737 * bison.simple:
738 (alloca) [__hpux]: Always define as __builtin_alloca.
739
7401997-04-22 Richard Stallman <rms@gnu.org>
741
742 * src/bison.s1:
743 [__hpux]: Include alloca.h (right for HPUX 10)
744 instead of declaring alloca (right for HPUX 9).
745
746 * src/bison.s1 (__yy_memcpy):
747 Declare arg `count' as unsigned int.
748 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
749
7501997-04-22 Richard Stallman <rms@gnu.org>
751
752 * bison.simple:
753 [__hpux]: Include alloca.h (right for HPUX 10)
754 instead of declaring alloca (right for HPUX 9).
755
756 * bison.simple (__yy_memcpy):
757 Declare arg `count' as unsigned int.
758 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
759
7601997-01-03 Richard Stallman <rms@gnu.org>
761
762 * src/allocate.c: [__STDC__ or _MSC_VER]:
763 Declare calloc and realloc to return void *.
764
7651997-01-02 Richard Stallman <rms@gnu.org>
766
767 * src/system.h:
768 [_MSC_VER]: Include stdlib.h and process.h.
769 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
770
771 * src/main.c (main): Return FAILURE as a value.
772 (printable_version): Declare arg as int, not char.
773
7741997-01-02 Richard Stallman <rms@gnu.org>
775
776 * Makefile.in (dist):
777 Explicitly check for symlinks, and copy them.
778
7791996-12-19 Richard Stallman <rms@gnu.org>
780
781 * src/files.c:
782 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
783
7841996-12-18 Paul Eggert <eggert@gnu.org>
785
786 * src/bison.s1 (yyparse):
787 If __GNUC__ and YYPARSE_PARAM are both defined,
788 declare yyparse to have a void * argument.
789
7901996-12-18 Paul Eggert <eggert@gnu.org>
791
792 * bison.simple (yyparse):
793 If __GNUC__ and YYPARSE_PARAM are both defined,
794 declare yyparse to have a void * argument.
795
7961996-12-17 Richard Stallman <rms@gnu.org>
797
798 * src/reduce.c (nbits): Add some casts.
799
8001996-08-12 Richard Stallman <rms@gnu.org>
801
802 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
803
8041996-08-12 Richard Stallman <rms@gnu.org>
805
806 * bison.simple: Test _MSDOS as well as _MSDOS_.
807
8081996-07-31 Richard Stallman <rms@gnu.org>
809
810 * src/bison.s1:
811 [__sun && __i386]: Include alloca.h.
812
8131996-07-31 Richard Stallman <rms@gnu.org>
814
815 * bison.simple:
816 [__sun && __i386]: Include alloca.h.
817
8181996-07-30 Richard Stallman <rms@gnu.org>
819
820 * src/bison.s1: Comment change.
821
822 * src/bison.s1: Test _MSDOS_, not MSDOS.
823
8241996-07-30 Richard Stallman <rms@gnu.org>
825
826 * bison.simple: Comment change.
827
828 * bison.simple: Test _MSDOS_, not MSDOS.
829
8301996-06-01 Richard Stallman <rms@gnu.org>
831
832 * 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:
833 Insert `_' macro around many string constants.
834
835 * src/main.c:
836 Insert `_' macro around many string constants.
837
838 (main): Call setlocale, bindtextdomain and textdomain.
839
840 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
841 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
842 [ENABLE_NLS]: Include libintl.h.
843 [ENABLE_NLS] (gettext): Define.
844 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
845 (N_, PACKAGE, LOCALEDIR): New macros.
846
8471996-06-01 Richard Stallman <rms@gnu.org>
848
849 * POTFILES.in: New file.
850
851 * Makefile.in (allocate.o):
852 Define target explicitly.
853
854 * Makefile.in (CFLAGS): Set to @CFLAGS@.
855 (LDFLAGS): Set to @LDFLAGS@.
856 (configure): Run autoconf only if preceding `cd' succeeds.
857 (bison.s1): Redirect output to temporary file then move the
858 temporary to the target, rather than redirecting directly to bison.s1.
859 (clean): Remove config.status and config.log.
860 (distclean): Don't remove config.status here.
861
8621996-05-12 Richard Stallman <rms@gnu.org>
863
864 * src/bison.s1:
865 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
866
8671996-05-12 Richard Stallman <rms@gnu.org>
868
869 * bison.simple:
870 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
871
8721996-05-11 Richard Stallman <rms@gnu.org>
873
874 * src/bison.s1 (__yy_memcpy):
875 Really reorder the args, as was supposedly done on Feb 14 1995.
876 (yyparse): Calls changed accordingly.
877
8781996-05-11 Richard Stallman <rms@gnu.org>
879
880 * Makefile.in (dist): Don't use $(srcdir).
881
882 * bison.simple (__yy_memcpy):
883 Really reorder the args, as was supposedly done on Feb 14 1995.
884 (yyparse): Calls changed accordingly.
885
8861996-01-27 Richard Stallman <rms@gnu.org>
887
888 * src/output.c (output_rule_data):
889 Test YYERROR_VERBOSE in the conditional
890 around the definition of ttyname.
891
8921995-12-29 Richard Stallman <rms@gnu.org>
893
894 * src/bison.s1:
895 Fix line numbers in #line commands.
896
8971995-12-29 Richard Stallman <rms@gnu.org>
898
899 * bison.simple:
900 Fix line numbers in #line commands.
901
9021995-12-27 Richard Stallman <rms@gnu.org>
903
904 * src/bison.s1 (YYPARSE_PARAM_DECL):
905 In C++, make it always null.
906 (YYPARSE_PARAM_ARG): New macro.
907 (yyparse): Use YYPARSE_PARAM_ARG.
908
9091995-12-27 Richard Stallman <rms@gnu.org>
910
911 * bison.simple (YYPARSE_PARAM_DECL):
912 In C++, make it always null.
913 (YYPARSE_PARAM_ARG): New macro.
914 (yyparse): Use YYPARSE_PARAM_ARG.
915
9161995-11-29 Richard Stallman <rms@gnu.org>
917
918 * doc/bison.texinfo:
919 Describe literal string tokens, %raw, %no_lines, %token_table.
920
9211995-11-29 Daniel Hagerty <hag@gnu.org>
922
923 * doc/bison.texinfo: Fixed update date
924
9251995-10-16 Richard Stallman <rms@gnu.org>
926
927 * src/version.c: Version 1.25.
928
9291995-10-16 Richard Stallman <rms@gnu.org>
930
931 * NEWS: *** empty log message ***
932
9331995-10-16 Richard Stallman <rms@gnu.org>
934
935 * doc/bison.1, doc/bison.rnh:
936 Add new options.
937
9381995-10-15 Richard Stallman <rms@gnu.org>
939
940 * src/vmsgetargs.c, src/getargs.c:
941 Added -n, -k, and -raw switches.
942 (noparserflag, toknumflag, rawtoknumflag): New variables.
943
944 * src/symtab.h (SALIAS):
945 New #define for adding aliases to %token.
946 (struct bucket): Added `alias' field.
947
948 * src/reduce.c (reduce_grammar):
949 Revise error message.
950 (print_notices): Remove final `.' from error message.
951
952 * src/reader.c (reader_output_yylsp):
953 New function.
954 (readgram): Use `#if 0' around code that accepted %command
955 inside grammar rules: The documentation doesn't allow it,
956 and it will fail since the %command processors scan for the next %.
957 (parse_token_decl): Extended the %token
958 declaration to allow a multi-character symbol as an alias.
959 (parse_thong_decl): New function.
960 (read_declarations): Added %thong declarations.
961 (read_declarations): Handle NOOP to deal with allowing
962 % declarations as another means to specify the flags.
963 (readgram): Allow %prec prior to semantics embedded in a rule.
964 (skip_to_char, read_declarations, copy_definition)
965 (parse_token_decl, parse_start_decl, parse_type_decl)
966 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
967 (get_type_name, copy_guard, copy_action, readgram)
968 (get_type, packsymbols): Revised most error messages.
969 Changed `fatal' to `warnxxx' to avoid aborting for error.
970 Revised and use multiple warnxxx functions to avoid using VARARGS1.
971 (read_declarations): Improve the error message for
972 an invalid character. Do not abort.
973 (read_declarations, copy_guard, copy_action): Use
974 printable_version to avoid unprintable characters in printed output.
975 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
976 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
977 Allow the type of a non-terminal can be given
978 more than once, as long as all specifications give the same type.
979
980 * src/output.c:
981 (output_headers, output_trailers, output, output_gram)
982 (output_rule_data): Implement noparserflag variable.
983 Implement toknumflag variable.
984 (output): Call reader_output_yylsp to output LTYPESTR.
985
986 * src/main.c (main):
987 If reader sees an error, don't process the grammar.
988 (fatals): Updated to not use VARARGS1.
989 (printable_version, int_to_string, warn, warni, warns, warnss)
990 (warnsss): New error reporting functions. Avoid abort for error.
991
992 * src/lex.h:
993 Added THONG and NOOP for alias processing.
994 Added SETOPT for the new code that allows setting options with %flags.
995
996 * src/lex.c:
997 Include getopt.h. Add some extern decls.
998 (safegetc): New function to deal with EOF gracefully.
999 (literalchar); new function to deal with reading \ escapes.
1000 (lex): Use literalchar.
1001 (lex): Implemented "..." tokens.
1002 (literalchar, lex, parse_percent_token): Made tokenbuffer
1003 always contain the token. This includes growing the token
1004 buffer while reading an integer.
1005 (parse_percent_token): Replaced if-else statement with percent_table.
1006 (parse_percent_token): Added % declarations as another
1007 way to specify the flags -n, -l, and -r. Also added hooks for
1008 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1009 major changes to files.c.
1010 (lex) Retain in the incoming stream a character following
1011 an incorrect '/'.
1012 (skip_white_space, lex): Revised most error messages
1013 and changed fatal to warn to avoid aborting.
1014 (percent_table): Added %thong declarations.
1015
1016 * src/gram.h: Comment changes.
1017
1018 * src/files.c (openfiles, open_extra_files, done):
1019 Add faction flag
1020 and actfile file. Handle noparserflag. Both for -n switch.
1021
1022 * src/conflicts.c (resolve_sr_conflict):
1023 Remove use of alloca.
1024
10251995-06-01 Jim Meyering <meyering@gnu.org>
1026
1027 * doc/bison.texinfo: *** empty log message ***
1028
10291995-05-06 Richard Stallman <rms@gnu.org>
1030
1031 * src/bison.s1: Comment change.
1032
10331995-05-06 Richard Stallman <rms@gnu.org>
1034
1035 * bison.simple: Comment change.
1036
10371995-05-03 Richard Stallman <rms@gnu.org>
1038
1039 * src/version.c: Version now 1.24.
1040
1041 * src/bison.s1: Change distribution terms.
1042
1043 * src/version.c: Version now 1.23.
1044
10451995-05-03 Richard Stallman <rms@gnu.org>
1046
1047 * doc/bison.texinfo:
1048 Rewrite "Conditions for Using Bison".
1049 Update version to 1.24.
1050
10511995-05-03 Richard Stallman <rms@gnu.org>
1052
1053 * bison.simple: Change distribution terms.
1054
10551995-02-23 Richard Stallman <rms@gnu.org>
1056
1057 * src/files.c: Test __VMS_POSIX as well as VMS.
1058
10591995-02-14 Jim Meyering <meyering@gnu.org>
1060
1061 * src/bison.s1 (__yy_memcpy):
1062 Renamed from __yy_bcopy to avoid
1063 confusion. Reverse FROM and TO arguments to be consistent with
1064 those of memcpy.
1065
10661995-02-14 Jim Meyering <meyering@gnu.org>
1067
1068 * bison.simple (__yy_memcpy):
1069 Renamed from __yy_bcopy to avoid
1070 confusion. Reverse FROM and TO arguments to be consistent with
1071 those of memcpy.
1072
10731994-11-10 David J. MacKenzie <djm@gnu.org>
1074
1075 * NEWS: reformat
1076
1077 * NEWS: New file.
1078
1079 * Makefile.in (DISTFILES): Include NEWS.
1080
1081 * Makefile.in (DISTFILES):
1082 Include install-sh, not install.sh.
1083
1084 * configure.in: Update to Autoconf v2 macro names.
1085
10861994-10-05 David J. MacKenzie <djm@gnu.org>
1087
1088 * Makefile.in: fix typo
1089
1090 * Makefile.in (prefix, exec_prefix):
1091 Let configure set them.
1092
10931994-09-28 David J. MacKenzie <djm@gnu.org>
1094
1095 * Makefile.in: Set datadir to $(prefix)/share.
1096
10971994-09-15 Richard Stallman <rms@gnu.org>
1098
1099 * src/bison.s1:
1100 Update copyright notice and GPL version.
1101
11021994-09-15 Richard Stallman <rms@gnu.org>
1103
1104 * bison.simple:
1105 Update copyright notice and GPL version.
1106
11071994-07-12 Richard Stallman <rms@gnu.org>
1108
1109 * src/reduce.c, src/reader.c:
1110 entered into RCS
1111
11121994-05-05 David J. MacKenzie <djm@gnu.org>
1113
1114 * Makefile.in: entered into RCS
1115
11161994-03-26 Richard Stallman <rms@gnu.org>
1117
1118 * src/bison.s1: entered into RCS
1119
11201994-03-26 Richard Stallman <rms@gnu.org>
1121
1122 * bison.simple: entered into RCS
1123
11241994-03-25 Richard Stallman <rms@gnu.org>
1125
1126 * src/main.c: entered into RCS
1127
11281994-03-24 Richard Stallman <rms@gnu.org>
1129
1130 * src/conflicts.c: entered into RCS
1131
11321994-01-02 Richard Stallman <rms@gnu.org>
1133
1134 * Makefile.in: *** empty log message ***
1135
11361993-11-21 Richard Stallman <rms@gnu.org>
1137
1138 * src/bison.s1: *** empty log message ***
1139
11401993-11-21 Richard Stallman <rms@gnu.org>
1141
1142 * doc/bison.texinfo: entered into RCS
1143
1144 * doc/bison.texinfo: *** empty log message ***
1145
11461993-11-21 Richard Stallman <rms@gnu.org>
1147
1148 * bison.simple: *** empty log message ***
1149
11501993-10-25 David J. MacKenzie <djm@gnu.org>
1151
1152 * doc/bison.texinfo: *** empty log message ***
1153
11541993-10-19 Richard Stallman <rms@gnu.org>
1155
1156 * src/bison.s1: *** empty log message ***
1157
11581993-10-19 Richard Stallman <rms@gnu.org>
1159
1160 * bison.simple: *** empty log message ***
1161
11621993-10-14 Richard Stallman <rms@gnu.org>
1163
1164 * src/bison.s1: *** empty log message ***
1165
11661993-10-14 Richard Stallman <rms@gnu.org>
1167
1168 * bison.simple: *** empty log message ***
1169
11701993-09-14 David J. MacKenzie <djm@gnu.org>
1171
1172 * doc/bison.texinfo: *** empty log message ***
1173
11741993-09-13 Noah Friedman <friedman@gnu.org>
1175
1176 * Makefile.in: *** empty log message ***
1177
11781993-09-10 Richard Stallman <rms@gnu.org>
1179
1180 * src/conflicts.c: *** empty log message ***
1181
1182 * src/system.h: entered into RCS
1183
11841993-09-10 Richard Stallman <rms@gnu.org>
1185
1186 * doc/bison.1: entered into RCS
1187
11881993-09-06 Noah Friedman <friedman@gnu.org>
1189
1190 * src/version.c: entered into RCS
1191
11921993-09-06 Noah Friedman <friedman@gnu.org>
1193
1194 * Makefile.in: *** empty log message ***
1195
11961993-07-30 David J. MacKenzie <djm@gnu.org>
1197
1198 * Makefile.in: *** empty log message ***
1199
12001993-07-24 Richard Stallman <rms@gnu.org>
1201
1202 * src/bison.s1: *** empty log message ***
1203
12041993-07-24 Richard Stallman <rms@gnu.org>
1205
1206 * bison.simple: *** empty log message ***
1207
12081993-07-08 David J. MacKenzie <djm@gnu.org>
1209
1210 * Makefile.in: *** empty log message ***
1211
12121993-07-04 Richard Stallman <rms@gnu.org>
1213
1214 * src/bison.s1: *** empty log message ***
1215
12161993-07-04 Richard Stallman <rms@gnu.org>
1217
1218 * bison.simple: *** empty log message ***
1219
12201993-06-26 David J. MacKenzie <djm@gnu.org>
1221
1222 * src/getargs.c: entered into RCS
1223
12241993-06-26 David J. MacKenzie <djm@gnu.org>
1225
1226 * doc/bison.texinfo: *** empty log message ***
1227
1228 * doc/bison.1: New file.
1229
12301993-06-25 Richard Stallman <rms@gnu.org>
1231
1232 * src/getargs.c: New file.
1233
12341993-06-16 Richard Stallman <rms@gnu.org>
1235
1236 * src/bison.s1: *** empty log message ***
1237
12381993-06-16 Richard Stallman <rms@gnu.org>
1239
1240 * bison.simple: *** empty log message ***
1241
12421993-06-03 Richard Stallman <rms@gnu.org>
1243
1244 * src/bison.s1: New file.
1245
12461993-06-03 Richard Stallman <rms@gnu.org>
1247
1248 * doc/bison.texinfo: *** empty log message ***
1249
12501993-06-03 Richard Stallman <rms@gnu.org>
1251
1252 * bison.simple: New file.
1253
12541993-05-19 Richard Stallman <rms@gnu.org>
1255
1256 * doc/bison.texinfo: New file.
1257
12581993-05-07 Noah Friedman <friedman@gnu.org>
1259
1260 * Makefile.in: *** empty log message ***
1261
12621993-04-28 Noah Friedman <friedman@gnu.org>
1263
1264 * src/reader.c: *** empty log message ***
1265
12661993-04-23 Noah Friedman <friedman@gnu.org>
1267
1268 * src/alloc.h: entered into RCS
1269
12701993-04-20 David J. MacKenzie <djm@gnu.org>
1271
1272 * src/version.c: *** empty log message ***
1273
1274 * src/files.c, src/allocate.c:
1275 entered into RCS
1276
1277 * src/reader.c: *** empty log message ***
1278
1279 * src/lex.c: entered into RCS
1280
1281 * src/conflicts.c: New file.
1282
1283 * src/symtab.c: entered into RCS
1284
1285 * src/alloc.h: New file.
1286
1287 * src/LR0.c: entered into RCS
1288
12891993-04-18 Noah Friedman <friedman@gnu.org>
1290
1291 * src/reader.c: New file.
1292
1293 * src/version.c: *** empty log message ***
1294
12951993-04-18 Noah Friedman <friedman@gnu.org>
1296
1297 * Makefile.in: *** empty log message ***
1298
12991993-04-17 Noah Friedman <friedman@gnu.org>
1300
1301 * Makefile.in: *** empty log message ***
1302
13031993-04-15 Richard Stallman <rms@gnu.org>
1304
1305 * src/main.c, src/files.c:
1306 New file.
1307
13081993-04-15 Noah Friedman <friedman@gnu.org>
1309
1310 * configure.in: entered into RCS
1311
1312 * configure.in: *** empty log message ***
1313
1314 * configure.in: New file.
1315
13161993-04-14 Richard Stallman <rms@gnu.org>
1317
1318 * Makefile.in: New file.
1319
13201993-04-13 Richard Stallman <rms@gnu.org>
1321
1322 * src/version.c: New file.
1323
13241993-03-25 Richard Stallman <rms@gnu.org>
1325
1326 * src/output.c: entered into RCS
1327
13281992-09-25 Richard Stallman <rms@gnu.org>
1329
1330 * configure.bat: entered into RCS
1331
13321992-06-22 Richard Stallman <rms@gnu.org>
1333
1334 * src/vmsgetargs.c: entered into RCS
1335
13361992-06-22 Richard Stallman <rms@gnu.org>
1337
1338 * doc/bison.rnh: entered into RCS
1339
13401992-04-20 David J. MacKenzie <djm@gnu.org>
1341
1342 * README: entered into RCS
1343
13441992-01-22 Richard Stallman <rms@gnu.org>
1345
1346 * src/machine.h: entered into RCS
1347
13481991-12-21 Richard Stallman <rms@gnu.org>
1349
1350 * src/lalr.c, src/closure.c:
1351 entered into RCS
1352
13531991-12-20 Richard Stallman <rms@gnu.org>
1354
1355 * src/state.h: entered into RCS
1356
13571991-12-18 Richard Stallman <rms@gnu.org>
1358
1359 * src/print.c, src/nullable.c, src/derives.c:
1360 entered into RCS
1361
13621991-11-03 David J. MacKenzie <djm@gnu.org>
1363
1364 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1365 entered into RCS
1366
13671988-09-09 Richard Stallman <rms@gnu.org>
1368
1369 * src/bison.hairy: entered into RCS
1370
13711987-12-16 Richard Stallman <rms@gnu.org>
1372
1373 * REFERENCES: entered into RCS