1 2001-08-15 Akim Demaille <akim@epita.fr>
3 * doc/bison.texinfo (Table of Symbols): Document
6 2001-08-15 Akim Demaille <akim@epita.fr>
8 * missing: Update from CVS Automake.
9 * config/config.guess, config/config.sub, config/texinfo.tex:
12 2001-08-15 Akim Demaille <akim@epita.fr>
14 * Makefile.maint: Sync with CVS Autoconf.
16 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
18 * doc/bison.texinfo: Include GNU Free Documentation License from
20 * doc/fdl.texi: Add to package.
22 2001-08-14 Marc Autret <autret_m@epita.fr>
24 Turn on %{source,header}_extension features.
26 * src/lex.c (percent_table): Un-CPP out header_extension and
28 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
29 (compute_exts_from_src): Remove conditions. It restores priorities
32 2001-08-14 Marc Autret <autret_m@epita.fr>
34 * src/files.c (compute_base_names): Add extensions computing when
36 Standardize function calls.
38 2001-08-13 Marc Autret <autret_m@epita.fr>
40 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
41 defining it (defined but null disables alloca).
43 2001-08-13 Marc Autret <autret_m@epita.fr>
45 * src/bison.simple (_yy_memcpy): CPP reformat.
47 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
49 * tests/atconfig.in (CPPFLAGS): Fix.
51 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
53 * doc/bison.texinfo: Include GNU General Public License from
55 * doc/gpl.texi: Add to package.
57 2001-08-10 Marc Autret <autret_m@epita.fr>
59 * src/print_graph.h: Fix.
60 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
62 2001-08-10 Akim Demaille <akim@epita.fr>
64 * src/system.h: Provide default declarations for stpcpy, strndup,
67 2001-08-10 Robert Anisko <anisko_r@epita.fr>
69 * doc/bison.texinfo (Locations): Update @$ stuff.
71 2001-08-09 Robert Anisko <anisko_r@epita.fr>
73 * src/bison.simple (YYLLOC_DEFAULT): Update.
76 2001-08-08 Marc Autret <autret_m@epita.fr>
78 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
79 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
80 Reported by Fabrice Bauzac.
82 2001-08-08 Marc Autret <autret_m@epita.fr>
84 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
85 * src/vcg.c (output_node): Fix.
87 * src/print_graph.c: Add comments.
88 (node_output_size): New global variable. Simplify the formatting of
90 (print_actions): Unused code is now used. It notifies the final state
91 and no action states in the VCG graph. It also give the reduce actions.
92 The `shift and goto' edges are red and the `go to state' edges are
94 Get the current node name and node_obstack by argument.
95 (node_obstack): New variable.
96 (print_state): Manage node_obstack.
97 (print_core): Use node_obstack given by argument.
98 A node is not only computed here but in print_actions also.
99 (print_graph): CPP out useless code instead of commenting it.
101 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
103 * tests/atconfig.in (CPPFLAGS): Fix.
105 2001-08-07 Akim Demaille <akim@epita.fr>
107 * src/print_graph.c (quote): New.
108 (print_core): Use it.
110 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
112 * src/vcg.c (complain.h): Include it.
113 Unepitaize `return' invocations.
114 [NDEBUG] (main): Remove.
115 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
116 * src/files.c (open_files): Initialize graph_obstack.
117 * src/print_graph.c (print_actions): CPP out useless code.
118 (print_core): Don't output the last `\n' in labels.
120 * src/files.c (output_files): Output the VCG file.
121 * src/main.c (main): Invoke print_graph ();
123 2001-08-06 Marc Autret <autret_m@epita.fr>
125 Automaton VCG graph output.
126 Using option ``-g'' or long option ``--graph'', you can generate
127 a gram_filename.vcg file containing a VCG description of the LALR (1)
128 automaton of your grammar.
130 * src/main.c: Call to print_graph() function.
131 * src/getargs.h: Update.
132 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
133 (graph_flag): New flag.
135 (getargs): Add case `g'.
136 * src/files.c (graph_obstack): New obstack struct.
137 (open_files): Initialize new obstack.
138 (output_files): Saves graph_obstack if required.
139 * src/files.h (graph_obstack): New extern declaration.
140 * src/Makefile.am: Add new source files.
142 2001-08-06 Marc Autret <autret_m@epita.fr>
144 * src/print_graph.c, src/print_graph.h (graph): New.
145 * src/vcg.h: New file.
146 * src/vcg.c: New file, VCG graph handling.
148 2001-08-06 Marc Autret <autret_m@epita.fr>
150 Add of %source_extension and %header_extension which specify
151 the source or/and the header output file extension.
153 * src/files.c (compute_base_names): Remove initialisation of
154 src_extension and header_extension.
155 (compute_exts_from_gf): Update.
156 (compute_exts_from_src): Update.
157 (output_files): Update.
158 * src/reader.c (parse_header_extension_decl): New.
159 (parse_source_extension_decl): New.
160 (read_declarations): New case statements for the new tokens.
161 * src/lex.c (percent_table): Add entries for %source_extension
162 and %header_extension.
163 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
165 2001-08-06 Marc Autret <autret_m@epita.fr>
167 * configure.in: Bump to 1.28c.
168 * doc/bison.texinfo: Texinfo thingies.
170 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
172 * tests/atconfig.in (CPPFLAGS): Add.
173 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
175 2001-08-03 Akim Demaille <akim@epita.fr>
179 2001-08-03 Akim Demaille <akim@epita.fr>
181 * tests/Makefile.am (check-local): Ship testsuite.
182 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
185 2001-08-03 Akim Demaille <akim@epita.fr>
187 * configure.in: Try using -Wformat when compiling.
189 2001-08-03 Akim Demaille <akim@epita.fr>
191 * configure.in: Bump to 1.28b.
193 2001-08-03 Akim Demaille <akim@epita.fr>
195 * src/complain.c: Adjust strerror_r portability issues.
197 2001-08-03 Akim Demaille <akim@epita.fr>
201 2001-08-03 Akim Demaille <akim@epita.fr>
203 * src/getargs.c, src/getarg.h (skeleton)): Constify.
204 * src/lex.c (literalchar): Avoid name clashes on `buf'.
205 * src/getargs.c: Include complain.h.
206 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
207 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
209 2001-08-03 Akim Demaille <akim@epita.fr>
211 * src/reader.c (readgram): Display hidden chars in error messages.
213 2001-08-03 Akim Demaille <akim@epita.fr>
215 Update to gettext 0.10.39.
217 2001-08-03 Akim Demaille <akim@epita.fr>
221 2001-08-01 Marc Autret <autret_m@epita.fr>
223 * doc/bison.texinfo: Update.
224 * doc/bison.1 (mandoc): Update.
225 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
226 * src/files.c: Support output files extensions computing.
227 (src_extension): New static variable.
228 (header_extension): New static variable.
230 (get_extension_index): New function, gets the index of an extension
231 filename in a string.
232 (compute_exts_from_gf): New function, computes extensions from the
233 grammar file extension.
234 (compute_exts_from_src): New functions, computes extensions from the
235 C source file extension, file given by ``-o'' option.
236 (compute_base_names): Update.
237 (output_files): Update.
239 2001-08-01 Robert Anisko <anisko_r@epita.fr>
241 * doc/bison.texi: Document @$.
242 (Locations): New section.
244 2001-07-18 Akim Demaille <akim@epita.fr>
246 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
247 * config/prev-version.txt, config/move-if-change: New.
248 * Makefile.am: Adjust.
250 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
252 * src/bison.simple (yyparse): Suppress warning `comparaison
253 between signed and unsigned'.
255 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
257 * src/getargs.h (raw_flag): Remove.
258 * src/getargs.c: Die on `-r'/`--raw'.
259 * src/lex.c (parse_percent_token): Die on `%raw'.
260 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
261 * tests/calc.at: Suppress test with option `--raw'.
263 2001-07-14 Akim Demaille <akim@epita.fr>
266 * configure.in: Require Autoconf 2.50.
267 Update to gettext 0.10.38.
269 2001-03-16 Akim Demaille <akim@epita.fr>
271 * doc/bison.texinfo: ANSIfy the examples.
273 2001-03-16 Akim Demaille <akim@epita.fr>
275 * getargs.c (skeleton): New variable.
276 (longopts): --skeleton is a new option.
277 (shortopts, getargs): -S is a new option.
278 * getargs.h: Declare skeleton.
279 * output.c (output_parser): Use it.
281 2001-03-16 Akim Demaille <akim@epita.fr>
283 * m4/strerror_r.m4: New.
284 * m4/error.m4: Run AC_FUNC_STRERROR_R.
285 * lib/error.h, lib/error.c: Update.
287 2001-03-16 Akim Demaille <akim@epita.fr>
289 * src/getargs.c (longopts): Clean up.
291 2001-02-21 Akim Demaille <akim@epita.fr>
293 * src/reader.c (gensym): `gensym_count' is your own.
294 Use a static buf to create the symbol name, as token_buffer is no
297 2001-02-08 Akim Demaille <akim@epita.fr>
299 * src/conflicts.c (conflict_report): Be sure not to append to res
300 between two calls, which could happen if both first sprintf were
301 skipped, but not the first cp += strlen.
303 2001-02-08 Akim Demaille <akim@epita.fr>
305 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
306 New, from fileutils 4.0.37.
307 * configure.in: Require Autoconf 2.49c. I took some time before
308 making this decision. This is the only way out for portability
309 issues in Bison, it would mean way too much duplicate effort to
310 import in Bison features implemented in 2.49c since 2.13.
311 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
313 2001-02-02 Akim Demaille <akim@epita.fr>
315 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
316 * lib/xalloc.h, lib/xmalloc.c: Update.
318 2001-01-19 Akim Demaille <akim@epita.fr>
320 Get rid of the ad hoc handling of token_buffer in the scanner: use
323 * src/lex.c (token_obstack): New.
324 (init_lex): Initialize it. No longer call...
325 (grow_token_buffer): this. Remove it.
326 Adjust all the places which used it to use the obstack.
328 2001-01-19 Akim Demaille <akim@epita.fr>
330 * src/lex.h: Rename all the tokens:
331 s/\bENDFILE\b/tok_eof/g;
332 s/\bIDENTIFIER\b/tok_identifier/g;
334 Let them be enums, not #define, to ease debugging.
337 2001-01-18 Akim Demaille <akim@epita.fr>
339 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
340 * src/lex.c (maxtoken, grow_token_buffer): Static.
342 2001-01-18 Akim Demaille <akim@epita.fr>
344 Since we now use obstacks, more % directives can be enabled.
346 * src/lex.c (percent_table): Also accept `%yacc',
347 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
349 Handle the actions for `%semantic_parser' and `%pure_parser' here,
350 instead of returning a token.
351 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
352 * src/reader.c (read_declarations): Adjust.
353 * src/files.c (open_files): Don't call `compute_base_names', don't
354 compute `attrsfile' since they depend upon data which might be
355 *in* the input file now.
356 (output_files): Do it here.
357 * src/output.c (output_headers): Document the fact that this patch
358 introduces a guaranteed SEGV for semantic parsers.
359 * doc/bison.texinfo: Document them.
360 * tests/suite.at: Exercise these %options.
362 2000-12-20 Akim Demaille <akim@epita.fr>
364 Also handle the output file (--verbose) with obstacks.
366 * files.c (foutput): Remove.
367 (output_obstack): New.
368 Adjust all dependencies.
369 * src/conflicts.c: Return a string.
370 * src/system.h (obstack_grow_string): Rename as...
371 (obstack_sgrow): this. Be ready to work with non literals.
372 (obstack_fgrow4): New.
374 2000-12-20 Akim Demaille <akim@epita.fr>
376 * src/files.c (open_files): Fix the computation of short_base_name
377 in the case of `-o foo.tab.c'.
379 2000-12-20 Akim Demaille <akim@epita.fr>
381 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
382 (copy_dollar): Now that everything uses obstacks, get rid of the
385 2000-12-20 Akim Demaille <akim@epita.fr>
387 * src/files.c (open_files): Actually the `.output' file is based
388 on the short_base_name, not base_name.
389 * tests/suite.at (Checking output file names): Adjust.
391 2000-12-20 Akim Demaille <akim@epita.fr>
393 * src/bison.s1: Remove, we now use directly...
394 * src/bison.simple: this.
395 * src/Makefile.am: Use pkgdata instead of data.
397 2000-12-20 Akim Demaille <akim@epita.fr>
399 * src/files.c (guard_obstack): New.
400 (open_files): Initialize it.
401 (output_files): Dump it...
402 * src/files.h: Export it.
403 * src/reader.c (copy_guard): Use it.
405 2000-12-19 Akim Demaille <akim@epita.fr>
407 * src/files.c (outfile, defsfile, actfile): Removed as global
409 (open_files): Don't compute them.
410 (output_files): Adjust.
411 (base_name, short_base_name): Be global.
414 2000-12-19 Akim Demaille <akim@epita.fr>
416 * src/files.c (strsuffix): New.
417 (stringappend): Be just like strcat but allocate.
418 (base_names): Eve out from open_files.
419 Try to simplify the rather hairy computation of base_name and
421 (open_files): Use it.
422 * tests/suite.at (Checking output file names): New test.
424 2000-12-19 Akim Demaille <akim@epita.fr>
426 * src/system.h (obstack_grow_literal_string): Rename as...
427 (obstack_grow_string): this.
428 * src/output.c (output_parser): Recognize `%% actions' instead of
430 * src/bison.s1: s/$/%% actions/.
431 * src/bison.hairy: Likewise.
433 2000-12-19 Akim Demaille <akim@epita.fr>
435 * src/output.c (output_parser): Compute the `#line' lines when
437 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
438 Suggested by Hans Aberg.
440 2000-12-19 Akim Demaille <akim@epita.fr>
442 Let the handling of the skeleton files be local to the procedures
445 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
447 (fparser, open_extra_files): Remove.
448 (open_files, output_files): Don't take care of fparser.
449 * src/files.h: Adjust.
450 * src/output.c (output_parser): Open and close the file to the
452 * src/reader.c (read_declarations): When %semantic_parser, open
455 2000-12-19 Akim Demaille <akim@epita.fr>
457 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
458 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
460 2000-12-19 Akim Demaille <akim@epita.fr>
462 * src/files.c (open_files): Yipee! We no longer need all the code
463 looking for `/tmp' since we have no tmp file.
465 2000-12-19 Akim Demaille <akim@epita.fr>
467 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
469 * src/files.c (open_files): Less dependency on MSDOS etc.
471 2000-12-14 Akim Demaille <akim@epita.fr>
473 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
474 Provide a default definition.
475 Use it when executing the default @ action.
476 * src/reader.c (reader_output_yylsp): No longer include
477 `timestamp' and `text' in the default YYLTYPE.
479 2000-12-12 Akim Demaille <akim@epita.fr>
481 * src/reader.c (copy_definition, parse_union_decl, copy_action)
482 (copy_guard): Quote the file names.
483 Reported by Laurent Mascherpa.
485 2000-12-12 Akim Demaille <akim@epita.fr>
487 * src/output.c (output_headers, output_program, output): Be sure
488 to escape special characters when outputting filenames.
489 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
490 (output_headers): Don't depend on them, Use ACTSTR.
492 2000-11-17 Akim Demaille <akim@epita.fr>
494 * lib/obstack.h: Formatting changes.
495 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
496 prevents type checking.
497 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
498 cast the value to (void *): assigning a `foo *' to a `void *'
500 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
501 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
504 2000-11-17 Akim Demaille <akim@epita.fr>
506 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
508 (suite.m4, regression.m4, calc.m4): these.
509 * tests/atgeneral.m4: Update from CVS Autoconf.
511 2000-11-17 Akim Demaille <akim@epita.fr>
513 * tests/regression.m4 (%union and --defines): New test,
514 demonstrating a current bug in the obstack implementation.
516 2000-11-17 Akim Demaille <akim@epita.fr>
518 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
520 Use them to declare the variables which are global or local to
523 2000-11-17 Akim Demaille <akim@epita.fr>
525 * acconfig.h: Remove, no longer used.
527 2000-11-07 Akim Demaille <akim@epita.fr>
529 * src: s/Copyright (C)/Copyright/g.
531 2000-11-07 Akim Demaille <akim@epita.fr>
533 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
535 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
537 2000-11-07 Akim Demaille <akim@epita.fr>
539 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
540 Merge in a single CPP if/else.
542 2000-11-07 Akim Demaille <akim@epita.fr>
544 * src/output.c (output): Remove useless variables.
545 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
546 argument `data' for consistency with the prototypes.
548 (obstack_copy, obstack_copy0): Rename the second argument as
549 `address' for consistency. Qualify it `const'.
550 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
551 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
552 `const' their input argument (`data' or `address').
553 Adjust the corresponding macros to include `const' in casts.
555 2000-11-03 Akim Demaille <akim@epita.fr>
557 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
558 s/PFILE1/BISON_HAIRY/.
561 2000-11-03 Akim Demaille <akim@epita.fr>
563 For some reason, this was not applied.
565 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
566 `unlink': it's no longer used.
568 2000-11-03 Akim Demaille <akim@epita.fr>
570 * src/files.c (skeleton_find): New function, eved out of...
571 (open_files, open_extra_files): here.
573 2000-11-03 Akim Demaille <akim@epita.fr>
577 * src/files.c (obstack_save): New function.
579 (output_files): this.
581 * src/main.c (main): Don't use `atexit' to register `done', since
582 it no longer has to remove tmp files, just call `output_files'
583 when there are no errors.
585 2000-11-02 Akim Demaille <akim@epita.fr>
587 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
588 `unlink': it's no longer used.
589 * src/files.h: Formatting changes.
591 2000-11-02 Akim Demaille <akim@epita.fr>
593 Remove the last uses of mktemp and unlink/delete.
595 * src/files.c (fdefines, ftable): Removed.
596 (defines_ostack, table_obstack): New.
597 Adjust dependencies of the former into uses of the latter.
598 * src/output.c (output_short_or_char_table, output_short_table):
599 Convert to using obstacks.
600 * src/reader.c (copy_comment2): Accept one FILE * and two
602 (output_token_defines, reader_output_yylsp): Use obstacks.
603 * src/system.h (obstack_fgrow3): New.
605 2000-11-01 Akim Demaille <akim@epita.fr>
607 Change each use of `fattrs' into a use of `attrs_obstack'.
609 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
610 * src/files.c (fattrs): Remove.
611 (attrs_obstack): New.
612 Adjust all dependencies.
613 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
615 2000-11-01 Akim Demaille <akim@epita.fr>
618 Change each use of `faction' into a use of `action_obstack'.
620 * lib/obstack.h, lib/obstack.c: New files.
621 * src/files.c (faction): Remove.
622 (action_obstack): New.
623 Adjust all dependencies.
625 2000-10-20 Akim Demaille <akim@epita.fr>
627 * lib/quote.h (PARAMS): New macro. Use it.
629 2000-10-16 Akim Demaille <akim@epita.fr>
631 * src/output.c (output_short_or_char_table): New function.
632 (output_short_table, output_token_translations): Use it.
633 (goto_actions): Use output_short_table.
635 2000-10-16 Akim Demaille <akim@epita.fr>
637 * src/symtab.c (bucket_new): New function.
640 * src/output.c (output_short_table): New argument to display the
641 comment associated with the table.
643 (output_gram): Use it.
644 (output_rule_data): Nicer output layout for YYTNAME.
646 2000-10-16 Akim Demaille <akim@epita.fr>
648 * src/lex.c (read_typename): New function.
650 * src/reader.c (copy_dollar): Likewise.
652 2000-10-16 Akim Demaille <akim@epita.fr>
654 * src/reader.c (copy_comment2): Expect the input stream to be on
655 the `/' which is suspected to open a comment, instead of being
656 called after `//' or `/*' was read.
657 (copy_comment, copy_definition, parse_union_decl, copy_action)
658 (copy_guard): Adjust.
660 2000-10-16 Akim Demaille <akim@epita.fr>
662 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
663 `read_signed_integer'.
665 2000-10-16 Akim Demaille <akim@epita.fr>
667 * src/reader.c (copy_dollar): New function.
668 (copy_guard, copy_action): Use it.
670 2000-10-16 Akim Demaille <akim@epita.fr>
672 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
673 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
674 New files, from Fileutils 4.0.27.
675 * src/main.c (printable_version): Remove.
676 * src/lex.c, src/reader.c: Use `quote'.
678 2000-10-04 Akim Demaille <akim@epita.fr>
680 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
682 2000-10-04 Akim Demaille <akim@epita.fr>
684 * doc/bison.texinfo: Various typos spotted by Neil Booth.
686 2000-10-04 Akim Demaille <akim@epita.fr>
688 When a literal string is used to define two different tokens,
689 `bison -v' segfaults.
690 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
692 * tests/regression.m4: New file.
693 Include the core of the sample provided by Piotr Gackiewicz.
694 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
697 2000-10-04 Akim Demaille <akim@epita.fr>
699 * src/reader.c (parse_expect_decl): Keep `count' within the size
703 2000-10-02 Paul Eggert <eggert@twinsun.com>
705 * bison.s1 (yyparse): Assign the default value
706 unconditionally, to avoid a GCC warning and make the parser a
709 2000-10-02 Akim Demaille <akim@epita.fr>
711 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
714 2000-10-02 Akim Demaille <akim@epita.fr>
716 * src/derives.c, src/print.c, src/reduce.c: To ease the
717 translation, move some `\n' out of the translated strings.
719 2000-10-02 Akim Demaille <akim@epita.fr>
721 The location tracking mechanism is precious for parse error
722 messages. Nevertheless, it is enabled only when `@n' is used in
723 the grammar, which is a different issue (you can use it in error
724 message, but not in the grammar per se). Therefore, there should
725 be another means to enable it.
727 * src/getargs.c (getargs): Support `--locations'.
729 * src/getargs.h (locationsflag): Export it.
730 * src/lex.c (percent_table): Support `%locations'.
731 * src/reader.c (yylsp_needed): Remove this variable, now replaced
732 with `locationsflag'.
733 * doc/bison.texinfo: Document `--locations' and `%locations'.
735 * tests/calc.m4: Test it.
737 For regularity of the names, replace each
738 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
739 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
740 In addition replace each `flag' with `_flag'.
742 2000-10-02 Akim Demaille <akim@epita.fr>
744 Also test parse error messages, including with YYERROR_VERBOSE.
746 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
748 Use it to check the computations.
749 Use it to check `nonassoc' is honored.
750 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
752 (_AT_CHECK_CALC): Adjust to this option.
753 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
755 2000-10-02 Akim Demaille <akim@epita.fr>
757 Test also `--verbose', `--defines' and `--name-prefix'. Testing
758 the latter demonstrates a flaw in the handling of non debugging
759 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
760 was used in order to simplify:
776 unfortunately this leads to a CPP conflict when
777 `--name-prefix=foo' is used since it produces `#define yydebug
780 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
781 (YYDPRINTF): New macro.
783 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
785 Also test `--verbose', `--defines' and `--name-prefix'.
787 2000-10-02 Akim Demaille <akim@epita.fr>
789 Improve the readability of the produced parsers.
791 * src/bison.s1: Formatting changes.
792 Improve the comment related to the `$' mark.
793 (yydefault): Don't fall through to `yyresume': `goto' there.
794 * src/output.c (output_parser): When the `$' is met, skip the end
796 New variable, `number_of_dollar_signs', to check there's exactly
797 one `$' in the parser skeleton.
799 2000-10-02 Akim Demaille <akim@epita.fr>
801 * lib/xstrdup.c: New file, from the fileutils.
802 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
803 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
804 instead of strlen + xmalloc + strcpy.
805 * src/symtab.c (copys): Remove, use xstrdup instead.
807 2000-10-02 Akim Demaille <akim@epita.fr>
809 * src/gram.h (associativity): New enum type which replaces the
810 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
811 `right_assoc', `left_assoc' and `non_assoc'.
812 Adjust all dependencies.
813 * src/reader.c: Formatting changes.
814 (LTYPESTR): Don't define it, use it as a literal in
815 `reader_output_yylsp'.
816 * src/symtab.h (symbol_class): New enum type which replaces the
817 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
818 `sunknown', `stoken and `snterm'.
820 2000-10-02 Akim Demaille <akim@epita.fr>
822 * src/getargs.c (fixed_outfiles): Rename as...
823 (yaccflag): for consistency and accuracy.
826 2000-10-02 Akim Demaille <akim@epita.fr>
828 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
829 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
830 difficult and introduced a lot of core dump. It turns out that
831 Bison used an implementation of `xmalloc' based on `calloc', and
832 at various places it does depend upon the initialization to 0. I
833 have not tried to isolate the pertinent places, and all the former
834 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
835 someone should address this issue.
837 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
838 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
841 * src/warshall.h: New file.
844 2000-10-02 Akim Demaille <akim@epita.fr>
846 Various anti-`extern in *.c' changes.
848 * src/system.h: Include `assert.h'.
850 2000-10-02 Akim Demaille <akim@epita.fr>
852 * src/state.h (nstates, final_state, first_state, first_shift)
853 (first_reduction): Move their exportation from here...
854 * src/LR0.h: to here.
856 * src/getargs.c (statisticsflag): New variable.
857 Add support for `--statistics'.
860 Remove a lot of now useless `extern' statements in most files.
862 2000-10-02 Akim Demaille <akim@epita.fr>
864 * src/LR0.h: New file.
867 2000-10-02 Akim Demaille <akim@epita.fr>
869 * src/print.h: New file.
871 * src/print.c: Formatting and ordering changes.
872 (verbose, terse): Replace with...
873 (print_results): this new function.
876 2000-10-02 Akim Demaille <akim@epita.fr>
878 * src/conflicts.c (conflict_report): New function.
879 (conflict_log, verbose_conflict_log): Replace with...
880 (print_conflicts): this function.
882 * src/conflicts.h: New file.
883 Propagate its inclusion.
885 2000-10-02 Akim Demaille <akim@epita.fr>
887 * src/nullable.h: New file.
888 Propagate its inclusion.
889 * src/nullable.c: Formatting changes.
891 2000-10-02 Akim Demaille <akim@epita.fr>
893 * src/reduce.h: New file.
894 Propagate its inclusion.
895 * src/reduce.c: Topological sort and other formatting changes.
896 (bool, TRUE, FALSE): Move their definition to...
897 * src/system.h: here.
899 2000-10-02 Akim Demaille <akim@epita.fr>
901 * src/files.c: Formatting changes.
902 (tryopen, tryclose, openfiles): Rename as...
903 (xfopen, xfclose, open_files): this.
904 (stringappend): static.
905 * src/files.h: Complete the list of exported symbols.
908 2000-10-02 Akim Demaille <akim@epita.fr>
910 * src/reader.h: New file.
911 Propagate its use instead of tedious list of `extern' and
913 * src/reader.c: Formatting changes, topological sort,
916 2000-10-02 Akim Demaille <akim@epita.fr>
918 * src/lex.h: Prototype `lex.c' exported functions.
919 * src/reader.c: Adjust.
920 * src/lex.c: Formatting changes.
921 (safegetc): Rename as...
924 2000-10-02 Akim Demaille <akim@epita.fr>
926 * src/lalr.h: New file.
927 Propagate its inclusion instead of prototypes and `extern'.
928 * src/lalr.c: Formatting changes, topological sorting etc.
930 2000-10-02 Akim Demaille <akim@epita.fr>
932 * src/output.c (token_actions): Introduce a temporary array,
933 YYDEFACT, that makes it possible for this function to use
936 2000-10-02 Akim Demaille <akim@epita.fr>
938 `user_toknums' is output as a `short[]' in `output.c', while it is
939 defined as a `int[]' in `reader.c'. For consistency with the
940 other output tables, `user_toknums' is now defined as a table of
943 * src/reader.c (user_toknums): Be a short table instead of an int
947 Factor the short table outputs.
949 * src/output.c (output_short_table): New function.
950 * src/output.c (output_gram, output_stos, output_rule_data)
951 (output_base, output_table, output_check): Use it.
953 2000-10-02 Akim Demaille <akim@epita.fr>
955 * src/output.c (output): Topological sort of the functions, in
956 order to get rid of the `static' prototypes.
957 No longer use `register'.
958 * src/output.h: New file.
959 Propagate its inclusion in files explicitly prototyping functions
962 2000-09-21 Akim Demaille <akim@epita.fr>
964 * src/atgeneral.m4: Update from Autoconf.
966 2000-09-21 Akim Demaille <akim@epita.fr>
968 * src/closure.h: New file.
969 * src/closure.c: Formatting changes, topological sort over the
970 functions, use of closure.h.
971 (initialize_closure, finalize_closure): Rename as...
972 (new_closure, free_closure): these. Adjust dependencies.
973 * src/LR0.c: Formatting changes, topological sort, use of
975 (initialize_states): Rename as...
977 * src/Makefile.am (noinst_HEADERS): Adjust.
979 2000-09-20 Akim Demaille <akim@epita.fr>
981 * src/acconfig.h: Don't protect config.h against multiple
984 * src/system.h: Define PARAMS.
985 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
986 purpose of config.h. system.h must not try to fix wrong
987 definitions in config.h.
989 2000-09-20 Akim Demaille <akim@epita.fr>
991 * src/derives.h: New file.
992 * src/main.c, src/derives.h: Use it.
994 * src/Makefile.am (noinst_HEADERS): Adjust.
996 2000-09-20 Akim Demaille <akim@epita.fr>
998 * tests/atgeneral.m4: Update from Autoconf.
999 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
1000 (AT_CHECK_CALC): New macros.
1001 Use these macros to test bison with options `', `--raw',
1002 `--debug', `--yacc', `--yacc --debug'.
1004 2000-09-19 Akim Demaille <akim@epita.fr>
1006 * src/output.c: Formatting changes.
1007 * src/machine.h: Remove, leaving its contents in...
1008 * src/system.h: here.
1010 Adjust all dependencies on stdio.h and machine.h.
1011 * src/getargs.h: New file.
1012 Let all `extern' declarations about getargs.c be replaced with
1013 inclusion of `getargs.h'.
1014 * src/Makefile.am (noinst_HEADERS): Adjust.
1016 * tests/calc.m4 (yyin): Be initialized in main, not on the global
1018 (yyerror): Returns void, not int.
1019 * doc/bison.texinfo: Formatting changes.
1021 2000-09-19 Akim Demaille <akim@epita.fr>
1023 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
1026 2000-09-18 Akim Demaille <akim@epita.fr>
1028 * configure.in: Append WARNING_CFLAGS to CFLAGS.
1029 * src/Makefile.am (INCLUDES): Don't.
1030 Be ready to fetch headers in lib/.
1032 2000-09-18 Akim Demaille <akim@epita.fr>
1034 * doc/bison.texinfo: Update the copyright.
1035 ANSIfy and GNUify the examples.
1036 Remove the old menu.
1038 2000-09-18 Akim Demaille <akim@epita.fr>
1040 First set of tests: use the `calc' example from the documentation.
1042 * src/bison.s1 (yyparse): Condition the code using `yytname' which
1043 is defined only when YYDEBUG is.
1044 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
1045 * src/files.c (tryopen, tryclose): Formatting changes.
1046 Move to the top and be static.
1047 * src/reader.c (read_signed_integer): Likewise.
1048 * tests/calc.m4: New file.
1049 * Makefile.am, suite.m4: Adjust.
1050 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
1052 2000-09-18 Akim Demaille <akim@epita.fr>
1054 Add support for an Autotest test suite for Bison.
1056 * m4/m4.m4, m4/atconfig.m4: New files.
1057 * m4/Makefile.am (EXTRA_DIST): Adjust.
1058 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
1060 * src/getargs.c: Display a more standard --version message.
1061 * src/reader.c (reader): Formatting changes.
1062 No longer depend upon VERSION_STRING.
1063 * configure.in: No longer use `dnl'.
1064 Set up the test suite and the new directory `tests/.
1065 (VERSION_STRING): Remove.
1067 2000-04-14 Akim Demaille <akim@epita.fr>
1069 * src/reader.c (copy_comment2): New function, same as former
1070 `copy_comment', but outputs into two FILE *.
1071 (copy_comment): Use it.
1072 (parse_union_decl): Use it.
1073 (get_type, parse_start_decl): Use the same `invalid' message.
1074 (parse_start_decl, parse_union_decl): Use the same `multiple'
1076 (parse_union_decl, copy_guard, copy_action): Use the same
1077 `unmatched' message.
1078 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
1080 2000-03-31 Akim Demaille <akim@epita.fr>
1082 * src/files.c (tryopen, tryclose): Move to the top.
1085 2000-03-31 Akim Demaille <akim@epita.fr>
1087 * src/main.c (main): Don't call `done', exit does it.
1089 2000-03-31 Akim Demaille <akim@epita.fr>
1091 * allocate.c: s/return (foo)/return foo/.
1094 * output.c: Likewise.
1095 * reader.c: Likewise.
1096 * symtab.c: Likewise.
1097 * vmsgetargs.c: Likewise.
1099 2000-03-31 Akim Demaille <akim@epita.fr>
1101 Clean up the error reporting functions.
1103 * src/report.c: New file.
1104 * src/report.h: Likewise.
1105 * src/Makefile.am: Adjust.
1106 * m4/error.m4: New file.
1107 * m4/Makefile.am: Adjust.
1108 * configure.in (jm_PREREQ_ERROR): Call it.
1109 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
1111 (fatal, fatals): Remove. All callers use complain.c::fatal.
1112 (warn, warni, warns, warnss, warnss): Remove. All callers use
1113 complain.c::complain.
1114 (toomany): Remove, use fatal instead.
1115 * src/files.c (done): No argument, use complain_message_count.
1116 * src/main.c (main): Register `done' to `atexit'.
1118 * src/getargs.c (usage): More `fputs', less `fprintf'.
1120 2000-03-28 Akim Demaille <akim@epita.fr>
1122 * lib/: New directory.
1123 * Makefile.am (SUBDIRS): Adjust.
1124 * configure.in: Adjust.
1125 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
1127 * src/alloca.c: Moved to lib/.
1128 * src/getopt.c: Likewise.
1129 * src/getopt1.c: Likewise.
1130 * src/getopt.h: Likewise.
1131 * src/ansi2knr.c: Likewise.
1132 * src/ansi2knr.1: Likewise.
1133 * src/Makefile.am: Adjust.
1134 * lib/Makefile.am: New file.
1136 2000-03-28 Akim Demaille <akim@epita.fr>
1138 * src/getargs.c (usage): Refresh the help message.
1140 2000-03-17 Akim Demaille <akim@epita.fr>
1142 * src/getopt1.c: Updated from textutils 2.0e
1143 * src/getopt.c: Likewise.
1144 * src/getopt.h: Likewise.
1146 2000-03-17 Akim Demaille <akim@epita.fr>
1148 * src/Makefile.am (bison.simple): Fix the awk program: quote only
1149 the file name, not the whole `#line LINE FILE'.
1151 2000-03-17 Akim Demaille <akim@epita.fr>
1153 On syntax errors, report the token on which we choked.
1155 * src/bison.s1 (yyparse): In the label yyerrlab, when
1156 YYERROR_VERBOSE, add yychar in msg.
1158 2000-03-17 Akim Demaille <akim@epita.fr>
1160 * src/reader.c (copy_at): New function.
1161 (copy_guard): Use it.
1162 (copy_action): Use it.
1164 2000-03-17 Akim Demaille <akim@epita.fr>
1166 Be kind to translators, save some useless translations.
1168 * src/main.c (banner): New function.
1169 (fatal_banner): Use it.
1170 (warn_banner): Use it.
1172 2000-03-17 Akim Demaille <akim@epita.fr>
1174 * src/reader.c (copy_definition): Use copy_string and
1175 copy_comment. Removed now unused `match', `ended',
1177 (copy_comment, copy_string): Moved, to be visible from
1180 2000-03-17 Akim Demaille <akim@epita.fr>
1182 * src/reader.c (copy_string): Declare `static inline'. No
1183 problems with inline, since it is checked by configure.
1184 (copy_comment): Likewise.
1186 2000-03-17 Akim Demaille <akim@epita.fr>
1188 * src/reader.c (packsymbols): Formatting changes.
1190 2000-03-17 Akim Demaille <akim@epita.fr>
1192 * src/reader.c (copy_comment): New function, factored out from:
1193 (copy_action): Use it. Removed now unused `match', `ended',
1195 (copy_guard): Likewise.
1197 2000-03-17 Akim Demaille <akim@epita.fr>
1199 * src/reader.c (copy_string): New function, factored out from:
1200 (copy_action): Use it.
1201 (copy_guard): Likewise.
1203 2000-03-17 Akim Demaille <akim@epita.fr>
1205 Change the handling of @s so that they behave exactly like $s.
1206 There is now a pseudo variable @$ (readble and writable), location
1207 of the lhs of the rule (by default ranging from the location of
1208 the first symbol of the rhs, to the location of the last symbol,
1209 or, if the rhs is empty, YYLLOC).
1211 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
1213 (yyparse): When providing a default semantic action, provide a
1214 default location action.
1215 (after the $): No longer change `*YYLSP', just stack YYLOC the
1216 same way you stack YYVAL.
1217 * src/reader.c (read_declarations): Use warns.
1218 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
1219 (copy_action, case '@'): Likewise.
1220 Use a standard error message, to save useless work from
1223 2000-03-17 Akim Demaille <akim@epita.fr>
1225 * src/bison.s1: Formatting and cosmetics changes.
1226 * src/reader.c: Likewise.
1227 Update the Copyright notice.
1229 2000-03-17 Akim Demaille <akim@epita.fr>
1231 * src/bison.s1 (#line): All set to `#line' only, since the
1232 Makefile now handles them.
1234 2000-03-16 Akim Demaille <akim@epita.fr>
1236 * src/output.c (output_rule_data): Output the documentation of
1238 (Copyright notice): Update.
1241 2000-03-16 Akim Demaille <akim@epita.fr>
1243 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
1244 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
1245 One `#if YYDEBUG' remains, since it uses variables which are
1246 defined only if `YYDEBUG != 0'.
1248 2000-03-16 Akim Demaille <akim@epita.fr>
1250 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
1251 and related variables so that the similarities are highlighted.
1253 2000-03-16 Akim Demaille <akim@epita.fr>
1255 * src/bison.s1: Properly indent CPP directives.
1257 2000-03-16 Akim Demaille <akim@epita.fr>
1259 * src/bison.s1: Properly indent the `alloca' CPP section.
1261 2000-03-16 Akim Demaille <akim@epita.fr>
1263 Do not hard code values of directories in `configure.in'.
1264 Update the `configure' tool chain.
1266 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
1268 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
1269 (AC_OUTPUT): Add m4/Makefile.
1270 Bump to bison 1.28a, 1.29 has never been released.
1271 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
1272 handled via src/Makefile.am.
1273 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
1274 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
1276 * Makefile.am (SUBDIRS): Add m4.
1277 (ACLOCAL_AM_FLAGS): New variable.
1278 (AUTOMAKE_OPTIONS): Add check-news.
1279 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
1280 the proper line number and file name.
1281 (DEFS): Propagate the location of bison library files and of the
1283 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
1285 * acinclude.m4: Remove, replaced by the directory m4.
1286 * m4/Makefile.am (EXTRA_DIST): New variable.
1287 * m4/gettext.m4: New file, from the fileutils.
1288 * m4/lcmessage.m4: Likewise
1289 * m4/progtest.m4: Likewise.
1290 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
1292 2000-03-10 Akim Demaille <akim@epita.fr>
1295 Formatting changes of various comments.
1296 Respect the GNU coding standards at various places.
1297 Don't use `_()' when no translation is needed.
1299 1999-12-13 Jesse Thilo <jthilo@gnu.org>
1302 OS/2 honors TMPDIR environment variable.
1304 1999-12-13 Jesse Thilo <jthilo@gnu.org>
1306 * doc/bison.texinfo: Tweaked spelling and grammar.
1308 Removed reference to price of printed copy.
1309 Mention BISON_SIMPLE and BISON_HAIRY.
1311 1999-12-13 Jesse Thilo <jthilo@gnu.org>
1313 * configure.in, NEWS:
1314 Bison 1.29 released.
1316 1999-10-27 Jesse Thilo <jthilo@gnu.org>
1318 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
1319 Added reference card.
1321 1999-07-26 Jesse Thilo <jthilo@gnu.org>
1323 * po/ru.po: Added Russian translation.
1325 1999-07-26 Jesse Thilo <jthilo@gnu.org>
1327 * configure.in: Added Russian translation.
1329 1999-07-06 Jesse Thilo <jthilo@gnu.org>
1331 * configure.in, NEWS, README:
1332 Released version 1.28.
1334 1999-06-14 Jesse Thilo <jthilo@gnu.org>
1337 Squashed redefinition warning on some systems.
1339 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
1340 Have configure build version string instead of relying on ANSI string
1343 1999-06-14 Jesse Thilo <jthilo@gnu.org>
1345 * po/POTFILES.in: Got rid of version.c.
1347 1999-06-14 Jesse Thilo <jthilo@gnu.org>
1349 * acconfig.h, configure.in:
1350 Have configure build version string instead of relying on ANSI string
1353 1999-06-08 Jesse Thilo <jthilo@gnu.org>
1356 Dropped mention of `+' for long-named options.
1358 1999-05-30 Jesse Thilo <jthilo@gnu.org>
1360 * src/files.c: Added <unistd.h> for unlink().
1362 * src/Makefile.am, src/system.h:
1365 1999-05-30 Jesse Thilo <jthilo@gnu.org>
1367 * README: Added a FAQ list.
1369 * configure.in, acconfig.h:
1372 1999-05-30 Jesse Thilo <jthilo@gnu.org>
1374 * doc/FAQ, doc/Makefile.am:
1377 1999-05-19 Jesse Thilo <jthilo@gnu.org>
1379 * src/alloc.h, src/symtab.h, src/version.c:
1380 Protected inclusion of "config.h" with HAVE_CONFIG_H.
1382 1999-04-18 Jesse Thilo <jthilo@gnu.org>
1384 * src/.cvsignore, src/Makefile.am:
1385 Reorganized: sources in `src', documentation in `doc'.
1387 * src/lex.c (literalchar):
1388 fixed the code for escaping double quotes (thanks
1391 1999-04-18 Jesse Thilo <jthilo@gnu.org>
1393 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
1394 Adjusted paths to reflect directory reorganization.
1396 1999-04-18 Jesse Thilo <jthilo@gnu.org>
1398 * doc/.cvsignore, doc/Makefile.am:
1399 Reorganized: sources in `src', documentation in `doc'.
1401 1999-04-18 Jesse Thilo <jthilo@gnu.org>
1404 Updated AC_INIT file to reflect directory reorganization.
1406 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
1407 Reorganized: sources in `src', documentation in `doc'.
1409 1999-04-13 Jesse Thilo <jthilo@gnu.org>
1412 Don't declare calloc() and realloc() if not necessary.
1414 1999-04-13 Jesse Thilo <jthilo@gnu.org>
1416 * configure.in, acconfig.h, acinclude.m4:
1417 Don't declare calloc() and realloc() if not necessary.
1419 1999-03-23 Jesse Thilo <jthilo@gnu.org>
1421 * po/.cvsignore: Added i18n support.
1423 1999-03-23 Jesse Thilo <jthilo@gnu.org>
1425 * acconfig.h, configure.in, Makefile.am:
1428 1999-03-22 Jesse Thilo <jthilo@gnu.org>
1430 * src/bison.s1: Fixed #line numbers.
1432 1999-03-15 Jesse Thilo <jthilo@gnu.org>
1434 * po/es.po, po/fr.po, po/nl.po, po/de.po:
1435 Added PO files from Translation Project.
1437 1999-03-03 Jesse Thilo <jthilo@gnu.org>
1440 Added support for non-ANSI compilers (ansi2knr).
1442 1999-02-16 Jesse Thilo <jthilo@gnu.org>
1444 * configure.in: Bumped version number to 1.27.
1447 Added `bison.simple' to list of files removed by `make distclean'.
1449 1999-02-12 Jesse Thilo <jthilo@gnu.org>
1451 * src/files.c, src/files.h:
1452 Defined locations of parser files in config.h instead of Makefile.
1454 1999-02-12 Jesse Thilo <jthilo@gnu.org>
1456 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
1457 Defined locations of parser files in config.h instead of Makefile.
1459 1999-02-09 Jesse Thilo <jthilo@gnu.org>
1462 Removed inappropriate use of $< macro.
1464 1999-02-05 Jesse Thilo <jthilo@gnu.org>
1466 * po/Makefile.in.in, po/POTFILES.in:
1467 Add `po' directory skeleton.
1469 1999-01-27 Jesse Thilo <jthilo@gnu.org>
1471 * README: Document help-bison list.
1473 * configure.in: Add check for mkstemp().
1475 1999-01-20 Jesse Thilo <jthilo@gnu.org>
1477 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
1478 Hush a few compiler warnings.
1481 Add tryclose(), which verifies that fclose was successful.
1482 Hush a couple of compiler warnings.
1484 1999-01-20 Jesse Thilo <jthilo@gnu.org>
1486 * Makefile.am, OChangeLog:
1487 ChangeLog is now automatically generated. Include the old version as
1490 1999-01-14 Jesse Thilo <jthilo@gnu.org>
1492 * 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:
1495 1999-01-14 Jesse Thilo <jthilo@gnu.org>
1497 * doc/bison.texinfo: Fix formatting glitch.
1499 * doc/bison.texinfo: Update FSF address.
1501 1999-01-14 Jesse Thilo <jthilo@gnu.org>
1503 * acconfig.h: Update FSF address.
1505 1999-01-08 Jesse Thilo <jthilo@gnu.org>
1508 Don't define PACKAGE here, since config.h defines it.
1510 1998-12-30 Jesse Thilo <jthilo@gnu.org>
1512 * src/reader.c: Update copyright date.
1515 Ditch sprintf to statically-sized buffers in fatal/warn functions in
1516 favor of output directly to stderr (avoids buffer overruns).
1518 * src/reader.c: Some checks for premature EOF.
1520 * 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:
1521 Use prototypes if the compiler understands them.
1523 * src/files.c: Honor TMPDIR on Unix hosts.
1524 Use prototypes if the compiler understands them.
1527 Fix a couple of buffer overrun bugs.
1528 Use prototypes if the compiler understands them.
1530 * src/system.h: Include unistd.h and ctype.h.
1531 Use #ifdef instead of #if for NLS symbols.
1533 1998-12-30 Jesse Thilo <jthilo@gnu.org>
1535 * doc/bison.texinfo:
1536 Delete comment "consider using @set for edition number, etc..." since
1537 we now are doing so.
1539 1998-12-30 Jesse Thilo <jthilo@gnu.org>
1542 Use prototypes if the compiler understands them.
1544 * NEWS: Document 1.26 highlights.
1546 * Makefile.am: Require Automake 1.3 or later.
1549 Use prototypes if the compiler understands them.
1551 1998-12-29 Jesse Thilo <jthilo@gnu.org>
1554 Use VERSION symbol from automake for version number.
1556 1998-12-29 Jesse Thilo <jthilo@gnu.org>
1558 * acconfig.h, configure.in, version.cin:
1559 Use VERSION symbol from automake for version number.
1561 1998-11-28 Jesse Thilo <jthilo@gnu.org>
1564 Distribute original version of simple parser (bison.s1), not built
1565 version (bison.simple).
1567 1998-11-28 Jesse Thilo <jthilo@gnu.org>
1569 * doc/bison.texinfo: Add info dir entry.
1571 * doc/bison.texinfo:
1572 Let automake put version number into documentation.
1574 1998-11-26 Jesse Thilo <jthilo@gnu.org>
1576 * src/bison.cld, src/build.com, src/vmshlp.mar:
1577 Add non-RCS files from /gd/gnu/bison.
1579 1998-11-26 Jesse Thilo <jthilo@gnu.org>
1582 Document the BISON_HAIRY and BISON_SIMPLE variables.
1584 1998-11-25 Jesse Thilo <jthilo@gnu.org>
1586 * src/version.c: Build version.c automatically.
1589 Fix token numbering (used to start at 258, not 257).
1591 * src/system.h: Include config.h.
1593 * src/getargs.c: Update bug report address.
1595 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
1596 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
1598 1998-11-25 Jesse Thilo <jthilo@gnu.org>
1601 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
1603 * configure.in, version.cin:
1604 Build version.c automatically.
1606 * AUTHORS: Add AUTHORS file.
1608 * README: Update bug report address.
1611 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
1613 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
1616 1998-11-25 Jesse Thilo <jthilo@gnu.org>
1618 * doc/bison.texinfo: Clean up some formatting.
1620 1998-05-05 Richard Stallman <rms@gnu.org>
1622 * doc/bison.texinfo:
1623 Explain better why to make a pure parser.
1625 1998-01-05 Richard Stallman <rms@gnu.org>
1627 * src/files.c (openfiles):
1628 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
1629 find a temporary directory, if possible. Do not unlink files while
1632 1997-08-25 Richard Stallman <rms@gnu.org>
1634 * src/reader.c (stack_offset;):
1635 Change some warni to warns.
1637 * src/lex.c (literalchar): Use warns, not warni.
1639 1997-06-28 Richard Stallman <rms@gnu.org>
1641 * src/bison.s1: Add a Bison version comment.
1643 * src/main.c (fatal, warn, berror):
1646 1997-06-28 Richard Stallman <rms@gnu.org>
1648 * Makefile.in (bison_version): New variable.
1649 (dist): Use that variable.
1650 (bison.s1): Substitute the Bison version into bison.simple.
1652 * bison.simple: Add a Bison version comment.
1654 1997-06-18 Richard Stallman <rms@gnu.org>
1656 * src/main.c (fatal, warn, berror):
1657 Make error messages standard.
1658 (toomany): Improve error message text.
1660 * 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:
1661 new.h renamed to alloc.h.
1663 1997-06-18 Richard Stallman <rms@gnu.org>
1665 * Makefile.in: new.h renamed to alloc.h.
1667 1997-05-24 Richard Stallman <rms@gnu.org>
1669 * src/lex.c (literalchar):
1670 Fix the code for escaping \, " and '.
1672 (lex): Avoid trouble when there are many chars
1673 to discard in a char literal with just several chars in it.
1675 1997-05-17 Richard Stallman <rms@gnu.org>
1678 Use malloc, if using alloca is troublesome.
1679 (YYSTACK_USE_ALLOCA): New flag macro.
1680 Define it for some systems and compilers.
1681 (YYSTACK_ALLOC): New macro.
1682 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1683 If it was malloc'd, free it.
1685 1997-05-17 Richard Stallman <rms@gnu.org>
1688 Use malloc, if using alloca is troublesome.
1689 (YYSTACK_USE_ALLOCA): New flag macro.
1690 Define it for some systems and compilers.
1691 (YYSTACK_ALLOC): New macro.
1692 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1693 If it was malloc'd, free it.
1695 1997-04-23 Richard Stallman <rms@gnu.org>
1698 (alloca) [__hpux]: Always define as __builtin_alloca.
1700 1997-04-23 Richard Stallman <rms@gnu.org>
1703 (alloca) [__hpux]: Always define as __builtin_alloca.
1705 1997-04-22 Richard Stallman <rms@gnu.org>
1708 [__hpux]: Include alloca.h (right for HPUX 10)
1709 instead of declaring alloca (right for HPUX 9).
1711 * src/bison.s1 (__yy_memcpy):
1712 Declare arg `count' as unsigned int.
1713 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1715 1997-04-22 Richard Stallman <rms@gnu.org>
1718 [__hpux]: Include alloca.h (right for HPUX 10)
1719 instead of declaring alloca (right for HPUX 9).
1721 * bison.simple (__yy_memcpy):
1722 Declare arg `count' as unsigned int.
1723 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1725 1997-01-03 Richard Stallman <rms@gnu.org>
1727 * src/allocate.c: [__STDC__ or _MSC_VER]:
1728 Declare calloc and realloc to return void *.
1730 1997-01-02 Richard Stallman <rms@gnu.org>
1733 [_MSC_VER]: Include stdlib.h and process.h.
1734 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1736 * src/main.c (main): Return FAILURE as a value.
1737 (printable_version): Declare arg as int, not char.
1739 1997-01-02 Richard Stallman <rms@gnu.org>
1741 * Makefile.in (dist):
1742 Explicitly check for symlinks, and copy them.
1744 1996-12-19 Richard Stallman <rms@gnu.org>
1747 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1749 1996-12-18 Paul Eggert <eggert@gnu.org>
1751 * src/bison.s1 (yyparse):
1752 If __GNUC__ and YYPARSE_PARAM are both defined,
1753 declare yyparse to have a void * argument.
1755 1996-12-18 Paul Eggert <eggert@gnu.org>
1757 * bison.simple (yyparse):
1758 If __GNUC__ and YYPARSE_PARAM are both defined,
1759 declare yyparse to have a void * argument.
1761 1996-12-17 Richard Stallman <rms@gnu.org>
1763 * src/reduce.c (nbits): Add some casts.
1765 1996-08-12 Richard Stallman <rms@gnu.org>
1767 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1769 1996-08-12 Richard Stallman <rms@gnu.org>
1771 * bison.simple: Test _MSDOS as well as _MSDOS_.
1773 1996-07-31 Richard Stallman <rms@gnu.org>
1776 [__sun && __i386]: Include alloca.h.
1778 1996-07-31 Richard Stallman <rms@gnu.org>
1781 [__sun && __i386]: Include alloca.h.
1783 1996-07-30 Richard Stallman <rms@gnu.org>
1785 * src/bison.s1: Comment change.
1787 * src/bison.s1: Test _MSDOS_, not MSDOS.
1789 1996-07-30 Richard Stallman <rms@gnu.org>
1791 * bison.simple: Comment change.
1793 * bison.simple: Test _MSDOS_, not MSDOS.
1795 1996-06-01 Richard Stallman <rms@gnu.org>
1797 * 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:
1798 Insert `_' macro around many string constants.
1801 Insert `_' macro around many string constants.
1803 (main): Call setlocale, bindtextdomain and textdomain.
1805 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1806 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1807 [ENABLE_NLS]: Include libintl.h.
1808 [ENABLE_NLS] (gettext): Define.
1809 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1810 (N_, PACKAGE, LOCALEDIR): New macros.
1812 1996-06-01 Richard Stallman <rms@gnu.org>
1814 * POTFILES.in: New file.
1816 * Makefile.in (allocate.o):
1817 Define target explicitly.
1819 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1820 (LDFLAGS): Set to @LDFLAGS@.
1821 (configure): Run autoconf only if preceding `cd' succeeds.
1822 (bison.s1): Redirect output to temporary file then move the
1823 temporary to the target, rather than redirecting directly to bison.s1.
1824 (clean): Remove config.status and config.log.
1825 (distclean): Don't remove config.status here.
1827 1996-05-12 Richard Stallman <rms@gnu.org>
1830 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1832 1996-05-12 Richard Stallman <rms@gnu.org>
1835 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1837 1996-05-11 Richard Stallman <rms@gnu.org>
1839 * src/bison.s1 (__yy_memcpy):
1840 Really reorder the args, as was supposedly done on Feb 14 1995.
1841 (yyparse): Calls changed accordingly.
1843 1996-05-11 Richard Stallman <rms@gnu.org>
1845 * Makefile.in (dist): Don't use $(srcdir).
1847 * bison.simple (__yy_memcpy):
1848 Really reorder the args, as was supposedly done on Feb 14 1995.
1849 (yyparse): Calls changed accordingly.
1851 1996-01-27 Richard Stallman <rms@gnu.org>
1853 * src/output.c (output_rule_data):
1854 Test YYERROR_VERBOSE in the conditional
1855 around the definition of ttyname.
1857 1995-12-29 Richard Stallman <rms@gnu.org>
1860 Fix line numbers in #line commands.
1862 1995-12-29 Richard Stallman <rms@gnu.org>
1865 Fix line numbers in #line commands.
1867 1995-12-27 Richard Stallman <rms@gnu.org>
1869 * src/bison.s1 (YYPARSE_PARAM_DECL):
1870 In C++, make it always null.
1871 (YYPARSE_PARAM_ARG): New macro.
1872 (yyparse): Use YYPARSE_PARAM_ARG.
1874 1995-12-27 Richard Stallman <rms@gnu.org>
1876 * bison.simple (YYPARSE_PARAM_DECL):
1877 In C++, make it always null.
1878 (YYPARSE_PARAM_ARG): New macro.
1879 (yyparse): Use YYPARSE_PARAM_ARG.
1881 1995-11-29 Richard Stallman <rms@gnu.org>
1883 * doc/bison.texinfo:
1884 Describe literal string tokens, %raw, %no_lines, %token_table.
1886 1995-11-29 Daniel Hagerty <hag@gnu.org>
1888 * doc/bison.texinfo: Fixed update date
1890 1995-10-16 Richard Stallman <rms@gnu.org>
1892 * src/version.c: Version 1.25.
1894 1995-10-16 Richard Stallman <rms@gnu.org>
1896 * NEWS: *** empty log message ***
1898 1995-10-16 Richard Stallman <rms@gnu.org>
1900 * doc/bison.1, doc/bison.rnh:
1903 1995-10-15 Richard Stallman <rms@gnu.org>
1905 * src/vmsgetargs.c, src/getargs.c:
1906 Added -n, -k, and -raw switches.
1907 (noparserflag, toknumflag, rawtoknumflag): New variables.
1909 * src/symtab.h (SALIAS):
1910 New #define for adding aliases to %token.
1911 (struct bucket): Added `alias' field.
1913 * src/reduce.c (reduce_grammar):
1914 Revise error message.
1915 (print_notices): Remove final `.' from error message.
1917 * src/reader.c (reader_output_yylsp):
1919 (readgram): Use `#if 0' around code that accepted %command
1920 inside grammar rules: The documentation doesn't allow it,
1921 and it will fail since the %command processors scan for the next %.
1922 (parse_token_decl): Extended the %token
1923 declaration to allow a multi-character symbol as an alias.
1924 (parse_thong_decl): New function.
1925 (read_declarations): Added %thong declarations.
1926 (read_declarations): Handle NOOP to deal with allowing
1927 % declarations as another means to specify the flags.
1928 (readgram): Allow %prec prior to semantics embedded in a rule.
1929 (skip_to_char, read_declarations, copy_definition)
1930 (parse_token_decl, parse_start_decl, parse_type_decl)
1931 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
1932 (get_type_name, copy_guard, copy_action, readgram)
1933 (get_type, packsymbols): Revised most error messages.
1934 Changed `fatal' to `warnxxx' to avoid aborting for error.
1935 Revised and use multiple warnxxx functions to avoid using VARARGS1.
1936 (read_declarations): Improve the error message for
1937 an invalid character. Do not abort.
1938 (read_declarations, copy_guard, copy_action): Use
1939 printable_version to avoid unprintable characters in printed output.
1940 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
1941 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
1942 Allow the type of a non-terminal can be given
1943 more than once, as long as all specifications give the same type.
1946 (output_headers, output_trailers, output, output_gram)
1947 (output_rule_data): Implement noparserflag variable.
1948 Implement toknumflag variable.
1949 (output): Call reader_output_yylsp to output LTYPESTR.
1951 * src/main.c (main):
1952 If reader sees an error, don't process the grammar.
1953 (fatals): Updated to not use VARARGS1.
1954 (printable_version, int_to_string, warn, warni, warns, warnss)
1955 (warnsss): New error reporting functions. Avoid abort for error.
1958 Added THONG and NOOP for alias processing.
1959 Added SETOPT for the new code that allows setting options with %flags.
1962 Include getopt.h. Add some extern decls.
1963 (safegetc): New function to deal with EOF gracefully.
1964 (literalchar); new function to deal with reading \ escapes.
1965 (lex): Use literalchar.
1966 (lex): Implemented "..." tokens.
1967 (literalchar, lex, parse_percent_token): Made tokenbuffer
1968 always contain the token. This includes growing the token
1969 buffer while reading an integer.
1970 (parse_percent_token): Replaced if-else statement with percent_table.
1971 (parse_percent_token): Added % declarations as another
1972 way to specify the flags -n, -l, and -r. Also added hooks for
1973 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
1974 major changes to files.c.
1975 (lex) Retain in the incoming stream a character following
1977 (skip_white_space, lex): Revised most error messages
1978 and changed fatal to warn to avoid aborting.
1979 (percent_table): Added %thong declarations.
1981 * src/gram.h: Comment changes.
1983 * src/files.c (openfiles, open_extra_files, done):
1985 and actfile file. Handle noparserflag. Both for -n switch.
1987 * src/conflicts.c (resolve_sr_conflict):
1988 Remove use of alloca.
1990 1995-06-01 Jim Meyering <meyering@gnu.org>
1992 * doc/bison.texinfo: *** empty log message ***
1994 1995-05-06 Richard Stallman <rms@gnu.org>
1996 * src/bison.s1: Comment change.
1998 1995-05-06 Richard Stallman <rms@gnu.org>
2000 * bison.simple: Comment change.
2002 1995-05-03 Richard Stallman <rms@gnu.org>
2004 * src/version.c: Version now 1.24.
2006 * src/bison.s1: Change distribution terms.
2008 * src/version.c: Version now 1.23.
2010 1995-05-03 Richard Stallman <rms@gnu.org>
2012 * doc/bison.texinfo:
2013 Rewrite "Conditions for Using Bison".
2014 Update version to 1.24.
2016 1995-05-03 Richard Stallman <rms@gnu.org>
2018 * bison.simple: Change distribution terms.
2020 1995-02-23 Richard Stallman <rms@gnu.org>
2022 * src/files.c: Test __VMS_POSIX as well as VMS.
2024 1995-02-14 Jim Meyering <meyering@gnu.org>
2026 * src/bison.s1 (__yy_memcpy):
2027 Renamed from __yy_bcopy to avoid
2028 confusion. Reverse FROM and TO arguments to be consistent with
2031 1995-02-14 Jim Meyering <meyering@gnu.org>
2033 * bison.simple (__yy_memcpy):
2034 Renamed from __yy_bcopy to avoid
2035 confusion. Reverse FROM and TO arguments to be consistent with
2038 1994-11-10 David J. MacKenzie <djm@gnu.org>
2044 * Makefile.in (DISTFILES): Include NEWS.
2046 * Makefile.in (DISTFILES):
2047 Include install-sh, not install.sh.
2049 * configure.in: Update to Autoconf v2 macro names.
2051 1994-10-05 David J. MacKenzie <djm@gnu.org>
2053 * Makefile.in: fix typo
2055 * Makefile.in (prefix, exec_prefix):
2056 Let configure set them.
2058 1994-09-28 David J. MacKenzie <djm@gnu.org>
2060 * Makefile.in: Set datadir to $(prefix)/share.
2062 1994-09-15 Richard Stallman <rms@gnu.org>
2065 Update copyright notice and GPL version.
2067 1994-09-15 Richard Stallman <rms@gnu.org>
2070 Update copyright notice and GPL version.
2072 1994-07-12 Richard Stallman <rms@gnu.org>
2074 * src/reduce.c, src/reader.c:
2077 1994-05-05 David J. MacKenzie <djm@gnu.org>
2079 * Makefile.in: entered into RCS
2081 1994-03-26 Richard Stallman <rms@gnu.org>
2083 * src/bison.s1: entered into RCS
2085 1994-03-26 Richard Stallman <rms@gnu.org>
2087 * bison.simple: entered into RCS
2089 1994-03-25 Richard Stallman <rms@gnu.org>
2091 * src/main.c: entered into RCS
2093 1994-03-24 Richard Stallman <rms@gnu.org>
2095 * src/conflicts.c: entered into RCS
2097 1994-01-02 Richard Stallman <rms@gnu.org>
2099 * Makefile.in: *** empty log message ***
2101 1993-11-21 Richard Stallman <rms@gnu.org>
2103 * src/bison.s1: *** empty log message ***
2105 1993-11-21 Richard Stallman <rms@gnu.org>
2107 * doc/bison.texinfo: entered into RCS
2109 * doc/bison.texinfo: *** empty log message ***
2111 1993-11-21 Richard Stallman <rms@gnu.org>
2113 * bison.simple: *** empty log message ***
2115 1993-10-25 David J. MacKenzie <djm@gnu.org>
2117 * doc/bison.texinfo: *** empty log message ***
2119 1993-10-19 Richard Stallman <rms@gnu.org>
2121 * src/bison.s1: *** empty log message ***
2123 1993-10-19 Richard Stallman <rms@gnu.org>
2125 * bison.simple: *** empty log message ***
2127 1993-10-14 Richard Stallman <rms@gnu.org>
2129 * src/bison.s1: *** empty log message ***
2131 1993-10-14 Richard Stallman <rms@gnu.org>
2133 * bison.simple: *** empty log message ***
2135 1993-09-14 David J. MacKenzie <djm@gnu.org>
2137 * doc/bison.texinfo: *** empty log message ***
2139 1993-09-13 Noah Friedman <friedman@gnu.org>
2141 * Makefile.in: *** empty log message ***
2143 1993-09-10 Richard Stallman <rms@gnu.org>
2145 * src/conflicts.c: *** empty log message ***
2147 * src/system.h: entered into RCS
2149 1993-09-10 Richard Stallman <rms@gnu.org>
2151 * doc/bison.1: entered into RCS
2153 1993-09-06 Noah Friedman <friedman@gnu.org>
2155 * src/version.c: entered into RCS
2157 1993-09-06 Noah Friedman <friedman@gnu.org>
2159 * Makefile.in: *** empty log message ***
2161 1993-07-30 David J. MacKenzie <djm@gnu.org>
2163 * Makefile.in: *** empty log message ***
2165 1993-07-24 Richard Stallman <rms@gnu.org>
2167 * src/bison.s1: *** empty log message ***
2169 1993-07-24 Richard Stallman <rms@gnu.org>
2171 * bison.simple: *** empty log message ***
2173 1993-07-08 David J. MacKenzie <djm@gnu.org>
2175 * Makefile.in: *** empty log message ***
2177 1993-07-04 Richard Stallman <rms@gnu.org>
2179 * src/bison.s1: *** empty log message ***
2181 1993-07-04 Richard Stallman <rms@gnu.org>
2183 * bison.simple: *** empty log message ***
2185 1993-06-26 David J. MacKenzie <djm@gnu.org>
2187 * src/getargs.c: entered into RCS
2189 1993-06-26 David J. MacKenzie <djm@gnu.org>
2191 * doc/bison.texinfo: *** empty log message ***
2193 * doc/bison.1: New file.
2195 1993-06-25 Richard Stallman <rms@gnu.org>
2197 * src/getargs.c: New file.
2199 1993-06-16 Richard Stallman <rms@gnu.org>
2201 * src/bison.s1: *** empty log message ***
2203 1993-06-16 Richard Stallman <rms@gnu.org>
2205 * bison.simple: *** empty log message ***
2207 1993-06-03 Richard Stallman <rms@gnu.org>
2209 * src/bison.s1: New file.
2211 1993-06-03 Richard Stallman <rms@gnu.org>
2213 * doc/bison.texinfo: *** empty log message ***
2215 1993-06-03 Richard Stallman <rms@gnu.org>
2217 * bison.simple: New file.
2219 1993-05-19 Richard Stallman <rms@gnu.org>
2221 * doc/bison.texinfo: New file.
2223 1993-05-07 Noah Friedman <friedman@gnu.org>
2225 * Makefile.in: *** empty log message ***
2227 1993-04-28 Noah Friedman <friedman@gnu.org>
2229 * src/reader.c: *** empty log message ***
2231 1993-04-23 Noah Friedman <friedman@gnu.org>
2233 * src/alloc.h: entered into RCS
2235 1993-04-20 David J. MacKenzie <djm@gnu.org>
2237 * src/version.c: *** empty log message ***
2239 * src/files.c, src/allocate.c:
2242 * src/reader.c: *** empty log message ***
2244 * src/lex.c: entered into RCS
2246 * src/conflicts.c: New file.
2248 * src/symtab.c: entered into RCS
2250 * src/alloc.h: New file.
2252 * src/LR0.c: entered into RCS
2254 1993-04-18 Noah Friedman <friedman@gnu.org>
2256 * src/reader.c: New file.
2258 * src/version.c: *** empty log message ***
2260 1993-04-18 Noah Friedman <friedman@gnu.org>
2262 * Makefile.in: *** empty log message ***
2264 1993-04-17 Noah Friedman <friedman@gnu.org>
2266 * Makefile.in: *** empty log message ***
2268 1993-04-15 Richard Stallman <rms@gnu.org>
2270 * src/main.c, src/files.c:
2273 1993-04-15 Noah Friedman <friedman@gnu.org>
2275 * configure.in: entered into RCS
2277 * configure.in: *** empty log message ***
2279 * configure.in: New file.
2281 1993-04-14 Richard Stallman <rms@gnu.org>
2283 * Makefile.in: New file.
2285 1993-04-13 Richard Stallman <rms@gnu.org>
2287 * src/version.c: New file.
2289 1993-03-25 Richard Stallman <rms@gnu.org>
2291 * src/output.c: entered into RCS
2293 1992-09-25 Richard Stallman <rms@gnu.org>
2295 * configure.bat: entered into RCS
2297 1992-06-22 Richard Stallman <rms@gnu.org>
2299 * src/vmsgetargs.c: entered into RCS
2301 1992-06-22 Richard Stallman <rms@gnu.org>
2303 * doc/bison.rnh: entered into RCS
2305 1992-04-20 David J. MacKenzie <djm@gnu.org>
2307 * README: entered into RCS
2309 1992-01-22 Richard Stallman <rms@gnu.org>
2311 * src/machine.h: entered into RCS
2313 1991-12-21 Richard Stallman <rms@gnu.org>
2315 * src/lalr.c, src/closure.c:
2318 1991-12-20 Richard Stallman <rms@gnu.org>
2320 * src/state.h: entered into RCS
2322 1991-12-18 Richard Stallman <rms@gnu.org>
2324 * src/print.c, src/nullable.c, src/derives.c:
2327 1991-11-03 David J. MacKenzie <djm@gnu.org>
2329 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
2332 1988-09-09 Richard Stallman <rms@gnu.org>
2334 * src/bison.hairy: entered into RCS
2336 1987-12-16 Richard Stallman <rms@gnu.org>
2338 * REFERENCES: entered into RCS