]> git.saurik.com Git - bison.git/blob - ChangeLog
The location tracking mechanism is precious for parse error
[bison.git] / ChangeLog
1 2000-10-02 Akim Demaille <akim@epita.fr>
2
3 The location tracking mechanism is precious for parse error
4 messages. Nevertheless, it is enabled only when `@n' is used in
5 the grammar, which is a different issue (you can use it in error
6 message, but not in the grammar per se). Therefore, there should
7 be another means to enable it.
8
9 * src/getargs.c (getargs): Support `--locations'.
10 (usage): Report it.
11 * src/getargs.h (locationsflag): Export it.
12 * src/lex.c (percent_table): Support `%locations'.
13 * src/reader.c (yylsp_needed): Remove this variable, now replaced
14 with `locationsflag'.
15 * doc/bison.texinfo: Document `--locations' and `%locations'.
16 Sort the options.
17 * tests/calc.m4: Test it.
18
19 For regularity of the names, replace each
20 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22 In addition replace each `flag' with `_flag'.
23
24
25 2000-10-02 Akim Demaille <akim@epita.fr>
26
27 Also test parse error messages, including with YYERROR_VERBOSE.
28
29 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
30 associative).
31 Use it to check the computations.
32 Use it to check `nonassoc' is honored.
33 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
34 `--yyerror-verbose'.
35 (_AT_CHECK_CALC): Adjust to this option.
36 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
37
38
39 2000-10-02 Akim Demaille <akim@epita.fr>
40
41 Test also `--verbose', `--defines' and `--name-prefix'. Testing
42 the latter demonstrates a flaw in the handling of non debugging
43 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
44 was used in order to simplify:
45
46 #if YYDEBUG
47 if (yydebug)
48 {
49 ...
50 }
51 #endif
52
53 into
54
55 if (yydebug)
56 {
57 ...
58 }
59
60 unfortunately this leads to a CPP conflict when
61 `--name-prefix=foo' is used since it produces `#define yydebug
62 foodebug'.
63
64 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
65 (YYDPRINTF): New macro.
66 Spread its use.
67 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
68 the bison options.
69 Also test `--verbose', `--defines' and `--name-prefix'.
70
71
72 2000-10-02 Akim Demaille <akim@epita.fr>
73
74 Improve the readability of the produced parsers.
75
76 * src/bison.s1: Formatting changes.
77 Improve the comment related to the `$' mark.
78 (yydefault): Don't fall through to `yyresume': `goto' there.
79 * src/output.c (output_parser): When the `$' is met, skip the end
80 of its line.
81 New variable, `number_of_dollar_signs', to check there's exactly
82 one `$' in the parser skeleton.
83
84
85 2000-10-02 Akim Demaille <akim@epita.fr>
86
87 * lib/xstrdup.c: New file, from the fileutils.
88 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
89 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
90 instead of strlen + xmalloc + strcpy.
91 * src/symtab.c (copys): Remove, use xstrdup instead.
92
93
94 2000-10-02 Akim Demaille <akim@epita.fr>
95
96 * src/gram.h (associativity): New enum type which replaces the
97 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
98 `right_assoc', `left_assoc' and `non_assoc'.
99 Adjust all dependencies.
100 * src/reader.c: Formatting changes.
101 (LTYPESTR): Don't define it, use it as a literal in
102 `reader_output_yylsp'.
103 * src/symtab.h (symbol_class): New enum type which replaces the
104 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
105 `sunknown', `stoken and `snterm'.
106
107 2000-10-02 Akim Demaille <akim@epita.fr>
108
109 * src/getargs.c (fixed_outfiles): Rename as...
110 (yaccflag): for consistency and accuracy.
111 Adjust dependencies.
112
113
114 2000-10-02 Akim Demaille <akim@epita.fr>
115
116 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
117 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
118 difficult and introduced a lot of core dump. It turns out that
119 Bison used an implementation of `xmalloc' based on `calloc', and
120 at various places it does depend upon the initialization to 0. I
121 have not tried to isolate the pertinent places, and all the former
122 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
123 someone should address this issue.
124
125 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
126 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
127 files.
128 Adjust dependencies.
129 * src/warshall.h: New file.
130 Propagate.
131
132 2000-10-02 Akim Demaille <akim@epita.fr>
133
134 Various anti-`extern in *.c' changes.
135
136 * src/system.h: Include `assert.h'.
137
138
139 2000-10-02 Akim Demaille <akim@epita.fr>
140
141 * src/state.h (nstates, final_state, first_state, first_shift)
142 (first_reduction): Move their exportation from here...
143 * src/LR0.h: to here.
144 Adjust dependencies.
145 * src/getargs.c (statisticsflag): New variable.
146 Add support for `--statistics'.
147 Adjust dependencies.
148
149 Remove a lot of now useless `extern' statements in most files.
150
151
152 2000-10-02 Akim Demaille <akim@epita.fr>
153
154 * src/LR0.h: New file.
155 Propagate its use.
156
157
158 2000-10-02 Akim Demaille <akim@epita.fr>
159
160 * src/print.h: New file.
161 Propagate its use.
162 * src/print.c: Formatting and ordering changes.
163 (verbose, terse): Replace with...
164 (print_results): this new function.
165 Adjust dependencies.
166
167
168 2000-10-02 Akim Demaille <akim@epita.fr>
169
170 * src/conflicts.c (conflict_report): New function.
171 (conflict_log, verbose_conflict_log): Replace with...
172 (print_conflicts): this function.
173 Adjust dependencies.
174 * src/conflicts.h: New file.
175 Propagate its inclusion.
176
177
178 2000-10-02 Akim Demaille <akim@epita.fr>
179
180 * src/nullable.h: New file.
181 Propagate its inclusion.
182 * src/nullable.c: Formatting changes.
183
184
185 2000-10-02 Akim Demaille <akim@epita.fr>
186
187 * src/reduce.h: New file.
188 Propagate its inclusion.
189 * src/reduce.c: Topological sort and other formatting changes.
190 (bool, TRUE, FALSE): Move their definition to...
191 * src/system.h: here.
192
193
194 2000-10-02 Akim Demaille <akim@epita.fr>
195
196 * src/files.c: Formatting changes.
197 (tryopen, tryclose, openfiles): Rename as...
198 (xfopen, xfclose, open_files): this.
199 (stringappend): static.
200 * src/files.h: Complete the list of exported symbols.
201 Propagate its use.
202
203
204 2000-10-02 Akim Demaille <akim@epita.fr>
205
206 * src/reader.h: New file.
207 Propagate its use instead of tedious list of `extern' and
208 prototypes.
209 * src/reader.c: Formatting changes, topological sort,
210 s/register//.
211
212
213 2000-10-02 Akim Demaille <akim@epita.fr>
214
215 * src/lex.h: Prototype `lex.c' exported functions.
216 * src/reader.c: Adjust.
217 * src/lex.c: Formatting changes.
218 (safegetc): Rename as...
219 (xgetc): this.
220
221
222 2000-10-02 Akim Demaille <akim@epita.fr>
223
224 * src/lalr.h: New file.
225 Propagate its inclusion instead of prototypes and `extern'.
226 * src/lalr.c: Formatting changes, topological sorting etc.
227
228
229 2000-10-02 Akim Demaille <akim@epita.fr>
230
231 * src/output.c (token_actions): Introduce a temporary array,
232 YYDEFACT, that makes it possible for this function to use
233 output_short_table.
234
235
236 2000-10-02 Akim Demaille <akim@epita.fr>
237
238 `user_toknums' is output as a `short[]' in `output.c', while it is
239 defined as a `int[]' in `reader.c'. For consistency with the
240 other output tables, `user_toknums' is now defined as a table of
241 shorts.
242
243 * src/reader.c (user_toknums): Be a short table instead of an int
244 table.
245 Adjust dependencies.
246
247 Factor the short table outputs.
248
249 * src/output.c (output_short_table): New function.
250 * src/output.c (output_gram, output_stos, output_rule_data)
251 (output_base, output_table, output_check): Use it.
252
253 2000-10-02 Akim Demaille <akim@epita.fr>
254
255 * src/output.c (output): Topological sort of the functions, in
256 order to get rid of the `static' prototypes.
257 No longer use `register'.
258 * src/output.h: New file.
259 Propagate its inclusion in files explicitly prototyping functions
260 from output.c.
261
262 2000-09-21 Akim Demaille <akim@epita.fr>
263
264 * src/atgeneral.m4: Update from Autoconf.
265
266 2000-09-21 Akim Demaille <akim@epita.fr>
267
268 * src/closure.h: New file.
269 * src/closure.c: Formatting changes, topological sort over the
270 functions, use of closure.h.
271 (initialize_closure, finalize_closure): Rename as...
272 (new_closure, free_closure): these. Adjust dependencies.
273 * src/LR0.c: Formatting changes, topological sort, use of
274 cloture.h.
275 (initialize_states): Rename as...
276 (new_states): this.
277 * src/Makefile.am (noinst_HEADERS): Adjust.
278
279 2000-09-20 Akim Demaille <akim@epita.fr>
280
281 * src/acconfig.h: Don't protect config.h against multiple
282 inclusion.
283 Don't define PARAMS.
284 * src/system.h: Define PARAMS.
285 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
286 purpose of config.h. system.h must not try to fix wrong
287 definitions in config.h.
288
289 2000-09-20 Akim Demaille <akim@epita.fr>
290
291 * src/derives.h: New file.
292 * src/main.c, src/derives.h: Use it.
293 Formatting changes.
294 * src/Makefile.am (noinst_HEADERS): Adjust.
295
296 2000-09-20 Akim Demaille <akim@epita.fr>
297
298 * tests/atgeneral.m4: Update from Autoconf.
299 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
300 (AT_CHECK_CALC): New macros.
301 Use these macros to test bison with options `', `--raw',
302 `--debug', `--yacc', `--yacc --debug'.
303
304 2000-09-19 Akim Demaille <akim@epita.fr>
305
306 * src/output.c: Formatting changes.
307 * src/machine.h: Remove, leaving its contents in...
308 * src/system.h: here.
309 Include stdio.h.
310 Adjust all dependencies on stdio.h and machine.h.
311 * src/getargs.h: New file.
312 Let all `extern' declarations about getargs.c be replaced with
313 inclusion of `getargs.h'.
314 * src/Makefile.am (noinst_HEADERS): Adjust.
315
316 * tests/calc.m4 (yyin): Be initialized in main, not on the global
317 scope.
318 (yyerror): Returns void, not int.
319 * doc/bison.texinfo: Formatting changes.
320
321 2000-09-19 Akim Demaille <akim@epita.fr>
322
323 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
324 portable.
325
326 2000-09-18 Akim Demaille <akim@epita.fr>
327
328 * configure.in: Append WARNING_CFLAGS to CFLAGS.
329 * src/Makefile.am (INCLUDES): Don't.
330 Be ready to fetch headers in lib/.
331
332 2000-09-18 Akim Demaille <akim@epita.fr>
333
334 * doc/bison.texinfo: Update the copyright.
335 ANSIfy and GNUify the examples.
336 Remove the old menu.
337
338 2000-09-18 Akim Demaille <akim@epita.fr>
339
340 First set of tests: use the `calc' example from the documentation.
341
342 * src/bison.s1 (yyparse): Condition the code using `yytname' which
343 is defined only when YYDEBUG is.
344 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
345 * src/files.c (tryopen, tryclose): Formatting changes.
346 Move to the top and be static.
347 * src/reader.c (read_signed_integer): Likewise.
348 * tests/calc.m4: New file.
349 * Makefile.am, suite.m4: Adjust.
350 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
351
352 2000-09-18 Akim Demaille <akim@epita.fr>
353
354 Add support for an Autotest test suite for Bison.
355
356 * m4/m4.m4, m4/atconfig.m4: New files.
357 * m4/Makefile.am (EXTRA_DIST): Adjust.
358 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
359 files.
360 * src/getargs.c: Display a more standard --version message.
361 * src/reader.c (reader): Formatting changes.
362 No longer depend upon VERSION_STRING.
363 * configure.in: No longer use `dnl'.
364 Set up the test suite and the new directory `tests/.
365 (VERSION_STRING): Remove.
366
367 2000-04-14 Akim Demaille <akim@epita.fr>
368
369 * src/reader.c (copy_comment2): New function, same as former
370 `copy_comment', but outputs into two FILE *.
371 (copy_comment): Use it.
372 (parse_union_decl): Use it.
373 (get_type, parse_start_decl): Use the same `invalid' message.
374 (parse_start_decl, parse_union_decl): Use the same `multiple'
375 message.
376 (parse_union_decl, copy_guard, copy_action): Use the same
377 `unmatched' message.
378 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
379
380 2000-03-31 Akim Demaille <akim@epita.fr>
381
382 * src/files.c (tryopen, tryclose): Move to the top.
383 Be static.
384
385 2000-03-31 Akim Demaille <akim@epita.fr>
386
387 * src/main.c (main): Don't call `done', exit does it.
388
389 2000-03-31 Akim Demaille <akim@epita.fr>
390
391 * allocate.c: s/return (foo)/return foo/.
392 * lalr.c: Likewise.
393 * LR0.c: Likewise.
394 * output.c: Likewise.
395 * reader.c: Likewise.
396 * symtab.c: Likewise.
397 * vmsgetargs.c: Likewise.
398
399 2000-03-31 Akim Demaille <akim@epita.fr>
400
401 Clean up the error reporting functions.
402
403 * src/report.c: New file.
404 * src/report.h: Likewise.
405 * src/Makefile.am: Adjust.
406 * m4/error.m4: New file.
407 * m4/Makefile.am: Adjust.
408 * configure.in (jm_PREREQ_ERROR): Call it.
409 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
410 Remove.
411 (fatal, fatals): Remove. All callers use complain.c::fatal.
412 (warn, warni, warns, warnss, warnss): Remove. All callers use
413 complain.c::complain.
414 (toomany): Remove, use fatal instead.
415 * src/files.c (done): No argument, use complain_message_count.
416 * src/main.c (main): Register `done' to `atexit'.
417
418 * src/getargs.c (usage): More `fputs', less `fprintf'.
419
420 2000-03-28 Akim Demaille <akim@epita.fr>
421
422 * lib/: New directory.
423 * Makefile.am (SUBDIRS): Adjust.
424 * configure.in: Adjust.
425 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
426 useless.
427 * src/alloca.c: Moved to lib/.
428 * src/getopt.c: Likewise.
429 * src/getopt1.c: Likewise.
430 * src/getopt.h: Likewise.
431 * src/ansi2knr.c: Likewise.
432 * src/ansi2knr.1: Likewise.
433 * src/Makefile.am: Adjust.
434 * lib/Makefile.am: New file.
435
436 2000-03-28 Akim Demaille <akim@epita.fr>
437
438 * src/getargs.c (usage): Refresh the help message.
439
440 2000-03-17 Akim Demaille <akim@epita.fr>
441
442 * src/getopt1.c: Updated from textutils 2.0e
443 * src/getopt.c: Likewise.
444 * src/getopt.h: Likewise.
445
446 2000-03-17 Akim Demaille <akim@epita.fr>
447
448 * src/Makefile.am (bison.simple): Fix the awk program: quote only
449 the file name, not the whole `#line LINE FILE'.
450
451 2000-03-17 Akim Demaille <akim@epita.fr>
452
453 On syntax errors, report the token on which we choked.
454
455 * src/bison.s1 (yyparse): In the label yyerrlab, when
456 YYERROR_VERBOSE, add yychar in msg.
457
458 2000-03-17 Akim Demaille <akim@epita.fr>
459
460 * src/reader.c (copy_at): New function.
461 (copy_guard): Use it.
462 (copy_action): Use it.
463
464 2000-03-17 Akim Demaille <akim@epita.fr>
465
466 Be kind to translators, save some useless translations.
467
468 * src/main.c (banner): New function.
469 (fatal_banner): Use it.
470 (warn_banner): Use it.
471
472 2000-03-17 Akim Demaille <akim@epita.fr>
473
474 * src/reader.c (copy_definition): Use copy_string and
475 copy_comment. Removed now unused `match', `ended',
476 `cplus_comment'.
477 (copy_comment, copy_string): Moved, to be visible from
478 copy_definition.
479
480 2000-03-17 Akim Demaille <akim@epita.fr>
481
482 * src/reader.c (copy_string): Declare `static inline'. No
483 problems with inline, since it is checked by configure.
484 (copy_comment): Likewise.
485
486 2000-03-17 Akim Demaille <akim@epita.fr>
487
488 * src/reader.c (packsymbols): Formatting changes.
489
490 2000-03-17 Akim Demaille <akim@epita.fr>
491
492 * src/reader.c (copy_comment): New function, factored out from:
493 (copy_action): Use it. Removed now unused `match', `ended',
494 `cplus_comment'.
495 (copy_guard): Likewise.
496
497 2000-03-17 Akim Demaille <akim@epita.fr>
498
499 * src/reader.c (copy_string): New function, factored out from:
500 (copy_action): Use it.
501 (copy_guard): Likewise.
502
503 2000-03-17 Akim Demaille <akim@epita.fr>
504
505 Change the handling of @s so that they behave exactly like $s.
506 There is now a pseudo variable @$ (readble and writable), location
507 of the lhs of the rule (by default ranging from the location of
508 the first symbol of the rhs, to the location of the last symbol,
509 or, if the rhs is empty, YYLLOC).
510
511 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
512 yyval.
513 (yyparse): When providing a default semantic action, provide a
514 default location action.
515 (after the $): No longer change `*YYLSP', just stack YYLOC the
516 same way you stack YYVAL.
517 * src/reader.c (read_declarations): Use warns.
518 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
519 (copy_action, case '@'): Likewise.
520 Use a standard error message, to save useless work from
521 translators.
522
523 2000-03-17 Akim Demaille <akim@epita.fr>
524
525 * src/bison.s1: Formatting and cosmetics changes.
526 * src/reader.c: Likewise.
527 Update the Copyright notice.
528
529 2000-03-17 Akim Demaille <akim@epita.fr>
530
531 * src/bison.s1 (#line): All set to `#line' only, since the
532 Makefile now handles them.
533
534 2000-03-16 Akim Demaille <akim@epita.fr>
535
536 * src/output.c (output_rule_data): Output the documentation of
537 some of the tables.
538 (Copyright notice): Update.
539 Formatting changes.
540
541 2000-03-16 Akim Demaille <akim@epita.fr>
542
543 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
544 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
545 One `#if YYDEBUG' remains, since it uses variables which are
546 defined only if `YYDEBUG != 0'.
547
548 2000-03-16 Akim Demaille <akim@epita.fr>
549
550 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
551 and related variables so that the similarities are highlighted.
552
553 2000-03-16 Akim Demaille <akim@epita.fr>
554
555 * src/bison.s1: Properly indent CPP directives.
556
557 2000-03-16 Akim Demaille <akim@epita.fr>
558
559 * src/bison.s1: Properly indent the `alloca' CPP section.
560
561 2000-03-16 Akim Demaille <akim@epita.fr>
562
563 Do not hard code values of directories in `configure.in'.
564 Update the `configure' tool chain.
565
566 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
567 src/makefile.am.
568 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
569 (AC_OUTPUT): Add m4/Makefile.
570 Bump to bison 1.28a, 1.29 has never been released.
571 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
572 handled via src/Makefile.am.
573 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
574 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
575 autoheader.
576 * Makefile.am (SUBDIRS): Add m4.
577 (ACLOCAL_AM_FLAGS): New variable.
578 (AUTOMAKE_OPTIONS): Add check-news.
579 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
580 the proper line number and file name.
581 (DEFS): Propagate the location of bison library files and of the
582 locale files.
583 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
584 builddir.
585 * acinclude.m4: Remove, replaced by the directory m4.
586 * m4/Makefile.am (EXTRA_DIST): New variable.
587 * m4/gettext.m4: New file, from the fileutils.
588 * m4/lcmessage.m4: Likewise
589 * m4/progtest.m4: Likewise.
590 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
591
592 2000-03-10 Akim Demaille <akim@epita.fr>
593
594 * src/closure.c:
595 Formatting changes of various comments.
596 Respect the GNU coding standards at various places.
597 Don't use `_()' when no translation is needed.
598
599 1999-12-13 Jesse Thilo <jthilo@gnu.org>
600
601 * src/files.c:
602 OS/2 honors TMPDIR environment variable.
603
604 1999-12-13 Jesse Thilo <jthilo@gnu.org>
605
606 * doc/bison.texinfo: Tweaked spelling and grammar.
607 Updated ISBN.
608 Removed reference to price of printed copy.
609 Mention BISON_SIMPLE and BISON_HAIRY.
610
611 1999-12-13 Jesse Thilo <jthilo@gnu.org>
612
613 * configure.in, NEWS:
614 Bison 1.29 released.
615
616 1999-10-27 Jesse Thilo <jthilo@gnu.org>
617
618 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
619 Added reference card.
620
621 1999-07-26 Jesse Thilo <jthilo@gnu.org>
622
623 * po/ru.po: Added Russian translation.
624
625 1999-07-26 Jesse Thilo <jthilo@gnu.org>
626
627 * configure.in: Added Russian translation.
628
629 1999-07-06 Jesse Thilo <jthilo@gnu.org>
630
631 * configure.in, NEWS, README:
632 Released version 1.28.
633
634 1999-06-14 Jesse Thilo <jthilo@gnu.org>
635
636 * src/system.h:
637 Squashed redefinition warning on some systems.
638
639 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
640 Have configure build version string instead of relying on ANSI string
641 concatentation.
642
643 1999-06-14 Jesse Thilo <jthilo@gnu.org>
644
645 * po/POTFILES.in: Got rid of version.c.
646
647 1999-06-14 Jesse Thilo <jthilo@gnu.org>
648
649 * acconfig.h, configure.in:
650 Have configure build version string instead of relying on ANSI string
651 concatentation.
652
653 1999-06-08 Jesse Thilo <jthilo@gnu.org>
654
655 * doc/bison.1:
656 Dropped mention of `+' for long-named options.
657
658 1999-05-30 Jesse Thilo <jthilo@gnu.org>
659
660 * src/files.c: Added <unistd.h> for unlink().
661
662 * src/Makefile.am, src/system.h:
663 I18n fixes.
664
665 1999-05-30 Jesse Thilo <jthilo@gnu.org>
666
667 * README: Added a FAQ list.
668
669 * configure.in, acconfig.h:
670 I18n fixes.
671
672 1999-05-30 Jesse Thilo <jthilo@gnu.org>
673
674 * doc/FAQ, doc/Makefile.am:
675 Added a FAQ list.
676
677 1999-05-19 Jesse Thilo <jthilo@gnu.org>
678
679 * src/alloc.h, src/symtab.h, src/version.c:
680 Protected inclusion of "config.h" with HAVE_CONFIG_H.
681
682 1999-04-18 Jesse Thilo <jthilo@gnu.org>
683
684 * src/.cvsignore, src/Makefile.am:
685 Reorganized: sources in `src', documentation in `doc'.
686
687 * src/lex.c (literalchar):
688 fixed the code for escaping double quotes (thanks
689 Jonathan Czisny.)
690
691 1999-04-18 Jesse Thilo <jthilo@gnu.org>
692
693 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
694 Adjusted paths to reflect directory reorganization.
695
696 1999-04-18 Jesse Thilo <jthilo@gnu.org>
697
698 * doc/.cvsignore, doc/Makefile.am:
699 Reorganized: sources in `src', documentation in `doc'.
700
701 1999-04-18 Jesse Thilo <jthilo@gnu.org>
702
703 * configure.in:
704 Updated AC_INIT file to reflect directory reorganization.
705
706 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
707 Reorganized: sources in `src', documentation in `doc'.
708
709 1999-04-13 Jesse Thilo <jthilo@gnu.org>
710
711 * src/allocate.c:
712 Don't declare calloc() and realloc() if not necessary.
713
714 1999-04-13 Jesse Thilo <jthilo@gnu.org>
715
716 * configure.in, acconfig.h, acinclude.m4:
717 Don't declare calloc() and realloc() if not necessary.
718
719 1999-03-23 Jesse Thilo <jthilo@gnu.org>
720
721 * po/.cvsignore: Added i18n support.
722
723 1999-03-23 Jesse Thilo <jthilo@gnu.org>
724
725 * acconfig.h, configure.in, Makefile.am:
726 Added i18n support.
727
728 1999-03-22 Jesse Thilo <jthilo@gnu.org>
729
730 * src/bison.s1: Fixed #line numbers.
731
732 1999-03-15 Jesse Thilo <jthilo@gnu.org>
733
734 * po/es.po, po/fr.po, po/nl.po, po/de.po:
735 Added PO files from Translation Project.
736
737 1999-03-03 Jesse Thilo <jthilo@gnu.org>
738
739 * Makefile.am:
740 Added support for non-ANSI compilers (ansi2knr).
741
742 1999-02-16 Jesse Thilo <jthilo@gnu.org>
743
744 * configure.in: Bumped version number to 1.27.
745
746 * Makefile.am:
747 Added `bison.simple' to list of files removed by `make distclean'.
748
749 1999-02-12 Jesse Thilo <jthilo@gnu.org>
750
751 * src/files.c, src/files.h:
752 Defined locations of parser files in config.h instead of Makefile.
753
754 1999-02-12 Jesse Thilo <jthilo@gnu.org>
755
756 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
757 Defined locations of parser files in config.h instead of Makefile.
758
759 1999-02-09 Jesse Thilo <jthilo@gnu.org>
760
761 * Makefile.am:
762 Removed inappropriate use of $< macro.
763
764 1999-02-05 Jesse Thilo <jthilo@gnu.org>
765
766 * po/Makefile.in.in, po/POTFILES.in:
767 Add `po' directory skeleton.
768
769 1999-01-27 Jesse Thilo <jthilo@gnu.org>
770
771 * README: Document help-bison list.
772
773 * configure.in: Add check for mkstemp().
774
775 1999-01-20 Jesse Thilo <jthilo@gnu.org>
776
777 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
778 Hush a few compiler warnings.
779
780 * src/files.c:
781 Add tryclose(), which verifies that fclose was successful.
782 Hush a couple of compiler warnings.
783
784 1999-01-20 Jesse Thilo <jthilo@gnu.org>
785
786 * Makefile.am, OChangeLog:
787 ChangeLog is now automatically generated. Include the old version as
788 OChangeLog.
789
790 1999-01-14 Jesse Thilo <jthilo@gnu.org>
791
792 * 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:
793 Update FSF address.
794
795 1999-01-14 Jesse Thilo <jthilo@gnu.org>
796
797 * doc/bison.texinfo: Fix formatting glitch.
798
799 * doc/bison.texinfo: Update FSF address.
800
801 1999-01-14 Jesse Thilo <jthilo@gnu.org>
802
803 * acconfig.h: Update FSF address.
804
805 1999-01-08 Jesse Thilo <jthilo@gnu.org>
806
807 * src/system.h:
808 Don't define PACKAGE here, since config.h defines it.
809
810 1998-12-30 Jesse Thilo <jthilo@gnu.org>
811
812 * src/reader.c: Update copyright date.
813
814 * src/main.c:
815 Ditch sprintf to statically-sized buffers in fatal/warn functions in
816 favor of output directly to stderr (avoids buffer overruns).
817
818 * src/reader.c: Some checks for premature EOF.
819
820 * 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:
821 Use prototypes if the compiler understands them.
822
823 * src/files.c: Honor TMPDIR on Unix hosts.
824 Use prototypes if the compiler understands them.
825
826 * src/reader.c:
827 Fix a couple of buffer overrun bugs.
828 Use prototypes if the compiler understands them.
829
830 * src/system.h: Include unistd.h and ctype.h.
831 Use #ifdef instead of #if for NLS symbols.
832
833 1998-12-30 Jesse Thilo <jthilo@gnu.org>
834
835 * doc/bison.texinfo:
836 Delete comment "consider using @set for edition number, etc..." since
837 we now are doing so.
838
839 1998-12-30 Jesse Thilo <jthilo@gnu.org>
840
841 * configure.in:
842 Use prototypes if the compiler understands them.
843
844 * NEWS: Document 1.26 highlights.
845
846 * Makefile.am: Require Automake 1.3 or later.
847
848 * acconfig.h:
849 Use prototypes if the compiler understands them.
850
851 1998-12-29 Jesse Thilo <jthilo@gnu.org>
852
853 * src/version.c:
854 Use VERSION symbol from automake for version number.
855
856 1998-12-29 Jesse Thilo <jthilo@gnu.org>
857
858 * acconfig.h, configure.in, version.cin:
859 Use VERSION symbol from automake for version number.
860
861 1998-11-28 Jesse Thilo <jthilo@gnu.org>
862
863 * Makefile.am:
864 Distribute original version of simple parser (bison.s1), not built
865 version (bison.simple).
866
867 1998-11-28 Jesse Thilo <jthilo@gnu.org>
868
869 * doc/bison.texinfo: Add info dir entry.
870
871 * doc/bison.texinfo:
872 Let automake put version number into documentation.
873
874 1998-11-26 Jesse Thilo <jthilo@gnu.org>
875
876 * src/bison.cld, src/build.com, src/vmshlp.mar:
877 Add non-RCS files from /gd/gnu/bison.
878
879 1998-11-26 Jesse Thilo <jthilo@gnu.org>
880
881 * doc/bison.1:
882 Document the BISON_HAIRY and BISON_SIMPLE variables.
883
884 1998-11-25 Jesse Thilo <jthilo@gnu.org>
885
886 * src/version.c: Build version.c automatically.
887
888 * src/reader.c:
889 Fix token numbering (used to start at 258, not 257).
890
891 * src/system.h: Include config.h.
892
893 * src/getargs.c: Update bug report address.
894
895 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
896 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
897
898 1998-11-25 Jesse Thilo <jthilo@gnu.org>
899
900 * Makefile.am:
901 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
902
903 * configure.in, version.cin:
904 Build version.c automatically.
905
906 * AUTHORS: Add AUTHORS file.
907
908 * README: Update bug report address.
909
910 * bison.simple:
911 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
912
913 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
914 Add automake stuff.
915
916 1998-11-25 Jesse Thilo <jthilo@gnu.org>
917
918 * doc/bison.texinfo: Clean up some formatting.
919
920 1998-05-05 Richard Stallman <rms@gnu.org>
921
922 * doc/bison.texinfo:
923 Explain better why to make a pure parser.
924
925 1998-01-05 Richard Stallman <rms@gnu.org>
926
927 * src/files.c (openfiles):
928 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
929 find a temporary directory, if possible. Do not unlink files while
930 they are open.
931
932 1997-08-25 Richard Stallman <rms@gnu.org>
933
934 * src/reader.c (stack_offset;):
935 Change some warni to warns.
936
937 * src/lex.c (literalchar): Use warns, not warni.
938
939 1997-06-28 Richard Stallman <rms@gnu.org>
940
941 * src/bison.s1: Add a Bison version comment.
942
943 * src/main.c (fatal, warn, berror):
944 Use program_name.
945
946 1997-06-28 Richard Stallman <rms@gnu.org>
947
948 * Makefile.in (bison_version): New variable.
949 (dist): Use that variable.
950 (bison.s1): Substitute the Bison version into bison.simple.
951
952 * bison.simple: Add a Bison version comment.
953
954 1997-06-18 Richard Stallman <rms@gnu.org>
955
956 * src/main.c (fatal, warn, berror):
957 Make error messages standard.
958 (toomany): Improve error message text.
959
960 * 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:
961 new.h renamed to alloc.h.
962
963 1997-06-18 Richard Stallman <rms@gnu.org>
964
965 * Makefile.in: new.h renamed to alloc.h.
966
967 1997-05-24 Richard Stallman <rms@gnu.org>
968
969 * src/lex.c (literalchar):
970 Fix the code for escaping \, " and '.
971
972 (lex): Avoid trouble when there are many chars
973 to discard in a char literal with just several chars in it.
974
975 1997-05-17 Richard Stallman <rms@gnu.org>
976
977 * src/bison.s1:
978 Use malloc, if using alloca is troublesome.
979 (YYSTACK_USE_ALLOCA): New flag macro.
980 Define it for some systems and compilers.
981 (YYSTACK_ALLOC): New macro.
982 (yyparse): Use YYSTACK_ALLOC to allocate stack.
983 If it was malloc'd, free it.
984
985 1997-05-17 Richard Stallman <rms@gnu.org>
986
987 * bison.simple:
988 Use malloc, if using alloca is troublesome.
989 (YYSTACK_USE_ALLOCA): New flag macro.
990 Define it for some systems and compilers.
991 (YYSTACK_ALLOC): New macro.
992 (yyparse): Use YYSTACK_ALLOC to allocate stack.
993 If it was malloc'd, free it.
994
995 1997-04-23 Richard Stallman <rms@gnu.org>
996
997 * src/bison.s1:
998 (alloca) [__hpux]: Always define as __builtin_alloca.
999
1000 1997-04-23 Richard Stallman <rms@gnu.org>
1001
1002 * bison.simple:
1003 (alloca) [__hpux]: Always define as __builtin_alloca.
1004
1005 1997-04-22 Richard Stallman <rms@gnu.org>
1006
1007 * src/bison.s1:
1008 [__hpux]: Include alloca.h (right for HPUX 10)
1009 instead of declaring alloca (right for HPUX 9).
1010
1011 * src/bison.s1 (__yy_memcpy):
1012 Declare arg `count' as unsigned int.
1013 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1014
1015 1997-04-22 Richard Stallman <rms@gnu.org>
1016
1017 * bison.simple:
1018 [__hpux]: Include alloca.h (right for HPUX 10)
1019 instead of declaring alloca (right for HPUX 9).
1020
1021 * bison.simple (__yy_memcpy):
1022 Declare arg `count' as unsigned int.
1023 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1024
1025 1997-01-03 Richard Stallman <rms@gnu.org>
1026
1027 * src/allocate.c: [__STDC__ or _MSC_VER]:
1028 Declare calloc and realloc to return void *.
1029
1030 1997-01-02 Richard Stallman <rms@gnu.org>
1031
1032 * src/system.h:
1033 [_MSC_VER]: Include stdlib.h and process.h.
1034 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1035
1036 * src/main.c (main): Return FAILURE as a value.
1037 (printable_version): Declare arg as int, not char.
1038
1039 1997-01-02 Richard Stallman <rms@gnu.org>
1040
1041 * Makefile.in (dist):
1042 Explicitly check for symlinks, and copy them.
1043
1044 1996-12-19 Richard Stallman <rms@gnu.org>
1045
1046 * src/files.c:
1047 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1048
1049 1996-12-18 Paul Eggert <eggert@gnu.org>
1050
1051 * src/bison.s1 (yyparse):
1052 If __GNUC__ and YYPARSE_PARAM are both defined,
1053 declare yyparse to have a void * argument.
1054
1055 1996-12-18 Paul Eggert <eggert@gnu.org>
1056
1057 * bison.simple (yyparse):
1058 If __GNUC__ and YYPARSE_PARAM are both defined,
1059 declare yyparse to have a void * argument.
1060
1061 1996-12-17 Richard Stallman <rms@gnu.org>
1062
1063 * src/reduce.c (nbits): Add some casts.
1064
1065 1996-08-12 Richard Stallman <rms@gnu.org>
1066
1067 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1068
1069 1996-08-12 Richard Stallman <rms@gnu.org>
1070
1071 * bison.simple: Test _MSDOS as well as _MSDOS_.
1072
1073 1996-07-31 Richard Stallman <rms@gnu.org>
1074
1075 * src/bison.s1:
1076 [__sun && __i386]: Include alloca.h.
1077
1078 1996-07-31 Richard Stallman <rms@gnu.org>
1079
1080 * bison.simple:
1081 [__sun && __i386]: Include alloca.h.
1082
1083 1996-07-30 Richard Stallman <rms@gnu.org>
1084
1085 * src/bison.s1: Comment change.
1086
1087 * src/bison.s1: Test _MSDOS_, not MSDOS.
1088
1089 1996-07-30 Richard Stallman <rms@gnu.org>
1090
1091 * bison.simple: Comment change.
1092
1093 * bison.simple: Test _MSDOS_, not MSDOS.
1094
1095 1996-06-01 Richard Stallman <rms@gnu.org>
1096
1097 * 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:
1098 Insert `_' macro around many string constants.
1099
1100 * src/main.c:
1101 Insert `_' macro around many string constants.
1102
1103 (main): Call setlocale, bindtextdomain and textdomain.
1104
1105 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1106 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1107 [ENABLE_NLS]: Include libintl.h.
1108 [ENABLE_NLS] (gettext): Define.
1109 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1110 (N_, PACKAGE, LOCALEDIR): New macros.
1111
1112 1996-06-01 Richard Stallman <rms@gnu.org>
1113
1114 * POTFILES.in: New file.
1115
1116 * Makefile.in (allocate.o):
1117 Define target explicitly.
1118
1119 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1120 (LDFLAGS): Set to @LDFLAGS@.
1121 (configure): Run autoconf only if preceding `cd' succeeds.
1122 (bison.s1): Redirect output to temporary file then move the
1123 temporary to the target, rather than redirecting directly to bison.s1.
1124 (clean): Remove config.status and config.log.
1125 (distclean): Don't remove config.status here.
1126
1127 1996-05-12 Richard Stallman <rms@gnu.org>
1128
1129 * src/bison.s1:
1130 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1131
1132 1996-05-12 Richard Stallman <rms@gnu.org>
1133
1134 * bison.simple:
1135 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1136
1137 1996-05-11 Richard Stallman <rms@gnu.org>
1138
1139 * src/bison.s1 (__yy_memcpy):
1140 Really reorder the args, as was supposedly done on Feb 14 1995.
1141 (yyparse): Calls changed accordingly.
1142
1143 1996-05-11 Richard Stallman <rms@gnu.org>
1144
1145 * Makefile.in (dist): Don't use $(srcdir).
1146
1147 * bison.simple (__yy_memcpy):
1148 Really reorder the args, as was supposedly done on Feb 14 1995.
1149 (yyparse): Calls changed accordingly.
1150
1151 1996-01-27 Richard Stallman <rms@gnu.org>
1152
1153 * src/output.c (output_rule_data):
1154 Test YYERROR_VERBOSE in the conditional
1155 around the definition of ttyname.
1156
1157 1995-12-29 Richard Stallman <rms@gnu.org>
1158
1159 * src/bison.s1:
1160 Fix line numbers in #line commands.
1161
1162 1995-12-29 Richard Stallman <rms@gnu.org>
1163
1164 * bison.simple:
1165 Fix line numbers in #line commands.
1166
1167 1995-12-27 Richard Stallman <rms@gnu.org>
1168
1169 * src/bison.s1 (YYPARSE_PARAM_DECL):
1170 In C++, make it always null.
1171 (YYPARSE_PARAM_ARG): New macro.
1172 (yyparse): Use YYPARSE_PARAM_ARG.
1173
1174 1995-12-27 Richard Stallman <rms@gnu.org>
1175
1176 * bison.simple (YYPARSE_PARAM_DECL):
1177 In C++, make it always null.
1178 (YYPARSE_PARAM_ARG): New macro.
1179 (yyparse): Use YYPARSE_PARAM_ARG.
1180
1181 1995-11-29 Richard Stallman <rms@gnu.org>
1182
1183 * doc/bison.texinfo:
1184 Describe literal string tokens, %raw, %no_lines, %token_table.
1185
1186 1995-11-29 Daniel Hagerty <hag@gnu.org>
1187
1188 * doc/bison.texinfo: Fixed update date
1189
1190 1995-10-16 Richard Stallman <rms@gnu.org>
1191
1192 * src/version.c: Version 1.25.
1193
1194 1995-10-16 Richard Stallman <rms@gnu.org>
1195
1196 * NEWS: *** empty log message ***
1197
1198 1995-10-16 Richard Stallman <rms@gnu.org>
1199
1200 * doc/bison.1, doc/bison.rnh:
1201 Add new options.
1202
1203 1995-10-15 Richard Stallman <rms@gnu.org>
1204
1205 * src/vmsgetargs.c, src/getargs.c:
1206 Added -n, -k, and -raw switches.
1207 (noparserflag, toknumflag, rawtoknumflag): New variables.
1208
1209 * src/symtab.h (SALIAS):
1210 New #define for adding aliases to %token.
1211 (struct bucket): Added `alias' field.
1212
1213 * src/reduce.c (reduce_grammar):
1214 Revise error message.
1215 (print_notices): Remove final `.' from error message.
1216
1217 * src/reader.c (reader_output_yylsp):
1218 New function.
1219 (readgram): Use `#if 0' around code that accepted %command
1220 inside grammar rules: The documentation doesn't allow it,
1221 and it will fail since the %command processors scan for the next %.
1222 (parse_token_decl): Extended the %token
1223 declaration to allow a multi-character symbol as an alias.
1224 (parse_thong_decl): New function.
1225 (read_declarations): Added %thong declarations.
1226 (read_declarations): Handle NOOP to deal with allowing
1227 % declarations as another means to specify the flags.
1228 (readgram): Allow %prec prior to semantics embedded in a rule.
1229 (skip_to_char, read_declarations, copy_definition)
1230 (parse_token_decl, parse_start_decl, parse_type_decl)
1231 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1232 (get_type_name, copy_guard, copy_action, readgram)
1233 (get_type, packsymbols): Revised most error messages.
1234 Changed `fatal' to `warnxxx' to avoid aborting for error.
1235 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1236 (read_declarations): Improve the error message for
1237 an invalid character. Do not abort.
1238 (read_declarations, copy_guard, copy_action): Use
1239 printable_version to avoid unprintable characters in printed output.
1240 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1241 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1242 Allow the type of a non-terminal can be given
1243 more than once, as long as all specifications give the same type.
1244
1245 * src/output.c:
1246 (output_headers, output_trailers, output, output_gram)
1247 (output_rule_data): Implement noparserflag variable.
1248 Implement toknumflag variable.
1249 (output): Call reader_output_yylsp to output LTYPESTR.
1250
1251 * src/main.c (main):
1252 If reader sees an error, don't process the grammar.
1253 (fatals): Updated to not use VARARGS1.
1254 (printable_version, int_to_string, warn, warni, warns, warnss)
1255 (warnsss): New error reporting functions. Avoid abort for error.
1256
1257 * src/lex.h:
1258 Added THONG and NOOP for alias processing.
1259 Added SETOPT for the new code that allows setting options with %flags.
1260
1261 * src/lex.c:
1262 Include getopt.h. Add some extern decls.
1263 (safegetc): New function to deal with EOF gracefully.
1264 (literalchar); new function to deal with reading \ escapes.
1265 (lex): Use literalchar.
1266 (lex): Implemented "..." tokens.
1267 (literalchar, lex, parse_percent_token): Made tokenbuffer
1268 always contain the token. This includes growing the token
1269 buffer while reading an integer.
1270 (parse_percent_token): Replaced if-else statement with percent_table.
1271 (parse_percent_token): Added % declarations as another
1272 way to specify the flags -n, -l, and -r. Also added hooks for
1273 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1274 major changes to files.c.
1275 (lex) Retain in the incoming stream a character following
1276 an incorrect '/'.
1277 (skip_white_space, lex): Revised most error messages
1278 and changed fatal to warn to avoid aborting.
1279 (percent_table): Added %thong declarations.
1280
1281 * src/gram.h: Comment changes.
1282
1283 * src/files.c (openfiles, open_extra_files, done):
1284 Add faction flag
1285 and actfile file. Handle noparserflag. Both for -n switch.
1286
1287 * src/conflicts.c (resolve_sr_conflict):
1288 Remove use of alloca.
1289
1290 1995-06-01 Jim Meyering <meyering@gnu.org>
1291
1292 * doc/bison.texinfo: *** empty log message ***
1293
1294 1995-05-06 Richard Stallman <rms@gnu.org>
1295
1296 * src/bison.s1: Comment change.
1297
1298 1995-05-06 Richard Stallman <rms@gnu.org>
1299
1300 * bison.simple: Comment change.
1301
1302 1995-05-03 Richard Stallman <rms@gnu.org>
1303
1304 * src/version.c: Version now 1.24.
1305
1306 * src/bison.s1: Change distribution terms.
1307
1308 * src/version.c: Version now 1.23.
1309
1310 1995-05-03 Richard Stallman <rms@gnu.org>
1311
1312 * doc/bison.texinfo:
1313 Rewrite "Conditions for Using Bison".
1314 Update version to 1.24.
1315
1316 1995-05-03 Richard Stallman <rms@gnu.org>
1317
1318 * bison.simple: Change distribution terms.
1319
1320 1995-02-23 Richard Stallman <rms@gnu.org>
1321
1322 * src/files.c: Test __VMS_POSIX as well as VMS.
1323
1324 1995-02-14 Jim Meyering <meyering@gnu.org>
1325
1326 * src/bison.s1 (__yy_memcpy):
1327 Renamed from __yy_bcopy to avoid
1328 confusion. Reverse FROM and TO arguments to be consistent with
1329 those of memcpy.
1330
1331 1995-02-14 Jim Meyering <meyering@gnu.org>
1332
1333 * bison.simple (__yy_memcpy):
1334 Renamed from __yy_bcopy to avoid
1335 confusion. Reverse FROM and TO arguments to be consistent with
1336 those of memcpy.
1337
1338 1994-11-10 David J. MacKenzie <djm@gnu.org>
1339
1340 * NEWS: reformat
1341
1342 * NEWS: New file.
1343
1344 * Makefile.in (DISTFILES): Include NEWS.
1345
1346 * Makefile.in (DISTFILES):
1347 Include install-sh, not install.sh.
1348
1349 * configure.in: Update to Autoconf v2 macro names.
1350
1351 1994-10-05 David J. MacKenzie <djm@gnu.org>
1352
1353 * Makefile.in: fix typo
1354
1355 * Makefile.in (prefix, exec_prefix):
1356 Let configure set them.
1357
1358 1994-09-28 David J. MacKenzie <djm@gnu.org>
1359
1360 * Makefile.in: Set datadir to $(prefix)/share.
1361
1362 1994-09-15 Richard Stallman <rms@gnu.org>
1363
1364 * src/bison.s1:
1365 Update copyright notice and GPL version.
1366
1367 1994-09-15 Richard Stallman <rms@gnu.org>
1368
1369 * bison.simple:
1370 Update copyright notice and GPL version.
1371
1372 1994-07-12 Richard Stallman <rms@gnu.org>
1373
1374 * src/reduce.c, src/reader.c:
1375 entered into RCS
1376
1377 1994-05-05 David J. MacKenzie <djm@gnu.org>
1378
1379 * Makefile.in: entered into RCS
1380
1381 1994-03-26 Richard Stallman <rms@gnu.org>
1382
1383 * src/bison.s1: entered into RCS
1384
1385 1994-03-26 Richard Stallman <rms@gnu.org>
1386
1387 * bison.simple: entered into RCS
1388
1389 1994-03-25 Richard Stallman <rms@gnu.org>
1390
1391 * src/main.c: entered into RCS
1392
1393 1994-03-24 Richard Stallman <rms@gnu.org>
1394
1395 * src/conflicts.c: entered into RCS
1396
1397 1994-01-02 Richard Stallman <rms@gnu.org>
1398
1399 * Makefile.in: *** empty log message ***
1400
1401 1993-11-21 Richard Stallman <rms@gnu.org>
1402
1403 * src/bison.s1: *** empty log message ***
1404
1405 1993-11-21 Richard Stallman <rms@gnu.org>
1406
1407 * doc/bison.texinfo: entered into RCS
1408
1409 * doc/bison.texinfo: *** empty log message ***
1410
1411 1993-11-21 Richard Stallman <rms@gnu.org>
1412
1413 * bison.simple: *** empty log message ***
1414
1415 1993-10-25 David J. MacKenzie <djm@gnu.org>
1416
1417 * doc/bison.texinfo: *** empty log message ***
1418
1419 1993-10-19 Richard Stallman <rms@gnu.org>
1420
1421 * src/bison.s1: *** empty log message ***
1422
1423 1993-10-19 Richard Stallman <rms@gnu.org>
1424
1425 * bison.simple: *** empty log message ***
1426
1427 1993-10-14 Richard Stallman <rms@gnu.org>
1428
1429 * src/bison.s1: *** empty log message ***
1430
1431 1993-10-14 Richard Stallman <rms@gnu.org>
1432
1433 * bison.simple: *** empty log message ***
1434
1435 1993-09-14 David J. MacKenzie <djm@gnu.org>
1436
1437 * doc/bison.texinfo: *** empty log message ***
1438
1439 1993-09-13 Noah Friedman <friedman@gnu.org>
1440
1441 * Makefile.in: *** empty log message ***
1442
1443 1993-09-10 Richard Stallman <rms@gnu.org>
1444
1445 * src/conflicts.c: *** empty log message ***
1446
1447 * src/system.h: entered into RCS
1448
1449 1993-09-10 Richard Stallman <rms@gnu.org>
1450
1451 * doc/bison.1: entered into RCS
1452
1453 1993-09-06 Noah Friedman <friedman@gnu.org>
1454
1455 * src/version.c: entered into RCS
1456
1457 1993-09-06 Noah Friedman <friedman@gnu.org>
1458
1459 * Makefile.in: *** empty log message ***
1460
1461 1993-07-30 David J. MacKenzie <djm@gnu.org>
1462
1463 * Makefile.in: *** empty log message ***
1464
1465 1993-07-24 Richard Stallman <rms@gnu.org>
1466
1467 * src/bison.s1: *** empty log message ***
1468
1469 1993-07-24 Richard Stallman <rms@gnu.org>
1470
1471 * bison.simple: *** empty log message ***
1472
1473 1993-07-08 David J. MacKenzie <djm@gnu.org>
1474
1475 * Makefile.in: *** empty log message ***
1476
1477 1993-07-04 Richard Stallman <rms@gnu.org>
1478
1479 * src/bison.s1: *** empty log message ***
1480
1481 1993-07-04 Richard Stallman <rms@gnu.org>
1482
1483 * bison.simple: *** empty log message ***
1484
1485 1993-06-26 David J. MacKenzie <djm@gnu.org>
1486
1487 * src/getargs.c: entered into RCS
1488
1489 1993-06-26 David J. MacKenzie <djm@gnu.org>
1490
1491 * doc/bison.texinfo: *** empty log message ***
1492
1493 * doc/bison.1: New file.
1494
1495 1993-06-25 Richard Stallman <rms@gnu.org>
1496
1497 * src/getargs.c: New file.
1498
1499 1993-06-16 Richard Stallman <rms@gnu.org>
1500
1501 * src/bison.s1: *** empty log message ***
1502
1503 1993-06-16 Richard Stallman <rms@gnu.org>
1504
1505 * bison.simple: *** empty log message ***
1506
1507 1993-06-03 Richard Stallman <rms@gnu.org>
1508
1509 * src/bison.s1: New file.
1510
1511 1993-06-03 Richard Stallman <rms@gnu.org>
1512
1513 * doc/bison.texinfo: *** empty log message ***
1514
1515 1993-06-03 Richard Stallman <rms@gnu.org>
1516
1517 * bison.simple: New file.
1518
1519 1993-05-19 Richard Stallman <rms@gnu.org>
1520
1521 * doc/bison.texinfo: New file.
1522
1523 1993-05-07 Noah Friedman <friedman@gnu.org>
1524
1525 * Makefile.in: *** empty log message ***
1526
1527 1993-04-28 Noah Friedman <friedman@gnu.org>
1528
1529 * src/reader.c: *** empty log message ***
1530
1531 1993-04-23 Noah Friedman <friedman@gnu.org>
1532
1533 * src/alloc.h: entered into RCS
1534
1535 1993-04-20 David J. MacKenzie <djm@gnu.org>
1536
1537 * src/version.c: *** empty log message ***
1538
1539 * src/files.c, src/allocate.c:
1540 entered into RCS
1541
1542 * src/reader.c: *** empty log message ***
1543
1544 * src/lex.c: entered into RCS
1545
1546 * src/conflicts.c: New file.
1547
1548 * src/symtab.c: entered into RCS
1549
1550 * src/alloc.h: New file.
1551
1552 * src/LR0.c: entered into RCS
1553
1554 1993-04-18 Noah Friedman <friedman@gnu.org>
1555
1556 * src/reader.c: New file.
1557
1558 * src/version.c: *** empty log message ***
1559
1560 1993-04-18 Noah Friedman <friedman@gnu.org>
1561
1562 * Makefile.in: *** empty log message ***
1563
1564 1993-04-17 Noah Friedman <friedman@gnu.org>
1565
1566 * Makefile.in: *** empty log message ***
1567
1568 1993-04-15 Richard Stallman <rms@gnu.org>
1569
1570 * src/main.c, src/files.c:
1571 New file.
1572
1573 1993-04-15 Noah Friedman <friedman@gnu.org>
1574
1575 * configure.in: entered into RCS
1576
1577 * configure.in: *** empty log message ***
1578
1579 * configure.in: New file.
1580
1581 1993-04-14 Richard Stallman <rms@gnu.org>
1582
1583 * Makefile.in: New file.
1584
1585 1993-04-13 Richard Stallman <rms@gnu.org>
1586
1587 * src/version.c: New file.
1588
1589 1993-03-25 Richard Stallman <rms@gnu.org>
1590
1591 * src/output.c: entered into RCS
1592
1593 1992-09-25 Richard Stallman <rms@gnu.org>
1594
1595 * configure.bat: entered into RCS
1596
1597 1992-06-22 Richard Stallman <rms@gnu.org>
1598
1599 * src/vmsgetargs.c: entered into RCS
1600
1601 1992-06-22 Richard Stallman <rms@gnu.org>
1602
1603 * doc/bison.rnh: entered into RCS
1604
1605 1992-04-20 David J. MacKenzie <djm@gnu.org>
1606
1607 * README: entered into RCS
1608
1609 1992-01-22 Richard Stallman <rms@gnu.org>
1610
1611 * src/machine.h: entered into RCS
1612
1613 1991-12-21 Richard Stallman <rms@gnu.org>
1614
1615 * src/lalr.c, src/closure.c:
1616 entered into RCS
1617
1618 1991-12-20 Richard Stallman <rms@gnu.org>
1619
1620 * src/state.h: entered into RCS
1621
1622 1991-12-18 Richard Stallman <rms@gnu.org>
1623
1624 * src/print.c, src/nullable.c, src/derives.c:
1625 entered into RCS
1626
1627 1991-11-03 David J. MacKenzie <djm@gnu.org>
1628
1629 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
1630 entered into RCS
1631
1632 1988-09-09 Richard Stallman <rms@gnu.org>
1633
1634 * src/bison.hairy: entered into RCS
1635
1636 1987-12-16 Richard Stallman <rms@gnu.org>
1637
1638 * REFERENCES: entered into RCS