]> git.saurik.com Git - bison.git/blame - ChangeLog
* src/bison.simple: Add %%user_code directive at the end.
[bison.git] / ChangeLog
CommitLineData
ff48177d
MA
12001-08-29 Marc Autret <autret_m@epita.fr>
2
3 * src/bison.simple: Add %%user_code directive at the end.
4 * src/reader.c (read_additionnal_code): New.
5 (reader): Use it.
6 * src/output.c (output_program): Remove.
7 (output): Update.
8
b33160bf
MA
92001-08-28 Marc Autret <autret_m@epita.fr>
10
11 * src/output.c (output_actions): Clean up.
4e5caae2 12 (output_gram): CPP-out useless code.
b33160bf
MA
13 * src/reader.c (reader): Clean up, CPP-out useless code.
14
d1a2daf7
PB
152001-08-28 Pascal Bart <pascal.bart@epita.fr>
16
535c0e75
PB
17 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
18 directive.
d1a2daf7
PB
19 * src/bison.simple: Add `%%definitions'.
20
2b763dfe
MA
212001-08-28 Marc Autret <autret_m@epita.fr>
22
23 * config/depcomp: New file.
24
f1a87ef6
PE
252001-08-27 Paul Eggert <eggert@twinsun.com>
26
27 * src/bison.simple (yyparse): Don't take the address of an
28 item before the start of an array, as that doesn't conform to
29 the C Standard.
30
82e236e2
RA
312001-08-27 Robert Anisko <robert.anisko@epita.fr>
32
f1a87ef6 33 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
34 obstack. It was done too late here.
35
36 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
37 completely wrong.
38 (reader): Initialize the macro obstack here, since we need it to grow
39 '%define' directives.
40
41 * src/reader.h: Declare the macro obstack as extern.
42
b0cfa28a
RA
432001-08-27 Robert Anisko <robert.anisko@epita.fr>
44
45 * src/output.c (output_parser): Fix. Store single '%' characters in
46 the output obstack instead of throwing them away.
47
6fc74234
AD
482001-08-27 Akim Demaille <akim@epita.fr>
49
50 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
51
9c76d118
RA
522001-08-25 Robert Anisko <robert.anisko@epita.fr>
53
54 * lib/Makefile.am: Adjust.
55
a8289c62
RA
562001-08-25 Robert Anisko <robert.anisko@epita.fr>
57
58 * src/bison.simple: Update and add '%%' directives.
59
b6610515
RA
602001-08-25 Robert Anisko <robert.anisko@epita.fr>
61
62 * src/reader.c (reader): Remove calls to 'output_headers' and
63 'output_trailers'. Remove some C output.
64 (readgram): Disable a piece of code that was writing a default
65 definition for 'YYSTYPE'.
66 (reader_output_yylsp): Remove.
67 (packsymbols): Output token defintions to a macro.
68 (copy_definition): Disable C output.
6fc74234 69
b6610515
RA
70 * src/reader.c (parse_macro_decl): New function used to parse macro
71 declarations.
72 (copy_string2): Put the body of copy_string into this new function.
73 Add a parameter to let the caller choose whether he wants to copy the
74 string delimiters or not.
75 (copy_string): Be a simple call to copy_string2 with the last argument
76 bound to true.
77 (read_declarations): Add case for macro definition.
78 (copy_identifier): New.
6fc74234 79 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
80 rather than lex.
81
26f609ff
RA
822001-08-25 Robert Anisko <robert.anisko@epita.fr>
83
84 * src/output.c (prepare): Add prefixed names.
85 (output_parser): Output semantic actions.
86 (output_parser): Fix bug on '%%line' directives.
6fc74234 87
26f609ff
RA
88 * src/output.c (output_headers): Remove. The C code printed by this
89 function should now be in the skeletons.
90 (output_trailers): Remove.
91 (output): Disable call to 'reader_output_yylsp'.
92 (output_rule_data): Do not output tables to the table obstack.
93
94 * src/output.c: Remove some C dedicated output.
95 Improve the use of macro and output obstacks.
96 (output_defines): Remove.
6fc74234 97
26f609ff
RA
98 * src/output.c (output_token_translations): Associate 'translate'
99 table with a macro. No output to the table obstack.
100 (output_gram): Same for 'rhs' and 'prhs'.
101 (output_stos): Same for 'stos'.
102 (output_rule_data): Same for 'r1' and 'r2'.
103 (token_actions): Same for 'defact'.
104 (goto_actions): Same for 'defgoto'.
105 (output_base): Same for 'pact' and 'pgoto'.
106 (output_table): Same for 'table'.
107 (output_check): Same for 'check'.
6fc74234 108
26f609ff
RA
109 * src/output.c (output_table_data): New function.
110 (output_short_table): Remove.
111 (output_short_or_char_table): Remove.
6fc74234 112
26f609ff
RA
113 * src/output.c (output_parser): Replace most of the skeleton copy code
114 with something new. Skeletons are now processed character by character
115 rather than line by line, and Bison looks for '%%' macros. This is the
116 first step in making Bison's output process (a lot) more flexible.
117 (output_parser): Use the macro table.
118
6f43b113
RA
1192001-08-25 Robert Anisko <robert.anisko@epita.fr>
120
121 * src/main.c (main): Initialize the macro table.
122
dd3127cf
RA
1232001-08-25 Robert Anisko <robert.anisko@epita.fr>
124
125 * src/lex.c (percent_table): Add tok_define.
126 * src/lex.h: Add tok_define.
127
aa321494
RA
1282001-08-25 Robert Anisko <robert.anisko@epita.fr>
129
130 * src/macrotab.c: New file.
131 * src/macrotab.h: New file.
132 * src/Makefile.am: Update.
133
68bd3b6b
RA
1342001-08-25 Robert Anisko <robert.anisko@epita.fr>
135
136 * lib/hash.c: New file.
137 * lib/hash.h: New file.
138 * lib/Makefile.am: Update.
139
45f8dd1e
AD
1402001-08-15 Akim Demaille <akim@epita.fr>
141
142 Version 1.28c.
143
40a64a7a 1442001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
145
146 * src/reader.c (readgram): Indent output macro YYSTYPE.
147 (packsymbols): Likewise.
148 (output_token_defines): Likewise.
149 * src/files.c: Standardize.
150 (compute_header_macro): New.
151 (defines_obstack_save): New. Use compute_header_macro.
152 (output_files): Update. Use defines_obstack_save.
153
f9a8293a
AD
1542001-08-15 Akim Demaille <akim@epita.fr>
155
156 * doc/bison.texinfo (Table of Symbols): Document
157 YYSTACK_USE_ALLOCA.
158
150ca7a7
AD
1592001-08-15 Akim Demaille <akim@epita.fr>
160
161 * missing: Update from CVS Automake.
162 * config/config.guess, config/config.sub, config/texinfo.tex:
163 Update from gnu.org.
164
69b5cec4
AD
1652001-08-15 Akim Demaille <akim@epita.fr>
166
167 * Makefile.maint: Sync with CVS Autoconf.
168
f2b5126e
PB
1692001-08-14 Pascal Bart <pascal.bart@epita.fr>
170
69b5cec4 171 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
172 `fdl.texi'.
173 * doc/fdl.texi: Add to package.
174
4ecbf796
MA
1752001-08-14 Marc Autret <autret_m@epita.fr>
176
177 Turn on %{source,header}_extension features.
178
69b5cec4 179 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
180 source_extension.
181 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 182 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
183 between options.
184
95fb5662
MA
1852001-08-14 Marc Autret <autret_m@epita.fr>
186
187 * src/files.c (compute_base_names): Add extensions computing when
188 `--file-prefix' used.
189 Standardize function calls.
190
78d09da9
MA
1912001-08-13 Marc Autret <autret_m@epita.fr>
192
69b5cec4 193 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
194 defining it (defined but null disables alloca).
195
5a009f2c
MA
1962001-08-13 Marc Autret <autret_m@epita.fr>
197
198 * src/bison.simple (_yy_memcpy): CPP reformat.
199
1e41465a
PB
2002001-08-13 Pascal Bart <pascal.bart@epita.fr>
201
202 * tests/atconfig.in (CPPFLAGS): Fix.
203
c67a198d
PB
2042001-08-10 Pascal Bart <pascal.bart@epita.fr>
205
79282c6c 206 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
207 `gpl.texi'.
208 * doc/gpl.texi: Add to package.
209
09a6de7e
MA
2102001-08-10 Marc Autret <autret_m@epita.fr>
211
212 * src/print_graph.h: Fix.
213 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
214
b77b9ee0
AD
2152001-08-10 Akim Demaille <akim@epita.fr>
216
217 * src/system.h: Provide default declarations for stpcpy, strndup,
218 and strnlen.
219
3e259915
MA
2202001-08-10 Robert Anisko <anisko_r@epita.fr>
221
222 * doc/bison.texinfo (Locations): Update @$ stuff.
223
ca96bc2d
MA
2242001-08-09 Robert Anisko <anisko_r@epita.fr>
225
226 * src/bison.simple (YYLLOC_DEFAULT): Update.
227 (yyparse): Adjust.
228
fdc6758b
MA
2292001-08-08 Marc Autret <autret_m@epita.fr>
230
b77b9ee0 231 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
232 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
233 Reported by Fabrice Bauzac.
957d4dbf 234
600cad3b
MA
2352001-08-08 Marc Autret <autret_m@epita.fr>
236
237 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
238 * src/vcg.c (output_node): Fix.
239 * src/vcg.h: Cleanup.
240 * src/print_graph.c: Add comments.
b77b9ee0 241 (node_output_size): New global variable. Simplify the formatting of
600cad3b 242 the VCG graph output.
b77b9ee0 243 (print_actions): Unused code is now used. It notifies the final state
600cad3b 244 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 245 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
246 blue.
247 Get the current node name and node_obstack by argument.
248 (node_obstack): New variable.
249 (print_state): Manage node_obstack.
250 (print_core): Use node_obstack given by argument.
251 A node is not only computed here but in print_actions also.
252 (print_graph): CPP out useless code instead of commenting it.
253
976e528f
AD
2542001-08-07 Pascal Bart <pascal.bart@epita.fr>
255
256 * tests/atconfig.in (CPPFLAGS): Fix.
257
20e8e5ca
AD
2582001-08-07 Akim Demaille <akim@epita.fr>
259
260 * src/print_graph.c (quote): New.
261 (print_core): Use it.
262
957d4dbf 2632001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 264
3e3da797
AD
265 * src/vcg.c (complain.h): Include it.
266 Unepitaize `return' invocations.
c4b66126 267 [NDEBUG] (main): Remove.
79282c6c 268 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
269 * src/files.c (open_files): Initialize graph_obstack.
270 * src/print_graph.c (print_actions): CPP out useless code.
271 (print_core): Don't output the last `\n' in labels.
272 Use `quote'.
273 * src/files.c (output_files): Output the VCG file.
274 * src/main.c (main): Invoke print_graph ();
3e3da797 275
957d4dbf 2762001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
277
278 Automaton VCG graph output.
279 Using option ``-g'' or long option ``--graph'', you can generate
280 a gram_filename.vcg file containing a VCG description of the LALR (1)
281 automaton of your grammar.
282
283 * src/main.c: Call to print_graph() function.
284 * src/getargs.h: Update.
285 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
286 (graph_flag): New flag.
287 (longopts): Update.
288 (getargs): Add case `g'.
289 * src/files.c (graph_obstack): New obstack struct.
290 (open_files): Initialize new obstack.
291 (output_files): Saves graph_obstack if required.
292 * src/files.h (graph_obstack): New extern declaration.
293 * src/Makefile.am: Add new source files.
294
957d4dbf 2952001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
296
297 * src/print_graph.c, src/print_graph.h (graph): New.
298 * src/vcg.h: New file.
299 * src/vcg.c: New file, VCG graph handling.
300
7333d403
AD
3012001-08-06 Marc Autret <autret_m@epita.fr>
302
303 Add of %source_extension and %header_extension which specify
304 the source or/and the header output file extension.
305
306 * src/files.c (compute_base_names): Remove initialisation of
307 src_extension and header_extension.
308 (compute_exts_from_gf): Update.
309 (compute_exts_from_src): Update.
310 (output_files): Update.
311 * src/reader.c (parse_header_extension_decl): New.
312 (parse_source_extension_decl): New.
313 (read_declarations): New case statements for the new tokens.
314 * src/lex.c (percent_table): Add entries for %source_extension
315 and %header_extension.
316 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
317
84163231
AD
3182001-08-06 Marc Autret <autret_m@epita.fr>
319
320 * configure.in: Bump to 1.28c.
321 * doc/bison.texinfo: Texinfo thingies.
322
8303fc42
AD
3232001-08-04 Pascal Bart <pascal.bart@epita.fr>
324
325 * tests/atconfig.in (CPPFLAGS): Add.
326 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
327
70a84437
AD
3282001-08-03 Akim Demaille <akim@epita.fr>
329
330 Version 1.28b.
331
2ce10144
AD
3322001-08-03 Akim Demaille <akim@epita.fr>
333
334 * tests/Makefile.am (check-local): Ship testsuite.
335 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
336 Include `string.h'.
337
1e3e4bc1
AD
3382001-08-03 Akim Demaille <akim@epita.fr>
339
340 * configure.in: Try using -Wformat when compiling.
341
42b45b7f
AD
3422001-08-03 Akim Demaille <akim@epita.fr>
343
344 * configure.in: Bump to 1.28b.
345
8f13fe33
AD
3462001-08-03 Akim Demaille <akim@epita.fr>
347
348 * src/complain.c: Adjust strerror_r portability issues.
349
b37ba92c
AD
3502001-08-03 Akim Demaille <akim@epita.fr>
351
352 Version 1.28a.
353
b0ce6046
AD
3542001-08-03 Akim Demaille <akim@epita.fr>
355
356 * src/getargs.c, src/getarg.h (skeleton)): Constify.
357 * src/lex.c (literalchar): Avoid name clashes on `buf'.
358 * src/getargs.c: Include complain.h.
359 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
360 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
361
d01c415b
AD
3622001-08-03 Akim Demaille <akim@epita.fr>
363
364 * src/reader.c (readgram): Display hidden chars in error messages.
365
459dd1a6
AD
3662001-08-03 Akim Demaille <akim@epita.fr>
367
368 Update to gettext 0.10.39.
369
53b74c0c
AD
3702001-08-03 Akim Demaille <akim@epita.fr>
371
372 * lib/strspn.c: New.
373
234a3be3
AD
3742001-08-01 Marc Autret <autret_m@epita.fr>
375
376 * doc/bison.texinfo: Update.
377 * doc/bison.1 (mandoc): Update.
378 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
379 * src/files.c: Support output files extensions computing.
380 (src_extension): New static variable.
381 (header_extension): New static variable.
382 (tr): New function.
383 (get_extension_index): New function, gets the index of an extension
384 filename in a string.
385 (compute_exts_from_gf): New function, computes extensions from the
386 grammar file extension.
387 (compute_exts_from_src): New functions, computes extensions from the
388 C source file extension, file given by ``-o'' option.
389 (compute_base_names): Update.
390 (output_files): Update.
391
847bf1f5
AD
3922001-08-01 Robert Anisko <anisko_r@epita.fr>
393
d995fee7 394 * doc/bison.texi: Document @$.
847bf1f5
AD
395 (Locations): New section.
396
d074a105
AD
3972001-07-18 Akim Demaille <akim@epita.fr>
398
399 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
400 * config/prev-version.txt, config/move-if-change: New.
401 * Makefile.am: Adjust.
402
3419715d
AD
4032001-07-08 Pascal Bart <pascal.bart@epita.fr>
404
405 * src/bison.simple (yyparse): Suppress warning `comparaison
406 between signed and unsigned'.
407
62ab6972
AD
4082001-07-05 Pascal Bart <pascal.bart@epita.fr>
409
410 * src/getargs.h (raw_flag): Remove.
411 * src/getargs.c: Die on `-r'/`--raw'.
412 * src/lex.c (parse_percent_token): Die on `%raw'.
413 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
414 * tests/calc.at: Suppress test with option `--raw'.
415
1e24cc5b
AD
4162001-07-14 Akim Demaille <akim@epita.fr>
417
418 * config/: New.
419 * configure.in: Require Autoconf 2.50.
420 Update to gettext 0.10.38.
421
32dfccf8
AD
4222001-03-16 Akim Demaille <akim@epita.fr>
423
424 * doc/bison.texinfo: ANSIfy the examples.
425
cd5bd6ac
AD
4262001-03-16 Akim Demaille <akim@epita.fr>
427
428 * getargs.c (skeleton): New variable.
429 (longopts): --skeleton is a new option.
430 (shortopts, getargs): -S is a new option.
431 * getargs.h: Declare skeleton.
432 * output.c (output_parser): Use it.
433
5141b016
AD
4342001-03-16 Akim Demaille <akim@epita.fr>
435
436 * m4/strerror_r.m4: New.
437 * m4/error.m4: Run AC_FUNC_STRERROR_R.
438 * lib/error.h, lib/error.c: Update.
439
447992b9
AD
4402001-03-16 Akim Demaille <akim@epita.fr>
441
442 * src/getargs.c (longopts): Clean up.
443
274d42ce
AD
4442001-02-21 Akim Demaille <akim@epita.fr>
445
446 * src/reader.c (gensym): `gensym_count' is your own.
447 Use a static buf to create the symbol name, as token_buffer is no
448 longer a buffer.
449
22c821f3
AD
4502001-02-08 Akim Demaille <akim@epita.fr>
451
452 * src/conflicts.c (conflict_report): Be sure not to append to res
453 between two calls, which could happen if both first sprintf were
454 skipped, but not the first cp += strlen.
455
18569462
AD
4562001-02-08 Akim Demaille <akim@epita.fr>
457
458 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
459 New, from fileutils 4.0.37.
460 * configure.in: Require Autoconf 2.49c. I took some time before
461 making this decision. This is the only way out for portability
462 issues in Bison, it would mean way too much duplicate effort to
463 import in Bison features implemented in 2.49c since 2.13.
464 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
465
0d8f3c8a
AD
4662001-02-02 Akim Demaille <akim@epita.fr>
467
468 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 469 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 470
f17bcd1f
AD
4712001-01-19 Akim Demaille <akim@epita.fr>
472
473 Get rid of the ad hoc handling of token_buffer in the scanner: use
474 the obstacks.
475
476 * src/lex.c (token_obstack): New.
477 (init_lex): Initialize it. No longer call...
478 (grow_token_buffer): this. Remove it.
479 Adjust all the places which used it to use the obstack.
480
511e79b3
AD
4812001-01-19 Akim Demaille <akim@epita.fr>
482
483 * src/lex.h: Rename all the tokens:
484 s/\bENDFILE\b/tok_eof/g;
485 s/\bIDENTIFIER\b/tok_identifier/g;
486 etc.
487 Let them be enums, not #define, to ease debugging.
488 Adjust all the code.
489
0d6508ef
AD
4902001-01-18 Akim Demaille <akim@epita.fr>
491
492 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
493 * src/lex.c (maxtoken, grow_token_buffer): Static.
494
6deb4447
AD
4952001-01-18 Akim Demaille <akim@epita.fr>
496
497 Since we now use obstacks, more % directives can be enabled.
498
499 * src/lex.c (percent_table): Also accept `%yacc',
500 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
501 `%debug'.
502 Handle the actions for `%semantic_parser' and `%pure_parser' here,
503 instead of returning a token.
504 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
505 * src/reader.c (read_declarations): Adjust.
506 * src/files.c (open_files): Don't call `compute_base_names', don't
507 compute `attrsfile' since they depend upon data which might be
508 *in* the input file now.
509 (output_files): Do it here.
510 * src/output.c (output_headers): Document the fact that this patch
511 introduces a guaranteed SEGV for semantic parsers.
512 * doc/bison.texinfo: Document them.
513 * tests/suite.at: Exercise these %options.
514
ff4423cc
AD
5152000-12-20 Akim Demaille <akim@epita.fr>
516
517 Also handle the output file (--verbose) with obstacks.
518
519 * files.c (foutput): Remove.
520 (output_obstack): New.
521 Adjust all dependencies.
522 * src/conflicts.c: Return a string.
523 * src/system.h (obstack_grow_string): Rename as...
524 (obstack_sgrow): this. Be ready to work with non literals.
525 (obstack_fgrow4): New.
526
956dba3a
AD
5272000-12-20 Akim Demaille <akim@epita.fr>
528
529 * src/files.c (open_files): Fix the computation of short_base_name
530 in the case of `-o foo.tab.c'.
531
337bab46
AD
5322000-12-20 Akim Demaille <akim@epita.fr>
533
534 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
535 (copy_dollar): Now that everything uses obstacks, get rid of the
536 FILE * parameters.
537
5d3214b8
AD
5382000-12-20 Akim Demaille <akim@epita.fr>
539
540 * src/files.c (open_files): Actually the `.output' file is based
541 on the short_base_name, not base_name.
542 * tests/suite.at (Checking output file names): Adjust.
543
29092a57
AD
5442000-12-20 Akim Demaille <akim@epita.fr>
545
546 * src/bison.s1: Remove, we now use directly...
547 * src/bison.simple: this.
548 * src/Makefile.am: Use pkgdata instead of data.
549
ea5607fd
AD
5502000-12-20 Akim Demaille <akim@epita.fr>
551
552 * src/files.c (guard_obstack): New.
553 (open_files): Initialize it.
554 (output_files): Dump it...
555 * src/files.h: Export it.
556 * src/reader.c (copy_guard): Use it.
557
27110317
AD
5582000-12-19 Akim Demaille <akim@epita.fr>
559
560 * src/files.c (outfile, defsfile, actfile): Removed as global
561 vars.
562 (open_files): Don't compute them.
563 (output_files): Adjust.
564 (base_name, short_base_name): Be global.
565 Adjust dependencies.
566
19c50364
AD
5672000-12-19 Akim Demaille <akim@epita.fr>
568
569 * src/files.c (strsuffix): New.
570 (stringappend): Be just like strcat but allocate.
571 (base_names): Eve out from open_files.
572 Try to simplify the rather hairy computation of base_name and
573 short_base_name.
574 (open_files): Use it.
575 * tests/suite.at (Checking output file names): New test.
576
573c1d9f
AD
5772000-12-19 Akim Demaille <akim@epita.fr>
578
579 * src/system.h (obstack_grow_literal_string): Rename as...
580 (obstack_grow_string): this.
581 * src/output.c (output_parser): Recognize `%% actions' instead of
582 `$'.
583 * src/bison.s1: s/$/%% actions/.
584 * src/bison.hairy: Likewise.
585
ef7ddedd
AD
5862000-12-19 Akim Demaille <akim@epita.fr>
587
588 * src/output.c (output_parser): Compute the `#line' lines when
589 there are.
590 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
591 Suggested by Hans Aberg.
592
ff61dabd
AD
5932000-12-19 Akim Demaille <akim@epita.fr>
594
595 Let the handling of the skeleton files be local to the procedures
596 that use it.
597
598 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
599 longer static.
600 (fparser, open_extra_files): Remove.
601 (open_files, output_files): Don't take care of fparser.
602 * src/files.h: Adjust.
603 * src/output.c (output_parser): Open and close the file to the
604 skeleton.
605 * src/reader.c (read_declarations): When %semantic_parser, open
606 fguard.
607
55b96341
AD
6082000-12-19 Akim Demaille <akim@epita.fr>
609
610 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
611 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
612
358c15b7
AD
6132000-12-19 Akim Demaille <akim@epita.fr>
614
615 * src/files.c (open_files): Yipee! We no longer need all the code
616 looking for `/tmp' since we have no tmp file.
617
7de3329e
AD
6182000-12-19 Akim Demaille <akim@epita.fr>
619
620 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
621 New macros.
622 * src/files.c (open_files): Less dependency on MSDOS etc.
623
3abcd459
AD
6242000-12-14 Akim Demaille <akim@epita.fr>
625
626 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
627 Provide a default definition.
628 Use it when executing the default @ action.
629 * src/reader.c (reader_output_yylsp): No longer include
630 `timestamp' and `text' in the default YYLTYPE.
631
2a91a95e
AD
6322000-12-12 Akim Demaille <akim@epita.fr>
633
634 * src/reader.c (copy_definition, parse_union_decl, copy_action)
635 (copy_guard): Quote the file names.
636 Reported by Laurent Mascherpa.
637
14d3eb9b
AD
6382000-12-12 Akim Demaille <akim@epita.fr>
639
640 * src/output.c (output_headers, output_program, output): Be sure
641 to escape special characters when outputting filenames.
642 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
643 (output_headers): Don't depend on them, Use ACTSTR.
644
d7045ec6
AD
6452000-11-17 Akim Demaille <akim@epita.fr>
646
647 * lib/obstack.h: Formatting changes.
648 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
649 prevents type checking.
650 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
651 cast the value to (void *): assigning a `foo *' to a `void *'
652 variable is valid.
653 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
654 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
655 append characters.
656
6fd54b73
AD
6572000-11-17 Akim Demaille <akim@epita.fr>
658
659 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
660 as...
661 (suite.m4, regression.m4, calc.m4): these.
662 * tests/atgeneral.m4: Update from CVS Autoconf.
663
4c50eae6
AD
6642000-11-17 Akim Demaille <akim@epita.fr>
665
666 * tests/regression.m4 (%union and --defines): New test,
667 demonstrating a current bug in the obstack implementation.
668
a35f64ea
AD
6692000-11-17 Akim Demaille <akim@epita.fr>
670
671 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
672 macros.
673 Use them to declare the variables which are global or local to
674 `yyparse'.
675
7de23534
AD
6762000-11-17 Akim Demaille <akim@epita.fr>
677
678 * acconfig.h: Remove, no longer used.
679
aa7815f5
AD
6802000-11-07 Akim Demaille <akim@epita.fr>
681
682 * src: s/Copyright (C)/Copyright/g.
683
5af1f549
AD
6842000-11-07 Akim Demaille <akim@epita.fr>
685
686 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
687 defining.
688 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
689
553e2b22
AD
6902000-11-07 Akim Demaille <akim@epita.fr>
691
692 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
693 Merge in a single CPP if/else.
694
8a4f41d6
AD
6952000-11-07 Akim Demaille <akim@epita.fr>
696
697 * src/output.c (output): Remove useless variables.
698 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
699 argument `data' for consistency with the prototypes.
700 Qualify it `const'.
701 (obstack_copy, obstack_copy0): Rename the second argument as
702 `address' for consistency. Qualify it `const'.
703 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
704 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
705 `const' their input argument (`data' or `address').
706 Adjust the corresponding macros to include `const' in casts.
707
095a3fb5
AD
7082000-11-03 Akim Demaille <akim@epita.fr>
709
710 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
711 s/PFILE1/BISON_HAIRY/.
712 Adjust dependencies.
713
d1cdce7c
AD
7142000-11-03 Akim Demaille <akim@epita.fr>
715
090c5ebf 716 For some reason, this was not applied.
d1cdce7c
AD
717
718 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
719 `unlink': it's no longer used.
720
9311529b
AD
7212000-11-03 Akim Demaille <akim@epita.fr>
722
723 * src/files.c (skeleton_find): New function, eved out of...
724 (open_files, open_extra_files): here.
725
d8880f69
AD
7262000-11-03 Akim Demaille <akim@epita.fr>
727
728 Don't use `atexit'.
729
730 * src/files.c (obstack_save): New function.
731 (done): Rename as...
732 (output_files): this.
733 Use `obstack_save'.
734 * src/main.c (main): Don't use `atexit' to register `done', since
735 it no longer has to remove tmp files, just call `output_files'
736 when there are no errors.
737
0dbb648e
AD
7382000-11-02 Akim Demaille <akim@epita.fr>
739
740 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
741 `unlink': it's no longer used.
742 * src/files.h: Formatting changes.
743
896fe5c1
AD
7442000-11-02 Akim Demaille <akim@epita.fr>
745
746 Remove the last uses of mktemp and unlink/delete.
747
748 * src/files.c (fdefines, ftable): Removed.
749 (defines_ostack, table_obstack): New.
750 Adjust dependencies of the former into uses of the latter.
751 * src/output.c (output_short_or_char_table, output_short_table):
752 Convert to using obstacks.
753 * src/reader.c (copy_comment2): Accept one FILE * and two
754 obstacks.
755 (output_token_defines, reader_output_yylsp): Use obstacks.
756 * src/system.h (obstack_fgrow3): New.
757
dd60faec
AD
7582000-11-01 Akim Demaille <akim@epita.fr>
759
760 Change each use of `fattrs' into a use of `attrs_obstack'.
761
762 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
763 * src/files.c (fattrs): Remove.
764 (attrs_obstack): New.
765 Adjust all dependencies.
766 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
767
8c7ebe49
AD
7682000-11-01 Akim Demaille <akim@epita.fr>
769
770 Introduce obstacks.
771 Change each use of `faction' into a use of `action_obstack'.
772
773 * lib/obstack.h, lib/obstack.c: New files.
774 * src/files.c (faction): Remove.
775 (action_obstack): New.
776 Adjust all dependencies.
777
77aee789
AD
7782000-10-20 Akim Demaille <akim@epita.fr>
779
780 * lib/quote.h (PARAMS): New macro. Use it.
781
43591cec
AD
7822000-10-16 Akim Demaille <akim@epita.fr>
783
784 * src/output.c (output_short_or_char_table): New function.
785 (output_short_table, output_token_translations): Use it.
786 (goto_actions): Use output_short_table.
787
1e9798d5
AD
7882000-10-16 Akim Demaille <akim@epita.fr>
789
790 * src/symtab.c (bucket_new): New function.
791 (getsym): Use it.
792
793 * src/output.c (output_short_table): New argument to display the
794 comment associated with the table.
795 Adjust dependencies.
796 (output_gram): Use it.
797 (output_rule_data): Nicer output layout for YYTNAME.
798
f282676b
AD
7992000-10-16 Akim Demaille <akim@epita.fr>
800
801 * src/lex.c (read_typename): New function.
802 (lex): Use it.
803 * src/reader.c (copy_dollar): Likewise.
804
550a72a3
AD
8052000-10-16 Akim Demaille <akim@epita.fr>
806
807 * src/reader.c (copy_comment2): Expect the input stream to be on
808 the `/' which is suspected to open a comment, instead of being
809 called after `//' or `/*' was read.
810 (copy_comment, copy_definition, parse_union_decl, copy_action)
811 (copy_guard): Adjust.
812
131e2fef
AD
8132000-10-16 Akim Demaille <akim@epita.fr>
814
815 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
816 `read_signed_integer'.
817
79282c5a
AD
8182000-10-16 Akim Demaille <akim@epita.fr>
819
820 * src/reader.c (copy_dollar): New function.
821 (copy_guard, copy_action): Use it.
822
ff4a34be
AD
8232000-10-16 Akim Demaille <akim@epita.fr>
824
825 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
826 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
827 New files, from Fileutils 4.0.27.
828 * src/main.c (printable_version): Remove.
829 * src/lex.c, src/reader.c: Use `quote'.
830
8312000-10-04 Akim Demaille <akim@epita.fr>
832
833 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
834
14ded682
AD
8352000-10-04 Akim Demaille <akim@epita.fr>
836
837 * doc/bison.texinfo: Various typos spotted by Neil Booth.
838
8e03724b
AD
8392000-10-04 Akim Demaille <akim@epita.fr>
840
841 When a literal string is used to define two different tokens,
842 `bison -v' segfaults.
843 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
844
845 * tests/regression.m4: New file.
846 Include the core of the sample provided by Piotr Gackiewicz.
847 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
848 properly.
849
a9e64249
AD
8502000-10-04 Akim Demaille <akim@epita.fr>
851
852 * src/reader.c (parse_expect_decl): Keep `count' within the size
853 of `buffer'.
854 From Neil Booth.
855
da9abf43
AD
8562000-10-02 Paul Eggert <eggert@twinsun.com>
857
858 * bison.s1 (yyparse): Assign the default value
859 unconditionally, to avoid a GCC warning and make the parser a
860 tad smaller.
861
c33638bb
AD
8622000-10-02 Akim Demaille <akim@epita.fr>
863
864 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
865 options.
866
444c570a
AD
8672000-10-02 Akim Demaille <akim@epita.fr>
868
869 * src/derives.c, src/print.c, src/reduce.c: To ease the
870 translation, move some `\n' out of the translated strings.
871
89cab50d
AD
8722000-10-02 Akim Demaille <akim@epita.fr>
873
874 The location tracking mechanism is precious for parse error
875 messages. Nevertheless, it is enabled only when `@n' is used in
876 the grammar, which is a different issue (you can use it in error
877 message, but not in the grammar per se). Therefore, there should
878 be another means to enable it.
879
880 * src/getargs.c (getargs): Support `--locations'.
881 (usage): Report it.
882 * src/getargs.h (locationsflag): Export it.
883 * src/lex.c (percent_table): Support `%locations'.
884 * src/reader.c (yylsp_needed): Remove this variable, now replaced
885 with `locationsflag'.
886 * doc/bison.texinfo: Document `--locations' and `%locations'.
887 Sort the options.
888 * tests/calc.m4: Test it.
889
890 For regularity of the names, replace each
891 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
892 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
893 In addition replace each `flag' with `_flag'.
894
d6c2cba0
AD
8952000-10-02 Akim Demaille <akim@epita.fr>
896
897 Also test parse error messages, including with YYERROR_VERBOSE.
898
899 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
900 associative).
901 Use it to check the computations.
902 Use it to check `nonassoc' is honored.
903 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
904 `--yyerror-verbose'.
905 (_AT_CHECK_CALC): Adjust to this option.
906 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
907
5a35a6cb
AD
9082000-10-02 Akim Demaille <akim@epita.fr>
909
910 Test also `--verbose', `--defines' and `--name-prefix'. Testing
911 the latter demonstrates a flaw in the handling of non debugging
912 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
913 was used in order to simplify:
914
915 #if YYDEBUG
916 if (yydebug)
917 {
918 ...
919 }
920 #endif
921
922 into
923
924 if (yydebug)
925 {
926 ...
927 }
928
929 unfortunately this leads to a CPP conflict when
930 `--name-prefix=foo' is used since it produces `#define yydebug
931 foodebug'.
932
933 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
934 (YYDPRINTF): New macro.
935 Spread its use.
936 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
937 the bison options.
938 Also test `--verbose', `--defines' and `--name-prefix'.
939
71da9eea
AD
9402000-10-02 Akim Demaille <akim@epita.fr>
941
942 Improve the readability of the produced parsers.
943
944 * src/bison.s1: Formatting changes.
945 Improve the comment related to the `$' mark.
946 (yydefault): Don't fall through to `yyresume': `goto' there.
947 * src/output.c (output_parser): When the `$' is met, skip the end
948 of its line.
949 New variable, `number_of_dollar_signs', to check there's exactly
950 one `$' in the parser skeleton.
951
95e36146
AD
9522000-10-02 Akim Demaille <akim@epita.fr>
953
954 * lib/xstrdup.c: New file, from the fileutils.
955 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
956 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
957 instead of strlen + xmalloc + strcpy.
958 * src/symtab.c (copys): Remove, use xstrdup instead.
959
d7020c20
AD
9602000-10-02 Akim Demaille <akim@epita.fr>
961
962 * src/gram.h (associativity): New enum type which replaces the
963 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
964 `right_assoc', `left_assoc' and `non_assoc'.
965 Adjust all dependencies.
966 * src/reader.c: Formatting changes.
967 (LTYPESTR): Don't define it, use it as a literal in
968 `reader_output_yylsp'.
969 * src/symtab.h (symbol_class): New enum type which replaces the
970 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
971 `sunknown', `stoken and `snterm'.
972
1916f98e
AD
9732000-10-02 Akim Demaille <akim@epita.fr>
974
975 * src/getargs.c (fixed_outfiles): Rename as...
976 (yaccflag): for consistency and accuracy.
977 Adjust dependencies.
978
d7913476
AD
9792000-10-02 Akim Demaille <akim@epita.fr>
980
981 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
982 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
983 difficult and introduced a lot of core dump. It turns out that
984 Bison used an implementation of `xmalloc' based on `calloc', and
985 at various places it does depend upon the initialization to 0. I
986 have not tried to isolate the pertinent places, and all the former
987 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
988 someone should address this issue.
989
990 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
991 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
992 files.
993 Adjust dependencies.
994 * src/warshall.h: New file.
995 Propagate.
996
340ef489
AD
9972000-10-02 Akim Demaille <akim@epita.fr>
998
999 Various anti-`extern in *.c' changes.
1000
1001 * src/system.h: Include `assert.h'.
1002
b2ca4022
AD
10032000-10-02 Akim Demaille <akim@epita.fr>
1004
1005 * src/state.h (nstates, final_state, first_state, first_shift)
1006 (first_reduction): Move their exportation from here...
1007 * src/LR0.h: to here.
1008 Adjust dependencies.
1009 * src/getargs.c (statisticsflag): New variable.
1010 Add support for `--statistics'.
1011 Adjust dependencies.
1012
1013 Remove a lot of now useless `extern' statements in most files.
1014
403b315b
AD
10152000-10-02 Akim Demaille <akim@epita.fr>
1016
1017 * src/LR0.h: New file.
1018 Propagate its use.
1019
07a58c13
AD
10202000-10-02 Akim Demaille <akim@epita.fr>
1021
1022 * src/print.h: New file.
1023 Propagate its use.
1024 * src/print.c: Formatting and ordering changes.
1025 (verbose, terse): Replace with...
1026 (print_results): this new function.
1027 Adjust dependencies.
1028
0619caf0
AD
10292000-10-02 Akim Demaille <akim@epita.fr>
1030
1031 * src/conflicts.c (conflict_report): New function.
1032 (conflict_log, verbose_conflict_log): Replace with...
1033 (print_conflicts): this function.
1034 Adjust dependencies.
1035 * src/conflicts.h: New file.
1036 Propagate its inclusion.
1037
3519ec76
AD
10382000-10-02 Akim Demaille <akim@epita.fr>
1039
1040 * src/nullable.h: New file.
1041 Propagate its inclusion.
1042 * src/nullable.c: Formatting changes.
1043
015acc48
AD
10442000-10-02 Akim Demaille <akim@epita.fr>
1045
1046 * src/reduce.h: New file.
1047 Propagate its inclusion.
1048 * src/reduce.c: Topological sort and other formatting changes.
1049 (bool, TRUE, FALSE): Move their definition to...
1050 * src/system.h: here.
1051
8963a27b
AD
10522000-10-02 Akim Demaille <akim@epita.fr>
1053
1054 * src/files.c: Formatting changes.
1055 (tryopen, tryclose, openfiles): Rename as...
1056 (xfopen, xfclose, open_files): this.
1057 (stringappend): static.
1058 * src/files.h: Complete the list of exported symbols.
1059 Propagate its use.
1060
a70083a3
AD
10612000-10-02 Akim Demaille <akim@epita.fr>
1062
1063 * src/reader.h: New file.
1064 Propagate its use instead of tedious list of `extern' and
1065 prototypes.
1066 * src/reader.c: Formatting changes, topological sort,
1067 s/register//.
1068
abadc117
AD
10692000-10-02 Akim Demaille <akim@epita.fr>
1070
1071 * src/lex.h: Prototype `lex.c' exported functions.
1072 * src/reader.c: Adjust.
1073 * src/lex.c: Formatting changes.
1074 (safegetc): Rename as...
1075 (xgetc): this.
1076
720d742f
AD
10772000-10-02 Akim Demaille <akim@epita.fr>
1078
1079 * src/lalr.h: New file.
1080 Propagate its inclusion instead of prototypes and `extern'.
1081 * src/lalr.c: Formatting changes, topological sorting etc.
1082
f2acea59
AD
10832000-10-02 Akim Demaille <akim@epita.fr>
1084
1085 * src/output.c (token_actions): Introduce a temporary array,
1086 YYDEFACT, that makes it possible for this function to use
1087 output_short_table.
1088
d019d655
AD
10892000-10-02 Akim Demaille <akim@epita.fr>
1090
1091 `user_toknums' is output as a `short[]' in `output.c', while it is
1092 defined as a `int[]' in `reader.c'. For consistency with the
1093 other output tables, `user_toknums' is now defined as a table of
1094 shorts.
1095
1096 * src/reader.c (user_toknums): Be a short table instead of an int
1097 table.
1098 Adjust dependencies.
1099
1100 Factor the short table outputs.
1101
1102 * src/output.c (output_short_table): New function.
1103 * src/output.c (output_gram, output_stos, output_rule_data)
1104 (output_base, output_table, output_check): Use it.
1105
6c89f1c1
AD
11062000-10-02 Akim Demaille <akim@epita.fr>
1107
1108 * src/output.c (output): Topological sort of the functions, in
1109 order to get rid of the `static' prototypes.
1110 No longer use `register'.
1111 * src/output.h: New file.
1112 Propagate its inclusion in files explicitly prototyping functions
1113 from output.c.
1114
d9efd181
AD
11152000-09-21 Akim Demaille <akim@epita.fr>
1116
1117 * src/atgeneral.m4: Update from Autoconf.
1118
c29240e7 11192000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
1120
1121 * src/closure.h: New file.
1122 * src/closure.c: Formatting changes, topological sort over the
1123 functions, use of closure.h.
1124 (initialize_closure, finalize_closure): Rename as...
1125 (new_closure, free_closure): these. Adjust dependencies.
1126 * src/LR0.c: Formatting changes, topological sort, use of
1127 cloture.h.
1128 (initialize_states): Rename as...
1129 (new_states): this.
1130 * src/Makefile.am (noinst_HEADERS): Adjust.
1131
499daa50
AD
11322000-09-20 Akim Demaille <akim@epita.fr>
1133
1134 * src/acconfig.h: Don't protect config.h against multiple
1135 inclusion.
1136 Don't define PARAMS.
1137 * src/system.h: Define PARAMS.
1138 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
1139 purpose of config.h. system.h must not try to fix wrong
1140 definitions in config.h.
1141
cc84fd5d
AD
11422000-09-20 Akim Demaille <akim@epita.fr>
1143
1144 * src/derives.h: New file.
1145 * src/main.c, src/derives.h: Use it.
1146 Formatting changes.
1147 * src/Makefile.am (noinst_HEADERS): Adjust.
1148
db5b3a89
AD
11492000-09-20 Akim Demaille <akim@epita.fr>
1150
1151 * tests/atgeneral.m4: Update from Autoconf.
1152 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
1153 (AT_CHECK_CALC): New macros.
1154 Use these macros to test bison with options `', `--raw',
1155 `--debug', `--yacc', `--yacc --debug'.
1156
ceed8467
AD
11572000-09-19 Akim Demaille <akim@epita.fr>
1158
1159 * src/output.c: Formatting changes.
1160 * src/machine.h: Remove, leaving its contents in...
1161 * src/system.h: here.
1162 Include stdio.h.
1163 Adjust all dependencies on stdio.h and machine.h.
1164 * src/getargs.h: New file.
1165 Let all `extern' declarations about getargs.c be replaced with
1166 inclusion of `getargs.h'.
1167 * src/Makefile.am (noinst_HEADERS): Adjust.
1168
1169 * tests/calc.m4 (yyin): Be initialized in main, not on the global
1170 scope.
1171 (yyerror): Returns void, not int.
1172 * doc/bison.texinfo: Formatting changes.
1173
05a1d24b
AD
11742000-09-19 Akim Demaille <akim@epita.fr>
1175
1176 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
1177 portable.
1178
cbd25751
AD
11792000-09-18 Akim Demaille <akim@epita.fr>
1180
1181 * configure.in: Append WARNING_CFLAGS to CFLAGS.
1182 * src/Makefile.am (INCLUDES): Don't.
1183 Be ready to fetch headers in lib/.
1184
13863333
AD
11852000-09-18 Akim Demaille <akim@epita.fr>
1186
1187 * doc/bison.texinfo: Update the copyright.
1188 ANSIfy and GNUify the examples.
1189 Remove the old menu.
1190
0d533154
AD
11912000-09-18 Akim Demaille <akim@epita.fr>
1192
1193 First set of tests: use the `calc' example from the documentation.
1194
1195 * src/bison.s1 (yyparse): Condition the code using `yytname' which
1196 is defined only when YYDEBUG is.
1197 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
1198 * src/files.c (tryopen, tryclose): Formatting changes.
1199 Move to the top and be static.
1200 * src/reader.c (read_signed_integer): Likewise.
1201 * tests/calc.m4: New file.
1202 * Makefile.am, suite.m4: Adjust.
1203 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
1204
e79137ac
AD
12052000-09-18 Akim Demaille <akim@epita.fr>
1206
1207 Add support for an Autotest test suite for Bison.
1208
1209 * m4/m4.m4, m4/atconfig.m4: New files.
1210 * m4/Makefile.am (EXTRA_DIST): Adjust.
1211 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
1212 files.
1213 * src/getargs.c: Display a more standard --version message.
1214 * src/reader.c (reader): Formatting changes.
1215 No longer depend upon VERSION_STRING.
1216 * configure.in: No longer use `dnl'.
1217 Set up the test suite and the new directory `tests/.
1218 (VERSION_STRING): Remove.
1219
27821bff
AD
12202000-04-14 Akim Demaille <akim@epita.fr>
1221
1222 * src/reader.c (copy_comment2): New function, same as former
1223 `copy_comment', but outputs into two FILE *.
1224 (copy_comment): Use it.
1225 (parse_union_decl): Use it.
1226 (get_type, parse_start_decl): Use the same `invalid' message.
1227 (parse_start_decl, parse_union_decl): Use the same `multiple'
1228 message.
1229 (parse_union_decl, copy_guard, copy_action): Use the same
1230 `unmatched' message.
1231 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
1232
cfe5fbc0
AD
12332000-03-31 Akim Demaille <akim@epita.fr>
1234
1235 * src/files.c (tryopen, tryclose): Move to the top.
1236 Be static.
1237
cb7db13e
AD
12382000-03-31 Akim Demaille <akim@epita.fr>
1239
1240 * src/main.c (main): Don't call `done', exit does it.
1241
a0f6b076
AD
12422000-03-31 Akim Demaille <akim@epita.fr>
1243
36281465
AD
1244 * allocate.c: s/return (foo)/return foo/.
1245 * lalr.c: Likewise.
1246 * LR0.c: Likewise.
1247 * output.c: Likewise.
1248 * reader.c: Likewise.
1249 * symtab.c: Likewise.
1250 * vmsgetargs.c: Likewise.
1251
12522000-03-31 Akim Demaille <akim@epita.fr>
1253
1254 Clean up the error reporting functions.
a0f6b076
AD
1255
1256 * src/report.c: New file.
1257 * src/report.h: Likewise.
1258 * src/Makefile.am: Adjust.
1259 * m4/error.m4: New file.
1260 * m4/Makefile.am: Adjust.
1261 * configure.in (jm_PREREQ_ERROR): Call it.
1262 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
1263 Remove.
1264 (fatal, fatals): Remove. All callers use complain.c::fatal.
1265 (warn, warni, warns, warnss, warnss): Remove. All callers use
1266 complain.c::complain.
1267 (toomany): Remove, use fatal instead.
1268 * src/files.c (done): No argument, use complain_message_count.
1269 * src/main.c (main): Register `done' to `atexit'.
1270
1271 * src/getargs.c (usage): More `fputs', less `fprintf'.
1272
18539825
AD
12732000-03-28 Akim Demaille <akim@epita.fr>
1274
1275 * lib/: New directory.
1276 * Makefile.am (SUBDIRS): Adjust.
1277 * configure.in: Adjust.
1278 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
1279 useless.
1280 * src/alloca.c: Moved to lib/.
1281 * src/getopt.c: Likewise.
1282 * src/getopt1.c: Likewise.
1283 * src/getopt.h: Likewise.
1284 * src/ansi2knr.c: Likewise.
1285 * src/ansi2knr.1: Likewise.
1286 * src/Makefile.am: Adjust.
1287 * lib/Makefile.am: New file.
1288
9f306f2a
AD
12892000-03-28 Akim Demaille <akim@epita.fr>
1290
1291 * src/getargs.c (usage): Refresh the help message.
1292
0ba347b6
AD
12932000-03-17 Akim Demaille <akim@epita.fr>
1294
1295 * src/getopt1.c: Updated from textutils 2.0e
1296 * src/getopt.c: Likewise.
1297 * src/getopt.h: Likewise.
1298
dbe7f271
AD
12992000-03-17 Akim Demaille <akim@epita.fr>
1300
1301 * src/Makefile.am (bison.simple): Fix the awk program: quote only
1302 the file name, not the whole `#line LINE FILE'.
1303
75bbe78d
AD
13042000-03-17 Akim Demaille <akim@epita.fr>
1305
1306 On syntax errors, report the token on which we choked.
1307
aa5fd0ee
AD
1308 * src/bison.s1 (yyparse): In the label yyerrlab, when
1309 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 1310
7b306f52
AD
13112000-03-17 Akim Demaille <akim@epita.fr>
1312
aa5fd0ee 1313 * src/reader.c (copy_at): New function.
7b306f52
AD
1314 (copy_guard): Use it.
1315 (copy_action): Use it.
1316
e87b5700
AD
13172000-03-17 Akim Demaille <akim@epita.fr>
1318
1319 Be kind to translators, save some useless translations.
1320
aa5fd0ee 1321 * src/main.c (banner): New function.
e87b5700
AD
1322 (fatal_banner): Use it.
1323 (warn_banner): Use it.
1324
ae3c3164
AD
13252000-03-17 Akim Demaille <akim@epita.fr>
1326
aa5fd0ee
AD
1327 * src/reader.c (copy_definition): Use copy_string and
1328 copy_comment. Removed now unused `match', `ended',
1329 `cplus_comment'.
ae3c3164
AD
1330 (copy_comment, copy_string): Moved, to be visible from
1331 copy_definition.
1332
4dc58e7c
AD
13332000-03-17 Akim Demaille <akim@epita.fr>
1334
aa5fd0ee
AD
1335 * src/reader.c (copy_string): Declare `static inline'. No
1336 problems with inline, since it is checked by configure.
4dc58e7c
AD
1337 (copy_comment): Likewise.
1338
0a6384c4
AD
13392000-03-17 Akim Demaille <akim@epita.fr>
1340
aa5fd0ee 1341 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 1342
3cef001a
AD
13432000-03-17 Akim Demaille <akim@epita.fr>
1344
aa5fd0ee 1345 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
1346 (copy_action): Use it. Removed now unused `match', `ended',
1347 `cplus_comment'.
1348 (copy_guard): Likewise.
1349
ca36d2ef
AD
13502000-03-17 Akim Demaille <akim@epita.fr>
1351
aa5fd0ee 1352 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
1353 (copy_action): Use it.
1354 (copy_guard): Likewise.
1355
6666f98f
AD
13562000-03-17 Akim Demaille <akim@epita.fr>
1357
1358 Change the handling of @s so that they behave exactly like $s.
1359 There is now a pseudo variable @$ (readble and writable), location
1360 of the lhs of the rule (by default ranging from the location of
1361 the first symbol of the rhs, to the location of the last symbol,
1362 or, if the rhs is empty, YYLLOC).
1363
1364 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
1365 yyval.
1366 (yyparse): When providing a default semantic action, provide a
1367 default location action.
1368 (after the $): No longer change `*YYLSP', just stack YYLOC the
1369 same way you stack YYVAL.
1370 * src/reader.c (read_declarations): Use warns.
1371 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
1372 (copy_action, case '@'): Likewise.
1373 Use a standard error message, to save useless work from
1374 translators.
1375
41aca2e0
AD
13762000-03-17 Akim Demaille <akim@epita.fr>
1377
aa5fd0ee
AD
1378 * src/bison.s1: Formatting and cosmetics changes.
1379 * src/reader.c: Likewise.
41aca2e0
AD
1380 Update the Copyright notice.
1381
dc08c1d5
AD
13822000-03-17 Akim Demaille <akim@epita.fr>
1383
aa5fd0ee
AD
1384 * src/bison.s1 (#line): All set to `#line' only, since the
1385 Makefile now handles them.
dc08c1d5 1386
9ee3c97b
AD
13872000-03-16 Akim Demaille <akim@epita.fr>
1388
1389 * src/output.c (output_rule_data): Output the documentation of
1390 some of the tables.
1391 (Copyright notice): Update.
1392 Formatting changes.
1393
0de741ca
AD
13942000-03-16 Akim Demaille <akim@epita.fr>
1395
1396 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
1397 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
1398 One `#if YYDEBUG' remains, since it uses variables which are
1399 defined only if `YYDEBUG != 0'.
1400
bb10be54
AD
14012000-03-16 Akim Demaille <akim@epita.fr>
1402
1403 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
1404 and related variables so that the similarities are highlighted.
1405
b07b484a
AD
14062000-03-16 Akim Demaille <akim@epita.fr>
1407
1408 * src/bison.s1: Properly indent CPP directives.
1409
361f60b3
AD
14102000-03-16 Akim Demaille <akim@epita.fr>
1411
1412 * src/bison.s1: Properly indent the `alloca' CPP section.
1413
8c44d3ec
AD
14142000-03-16 Akim Demaille <akim@epita.fr>
1415
1416 Do not hard code values of directories in `configure.in'.
1417 Update the `configure' tool chain.
1418
1419 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
1420 src/makefile.am.
1421 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
1422 (AC_OUTPUT): Add m4/Makefile.
1423 Bump to bison 1.28a, 1.29 has never been released.
1424 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
1425 handled via src/Makefile.am.
1426 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
1427 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
1428 autoheader.
1429 * Makefile.am (SUBDIRS): Add m4.
1430 (ACLOCAL_AM_FLAGS): New variable.
1431 (AUTOMAKE_OPTIONS): Add check-news.
1432 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
1433 the proper line number and file name.
1434 (DEFS): Propagate the location of bison library files and of the
1435 locale files.
1436 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
1437 builddir.
1438 * acinclude.m4: Remove, replaced by the directory m4.
1439 * m4/Makefile.am (EXTRA_DIST): New variable.
1440 * m4/gettext.m4: New file, from the fileutils.
1441 * m4/lcmessage.m4: Likewise
1442 * m4/progtest.m4: Likewise.
1443 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
1444
f95997e7
AD
14452000-03-10 Akim Demaille <akim@epita.fr>
1446
1447 * src/closure.c:
1448 Formatting changes of various comments.
1449 Respect the GNU coding standards at various places.
1450 Don't use `_()' when no translation is needed.
1451
14521999-12-13 Jesse Thilo <jthilo@gnu.org>
1453
1454 * src/files.c:
1455 OS/2 honors TMPDIR environment variable.
1456
14571999-12-13 Jesse Thilo <jthilo@gnu.org>
1458
1459 * doc/bison.texinfo: Tweaked spelling and grammar.
1460 Updated ISBN.
1461 Removed reference to price of printed copy.
1462 Mention BISON_SIMPLE and BISON_HAIRY.
1463
14641999-12-13 Jesse Thilo <jthilo@gnu.org>
1465
1466 * configure.in, NEWS:
1467 Bison 1.29 released.
1468
14691999-10-27 Jesse Thilo <jthilo@gnu.org>
1470
1471 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
1472 Added reference card.
1473
14741999-07-26 Jesse Thilo <jthilo@gnu.org>
1475
1476 * po/ru.po: Added Russian translation.
1477
14781999-07-26 Jesse Thilo <jthilo@gnu.org>
1479
1480 * configure.in: Added Russian translation.
1481
14821999-07-06 Jesse Thilo <jthilo@gnu.org>
1483
1484 * configure.in, NEWS, README:
1485 Released version 1.28.
1486
14871999-06-14 Jesse Thilo <jthilo@gnu.org>
1488
1489 * src/system.h:
1490 Squashed redefinition warning on some systems.
1491
1492 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
1493 Have configure build version string instead of relying on ANSI string
1494 concatentation.
1495
14961999-06-14 Jesse Thilo <jthilo@gnu.org>
1497
1498 * po/POTFILES.in: Got rid of version.c.
1499
15001999-06-14 Jesse Thilo <jthilo@gnu.org>
1501
1502 * acconfig.h, configure.in:
1503 Have configure build version string instead of relying on ANSI string
1504 concatentation.
1505
15061999-06-08 Jesse Thilo <jthilo@gnu.org>
1507
1508 * doc/bison.1:
1509 Dropped mention of `+' for long-named options.
1510
15111999-05-30 Jesse Thilo <jthilo@gnu.org>
1512
1513 * src/files.c: Added <unistd.h> for unlink().
1514
1515 * src/Makefile.am, src/system.h:
1516 I18n fixes.
1517
15181999-05-30 Jesse Thilo <jthilo@gnu.org>
1519
1520 * README: Added a FAQ list.
1521
1522 * configure.in, acconfig.h:
1523 I18n fixes.
1524
15251999-05-30 Jesse Thilo <jthilo@gnu.org>
1526
1527 * doc/FAQ, doc/Makefile.am:
1528 Added a FAQ list.
1529
15301999-05-19 Jesse Thilo <jthilo@gnu.org>
1531
1532 * src/alloc.h, src/symtab.h, src/version.c:
1533 Protected inclusion of "config.h" with HAVE_CONFIG_H.
1534
15351999-04-18 Jesse Thilo <jthilo@gnu.org>
1536
1537 * src/.cvsignore, src/Makefile.am:
1538 Reorganized: sources in `src', documentation in `doc'.
1539
1540 * src/lex.c (literalchar):
1541 fixed the code for escaping double quotes (thanks
1542 Jonathan Czisny.)
1543
15441999-04-18 Jesse Thilo <jthilo@gnu.org>
1545
1546 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
1547 Adjusted paths to reflect directory reorganization.
1548
15491999-04-18 Jesse Thilo <jthilo@gnu.org>
1550
1551 * doc/.cvsignore, doc/Makefile.am:
1552 Reorganized: sources in `src', documentation in `doc'.
1553
15541999-04-18 Jesse Thilo <jthilo@gnu.org>
1555
1556 * configure.in:
1557 Updated AC_INIT file to reflect directory reorganization.
1558
1559 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
1560 Reorganized: sources in `src', documentation in `doc'.
1561
15621999-04-13 Jesse Thilo <jthilo@gnu.org>
1563
1564 * src/allocate.c:
1565 Don't declare calloc() and realloc() if not necessary.
1566
15671999-04-13 Jesse Thilo <jthilo@gnu.org>
1568
1569 * configure.in, acconfig.h, acinclude.m4:
1570 Don't declare calloc() and realloc() if not necessary.
1571
15721999-03-23 Jesse Thilo <jthilo@gnu.org>
1573
1574 * po/.cvsignore: Added i18n support.
1575
15761999-03-23 Jesse Thilo <jthilo@gnu.org>
1577
1578 * acconfig.h, configure.in, Makefile.am:
1579 Added i18n support.
1580
15811999-03-22 Jesse Thilo <jthilo@gnu.org>
1582
1583 * src/bison.s1: Fixed #line numbers.
1584
15851999-03-15 Jesse Thilo <jthilo@gnu.org>
1586
1587 * po/es.po, po/fr.po, po/nl.po, po/de.po:
1588 Added PO files from Translation Project.
1589
15901999-03-03 Jesse Thilo <jthilo@gnu.org>
1591
1592 * Makefile.am:
1593 Added support for non-ANSI compilers (ansi2knr).
1594
15951999-02-16 Jesse Thilo <jthilo@gnu.org>
1596
1597 * configure.in: Bumped version number to 1.27.
1598
1599 * Makefile.am:
1600 Added `bison.simple' to list of files removed by `make distclean'.
1601
16021999-02-12 Jesse Thilo <jthilo@gnu.org>
1603
1604 * src/files.c, src/files.h:
1605 Defined locations of parser files in config.h instead of Makefile.
1606
16071999-02-12 Jesse Thilo <jthilo@gnu.org>
1608
1609 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
1610 Defined locations of parser files in config.h instead of Makefile.
1611
16121999-02-09 Jesse Thilo <jthilo@gnu.org>
1613
1614 * Makefile.am:
1615 Removed inappropriate use of $< macro.
1616
16171999-02-05 Jesse Thilo <jthilo@gnu.org>
1618
1619 * po/Makefile.in.in, po/POTFILES.in:
1620 Add `po' directory skeleton.
1621
16221999-01-27 Jesse Thilo <jthilo@gnu.org>
1623
1624 * README: Document help-bison list.
1625
1626 * configure.in: Add check for mkstemp().
1627
16281999-01-20 Jesse Thilo <jthilo@gnu.org>
1629
1630 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
1631 Hush a few compiler warnings.
1632
1633 * src/files.c:
1634 Add tryclose(), which verifies that fclose was successful.
1635 Hush a couple of compiler warnings.
1636
16371999-01-20 Jesse Thilo <jthilo@gnu.org>
1638
1639 * Makefile.am, OChangeLog:
1640 ChangeLog is now automatically generated. Include the old version as
1641 OChangeLog.
1642
16431999-01-14 Jesse Thilo <jthilo@gnu.org>
1644
1645 * 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:
1646 Update FSF address.
1647
16481999-01-14 Jesse Thilo <jthilo@gnu.org>
1649
1650 * doc/bison.texinfo: Fix formatting glitch.
1651
1652 * doc/bison.texinfo: Update FSF address.
1653
16541999-01-14 Jesse Thilo <jthilo@gnu.org>
1655
1656 * acconfig.h: Update FSF address.
1657
16581999-01-08 Jesse Thilo <jthilo@gnu.org>
1659
1660 * src/system.h:
1661 Don't define PACKAGE here, since config.h defines it.
1662
16631998-12-30 Jesse Thilo <jthilo@gnu.org>
1664
1665 * src/reader.c: Update copyright date.
1666
1667 * src/main.c:
1668 Ditch sprintf to statically-sized buffers in fatal/warn functions in
1669 favor of output directly to stderr (avoids buffer overruns).
1670
1671 * src/reader.c: Some checks for premature EOF.
1672
1673 * 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:
1674 Use prototypes if the compiler understands them.
1675
1676 * src/files.c: Honor TMPDIR on Unix hosts.
1677 Use prototypes if the compiler understands them.
1678
1679 * src/reader.c:
1680 Fix a couple of buffer overrun bugs.
1681 Use prototypes if the compiler understands them.
1682
1683 * src/system.h: Include unistd.h and ctype.h.
1684 Use #ifdef instead of #if for NLS symbols.
1685
16861998-12-30 Jesse Thilo <jthilo@gnu.org>
1687
1688 * doc/bison.texinfo:
1689 Delete comment "consider using @set for edition number, etc..." since
1690 we now are doing so.
1691
16921998-12-30 Jesse Thilo <jthilo@gnu.org>
1693
1694 * configure.in:
1695 Use prototypes if the compiler understands them.
1696
1697 * NEWS: Document 1.26 highlights.
1698
1699 * Makefile.am: Require Automake 1.3 or later.
1700
1701 * acconfig.h:
1702 Use prototypes if the compiler understands them.
1703
17041998-12-29 Jesse Thilo <jthilo@gnu.org>
1705
1706 * src/version.c:
1707 Use VERSION symbol from automake for version number.
1708
17091998-12-29 Jesse Thilo <jthilo@gnu.org>
1710
1711 * acconfig.h, configure.in, version.cin:
1712 Use VERSION symbol from automake for version number.
1713
17141998-11-28 Jesse Thilo <jthilo@gnu.org>
1715
1716 * Makefile.am:
1717 Distribute original version of simple parser (bison.s1), not built
1718 version (bison.simple).
1719
17201998-11-28 Jesse Thilo <jthilo@gnu.org>
1721
1722 * doc/bison.texinfo: Add info dir entry.
1723
1724 * doc/bison.texinfo:
1725 Let automake put version number into documentation.
1726
17271998-11-26 Jesse Thilo <jthilo@gnu.org>
1728
1729 * src/bison.cld, src/build.com, src/vmshlp.mar:
1730 Add non-RCS files from /gd/gnu/bison.
1731
17321998-11-26 Jesse Thilo <jthilo@gnu.org>
1733
1734 * doc/bison.1:
1735 Document the BISON_HAIRY and BISON_SIMPLE variables.
1736
17371998-11-25 Jesse Thilo <jthilo@gnu.org>
1738
1739 * src/version.c: Build version.c automatically.
1740
1741 * src/reader.c:
1742 Fix token numbering (used to start at 258, not 257).
1743
1744 * src/system.h: Include config.h.
1745
1746 * src/getargs.c: Update bug report address.
1747
1748 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
1749 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
1750
17511998-11-25 Jesse Thilo <jthilo@gnu.org>
1752
1753 * Makefile.am:
1754 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
1755
1756 * configure.in, version.cin:
1757 Build version.c automatically.
1758
1759 * AUTHORS: Add AUTHORS file.
1760
1761 * README: Update bug report address.
1762
1763 * bison.simple:
1764 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
1765
1766 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
1767 Add automake stuff.
1768
17691998-11-25 Jesse Thilo <jthilo@gnu.org>
1770
1771 * doc/bison.texinfo: Clean up some formatting.
1772
17731998-05-05 Richard Stallman <rms@gnu.org>
1774
1775 * doc/bison.texinfo:
1776 Explain better why to make a pure parser.
1777
17781998-01-05 Richard Stallman <rms@gnu.org>
1779
1780 * src/files.c (openfiles):
1781 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
1782 find a temporary directory, if possible. Do not unlink files while
1783 they are open.
1784
17851997-08-25 Richard Stallman <rms@gnu.org>
1786
1787 * src/reader.c (stack_offset;):
1788 Change some warni to warns.
1789
1790 * src/lex.c (literalchar): Use warns, not warni.
1791
17921997-06-28 Richard Stallman <rms@gnu.org>
1793
1794 * src/bison.s1: Add a Bison version comment.
1795
1796 * src/main.c (fatal, warn, berror):
1797 Use program_name.
1798
17991997-06-28 Richard Stallman <rms@gnu.org>
1800
1801 * Makefile.in (bison_version): New variable.
1802 (dist): Use that variable.
1803 (bison.s1): Substitute the Bison version into bison.simple.
1804
1805 * bison.simple: Add a Bison version comment.
1806
18071997-06-18 Richard Stallman <rms@gnu.org>
1808
1809 * src/main.c (fatal, warn, berror):
1810 Make error messages standard.
1811 (toomany): Improve error message text.
1812
1813 * 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:
1814 new.h renamed to alloc.h.
1815
18161997-06-18 Richard Stallman <rms@gnu.org>
1817
1818 * Makefile.in: new.h renamed to alloc.h.
1819
18201997-05-24 Richard Stallman <rms@gnu.org>
1821
1822 * src/lex.c (literalchar):
1823 Fix the code for escaping \, " and '.
1824
1825 (lex): Avoid trouble when there are many chars
1826 to discard in a char literal with just several chars in it.
1827
18281997-05-17 Richard Stallman <rms@gnu.org>
1829
1830 * src/bison.s1:
1831 Use malloc, if using alloca is troublesome.
1832 (YYSTACK_USE_ALLOCA): New flag macro.
1833 Define it for some systems and compilers.
1834 (YYSTACK_ALLOC): New macro.
1835 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1836 If it was malloc'd, free it.
1837
18381997-05-17 Richard Stallman <rms@gnu.org>
1839
1840 * bison.simple:
1841 Use malloc, if using alloca is troublesome.
1842 (YYSTACK_USE_ALLOCA): New flag macro.
1843 Define it for some systems and compilers.
1844 (YYSTACK_ALLOC): New macro.
1845 (yyparse): Use YYSTACK_ALLOC to allocate stack.
1846 If it was malloc'd, free it.
1847
18481997-04-23 Richard Stallman <rms@gnu.org>
1849
1850 * src/bison.s1:
1851 (alloca) [__hpux]: Always define as __builtin_alloca.
1852
18531997-04-23 Richard Stallman <rms@gnu.org>
1854
1855 * bison.simple:
1856 (alloca) [__hpux]: Always define as __builtin_alloca.
1857
18581997-04-22 Richard Stallman <rms@gnu.org>
1859
1860 * src/bison.s1:
1861 [__hpux]: Include alloca.h (right for HPUX 10)
1862 instead of declaring alloca (right for HPUX 9).
1863
1864 * src/bison.s1 (__yy_memcpy):
1865 Declare arg `count' as unsigned int.
1866 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1867
18681997-04-22 Richard Stallman <rms@gnu.org>
1869
1870 * bison.simple:
1871 [__hpux]: Include alloca.h (right for HPUX 10)
1872 instead of declaring alloca (right for HPUX 9).
1873
1874 * bison.simple (__yy_memcpy):
1875 Declare arg `count' as unsigned int.
1876 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
1877
18781997-01-03 Richard Stallman <rms@gnu.org>
1879
1880 * src/allocate.c: [__STDC__ or _MSC_VER]:
1881 Declare calloc and realloc to return void *.
1882
18831997-01-02 Richard Stallman <rms@gnu.org>
1884
1885 * src/system.h:
1886 [_MSC_VER]: Include stdlib.h and process.h.
1887 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
1888
1889 * src/main.c (main): Return FAILURE as a value.
1890 (printable_version): Declare arg as int, not char.
1891
18921997-01-02 Richard Stallman <rms@gnu.org>
1893
1894 * Makefile.in (dist):
1895 Explicitly check for symlinks, and copy them.
1896
18971996-12-19 Richard Stallman <rms@gnu.org>
1898
1899 * src/files.c:
1900 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
1901
19021996-12-18 Paul Eggert <eggert@gnu.org>
1903
1904 * src/bison.s1 (yyparse):
1905 If __GNUC__ and YYPARSE_PARAM are both defined,
1906 declare yyparse to have a void * argument.
1907
19081996-12-18 Paul Eggert <eggert@gnu.org>
1909
1910 * bison.simple (yyparse):
1911 If __GNUC__ and YYPARSE_PARAM are both defined,
1912 declare yyparse to have a void * argument.
1913
19141996-12-17 Richard Stallman <rms@gnu.org>
1915
1916 * src/reduce.c (nbits): Add some casts.
1917
19181996-08-12 Richard Stallman <rms@gnu.org>
1919
1920 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
1921
19221996-08-12 Richard Stallman <rms@gnu.org>
1923
1924 * bison.simple: Test _MSDOS as well as _MSDOS_.
1925
19261996-07-31 Richard Stallman <rms@gnu.org>
1927
1928 * src/bison.s1:
1929 [__sun && __i386]: Include alloca.h.
1930
19311996-07-31 Richard Stallman <rms@gnu.org>
1932
1933 * bison.simple:
1934 [__sun && __i386]: Include alloca.h.
1935
19361996-07-30 Richard Stallman <rms@gnu.org>
1937
1938 * src/bison.s1: Comment change.
1939
1940 * src/bison.s1: Test _MSDOS_, not MSDOS.
1941
19421996-07-30 Richard Stallman <rms@gnu.org>
1943
1944 * bison.simple: Comment change.
1945
1946 * bison.simple: Test _MSDOS_, not MSDOS.
1947
19481996-06-01 Richard Stallman <rms@gnu.org>
1949
1950 * 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:
1951 Insert `_' macro around many string constants.
1952
1953 * src/main.c:
1954 Insert `_' macro around many string constants.
1955
1956 (main): Call setlocale, bindtextdomain and textdomain.
1957
1958 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
1959 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
1960 [ENABLE_NLS]: Include libintl.h.
1961 [ENABLE_NLS] (gettext): Define.
1962 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
1963 (N_, PACKAGE, LOCALEDIR): New macros.
1964
19651996-06-01 Richard Stallman <rms@gnu.org>
1966
1967 * POTFILES.in: New file.
1968
1969 * Makefile.in (allocate.o):
1970 Define target explicitly.
1971
1972 * Makefile.in (CFLAGS): Set to @CFLAGS@.
1973 (LDFLAGS): Set to @LDFLAGS@.
1974 (configure): Run autoconf only if preceding `cd' succeeds.
1975 (bison.s1): Redirect output to temporary file then move the
1976 temporary to the target, rather than redirecting directly to bison.s1.
1977 (clean): Remove config.status and config.log.
1978 (distclean): Don't remove config.status here.
1979
19801996-05-12 Richard Stallman <rms@gnu.org>
1981
1982 * src/bison.s1:
1983 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1984
19851996-05-12 Richard Stallman <rms@gnu.org>
1986
1987 * bison.simple:
1988 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
1989
19901996-05-11 Richard Stallman <rms@gnu.org>
1991
1992 * src/bison.s1 (__yy_memcpy):
1993 Really reorder the args, as was supposedly done on Feb 14 1995.
1994 (yyparse): Calls changed accordingly.
1995
19961996-05-11 Richard Stallman <rms@gnu.org>
1997
1998 * Makefile.in (dist): Don't use $(srcdir).
1999
2000 * bison.simple (__yy_memcpy):
2001 Really reorder the args, as was supposedly done on Feb 14 1995.
2002 (yyparse): Calls changed accordingly.
2003
20041996-01-27 Richard Stallman <rms@gnu.org>
2005
2006 * src/output.c (output_rule_data):
2007 Test YYERROR_VERBOSE in the conditional
2008 around the definition of ttyname.
2009
20101995-12-29 Richard Stallman <rms@gnu.org>
2011
2012 * src/bison.s1:
2013 Fix line numbers in #line commands.
2014
20151995-12-29 Richard Stallman <rms@gnu.org>
2016
2017 * bison.simple:
2018 Fix line numbers in #line commands.
2019
20201995-12-27 Richard Stallman <rms@gnu.org>
2021
2022 * src/bison.s1 (YYPARSE_PARAM_DECL):
2023 In C++, make it always null.
2024 (YYPARSE_PARAM_ARG): New macro.
2025 (yyparse): Use YYPARSE_PARAM_ARG.
2026
20271995-12-27 Richard Stallman <rms@gnu.org>
2028
2029 * bison.simple (YYPARSE_PARAM_DECL):
2030 In C++, make it always null.
2031 (YYPARSE_PARAM_ARG): New macro.
2032 (yyparse): Use YYPARSE_PARAM_ARG.
2033
20341995-11-29 Richard Stallman <rms@gnu.org>
2035
2036 * doc/bison.texinfo:
2037 Describe literal string tokens, %raw, %no_lines, %token_table.
2038
20391995-11-29 Daniel Hagerty <hag@gnu.org>
2040
2041 * doc/bison.texinfo: Fixed update date
2042
20431995-10-16 Richard Stallman <rms@gnu.org>
2044
2045 * src/version.c: Version 1.25.
2046
20471995-10-16 Richard Stallman <rms@gnu.org>
2048
2049 * NEWS: *** empty log message ***
2050
20511995-10-16 Richard Stallman <rms@gnu.org>
2052
2053 * doc/bison.1, doc/bison.rnh:
2054 Add new options.
2055
20561995-10-15 Richard Stallman <rms@gnu.org>
2057
2058 * src/vmsgetargs.c, src/getargs.c:
2059 Added -n, -k, and -raw switches.
2060 (noparserflag, toknumflag, rawtoknumflag): New variables.
2061
2062 * src/symtab.h (SALIAS):
2063 New #define for adding aliases to %token.
2064 (struct bucket): Added `alias' field.
2065
2066 * src/reduce.c (reduce_grammar):
2067 Revise error message.
2068 (print_notices): Remove final `.' from error message.
2069
2070 * src/reader.c (reader_output_yylsp):
2071 New function.
2072 (readgram): Use `#if 0' around code that accepted %command
2073 inside grammar rules: The documentation doesn't allow it,
2074 and it will fail since the %command processors scan for the next %.
2075 (parse_token_decl): Extended the %token
2076 declaration to allow a multi-character symbol as an alias.
2077 (parse_thong_decl): New function.
2078 (read_declarations): Added %thong declarations.
2079 (read_declarations): Handle NOOP to deal with allowing
2080 % declarations as another means to specify the flags.
2081 (readgram): Allow %prec prior to semantics embedded in a rule.
2082 (skip_to_char, read_declarations, copy_definition)
2083 (parse_token_decl, parse_start_decl, parse_type_decl)
2084 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
2085 (get_type_name, copy_guard, copy_action, readgram)
2086 (get_type, packsymbols): Revised most error messages.
2087 Changed `fatal' to `warnxxx' to avoid aborting for error.
2088 Revised and use multiple warnxxx functions to avoid using VARARGS1.
2089 (read_declarations): Improve the error message for
2090 an invalid character. Do not abort.
2091 (read_declarations, copy_guard, copy_action): Use
2092 printable_version to avoid unprintable characters in printed output.
2093 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
2094 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
2095 Allow the type of a non-terminal can be given
2096 more than once, as long as all specifications give the same type.
2097
2098 * src/output.c:
2099 (output_headers, output_trailers, output, output_gram)
2100 (output_rule_data): Implement noparserflag variable.
2101 Implement toknumflag variable.
2102 (output): Call reader_output_yylsp to output LTYPESTR.
2103
2104 * src/main.c (main):
2105 If reader sees an error, don't process the grammar.
2106 (fatals): Updated to not use VARARGS1.
2107 (printable_version, int_to_string, warn, warni, warns, warnss)
2108 (warnsss): New error reporting functions. Avoid abort for error.
2109
2110 * src/lex.h:
2111 Added THONG and NOOP for alias processing.
2112 Added SETOPT for the new code that allows setting options with %flags.
2113
2114 * src/lex.c:
2115 Include getopt.h. Add some extern decls.
2116 (safegetc): New function to deal with EOF gracefully.
2117 (literalchar); new function to deal with reading \ escapes.
2118 (lex): Use literalchar.
2119 (lex): Implemented "..." tokens.
2120 (literalchar, lex, parse_percent_token): Made tokenbuffer
2121 always contain the token. This includes growing the token
2122 buffer while reading an integer.
2123 (parse_percent_token): Replaced if-else statement with percent_table.
2124 (parse_percent_token): Added % declarations as another
2125 way to specify the flags -n, -l, and -r. Also added hooks for
2126 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
2127 major changes to files.c.
2128 (lex) Retain in the incoming stream a character following
2129 an incorrect '/'.
2130 (skip_white_space, lex): Revised most error messages
2131 and changed fatal to warn to avoid aborting.
2132 (percent_table): Added %thong declarations.
2133
2134 * src/gram.h: Comment changes.
2135
2136 * src/files.c (openfiles, open_extra_files, done):
2137 Add faction flag
2138 and actfile file. Handle noparserflag. Both for -n switch.
2139
2140 * src/conflicts.c (resolve_sr_conflict):
2141 Remove use of alloca.
2142
21431995-06-01 Jim Meyering <meyering@gnu.org>
2144
2145 * doc/bison.texinfo: *** empty log message ***
2146
21471995-05-06 Richard Stallman <rms@gnu.org>
2148
2149 * src/bison.s1: Comment change.
2150
21511995-05-06 Richard Stallman <rms@gnu.org>
2152
2153 * bison.simple: Comment change.
2154
21551995-05-03 Richard Stallman <rms@gnu.org>
2156
2157 * src/version.c: Version now 1.24.
2158
2159 * src/bison.s1: Change distribution terms.
2160
2161 * src/version.c: Version now 1.23.
2162
21631995-05-03 Richard Stallman <rms@gnu.org>
2164
2165 * doc/bison.texinfo:
2166 Rewrite "Conditions for Using Bison".
2167 Update version to 1.24.
2168
21691995-05-03 Richard Stallman <rms@gnu.org>
2170
2171 * bison.simple: Change distribution terms.
2172
21731995-02-23 Richard Stallman <rms@gnu.org>
2174
2175 * src/files.c: Test __VMS_POSIX as well as VMS.
2176
21771995-02-14 Jim Meyering <meyering@gnu.org>
2178
2179 * src/bison.s1 (__yy_memcpy):
2180 Renamed from __yy_bcopy to avoid
2181 confusion. Reverse FROM and TO arguments to be consistent with
2182 those of memcpy.
2183
21841995-02-14 Jim Meyering <meyering@gnu.org>
2185
2186 * bison.simple (__yy_memcpy):
2187 Renamed from __yy_bcopy to avoid
2188 confusion. Reverse FROM and TO arguments to be consistent with
2189 those of memcpy.
2190
21911994-11-10 David J. MacKenzie <djm@gnu.org>
2192
2193 * NEWS: reformat
2194
2195 * NEWS: New file.
2196
2197 * Makefile.in (DISTFILES): Include NEWS.
2198
2199 * Makefile.in (DISTFILES):
2200 Include install-sh, not install.sh.
2201
2202 * configure.in: Update to Autoconf v2 macro names.
2203
22041994-10-05 David J. MacKenzie <djm@gnu.org>
2205
2206 * Makefile.in: fix typo
2207
2208 * Makefile.in (prefix, exec_prefix):
2209 Let configure set them.
2210
22111994-09-28 David J. MacKenzie <djm@gnu.org>
2212
2213 * Makefile.in: Set datadir to $(prefix)/share.
2214
22151994-09-15 Richard Stallman <rms@gnu.org>
2216
2217 * src/bison.s1:
2218 Update copyright notice and GPL version.
2219
22201994-09-15 Richard Stallman <rms@gnu.org>
2221
2222 * bison.simple:
2223 Update copyright notice and GPL version.
2224
22251994-07-12 Richard Stallman <rms@gnu.org>
2226
2227 * src/reduce.c, src/reader.c:
2228 entered into RCS
2229
22301994-05-05 David J. MacKenzie <djm@gnu.org>
2231
2232 * Makefile.in: entered into RCS
2233
22341994-03-26 Richard Stallman <rms@gnu.org>
2235
2236 * src/bison.s1: entered into RCS
2237
22381994-03-26 Richard Stallman <rms@gnu.org>
2239
2240 * bison.simple: entered into RCS
2241
22421994-03-25 Richard Stallman <rms@gnu.org>
2243
2244 * src/main.c: entered into RCS
2245
22461994-03-24 Richard Stallman <rms@gnu.org>
2247
2248 * src/conflicts.c: entered into RCS
2249
22501994-01-02 Richard Stallman <rms@gnu.org>
2251
2252 * Makefile.in: *** empty log message ***
2253
22541993-11-21 Richard Stallman <rms@gnu.org>
2255
2256 * src/bison.s1: *** empty log message ***
2257
22581993-11-21 Richard Stallman <rms@gnu.org>
2259
2260 * doc/bison.texinfo: entered into RCS
2261
2262 * doc/bison.texinfo: *** empty log message ***
2263
22641993-11-21 Richard Stallman <rms@gnu.org>
2265
2266 * bison.simple: *** empty log message ***
2267
22681993-10-25 David J. MacKenzie <djm@gnu.org>
2269
2270 * doc/bison.texinfo: *** empty log message ***
2271
22721993-10-19 Richard Stallman <rms@gnu.org>
2273
2274 * src/bison.s1: *** empty log message ***
2275
22761993-10-19 Richard Stallman <rms@gnu.org>
2277
2278 * bison.simple: *** empty log message ***
2279
22801993-10-14 Richard Stallman <rms@gnu.org>
2281
2282 * src/bison.s1: *** empty log message ***
2283
22841993-10-14 Richard Stallman <rms@gnu.org>
2285
2286 * bison.simple: *** empty log message ***
2287
22881993-09-14 David J. MacKenzie <djm@gnu.org>
2289
2290 * doc/bison.texinfo: *** empty log message ***
2291
22921993-09-13 Noah Friedman <friedman@gnu.org>
2293
2294 * Makefile.in: *** empty log message ***
2295
22961993-09-10 Richard Stallman <rms@gnu.org>
2297
2298 * src/conflicts.c: *** empty log message ***
2299
2300 * src/system.h: entered into RCS
2301
23021993-09-10 Richard Stallman <rms@gnu.org>
2303
2304 * doc/bison.1: entered into RCS
2305
23061993-09-06 Noah Friedman <friedman@gnu.org>
2307
2308 * src/version.c: entered into RCS
2309
23101993-09-06 Noah Friedman <friedman@gnu.org>
2311
2312 * Makefile.in: *** empty log message ***
2313
23141993-07-30 David J. MacKenzie <djm@gnu.org>
2315
2316 * Makefile.in: *** empty log message ***
2317
23181993-07-24 Richard Stallman <rms@gnu.org>
2319
2320 * src/bison.s1: *** empty log message ***
2321
23221993-07-24 Richard Stallman <rms@gnu.org>
2323
2324 * bison.simple: *** empty log message ***
2325
23261993-07-08 David J. MacKenzie <djm@gnu.org>
2327
2328 * Makefile.in: *** empty log message ***
2329
23301993-07-04 Richard Stallman <rms@gnu.org>
2331
2332 * src/bison.s1: *** empty log message ***
2333
23341993-07-04 Richard Stallman <rms@gnu.org>
2335
2336 * bison.simple: *** empty log message ***
2337
23381993-06-26 David J. MacKenzie <djm@gnu.org>
2339
2340 * src/getargs.c: entered into RCS
2341
23421993-06-26 David J. MacKenzie <djm@gnu.org>
2343
2344 * doc/bison.texinfo: *** empty log message ***
2345
2346 * doc/bison.1: New file.
2347
23481993-06-25 Richard Stallman <rms@gnu.org>
2349
2350 * src/getargs.c: New file.
2351
23521993-06-16 Richard Stallman <rms@gnu.org>
2353
2354 * src/bison.s1: *** empty log message ***
2355
23561993-06-16 Richard Stallman <rms@gnu.org>
2357
2358 * bison.simple: *** empty log message ***
2359
23601993-06-03 Richard Stallman <rms@gnu.org>
2361
2362 * src/bison.s1: New file.
2363
23641993-06-03 Richard Stallman <rms@gnu.org>
2365
2366 * doc/bison.texinfo: *** empty log message ***
2367
23681993-06-03 Richard Stallman <rms@gnu.org>
2369
2370 * bison.simple: New file.
2371
23721993-05-19 Richard Stallman <rms@gnu.org>
2373
2374 * doc/bison.texinfo: New file.
2375
23761993-05-07 Noah Friedman <friedman@gnu.org>
2377
2378 * Makefile.in: *** empty log message ***
2379
23801993-04-28 Noah Friedman <friedman@gnu.org>
2381
2382 * src/reader.c: *** empty log message ***
2383
23841993-04-23 Noah Friedman <friedman@gnu.org>
2385
2386 * src/alloc.h: entered into RCS
2387
23881993-04-20 David J. MacKenzie <djm@gnu.org>
2389
2390 * src/version.c: *** empty log message ***
2391
2392 * src/files.c, src/allocate.c:
2393 entered into RCS
2394
2395 * src/reader.c: *** empty log message ***
2396
2397 * src/lex.c: entered into RCS
2398
2399 * src/conflicts.c: New file.
2400
2401 * src/symtab.c: entered into RCS
2402
2403 * src/alloc.h: New file.
2404
2405 * src/LR0.c: entered into RCS
2406
24071993-04-18 Noah Friedman <friedman@gnu.org>
2408
2409 * src/reader.c: New file.
2410
2411 * src/version.c: *** empty log message ***
2412
24131993-04-18 Noah Friedman <friedman@gnu.org>
2414
2415 * Makefile.in: *** empty log message ***
2416
24171993-04-17 Noah Friedman <friedman@gnu.org>
2418
2419 * Makefile.in: *** empty log message ***
2420
24211993-04-15 Richard Stallman <rms@gnu.org>
2422
2423 * src/main.c, src/files.c:
2424 New file.
2425
24261993-04-15 Noah Friedman <friedman@gnu.org>
2427
2428 * configure.in: entered into RCS
2429
2430 * configure.in: *** empty log message ***
2431
2432 * configure.in: New file.
2433
24341993-04-14 Richard Stallman <rms@gnu.org>
2435
2436 * Makefile.in: New file.
2437
24381993-04-13 Richard Stallman <rms@gnu.org>
2439
2440 * src/version.c: New file.
2441
24421993-03-25 Richard Stallman <rms@gnu.org>
2443
2444 * src/output.c: entered into RCS
2445
24461992-09-25 Richard Stallman <rms@gnu.org>
2447
2448 * configure.bat: entered into RCS
2449
24501992-06-22 Richard Stallman <rms@gnu.org>
2451
2452 * src/vmsgetargs.c: entered into RCS
2453
24541992-06-22 Richard Stallman <rms@gnu.org>
2455
2456 * doc/bison.rnh: entered into RCS
2457
24581992-04-20 David J. MacKenzie <djm@gnu.org>
2459
2460 * README: entered into RCS
2461
24621992-01-22 Richard Stallman <rms@gnu.org>
2463
2464 * src/machine.h: entered into RCS
2465
24661991-12-21 Richard Stallman <rms@gnu.org>
2467
2468 * src/lalr.c, src/closure.c:
2469 entered into RCS
2470
24711991-12-20 Richard Stallman <rms@gnu.org>
2472
2473 * src/state.h: entered into RCS
2474
24751991-12-18 Richard Stallman <rms@gnu.org>
2476
2477 * src/print.c, src/nullable.c, src/derives.c:
2478 entered into RCS
2479
24801991-11-03 David J. MacKenzie <djm@gnu.org>
2481
2482 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
2483 entered into RCS
2484
24851988-09-09 Richard Stallman <rms@gnu.org>
2486
2487 * src/bison.hairy: entered into RCS
2488
24891987-12-16 Richard Stallman <rms@gnu.org>
2490
2491 * REFERENCES: entered into RCS