]> git.saurik.com Git - bison.git/blame - ChangeLog
* tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
[bison.git] / ChangeLog
CommitLineData
cb4956ee
AD
12001-11-28 Akim Demaille <akim@epita.fr>
2
3 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
4 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
5 as all tags are free'ed afterwards.
6 From Enrico Scholz.
7
648185ab
PE
82001-11-27 Paul Eggert <eggert@twinsun.com>
9
10 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
11 use alloca when we didn't want to, and vice versa.
12
68254a03
MA
132001-11-27 Marc Autret <autret_m@epita.fr>
14
15 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle initialization.
16 * src/output.c (prepare): Remove its update.
17
04d843a2
MA
182001-11-27 Marc Autret <autret_m@epita.fr>
19
20 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21 Use %error-verbose.
22
d2079671 232001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
24
25 * src/bison.simple: Remove YYERROR_VERBOSE using.
26 Use %%error_verbose.
27 (yyparse): Likewise.
28 * src/output.c (prepare): Give its final value.
29 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
30 * src/getargs.h: Add its extern declaration.
31 * src/getargs.c (error_verbose_flag): New int.
32 (getargs): Update to catch new case.
33 * src/options.c (option_table): 'error-verbose' is a new option.
34 (shortopts): Update.
35
e0327bc8
AD
362001-11-27 Akim Demaille <akim@epita.fr>
37
38 * src/system.h: Use intl/libgettext.h.
39 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
40
000f1a3c
AD
412001-11-27 Akim Demaille <akim@epita.fr>
42
43 * tests/torture.at (Exploding the Stack Size with Malloc):
44 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
45
26cfe0be
AD
462001-11-27 Akim Demaille <akim@epita.fr>
47
48 * src/files.c: Include error.h.
49 Reported by Hans Aberg.
50
f6bd5427
MA
512001-11-26 Marc Autret <autret_m@epita.fr>
52
d2079671 53 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
54 (read_declarations): Add case tok_include.
55 * src/getargs.h (include): Add its extern definition.
56 * src/getargs.c (include): New const char *.
57 (getargs): Add case '-I'.
58 * src/options.c (option_table): Add include as command line and
59 percent option.
60 * src/lex.h (token_t): Add tok_include.
61
2ca209c1
AD
622001-11-26 Akim Demaille <akim@epita.fr>
63
64 * src/reader.c (readgram): Make sure rules for mid-rule actions
65 have a lineno equal to that of their host rule.
66 Reported by Hans Aberg.
67 * tests/regression.at (Rule Line Numbers): New.
68
0e41b407
AD
692001-11-26 Akim Demaille <akim@epita.fr>
70
71 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
72 size_ts.
73
742001-11-26 Akim Demaille <akim@epita.fr>
75
76 * src/complain.c, src/complain.h (error): Remove, provided by
77 lib/error.[ch].
78
e0c40012
AD
792001-11-26 Akim Demaille <akim@epita.fr>
80
81 * src/reader.c (read_declarations): Don't abort on tok_illegal,
82 issue an error message.
83 * tests/regression.at (Invalid %directive): New.
84 Reported by Hans Aberg.
85
5e147124
AD
862001-11-26 Akim Demaille <akim@epita.fr>
87
88 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
89 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
90
a034c8b8
AD
912001-11-26 Akim Demaille <akim@epita.fr>
92
93 * src/conflicts.c (conflicts_print): Don't complain at all when
94 there are no reduce/reduce conflicts, and as many shift/reduce
95 conflicts as expected.
96 * tests/regression.at (%expect right): Adjust.
97
c64a20f3
AD
982001-11-23 Akim Demaille <akim@epita.fr>
99
100 * lib/alloca.c: Update, from fileutils.
101
5b0d29bb
AD
1022001-11-23 Akim Demaille <akim@epita.fr>
103
104 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
105
722c4bfe
AD
1062001-11-23 Akim Demaille <akim@epita.fr>
107
108 * src/system.h: Include alloca.h.
109 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
110
6255b435
AD
1112001-11-23 Akim Demaille <akim@epita.fr>
112
113 * src/print_graph.c (print_actions): Remove `rule', unused.
114 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
115 pacify GCC's signed < unsigned warnings.
116 * src/closure.c (itemsetsize): Likewise.
117 * src/reader.c (symbol_list_new): Static.
118
b29b2ed5
AD
1192001-11-23 Akim Demaille <akim@epita.fr>
120
121 Attaching lineno to buckets is stupid, since only one copy of each
122 symbol is kept, only the line of the first occurrence is kept too.
123
124 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
125 * src/reader.c (rline_allocated): Remove, unused.
126 (symbol_list): Have a `line' member.
127 (symbol_list_new): New.
128 (readgram): Use it.
129 * src/print.c (print_grammar): Output the rule line numbers.
130 * tests/regression.at (Solved SR Conflicts)
131 (Unresolved SR Conflicts): Adjust.
132 Reported by Hans Aberg.
133
a81b1d4a
MA
1342001-11-22 Marc Autret <autret_m@epita.fr>
135
136 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
137
c1ecb3c1
MA
1382001-11-22 Marc Autret <autret_m@epita.fr>
139
140 * src/muscle_tab.c (muscle_init): Remove initialization of
141 skeleton muscle.
142 * src/output.c (output_master_parser): Do it here.
143
fbe01355
AD
1442001-11-20 Akim Demaille <akim@epita.fr>
145
146 * po/sv.po: New.
147 * configure.in (ALL_LINGUAS): Adjust.
148 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
149 longer contains strings to translate.
150
81e895c0
AD
1512001-11-19 Akim Demaille <akim@epita.fr>
152
153 * src/conflicts.c (conflicts_print): Add a missing \n.
154
6bb1878b
AD
1552001-11-19 Akim Demaille <akim@epita.fr>
156
157 * src/nullable.c (nullable_print): New.
158 (set_nullable): Call it when tracing.
159 Better locality of variables.
160
d9ec2d07
AD
1612001-11-19 Akim Demaille <akim@epita.fr>
162
163 * src/print.c (print_actions): Better locality of variables.
164
720e5c1b
AD
1652001-11-19 Akim Demaille <akim@epita.fr>
166
167 * src/derives.c (print_derives): Fix and enrich.
168 * src/closure.c (print_fderives): Likewise.
169
fb908786
AD
1702001-11-19 Akim Demaille <akim@epita.fr>
171
172 * src/closure.c (itemsetend): Remove, replaced with...
173 (itemsetsize): new.
174
125ecb56
AD
1752001-11-19 Akim Demaille <akim@epita.fr>
176
177 * src/LR0.c (kernel_end): Remove, replaced with...
178 (kernel_size): new.
179
d8cf039f
AD
1802001-11-19 Akim Demaille <akim@epita.fr>
181
182 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
183 to clarify.
184
7bec0760
AD
1852001-11-19 Akim Demaille <akim@epita.fr>
186
187 * src/closure.c (closure): Use arrays instead of pointers to clarify.
188
c87d4863
AD
1892001-11-19 Akim Demaille <akim@epita.fr>
190
191 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
192 trace messages.
193 * src/LR0.c: Likewise.
194 (allocate_itemsets): Use arrays instead of pointers to clarify.
195
9bfe901c
AD
1962001-11-19 Akim Demaille <akim@epita.fr>
197
198 * src/getargs.c (statistics_flag): Replace with...
199 (trace_flag): New.
200 (longopts): Accept --trace instead of --statistics.
201 * src/getargs.h, src/options.c: Adjust.
202 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
203 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
204
97db7bd4
AD
2052001-11-19 Akim Demaille <akim@epita.fr>
206
cc72668c 207 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
208 pointers to clarify the code.
209 (save_reductions, save_shifts): Factor common parts of alternatives.
210
2c5f66ed
AD
2112001-11-19 Akim Demaille <akim@epita.fr>
212
213 * src/LR0.c (new_state, get_state): Complete TRACE code.
214 * src/closure.c: Include `reader.h' to get `tags', needed by the
215 trace code.
216 Rename the conditional DEBUG as TRACE.
217 Output consistently TRACEs to stderr, not stdout.
218 * src/derives.c: Likewise.
219 * src/reduce.c: (inaccessable_symbols): Using if is better style
220 than goto.
221 Use `#if TRACE' instead of `#if 0' for tracing code.
222
300f275f
AD
2232001-11-19 Akim Demaille <akim@epita.fr>
224
225 * src/system.h (LIST_FREE, shortcpy): New.
226 * src/LR0.c: Use them.
227 * src/output.c (free_itemsets, free_reductions, free_shifts):
228 Remove, replaced by LIST_FREE.
229
f59c437a
AD
2302001-11-19 Akim Demaille <akim@epita.fr>
231
232 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
233 (REDUCTIONS_ALLOC): New.
234 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
235 allocation.
236
6986fd9e
AD
2372001-11-19 Akim Demaille <akim@epita.fr>
238
239 * src/LR0.c (new_state): Complete trace code.
240 * src/nullable.c (set_nullable): Don't translate traces.
241
4bc30f78
AD
2422001-11-19 Akim Demaille <akim@epita.fr>
243
244 * src/print_graph.c (print_core): Better locality of variables.
245 * src/print.c (print_core): Likewise.
246
08a946e0
AD
2472001-11-19 Akim Demaille <akim@epita.fr>
248
249 * src/vcg.c: You do the output, so you are responsible of the
250 handling of VCG syntax, in particular: use quotearg.
251 * src/print_graph.c: Don't.
252 (print_actions): Don't output the actions as part of the nodes,
253 since that's the job of the edges.
254 (print_state): Don't output by hand: fill the node description,
9bfe901c 255 and ask for its output.
08a946e0 256
f0473484
AD
2572001-11-19 Akim Demaille <akim@epita.fr>
258
cc72668c
AD
259 * src/bison.simple (yyparse): When verbosely reporting an error,
260 no longer put additional quotes around token names.
f0473484
AD
261 * tests/calc.at: Adjust.
262
e41dc700
AD
2632001-11-19 Akim Demaille <akim@epita.fr>
264
265 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
266 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
267 * src/output.c: Adjust.
268
652a871c
AD
2692001-11-19 Akim Demaille <akim@epita.fr>
270
271 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
272 (rule_t): this.
273 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
274
b2ed6e58
AD
2752001-11-19 Akim Demaille <akim@epita.fr>
276
277 * src/gram.h (rule_t): New.
278 (rule_table): New.
279 (rrhs, rlhs): Remove, part of state_t.
280 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
281 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
282 * src/reader.c, src/reduce.c: Adjust.
283
edad7067
AD
2842001-11-19 Akim Demaille <akim@epita.fr>
285
286 * src/reader.c (symbols_output): New, extracted from...
287 (packsymbols): Here.
288 (reader): Call it.
289
3feec034
AD
2902001-11-19 Akim Demaille <akim@epita.fr>
291
292 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
293 (maxrhs): this new function.
294
ddcd5fdf
AD
2952001-11-19 Akim Demaille <akim@epita.fr>
296
cc72668c 297 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
298 Adjust.
299
bb527fc2
AD
3002001-11-19 Akim Demaille <akim@epita.fr>
301
cc72668c 302 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
303 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
304 * src/lalr.c: Adjust.
305
a845a697
AD
3062001-11-19 Akim Demaille <akim@epita.fr>
307
308 * src/lalr.c (initialize_LA): Only initialize LA. Let...
309 (set_state_table): handle the `lookaheads' members.
310
f004bf6a
AD
3112001-11-19 Akim Demaille <akim@epita.fr>
312
cc72668c
AD
313 * src/lalr.h (lookaheads): Removed array, whose contents is now
314 a member of...
f004bf6a
AD
315 (state_t): this structure.
316 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
317 Adjust.
318
de326cc0
AD
3192001-11-19 Akim Demaille <akim@epita.fr>
320
cc72668c
AD
321 * src/lalr.h (consistent): Removed array, whose contents is now
322 a member of...
de326cc0
AD
323 (state_t): this structure.
324 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
325 Adjust.
326
90b4416b
AD
3272001-11-19 Akim Demaille <akim@epita.fr>
328
cc72668c
AD
329 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
330 contents are now members of...
90b4416b
AD
331 (state_t): this structure.
332 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
333 Adjust.
334
9703cc49
AD
3352001-11-19 Akim Demaille <akim@epita.fr>
336
337 * src/lalr.h (state_t): New.
338 (state_table): Be a state_t * instead of a core **.
339 (accessing_symbol): Remove, part of state_t.
340 * src/lalr.c: Adjust.
341 (set_accessing_symbol): Merge into...
342 (set_state_table): this.
343 * src/print_graph.c, src/conflicts.c: Adjust.
344
d803322e
AD
3452001-11-14 Akim Demaille <akim@epita.fr>
346
347 * tests/calc.at, tests/output.at, tests/regression.at,
348 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
349 now the tests are run in private dirs, therefore AC_CLEANUP and
350 family can be simplified to 0-ary.
351 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
352 use abs. path to find config.h.
353 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
354 stderr, there can be way too much random noise.
355 Instead pass -Werror to GCC and rely on the exit status.
356 Reported by Wolfram Wagner.
357
3d76b07d
AD
3582001-11-14 Akim Demaille <akim@epita.fr>
359
360 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
361 defined only if yyoverflow is defined, to avoid `warning: unused
362 variable `yyvs1''.
363 Reported by The Test Suite.
364
09b503c8
AD
3652001-11-14 Akim Demaille <akim@epita.fr>
366
367 * src/print.c: Include reduce.h.
368 Reported by Hans Aberg.
369
3702001-11-14 Akim Demaille <akim@epita.fr>
371
372 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
373 Revert a previous patch: these are really const.
374 * src/conflicts.c (conflict_report): Additional useless pair of
375 braces to pacify GCC's warnings for `if () if () {} else {}'.
376 * src/lex.c (parse_percent_token): Replace equal_offset with
377 arg_offset.
378 arg is const.
379 Be sure to strdup `arg' when used, since there is no reason for
380 token_buffer not to change.
381
0f37a994
AD
3822001-11-14 Akim Demaille <akim@epita.fr>
383
384 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
385 definition.
386 * src/main.c (main): Use them.
387 Suggested by Hans Aberg.
388
d39d93b8
AD
3892001-11-12 Akim Demaille <akim@epita.fr>
390
391 * src/system.h (ngettext): Now that we use ngettext, be sure to
392 provide a default definition when NLS are not used.
393
9edcd895
AD
3942001-11-12 Akim Demaille <akim@epita.fr>
395
396 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
397 Use @kbd to denote user input.
398 (Language and Grammar): ANSIfy the example.
399 Adjust its layout for info/notinfo.
400 (Location Tracking Calc): Output error messages to stderr.
401 Output locations in a more GNUtically correct way.
402 Fix a couple of Englishos.
403 Adjust @group/@end group pairs.
404
7da99ede
AD
4052001-11-12 Akim Demaille <akim@epita.fr>
406
407 %expext was not functioning at all.
408
409 * src/conflicts.c (expected_conflicts): Set to -1.
410 (conflict_report): Use ngettext.
411 (conflicts_print): Check %expect and make its violation an error.
412 * doc/bison.texinfo (Expect Decl): Adjust.
413 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
414 * tests/regression.at (%expect not enough, %expect right)
415 (%expect too much): New.
416
ba9dda1a
AD
4172001-11-12 Akim Demaille <akim@epita.fr>
418
419 * tests/regression.at (Conflicts): Rename as...
420 (Unresolved SR Conflicts): this.
421 (Solved SR Conflicts): New.
422
337c5bd1
AD
4232001-11-12 Akim Demaille <akim@epita.fr>
424
425 * src/reduce.c (print_results): Rename as...
426 (reduce_output): This.
427 Output to OUT, passed as argument, instead of output_obstack.
428 (dump_grammar): Likewise.
429 (reduce_free): New.
430 Also free V1.
431 (reduce_grammar): No longer call reduce_output, since...
432 * src/print.c (print_results): do it.
433 * src/main.c (main): Call reduce_free;
434
c73a41af
AD
4352001-11-12 Akim Demaille <akim@epita.fr>
436
437 * src/conflicts.c (print_reductions): Accept OUT as argument.
438 Output to it, not to output_obstack.
439 * src/print.c (print_actions): Adjust.
440
0df87bb6
AD
4412001-11-12 Akim Demaille <akim@epita.fr>
442
443 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
444 the result instead of using...
445 (src_total, rrc_total, src_count, rrc_count): Remove.
446 (any_conflicts): Remove.
447 (print_conflicts): Split into...
448 (conflicts_print, conflicts_output): New.
449 * src/conflicts.h: Adjust.
450 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 451 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
452 * tests/regression.at (Conflicts): New.
453 Reported by Tom Lane.
454
e4d3d4de
AD
4552001-11-12 Akim Demaille <akim@epita.fr>
456
457 * tests/regression.at (Invalid input): Remove, duplicate with
458 ``Invalid input: 1''.
459
6d7d248e
AD
4602001-11-12 Akim Demaille <akim@epita.fr>
461
462 * tests/torture.at (AT_DATA_STACK_TORTURE)
463 (Exploding the Stack Size with Alloca)
464 (Exploding the Stack Size with Malloc): New.
465
e9e4c321
AD
4662001-11-12 Akim Demaille <akim@epita.fr>
467
468 * src/bison.simple (YYSTACK_REALLOC): New.
469 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 470 Reported by Per Allansson.
e9e4c321 471
5f7e0832
AD
4722001-11-12 Pascal Bart <pascal.bart@epita.fr>
473
474 * src/bison.simple: Define type yystype instead of YYSTYPE, and
475 define CPP macro, which substitute YYSTYPE by yystype.
476 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
477 with yyltype/YYLTYPE. This allows inclusion of the generated
478 header within the parser if the compiler, such as GGC, accepts
479 multiple equivalent #defines.
480 From Akim.
481
e3f1699f
AD
4822001-11-05 Akim Demaille <akim@epita.fr>
483
484 * src/reader.c (symbols_output): New, extracted from...
485 (packsymbols): here.
486 (reader): Adjust.
487
65be0866
AD
4882001-11-05 Akim Demaille <akim@epita.fr>
489
490 * src/lex.c (parse_percent_token): s/quotearg/quote/.
491
e4d910bf
AD
4922001-11-05 Akim Demaille <akim@epita.fr>
493
494 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
495 pattern.
496
951366c1
AD
4972001-11-05 Akim Demaille <akim@epita.fr>
498
499 * src/options.h (struct option_table_struct): set_flags is void*.
500 * src/options.c (longopts): Support `--output' and `%output'.
501 (usage): Adjust.
502 * src/lex.h (tok_setopt): Remove, replaced with...
503 (tok_intopt, tok_stropt): these new guys.
504 * src/lex.c (getopt.h): Not needed.
505 (token_buffer, unlexed_token_buffer): Not const.
506 (percent_table): Promote `-' over `_' in directive names.
507 Active `%name-prefix', `file-prefix', and `output'.
508 (parse_percent_token): Accept possible arguments to directives.
509 Promote `-' over `_' in directive names.
510
d8988b2f
AD
5112001-11-04 Akim Demaille <akim@epita.fr>
512
513 * doc/bison.texinfo (Decl Summary): Split the list into
514 `directives for grammars' and `directives for bison'.
515 Sort'em.
516 Add description of `%name-prefix', `file-prefix', and `output'.
517 Promote `-' over `_' in directive names.
518 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
519 Simplify the description of `--name-prefix'.
520 Promote `-' over `_' in directive names.
521 Promote `--output' over `--output-file'.
522 Fix the description of `--defines'.
523 * tests/output.at: Exercise %file-prefix and %output.
524
6468d18e
AD
5252001-11-02 Akim Demaille <akim@epita.fr>
526
527 * doc/refcard.tex: Update.
528
6b7e85b9
AD
5292001-11-02 Akim Demaille <akim@epita.fr>
530
531 * src/symtab.h (SUNDEF): New.
532 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
533 stand for `uninitialized', instead of 0.
534 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
535 * src/lex.c (lex): Adjust.
536
537 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
538 Number it 0.
539 Let yylex return it instead of a plain 0.
540 Reported by Dick Streefland.
541
cd5aafcf
AD
5422001-11-02 Akim Demaille <akim@epita.fr>
543
544 * tests/regression.at (Mixing %token styles): New test.
545
037ca2f1
AD
5462001-11-02 Akim Demaille <akim@epita.fr>
547
548 * src/reader.c (parse_thong_decl): Formatting changes.
549 (token_translations_init): New, extracted from...
550 (packsymbols): Here.
551 Adjust.
552
270a173c
AD
5532001-11-01 Akim Demaille <akim@epita.fr>
554
555 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
556 Check that `9foo.y' produces correct cpp guards.
557 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
558 guards.
559 Reported by Wwp.
560
561f9a30
AD
5612001-11-01 Akim Demaille <akim@epita.fr>
562
563 * tests/regression.at (Invalid input: 2): New.
564 * src/lex.c (unlexed_token_buffer): New.
565 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
566 too.
567 Reported by Wwp.
568
f987e9d2
AD
5692001-11-01 Akim Demaille <akim@epita.fr>
570
571 * tests/calc.at: Catch up with 1.30.
572 * configure.in: Bump to 1.49a.
573 Adjust to newer Autotest.
574
0846f581
PB
5752001-10-19 Pascal Bart <pascal.bart@epita.fr>
576
577 * src/conflicts.c: Move global variables rrc_total and src_total ...
578 (print_conflicts): here.
579 * src/output.c (output): Free global variable user_toknums.
580 * src/lex.c (token_obstack): Become static.
581
3c1a79b3
AD
5822001-10-18 Akim Demaille <akim@epita.fr>
583
584 * tests/atlocal.in (GCC): Add.
585 * tests/calc.at: s/m4_match/m4_bmatch/.
586 s/m4_patsubst/m4_bpatsubst/.
587 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
588 * configure.in: AC_SUBST(GCC).
589
5d52e7d0
MA
5902001-10-14 Marc Autret <autret_m@epita.fr>
591
592 * src/options.c (create_long_option_table): Fix.
593
631aa1d3
AD
5942001-10-10 Akim Demaille <akim@epita.fr>
595
596 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
597
f6ec6d13
AD
5982001-10-04 Akim Demaille <akim@epita.fr>
599
600 * src/reader.c (parse_union_decl): Push the caracters in
601 union_obstack, not attrs_obstack.
602
342b8b6e
AD
6032001-10-04 Akim Demaille <akim@epita.fr>
604
605 Merge in the branch 1.29.
606
607 * src/reader.c (packsymbols): Use a temporary obstack for
608 `%%tokendef', since output_stack is already used elsewhere.
609
610 2001-10-02 Akim Demaille <akim@epita.fr>
611
612 Bump 1.29d.
613
614 2001-10-02 Akim Demaille <akim@epita.fr>
615
616 Version 1.29c.
617
618 2001-10-02 Akim Demaille <akim@epita.fr>
619
620 * tests/regression.at (Invalid CPP headers): New.
621 From Alexander Belopolsky.
622 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
623
624 2001-10-02 Akim Demaille <akim@epita.fr>
625
626 * tests/regression.at (Invalid input): New.
627 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
628 Reported by Shura.
629
630 2001-10-02 Akim Demaille <akim@epita.fr>
631
632 * tests/calc.at: Now that --debug works, the tests must be adjusted.
633
634 2001-10-02 Akim Demaille <akim@epita.fr>
635
636 * src/output.c (output_parser): Assert `skeleton'.
637 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
638 systems.
639 From Shura.
640
641 2001-10-01 Marc Autret <autret_m@epita.fr>
642
643 * src/lex.h: Echo modifications.
644 * src/lex.c (unlex): Parameter is now token_t.
645 From Hans Aberg.
646
647 2001-10-01 Marc Autret <autret_m@epita.fr>
648
649 * src/main.c: Include lex.h.
650 From Hans Aberg.
651
652 2001-09-29 Akim Demaille <akim@epita.fr>
653
654 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
655
656 2001-09-28 Akim Demaille <akim@epita.fr>
657
658 * tests/testsuite.at: Update to newer Autotest.
659 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
660
661 2001-09-27 Akim Demaille <akim@epita.fr>
662
663 Position independent wrapper.
664
665 * tests/bison: Remove.
666 * tests/bison.in: New.
667 * configure.in: Adjust.
668
669 2001-09-27 Paul Eggert <eggert@twinsun.com>
670
671 Port quotearg fixes from tar 1.13.24.
672
673 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
674 tm to be declared.
675 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
676 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
677
678 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
679 * m4/mbrtowc.m4: New file.
680 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
681 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
682
683 2001-09-27 Akim Demaille <akim@epita.fr>
684
685 Bump to 1.29c.
686
687 2001-09-27 Akim Demaille <akim@epita.fr>
688
689 Version 1.29b.
690
691 2001-09-25 Akim Demaille <akim@epita.fr>
692
693 * src/system.h: Include `xalloc.h'.
694 Remove it from the C files.
695 * src/files.c (output_files): Free the obstacks.
696 * src/lex.c (init_lex): Rename as...
697 (lex_init): this.
698 (lex_free): New.
699 * src/main.c (main): Use it.
700
701 2001-09-24 Marc Autret <autret_m@epita.fr>
702
703 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
704 to output informations in fout (FILE*).
705 (open_graph, close_graph): Likewise.
706 (output_graph, output_edge, output_node): Likewise.
707 * src/vcg.h: Update function prototypes.
708 * src/print_graph.c (print_graph): Open output graph file.
709 (print_actions): Adjust.
710 * src/files.h: Remove extern declaration.
711 * src/files.c: Remove graph_obstack declaration.
712 (open_files): Remove graph_obstack initialization.
713 (output_files): Remove graph_obstack saving.
714
715 2001-09-24 Marc Autret <autret_m@epita.fr>
716
717 * src/files.c (compute_output_file_names): Fix.
718
719 2001-09-24 Marc Autret <autret_m@epita.fr>,
720 Akim Demaille <akim@epita.fr>
721
722 * src/reader.c (reader): Remove call to free_symtab ().
723 * src/main.c (main): Call it here.
724 Include symtab.h.
725 * src/conflicts.c (initialize_conflicts): Rename as...
726 (solve_conflicts): this.
727 * src/print.c (print_core, print_actions, print_state)
728 (print_grammar): Dump to a file instead a `output_obstack'.
729 (print_results): Dump `output_obstack', and then proceed with the
730 FILE *.
731 * src/files.c (compute_output_file_names, close_files): New.
732 (output_files): Adjust.
733 * src/main.c (main): Adjust.
734
735 2001-09-23 Marc Autret <autret_m@epita.fr>
736
737 * src/files.c (compute_header_macro): Computes header macro name
738 from spec_defines_file when given.
739
740 2001-09-23 Marc Autret <autret_m@epita.fr>
741
742 * src/files.c (output_files): Add default extensions.
743
744 2001-09-22 Akim Demaille <akim@epita.fr>
745
746 * src/conflicts.c (finalize_conflicts): Rename as...
747 (free_conflicts): this.
748
749 2001-09-22 Akim Demaille <akim@epita.fr>
750
751 * src/gram.c (gram_free): Rename back as...
752 (dummy): this.
753 (output_token_translations): Free `token_translations'.
754 * src/symtab.c (free_symtab): Free the tag field.
755
756 2001-09-22 Akim Demaille <akim@epita.fr>
757
758 Remove `translations' as it is always set to true.
759
760 * src/gram.h: Adjust.
761 * src/reader.c (packsymbols, parse_token_decl): Adjust
762 * src/print.c (print_grammar): Adjust.
763 * src/output.c (output_token_translations): Adjust.
764 * src/lex.c (lex): Adjust.
765 * src/gram.c: Be sure the set pointers to NULL.
766 (dummy): Rename as...
767 (gram_free): this.
768
769 2001-09-22 Akim Demaille <akim@epita.fr>
770
771 * configure.in: Invoke AM_LIB_DMALLOC.
772 * src/system.h: Use dmalloc.
773 * src/LR0.c: Be sure to have pointers initialized to NULL.
774 (allocate_itemsets): Allocate kernel_items only if needed.
775
776 2001-09-22 Akim Demaille <akim@epita.fr>
777
778 * configure.in: Bump to 1.29b.
779 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
780 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
781 need xmalloc.c in calc.y.
782 From Pascal Bart.
783
784 2001-09-21 Akim Demaille <akim@epita.fr>
785
786 Version 1.29a.
787 * Makefile.maint, config/config.guess, config/config.sub,
788 * config/missing: Update from masters.
789 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
790 upon package.m4.
791 * configure.in (ALL_LINGUAS): Add `tr'.
792
793 2001-09-21 Akim Demaille <akim@epita.fr>
794
795 * tests/Makefile.am (package.m4): Move to...
796 ($(srcdir)/$(TESTSUITE)): here.
797
798 2001-09-20 Akim Demaille <akim@epita.fr>
799
800 * src/complain.c: No longer try to be standalone: use system.h.
801 Don't assume __STDC__ is defined to 1. Just test if it is defined.
802 * src/complain.h: Likewise.
803 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
804 Remove the unused variable `n'.
805 From Albert Chin-A-Young.
806
807 2001-09-18 Marc Autret <autret_m@epita.fr>
808
809 * doc/bison.1: Update.
810 * doc/bison.texinfo (Bison Options): Update --defines and --graph
811 descriptions.
812 (Option Cross Key): Update.
813 Add --graph.
814
815 2001-09-18 Marc Autret <autret_m@epita.fr>
816
817 * tests/regression.at: New test (comment in %union).
818
819 2001-09-18 Marc Autret <autret_m@epita.fr>
820
821 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
822 do that.
823 Reported by Keith Browne.
824
825 2001-09-18 Marc Autret <autret_m@epita.fr>
826
827 * tests/output.at: Add tests for --defines and --graph.
828
829 2001-09-18 Marc Autret <autret_m@epita.fr>
830
831 * tests/output.at: Removes tests of %{header,src}_extension features.
832
833 2001-09-18 Akim Demaille <akim@epita.fr>
834
835 * tests/Makefile.am (package.m4): New.
836 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
837 (_AT_CHECK_CALC_ERROR): Likewise.
838 Factor the `, ' part of verbose error messages.
839
840 2001-09-18 Marc Autret <autret_m@epita.fr>
841
842 * src/getargs.c (longopts): Declare --defines and --graph as options
843 with optional arguments.
844 * src/files.h: Add extern declarations.
845 * src/files.c (spec_graph_file, spec_defines_file): New.
846 (output_files): Update.
847 Remove CPP-outed code.
848
849 2001-09-18 Marc Autret <autret_m@epita.fr>
850
851 Turn off %{source,header}_extension feature.
852
853 * src/files.c (compute_exts_from_gf): Update.
854 (compute_exts_from_src): Update.
855 (output_files): CPP-out useless code.
856 * src/files.h: Remove {header,source}_extension extern declarations.
857 * src/reader.c (parse_dquoted_param): CPP-out.
858 (parse_header_extension_decl): Remove.
859 (parse_source_extension_decl): Remove.
860 (read_declarations): Remove cases tok_{hdrext,srcext}.
861 * src/lex.c (percent_table): Remove {header,source}_extension entries.
862 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
863
864 2001-09-10 Akim Demaille <akim@epita.fr>
865
866 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
867 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
868 (AT_CHECK_OUTPUT): this.
869 Merely check ls' exit status, its output is useless.
870
871 2001-09-10 Akim Demaille <akim@epita.fr>
872
873 * tests/calc.at: Use m4_match.
874 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
875
876 2001-09-10 Marc Autret <autret_m@epita.fr>,
877 Akim Demaille <akim@epita.fr>
878
879 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
880 enum color_e.
881 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
882 to `normal'.
883 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
884 * src/lex.h: Adjust prototype.
885 (token_t): Add `tok_undef'.
886 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
887 (parse_percent_token): Now returns token_t.
888 Add default statement in switch.
889 (lex): Separate `c' as an input variable, from the token_t result
890 part.
891 (unlexed): Is a token_t.
892
893 2001-09-10 Akim Demaille <akim@epita.fr>
894
895 * configure.in: Bump to 1.29a.
896
897 2001-09-07 Akim Demaille <akim@epita.fr>
898
899 Version 1.29.
900
901 2001-08-30 Akim Demaille <akim@epita.fr>
902
903 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
904 * m4/atconfig.m4: Remove.
905 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
906 * tests/bison: New.
907 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
908 m4_if, m4_patsubst, and m4_regexp.
909 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
910 `input' file instead of echo.
911
912 2001-08-29 Akim Demaille <akim@epita.fr>
913
914 Bump to 1.28e.
915
916 2001-08-29 Akim Demaille <akim@epita.fr>
917
918 Version 1.28d.
919
920 2001-08-29 Paul Eggert <eggert@twinsun.com>
921
922 * src/bison.simple (yyparse): Don't take the address of an
923 item before the start of an array, as that doesn't conform to
924 the C Standard.
925
926 2001-08-29 Robert Anisko <anisko_r@epita.fr>
927
928 * doc/bison.texinfo (Location Tracking Calc): New node.
929
930 2001-08-29 Paul Eggert <eggert@twinsun.com>
931
932 * src/output.c (output): Do not define const, as this now
933 causes more problems than it cures.
934
935 2001-08-29 Akim Demaille <akim@epita.fr>
936
937 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
938 the nodes.
939 Be sure to tag the `detailmenu'.
940
941 2001-08-29 Akim Demaille <akim@epita.fr>
942
943 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
944 download in a tmp dir.
945
946 2001-08-28 Marc Autret <autret_m@epita.fr>
947
948 * config/depcomp: New file.
949
950 2001-08-28 Marc Autret <autret_m@epita.fr>
951
952 * doc/bison.1 (mandoc): Adjust.
953 From Juan Manuel Guerrero.
954
955 2001-08-28 Marc Autret <autret_m@epita.fr>
956
957 * src/print_graph.c (print_state): Fix.
958
959 2001-08-27 Marc Autret <autret_m@epita.fr>
960
961 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
962 char * members.
963 Echo modifications to the functions prototypes.
964 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
965
966 2001-08-27 Marc Autret <autret_m@epita.fr>
967
968 * src/vcg.c: Include `xalloc.h'.
969 (add_colorentry): New.
970 (add_classname): New.
971 (add_infoname): New.
972 * src/vcg.h: Add new prototypes.
973
974 2001-08-27 Akim Demaille <akim@epita.fr>
975
976 * Makefile.maint: Sync. again with CVS Autoconf.
977
978 2001-08-27 Akim Demaille <akim@epita.fr>
979
980 * Makefile.maint: Formatting changes.
981 (po-update, cvs-update, update): New targets.
982 (AMTAR): Remove.
983
984 2001-08-27 Akim Demaille <akim@epita.fr>
985
986 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
987 * Makefile.maint: Sync. with CVS Autoconf.
988
989 2001-08-27 Marc Autret <autret_m@epita.fr>
990
991 * src/vcg.h (struct infoname_s): New.
992 (struct colorentry_s): New.
993 (graph_s): New fields {vertical,horizontal}_order in structure.
994 Add `infoname' field.
995 Add `colorentry' field;
996 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
997 (G_HORIZONTAL_ORDER): New.
998 (G_INFONAME): New.
999 (G_COLORENTRY): New.
1000 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
1001 Add output of `infoname'.
1002 Add output of `colorentry'.
1003
1004 2001-08-27 Marc Autret <autret_m@epita.fr>
1005
1006 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
1007 This one shadowed a global parameter.
1008
1009 2001-08-24 Marc Autret <autret_m@epita.fr>
1010
1011 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
1012 instead of `unsigned'.
1013 (print_state): Do not call obstack_object_size () in obstack_grow ()
1014 to avoid macro variables shadowing.
1015
1016 2001-08-23 Marc Autret <autret_m@epita.fr>
1017
1018 * src/lex.c (percent_table): Typo: s/naem/name/.
1019 Add graph option.
1020 Normalize new options declarations.
1021
1022 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
1023
1024 * tests/suite.at: Exercise %header_extension and %source_extension.
1025
1026 2001-08-16 Marc Autret <autret_m@epita.fr>
1027
1028 * src/reader.c (parse_dquoted_param): New.
1029 (parse_header_extension_decl): Use it.
1030 (parse_source_extension_decl): Likewise.
1031
1032 2001-08-16 Marc Autret <autret_m@epita.fr>
1033
1034 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
1035 (get_xxxx_str): Use assert () instead of complain ().
1036 Remove return invokations in default cases.
1037 (get_decision_str): Modify default behaviour. Remove second argument.
1038 Echo modifications on calls.
1039 (output_graph): Fix.
1040
1041 2001-08-16 Marc Autret <autret_m@epita.fr>
1042
1043 * src/getargs.c (usage): Update with ``-g, --graph''.
1044
1045 2001-08-16 Marc Autret <autret_m@epita.fr>
1046
1047 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
1048 (Option Cross Key): Likewise.
1049 * doc/bison.1: Update.
1050
1c8c2190
PB
10512001-09-25 Pascal Bart <pascal.bart@epita.fr>
1052
1053 * src/output.c (output_master_parser): Don't finish action_obstack.
1054 (output_parser): Don't care about the muscle action, here.
1055 (prepare): Copy the action_obstack in the action muscle.
1056 (output): Free action_obstack.
1057
180d45ba
PB
10582001-09-23 Pascal Bart <pascal.bart@epita.fr>
1059
1060 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
1061 will contain `%union' declaration.
1062 (parse_union_decl): Delete #line directive output.
1063 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
1064 informations about %union.
1065 (parse_union_decl): Copy the union_obstack in the muscle stype.
1066 * src/bison.simple: Add new #line directive.
1067 Add typdef %%stype YYSTYPE.
1068
c51d1a19
PB
10692001-09-23 Pascal Bart <pascal.bart@epita.fr>
1070
1071 * src/bison.simple: Add new `#line' directive.
1072
6f9344da
PB
10732001-09-22 Pascal Bart <pascal.bart@epita.fr>
1074
1075 * src/bison.simple: New `#line' directive.
1076 * src/output.c (output_parser): Support new dynamic muscle input_line.
1077
652def80
MA
10782001-09-22 Marc Autret <autret_m@epita.fr>
1079
1080 * src/output.c (output_master_parser): New.
1081 (output_parser): Be more re-entrant.
1082
25b222fa
MA
10832001-09-21 Marc Autret <autret_m@epita.fr>
1084
1085 * src/reader.c (copy_definition, parse_union_decl): Update and use
1086 `linef' muscle.
1087 (copy_action): Likewise.
1088 Use obstack_1grow ().
1089 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
1090
6bc35ae5
MA
10912001-09-21 Marc Autret <autret_m@epita.fr>
1092
1093 * src/options.c (option_table): Adjust.
1094 * src/lex.c (parse_percent_token): Fix.
1095
c0629aa1
PB
10962001-09-20 Pascal Bart <pascal.bart@epita.fr>
1097
1098 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 1099
82b6d266
PB
11002001-09-20 Pascal Bart <pascal.bart@epita.fr>
1101
1102 * src/lex.c (parse_percent_token): Change type of variable `tx', which
1103 is now an option_table_struct*.
1104 (option_strcmp): New function option_strcmp.
1105 (parse_percent_token): Call option_strcmp.
1106 * src/getargs.c (xalloc.h, options.h): Include it.
1107 (getargs): Call create_long_option_table.
1108 (getargs): Free longopts at the end of the function.
1109 (shortopts): Move in options.c.
1110 * src/options.c (create_long_option_table): New function. Convert
1111 information from option_table to option structure.
1112 * src/reader.c (options.h): Include it.
1113
1114 * src/Makefile.am: Adjust.
1115 * src/options.c (option_table): Create from longopts and percent_table.
1116 * src/getargs.c (longopts): Delete.
1117 * src/lex.c (struct percent_table_struct): Delete.
1118 (percent_table): Delete.
1119 (options.h): Include it.
1120 * src/options.c: Create.
1121 * src/options.h: Create.
1122 Declare enum opt_access_e.
1123 Define struct option_table_struct.
1124
75f5aaea
MA
11252001-09-20 Marc Autret <autret_m@epita.fr>
1126
1127 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
1128 sections of Bison.
1129
f508cb0a
PB
11302001-09-19 Pascal Bart <pascal.bart@epita.fr>
1131
1132 * src/bison.simple: s/%%filename/%%skeleton.
1133 * src/muscle_tab.c (getargs.h): Include it.
1134 (muscle_init): Insert new muscle skeleton.
1135
13105fc1
PB
11362001-09-18 Pascal Bart <pascal.bart@epita.fr>
1137
1138 * src/output.c (output_parser): Delete unused variable actions_dumped.
1139
b0c4483e
PB
11402001-09-07 Pascal Bart <pascal.bart@epita.fr>
1141
1142 * src/output.c (output): Delete call to reader_output_yylsp.
1143 * src/reader.c (reader): Likewise.
1144 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 1145
11d82f03
MA
11462001-09-02 Marc Autret <autret_m@epita.fr>
1147
1148 * src/reader.c: Include muscle_tab.h.
1149 (parse_union_decl): Update.
1150 (parse_macro_decl): Rename parse_muscle_decl.
1151 Update to use renamed functions and variable.
1152 (read_declarations, copy_action, read_additionnal_code, : Updated
1153 with correct variables and functions names.
1154 (packsymbols, reader): Likewise.
342b8b6e 1155
11d82f03 1156 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 1157
11d82f03
MA
1158 * src/output.c: Include muscle_tab.h
1159 In all functions using macro_insert, change by using muscle_insert ().
1160 (macro_obstack): Rename muscle_obstack.
1161 Echo modifications in the whole file.
1162 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
1163 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
1164 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
1165
1166 * src/muscle_tab.h: Update double inclusion macros.
1167 (macro_entry_s): Rename muscle_entry_s.
1168 Update prototypes.
342b8b6e 1169
11d82f03
MA
1170 * src/muscle_tab.c: Include muscle_tab.h.
1171 Rename macro_tabble to muscle_table.
1172 (mhash1, mhash2, mcmp): Use muscle_entry.
1173 (macro_init): Rename muscle_init. Update.
1174 (macro_insert): Rename muscle_insert. Update.
1175 (macro_find): Rename muscle_find. Update.
1176
1177 * src/main.c: Include muscle_tab.h.
1178 (main): Call muscle_init ().
1179 * src/Makefile.am (bison_SOURCES): Echo modifications.
1180
93a37297
MA
11812001-09-02 Marc Autret <autret_m@epita.fr>
1182
f753cd62 1183 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 1184
f753cd62
MA
1185 * src/muscle_tab.c, src/muscle_tab.h: Add files.
1186
11872001-09-02 Marc Autret <autret_m@epita.fr>
1188
1189 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 1190
682d48cd
PB
11912001-09-01 Pascal Bart <pascal.bart@epita.fr>
1192
342b8b6e 1193 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
1194 filename.
1195
087c8fda
MA
11962001-09-01 Marc Autret <autret_m@epita.fr>
1197
1198 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
1199 to an explicit value to activate the feature. We do it here.
1200
dda680cb
PB
12012001-08-31 Pascal Bart <pascal.bart@epita.fr>
1202
1203 * src/output.c (prepare): Delete the `filename' muscule insertion.
1204 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
1205 (parse_union_decl): Likewise.
1206 * src/macrotab.c (macro_init): Initialize filename by infile.
1207
9e644e64
MA
12082001-08-31 Marc Autret <autret_m@epita.fr>
1209
1210 * src/bison.simple (YYLSP_NEEDED): New definition.
1211 * src/output.c (prepare): Add macro insertion of `locations_flag'
1212
17da6427
PB
12132001-08-31 Pascal Bart <pascal.bart@epita.fr>
1214
1215 * src/output.c (prepare): Delete insertion of previous muscles,
1216 and insert the `prefix' muscles.
1217 * src/macrotab.c (macro_init): Likewise.
1218 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 1219 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
1220 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
1221 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 1222 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
1223 name_prefix.
1224
e8cb70b9
PB
12252001-08-31 Pascal Bart <pascal.bart@epita.fr>
1226
1227 * src/main.c (main): Standardize.
1228 * src/output.c (output_table_data, output_parser): Likewise.
1229 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
1230
63c2d5de
MA
12312001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
1232
342b8b6e 1233 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
1234 %%epilogue.
1235 * src/output.c (output): Rename %%declarations to %%prologue.
1236 * src/bison.simple: Echo modifications.
342b8b6e 1237
d8cb5183
MA
12382001-08-31 Marc Autret <autret_m@epita.fr>
1239
1240 * src/reader.c (readgram): CleanUp.
1241 (output_token_defines): Likewise.
1242 (packsymbols): Likewise.
1243 (reader): Likewise.
1244 * src/output.c (output): CPP-out useless code.
1245
6c686258
PB
12462001-08-31 Pascal Bart <pascal.bart@epita.fr>
1247
342b8b6e 1248 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
1249 output_trailers and output_headers.
1250 * src/output.h: Remove obsolete functions prototypes of output_headers
1251 and output_trailers.
1252
8f451ef7
PB
12532001-08-30 Pascal Bart <pascal.bart@epita.fr>
1254
1255 * src/main.c: Include macrotab.h.
342b8b6e 1256 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
1257 Adjust functions prototypes.
1258 * src/macrotab.c (macro_insert): Constify key and value.
1259 (macro_find): Constify key.
1260 (macro_insert): Include 'xalloc.h'
1261 (macro_insert): Use XMALLOC.
1262 (macro_find): Constify return value.
1263 * src/output.c (output_table_data): Rename table to table_data.
1264 (output_parser): Constify macro_key, macro_value.
1265
997b6fd0 12662001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
1267
1268 * src/reader.c (parse_skel_decl): New.
342b8b6e 1269 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
1270 * src/lex.h (token_t): New token `tok_skel'.
1271 * src/lex.c (percent_table): Add skeleton option entry.
1272 Standardize.
1273
ff48177d
MA
12742001-08-29 Marc Autret <autret_m@epita.fr>
1275
1276 * src/bison.simple: Add %%user_code directive at the end.
1277 * src/reader.c (read_additionnal_code): New.
1278 (reader): Use it.
1279 * src/output.c (output_program): Remove.
1280 (output): Update.
1281
b33160bf
MA
12822001-08-28 Marc Autret <autret_m@epita.fr>
1283
1284 * src/output.c (output_actions): Clean up.
4e5caae2 1285 (output_gram): CPP-out useless code.
b33160bf
MA
1286 * src/reader.c (reader): Clean up, CPP-out useless code.
1287
d1a2daf7
PB
12882001-08-28 Pascal Bart <pascal.bart@epita.fr>
1289
342b8b6e 1290 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 1291 directive.
d1a2daf7
PB
1292 * src/bison.simple: Add `%%definitions'.
1293
2b763dfe
MA
12942001-08-28 Marc Autret <autret_m@epita.fr>
1295
1296 * config/depcomp: New file.
1297
f1a87ef6
PE
12982001-08-27 Paul Eggert <eggert@twinsun.com>
1299
1300 * src/bison.simple (yyparse): Don't take the address of an
1301 item before the start of an array, as that doesn't conform to
1302 the C Standard.
1303
82e236e2
RA
13042001-08-27 Robert Anisko <robert.anisko@epita.fr>
1305
f1a87ef6 1306 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
1307 obstack. It was done too late here.
1308
1309 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
1310 completely wrong.
1311 (reader): Initialize the macro obstack here, since we need it to grow
1312 '%define' directives.
1313
1314 * src/reader.h: Declare the macro obstack as extern.
1315
b0cfa28a
RA
13162001-08-27 Robert Anisko <robert.anisko@epita.fr>
1317
1318 * src/output.c (output_parser): Fix. Store single '%' characters in
1319 the output obstack instead of throwing them away.
1320
6fc74234
AD
13212001-08-27 Akim Demaille <akim@epita.fr>
1322
1323 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
1324
9c76d118
RA
13252001-08-25 Robert Anisko <robert.anisko@epita.fr>
1326
1327 * lib/Makefile.am: Adjust.
1328
a8289c62
RA
13292001-08-25 Robert Anisko <robert.anisko@epita.fr>
1330
1331 * src/bison.simple: Update and add '%%' directives.
1332
b6610515
RA
13332001-08-25 Robert Anisko <robert.anisko@epita.fr>
1334
1335 * src/reader.c (reader): Remove calls to 'output_headers' and
1336 'output_trailers'. Remove some C output.
1337 (readgram): Disable a piece of code that was writing a default
1338 definition for 'YYSTYPE'.
1339 (reader_output_yylsp): Remove.
1340 (packsymbols): Output token defintions to a macro.
1341 (copy_definition): Disable C output.
6fc74234 1342
b6610515
RA
1343 * src/reader.c (parse_macro_decl): New function used to parse macro
1344 declarations.
1345 (copy_string2): Put the body of copy_string into this new function.
1346 Add a parameter to let the caller choose whether he wants to copy the
1347 string delimiters or not.
1348 (copy_string): Be a simple call to copy_string2 with the last argument
1349 bound to true.
1350 (read_declarations): Add case for macro definition.
1351 (copy_identifier): New.
6fc74234 1352 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
1353 rather than lex.
1354
26f609ff
RA
13552001-08-25 Robert Anisko <robert.anisko@epita.fr>
1356
1357 * src/output.c (prepare): Add prefixed names.
1358 (output_parser): Output semantic actions.
1359 (output_parser): Fix bug on '%%line' directives.
6fc74234 1360
26f609ff
RA
1361 * src/output.c (output_headers): Remove. The C code printed by this
1362 function should now be in the skeletons.
1363 (output_trailers): Remove.
1364 (output): Disable call to 'reader_output_yylsp'.
1365 (output_rule_data): Do not output tables to the table obstack.
1366
1367 * src/output.c: Remove some C dedicated output.
1368 Improve the use of macro and output obstacks.
1369 (output_defines): Remove.
6fc74234 1370
26f609ff
RA
1371 * src/output.c (output_token_translations): Associate 'translate'
1372 table with a macro. No output to the table obstack.
1373 (output_gram): Same for 'rhs' and 'prhs'.
1374 (output_stos): Same for 'stos'.
1375 (output_rule_data): Same for 'r1' and 'r2'.
1376 (token_actions): Same for 'defact'.
1377 (goto_actions): Same for 'defgoto'.
1378 (output_base): Same for 'pact' and 'pgoto'.
1379 (output_table): Same for 'table'.
1380 (output_check): Same for 'check'.
6fc74234 1381
26f609ff
RA
1382 * src/output.c (output_table_data): New function.
1383 (output_short_table): Remove.
1384 (output_short_or_char_table): Remove.
6fc74234 1385
26f609ff
RA
1386 * src/output.c (output_parser): Replace most of the skeleton copy code
1387 with something new. Skeletons are now processed character by character
1388 rather than line by line, and Bison looks for '%%' macros. This is the
1389 first step in making Bison's output process (a lot) more flexible.
1390 (output_parser): Use the macro table.
1391
6f43b113
RA
13922001-08-25 Robert Anisko <robert.anisko@epita.fr>
1393
1394 * src/main.c (main): Initialize the macro table.
1395
dd3127cf
RA
13962001-08-25 Robert Anisko <robert.anisko@epita.fr>
1397
1398 * src/lex.c (percent_table): Add tok_define.
1399 * src/lex.h: Add tok_define.
1400
aa321494
RA
14012001-08-25 Robert Anisko <robert.anisko@epita.fr>
1402
1403 * src/macrotab.c: New file.
1404 * src/macrotab.h: New file.
1405 * src/Makefile.am: Update.
1406
68bd3b6b
RA
14072001-08-25 Robert Anisko <robert.anisko@epita.fr>
1408
1409 * lib/hash.c: New file.
1410 * lib/hash.h: New file.
1411 * lib/Makefile.am: Update.
1412
45f8dd1e
AD
14132001-08-15 Akim Demaille <akim@epita.fr>
1414
1415 Version 1.28c.
1416
40a64a7a 14172001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
1418
1419 * src/reader.c (readgram): Indent output macro YYSTYPE.
1420 (packsymbols): Likewise.
1421 (output_token_defines): Likewise.
1422 * src/files.c: Standardize.
1423 (compute_header_macro): New.
1424 (defines_obstack_save): New. Use compute_header_macro.
1425 (output_files): Update. Use defines_obstack_save.
1426
f9a8293a
AD
14272001-08-15 Akim Demaille <akim@epita.fr>
1428
1429 * doc/bison.texinfo (Table of Symbols): Document
1430 YYSTACK_USE_ALLOCA.
1431
150ca7a7
AD
14322001-08-15 Akim Demaille <akim@epita.fr>
1433
1434 * missing: Update from CVS Automake.
1435 * config/config.guess, config/config.sub, config/texinfo.tex:
1436 Update from gnu.org.
1437
69b5cec4
AD
14382001-08-15 Akim Demaille <akim@epita.fr>
1439
1440 * Makefile.maint: Sync with CVS Autoconf.
1441
f2b5126e
PB
14422001-08-14 Pascal Bart <pascal.bart@epita.fr>
1443
69b5cec4 1444 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
1445 `fdl.texi'.
1446 * doc/fdl.texi: Add to package.
1447
4ecbf796
MA
14482001-08-14 Marc Autret <autret_m@epita.fr>
1449
1450 Turn on %{source,header}_extension features.
1451
69b5cec4 1452 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
1453 source_extension.
1454 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 1455 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
1456 between options.
1457
95fb5662
MA
14582001-08-14 Marc Autret <autret_m@epita.fr>
1459
1460 * src/files.c (compute_base_names): Add extensions computing when
1461 `--file-prefix' used.
1462 Standardize function calls.
1463
78d09da9
MA
14642001-08-13 Marc Autret <autret_m@epita.fr>
1465
69b5cec4 1466 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
1467 defining it (defined but null disables alloca).
1468
5a009f2c
MA
14692001-08-13 Marc Autret <autret_m@epita.fr>
1470
1471 * src/bison.simple (_yy_memcpy): CPP reformat.
1472
1e41465a
PB
14732001-08-13 Pascal Bart <pascal.bart@epita.fr>
1474
1475 * tests/atconfig.in (CPPFLAGS): Fix.
1476
c67a198d
PB
14772001-08-10 Pascal Bart <pascal.bart@epita.fr>
1478
79282c6c 1479 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
1480 `gpl.texi'.
1481 * doc/gpl.texi: Add to package.
1482
09a6de7e
MA
14832001-08-10 Marc Autret <autret_m@epita.fr>
1484
1485 * src/print_graph.h: Fix.
1486 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
1487
b77b9ee0
AD
14882001-08-10 Akim Demaille <akim@epita.fr>
1489
1490 * src/system.h: Provide default declarations for stpcpy, strndup,
1491 and strnlen.
1492
3e259915
MA
14932001-08-10 Robert Anisko <anisko_r@epita.fr>
1494
1495 * doc/bison.texinfo (Locations): Update @$ stuff.
1496
ca96bc2d
MA
14972001-08-09 Robert Anisko <anisko_r@epita.fr>
1498
1499 * src/bison.simple (YYLLOC_DEFAULT): Update.
1500 (yyparse): Adjust.
1501
fdc6758b
MA
15022001-08-08 Marc Autret <autret_m@epita.fr>
1503
b77b9ee0 1504 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
1505 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
1506 Reported by Fabrice Bauzac.
957d4dbf 1507
600cad3b
MA
15082001-08-08 Marc Autret <autret_m@epita.fr>
1509
1510 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
1511 * src/vcg.c (output_node): Fix.
1512 * src/vcg.h: Cleanup.
1513 * src/print_graph.c: Add comments.
b77b9ee0 1514 (node_output_size): New global variable. Simplify the formatting of
600cad3b 1515 the VCG graph output.
b77b9ee0 1516 (print_actions): Unused code is now used. It notifies the final state
600cad3b 1517 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 1518 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
1519 blue.
1520 Get the current node name and node_obstack by argument.
1521 (node_obstack): New variable.
1522 (print_state): Manage node_obstack.
1523 (print_core): Use node_obstack given by argument.
1524 A node is not only computed here but in print_actions also.
1525 (print_graph): CPP out useless code instead of commenting it.
1526
976e528f
AD
15272001-08-07 Pascal Bart <pascal.bart@epita.fr>
1528
1529 * tests/atconfig.in (CPPFLAGS): Fix.
1530
20e8e5ca
AD
15312001-08-07 Akim Demaille <akim@epita.fr>
1532
1533 * src/print_graph.c (quote): New.
1534 (print_core): Use it.
1535
957d4dbf 15362001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 1537
3e3da797
AD
1538 * src/vcg.c (complain.h): Include it.
1539 Unepitaize `return' invocations.
c4b66126 1540 [NDEBUG] (main): Remove.
79282c6c 1541 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
1542 * src/files.c (open_files): Initialize graph_obstack.
1543 * src/print_graph.c (print_actions): CPP out useless code.
1544 (print_core): Don't output the last `\n' in labels.
1545 Use `quote'.
1546 * src/files.c (output_files): Output the VCG file.
1547 * src/main.c (main): Invoke print_graph ();
3e3da797 1548
957d4dbf 15492001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
1550
1551 Automaton VCG graph output.
1552 Using option ``-g'' or long option ``--graph'', you can generate
1553 a gram_filename.vcg file containing a VCG description of the LALR (1)
1554 automaton of your grammar.
1555
1556 * src/main.c: Call to print_graph() function.
1557 * src/getargs.h: Update.
1558 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
1559 (graph_flag): New flag.
1560 (longopts): Update.
1561 (getargs): Add case `g'.
1562 * src/files.c (graph_obstack): New obstack struct.
1563 (open_files): Initialize new obstack.
1564 (output_files): Saves graph_obstack if required.
1565 * src/files.h (graph_obstack): New extern declaration.
1566 * src/Makefile.am: Add new source files.
1567
957d4dbf 15682001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
1569
1570 * src/print_graph.c, src/print_graph.h (graph): New.
1571 * src/vcg.h: New file.
1572 * src/vcg.c: New file, VCG graph handling.
1573
7333d403
AD
15742001-08-06 Marc Autret <autret_m@epita.fr>
1575
1576 Add of %source_extension and %header_extension which specify
1577 the source or/and the header output file extension.
1578
1579 * src/files.c (compute_base_names): Remove initialisation of
1580 src_extension and header_extension.
1581 (compute_exts_from_gf): Update.
1582 (compute_exts_from_src): Update.
1583 (output_files): Update.
1584 * src/reader.c (parse_header_extension_decl): New.
1585 (parse_source_extension_decl): New.
1586 (read_declarations): New case statements for the new tokens.
1587 * src/lex.c (percent_table): Add entries for %source_extension
1588 and %header_extension.
1589 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
1590
84163231
AD
15912001-08-06 Marc Autret <autret_m@epita.fr>
1592
1593 * configure.in: Bump to 1.28c.
1594 * doc/bison.texinfo: Texinfo thingies.
1595
8303fc42
AD
15962001-08-04 Pascal Bart <pascal.bart@epita.fr>
1597
1598 * tests/atconfig.in (CPPFLAGS): Add.
1599 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
1600
70a84437
AD
16012001-08-03 Akim Demaille <akim@epita.fr>
1602
1603 Version 1.28b.
1604
2ce10144
AD
16052001-08-03 Akim Demaille <akim@epita.fr>
1606
1607 * tests/Makefile.am (check-local): Ship testsuite.
1608 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
1609 Include `string.h'.
1610
1e3e4bc1
AD
16112001-08-03 Akim Demaille <akim@epita.fr>
1612
1613 * configure.in: Try using -Wformat when compiling.
1614
42b45b7f
AD
16152001-08-03 Akim Demaille <akim@epita.fr>
1616
1617 * configure.in: Bump to 1.28b.
1618
8f13fe33
AD
16192001-08-03 Akim Demaille <akim@epita.fr>
1620
1621 * src/complain.c: Adjust strerror_r portability issues.
1622
b37ba92c
AD
16232001-08-03 Akim Demaille <akim@epita.fr>
1624
1625 Version 1.28a.
1626
b0ce6046
AD
16272001-08-03 Akim Demaille <akim@epita.fr>
1628
1629 * src/getargs.c, src/getarg.h (skeleton)): Constify.
1630 * src/lex.c (literalchar): Avoid name clashes on `buf'.
1631 * src/getargs.c: Include complain.h.
1632 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
1633 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
1634
d01c415b
AD
16352001-08-03 Akim Demaille <akim@epita.fr>
1636
1637 * src/reader.c (readgram): Display hidden chars in error messages.
1638
459dd1a6
AD
16392001-08-03 Akim Demaille <akim@epita.fr>
1640
1641 Update to gettext 0.10.39.
1642
53b74c0c
AD
16432001-08-03 Akim Demaille <akim@epita.fr>
1644
1645 * lib/strspn.c: New.
1646
234a3be3
AD
16472001-08-01 Marc Autret <autret_m@epita.fr>
1648
1649 * doc/bison.texinfo: Update.
1650 * doc/bison.1 (mandoc): Update.
1651 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
1652 * src/files.c: Support output files extensions computing.
1653 (src_extension): New static variable.
1654 (header_extension): New static variable.
1655 (tr): New function.
1656 (get_extension_index): New function, gets the index of an extension
1657 filename in a string.
1658 (compute_exts_from_gf): New function, computes extensions from the
1659 grammar file extension.
1660 (compute_exts_from_src): New functions, computes extensions from the
1661 C source file extension, file given by ``-o'' option.
1662 (compute_base_names): Update.
1663 (output_files): Update.
1664
847bf1f5
AD
16652001-08-01 Robert Anisko <anisko_r@epita.fr>
1666
d995fee7 1667 * doc/bison.texi: Document @$.
847bf1f5
AD
1668 (Locations): New section.
1669
d074a105
AD
16702001-07-18 Akim Demaille <akim@epita.fr>
1671
1672 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
1673 * config/prev-version.txt, config/move-if-change: New.
1674 * Makefile.am: Adjust.
1675
3419715d
AD
16762001-07-08 Pascal Bart <pascal.bart@epita.fr>
1677
1678 * src/bison.simple (yyparse): Suppress warning `comparaison
1679 between signed and unsigned'.
1680
62ab6972
AD
16812001-07-05 Pascal Bart <pascal.bart@epita.fr>
1682
1683 * src/getargs.h (raw_flag): Remove.
1684 * src/getargs.c: Die on `-r'/`--raw'.
1685 * src/lex.c (parse_percent_token): Die on `%raw'.
1686 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
1687 * tests/calc.at: Suppress test with option `--raw'.
1688
1e24cc5b
AD
16892001-07-14 Akim Demaille <akim@epita.fr>
1690
1691 * config/: New.
1692 * configure.in: Require Autoconf 2.50.
1693 Update to gettext 0.10.38.
1694
32dfccf8
AD
16952001-03-16 Akim Demaille <akim@epita.fr>
1696
1697 * doc/bison.texinfo: ANSIfy the examples.
1698
cd5bd6ac
AD
16992001-03-16 Akim Demaille <akim@epita.fr>
1700
1701 * getargs.c (skeleton): New variable.
1702 (longopts): --skeleton is a new option.
1703 (shortopts, getargs): -S is a new option.
1704 * getargs.h: Declare skeleton.
1705 * output.c (output_parser): Use it.
1706
5141b016
AD
17072001-03-16 Akim Demaille <akim@epita.fr>
1708
1709 * m4/strerror_r.m4: New.
1710 * m4/error.m4: Run AC_FUNC_STRERROR_R.
1711 * lib/error.h, lib/error.c: Update.
1712
447992b9
AD
17132001-03-16 Akim Demaille <akim@epita.fr>
1714
1715 * src/getargs.c (longopts): Clean up.
1716
274d42ce
AD
17172001-02-21 Akim Demaille <akim@epita.fr>
1718
1719 * src/reader.c (gensym): `gensym_count' is your own.
1720 Use a static buf to create the symbol name, as token_buffer is no
1721 longer a buffer.
1722
22c821f3
AD
17232001-02-08 Akim Demaille <akim@epita.fr>
1724
1725 * src/conflicts.c (conflict_report): Be sure not to append to res
1726 between two calls, which could happen if both first sprintf were
1727 skipped, but not the first cp += strlen.
1728
18569462
AD
17292001-02-08 Akim Demaille <akim@epita.fr>
1730
1731 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
1732 New, from fileutils 4.0.37.
1733 * configure.in: Require Autoconf 2.49c. I took some time before
1734 making this decision. This is the only way out for portability
1735 issues in Bison, it would mean way too much duplicate effort to
1736 import in Bison features implemented in 2.49c since 2.13.
1737 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
1738
0d8f3c8a
AD
17392001-02-02 Akim Demaille <akim@epita.fr>
1740
1741 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 1742 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 1743
f17bcd1f
AD
17442001-01-19 Akim Demaille <akim@epita.fr>
1745
1746 Get rid of the ad hoc handling of token_buffer in the scanner: use
1747 the obstacks.
1748
1749 * src/lex.c (token_obstack): New.
1750 (init_lex): Initialize it. No longer call...
1751 (grow_token_buffer): this. Remove it.
1752 Adjust all the places which used it to use the obstack.
1753
511e79b3
AD
17542001-01-19 Akim Demaille <akim@epita.fr>
1755
1756 * src/lex.h: Rename all the tokens:
1757 s/\bENDFILE\b/tok_eof/g;
1758 s/\bIDENTIFIER\b/tok_identifier/g;
1759 etc.
1760 Let them be enums, not #define, to ease debugging.
1761 Adjust all the code.
1762
0d6508ef
AD
17632001-01-18 Akim Demaille <akim@epita.fr>
1764
1765 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
1766 * src/lex.c (maxtoken, grow_token_buffer): Static.
1767
6deb4447
AD
17682001-01-18 Akim Demaille <akim@epita.fr>
1769
1770 Since we now use obstacks, more % directives can be enabled.
1771
1772 * src/lex.c (percent_table): Also accept `%yacc',
1773 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
1774 `%debug'.
1775 Handle the actions for `%semantic_parser' and `%pure_parser' here,
1776 instead of returning a token.
1777 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
1778 * src/reader.c (read_declarations): Adjust.
1779 * src/files.c (open_files): Don't call `compute_base_names', don't
1780 compute `attrsfile' since they depend upon data which might be
1781 *in* the input file now.
1782 (output_files): Do it here.
1783 * src/output.c (output_headers): Document the fact that this patch
1784 introduces a guaranteed SEGV for semantic parsers.
1785 * doc/bison.texinfo: Document them.
1786 * tests/suite.at: Exercise these %options.
1787
ff4423cc
AD
17882000-12-20 Akim Demaille <akim@epita.fr>
1789
1790 Also handle the output file (--verbose) with obstacks.
1791
1792 * files.c (foutput): Remove.
1793 (output_obstack): New.
1794 Adjust all dependencies.
1795 * src/conflicts.c: Return a string.
1796 * src/system.h (obstack_grow_string): Rename as...
1797 (obstack_sgrow): this. Be ready to work with non literals.
1798 (obstack_fgrow4): New.
1799
956dba3a
AD
18002000-12-20 Akim Demaille <akim@epita.fr>
1801
1802 * src/files.c (open_files): Fix the computation of short_base_name
1803 in the case of `-o foo.tab.c'.
1804
337bab46
AD
18052000-12-20 Akim Demaille <akim@epita.fr>
1806
1807 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
1808 (copy_dollar): Now that everything uses obstacks, get rid of the
1809 FILE * parameters.
1810
5d3214b8
AD
18112000-12-20 Akim Demaille <akim@epita.fr>
1812
1813 * src/files.c (open_files): Actually the `.output' file is based
1814 on the short_base_name, not base_name.
1815 * tests/suite.at (Checking output file names): Adjust.
1816
29092a57
AD
18172000-12-20 Akim Demaille <akim@epita.fr>
1818
1819 * src/bison.s1: Remove, we now use directly...
1820 * src/bison.simple: this.
1821 * src/Makefile.am: Use pkgdata instead of data.
1822
ea5607fd
AD
18232000-12-20 Akim Demaille <akim@epita.fr>
1824
1825 * src/files.c (guard_obstack): New.
1826 (open_files): Initialize it.
1827 (output_files): Dump it...
1828 * src/files.h: Export it.
1829 * src/reader.c (copy_guard): Use it.
1830
27110317
AD
18312000-12-19 Akim Demaille <akim@epita.fr>
1832
1833 * src/files.c (outfile, defsfile, actfile): Removed as global
1834 vars.
1835 (open_files): Don't compute them.
1836 (output_files): Adjust.
1837 (base_name, short_base_name): Be global.
1838 Adjust dependencies.
1839
19c50364
AD
18402000-12-19 Akim Demaille <akim@epita.fr>
1841
1842 * src/files.c (strsuffix): New.
1843 (stringappend): Be just like strcat but allocate.
1844 (base_names): Eve out from open_files.
1845 Try to simplify the rather hairy computation of base_name and
1846 short_base_name.
1847 (open_files): Use it.
1848 * tests/suite.at (Checking output file names): New test.
1849
573c1d9f
AD
18502000-12-19 Akim Demaille <akim@epita.fr>
1851
1852 * src/system.h (obstack_grow_literal_string): Rename as...
1853 (obstack_grow_string): this.
1854 * src/output.c (output_parser): Recognize `%% actions' instead of
1855 `$'.
1856 * src/bison.s1: s/$/%% actions/.
1857 * src/bison.hairy: Likewise.
1858
ef7ddedd
AD
18592000-12-19 Akim Demaille <akim@epita.fr>
1860
1861 * src/output.c (output_parser): Compute the `#line' lines when
1862 there are.
1863 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
1864 Suggested by Hans Aberg.
1865
ff61dabd
AD
18662000-12-19 Akim Demaille <akim@epita.fr>
1867
1868 Let the handling of the skeleton files be local to the procedures
1869 that use it.
1870
1871 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
1872 longer static.
1873 (fparser, open_extra_files): Remove.
1874 (open_files, output_files): Don't take care of fparser.
1875 * src/files.h: Adjust.
1876 * src/output.c (output_parser): Open and close the file to the
1877 skeleton.
1878 * src/reader.c (read_declarations): When %semantic_parser, open
1879 fguard.
1880
55b96341
AD
18812000-12-19 Akim Demaille <akim@epita.fr>
1882
1883 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
1884 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
1885
358c15b7
AD
18862000-12-19 Akim Demaille <akim@epita.fr>
1887
1888 * src/files.c (open_files): Yipee! We no longer need all the code
1889 looking for `/tmp' since we have no tmp file.
1890
7de3329e
AD
18912000-12-19 Akim Demaille <akim@epita.fr>
1892
1893 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
1894 New macros.
1895 * src/files.c (open_files): Less dependency on MSDOS etc.
1896
3abcd459
AD
18972000-12-14 Akim Demaille <akim@epita.fr>
1898
1899 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
1900 Provide a default definition.
1901 Use it when executing the default @ action.
1902 * src/reader.c (reader_output_yylsp): No longer include
1903 `timestamp' and `text' in the default YYLTYPE.
1904
2a91a95e
AD
19052000-12-12 Akim Demaille <akim@epita.fr>
1906
1907 * src/reader.c (copy_definition, parse_union_decl, copy_action)
1908 (copy_guard): Quote the file names.
1909 Reported by Laurent Mascherpa.
1910
14d3eb9b
AD
19112000-12-12 Akim Demaille <akim@epita.fr>
1912
1913 * src/output.c (output_headers, output_program, output): Be sure
1914 to escape special characters when outputting filenames.
1915 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
1916 (output_headers): Don't depend on them, Use ACTSTR.
1917
d7045ec6
AD
19182000-11-17 Akim Demaille <akim@epita.fr>
1919
1920 * lib/obstack.h: Formatting changes.
1921 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
1922 prevents type checking.
1923 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
1924 cast the value to (void *): assigning a `foo *' to a `void *'
1925 variable is valid.
1926 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
1927 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
1928 append characters.
1929
6fd54b73
AD
19302000-11-17 Akim Demaille <akim@epita.fr>
1931
1932 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
1933 as...
1934 (suite.m4, regression.m4, calc.m4): these.
1935 * tests/atgeneral.m4: Update from CVS Autoconf.
1936
4c50eae6
AD
19372000-11-17 Akim Demaille <akim@epita.fr>
1938
1939 * tests/regression.m4 (%union and --defines): New test,
1940 demonstrating a current bug in the obstack implementation.
1941
a35f64ea
AD
19422000-11-17 Akim Demaille <akim@epita.fr>
1943
1944 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
1945 macros.
1946 Use them to declare the variables which are global or local to
1947 `yyparse'.
1948
7de23534
AD
19492000-11-17 Akim Demaille <akim@epita.fr>
1950
1951 * acconfig.h: Remove, no longer used.
1952
aa7815f5
AD
19532000-11-07 Akim Demaille <akim@epita.fr>
1954
1955 * src: s/Copyright (C)/Copyright/g.
1956
5af1f549
AD
19572000-11-07 Akim Demaille <akim@epita.fr>
1958
1959 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
1960 defining.
1961 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
1962
553e2b22
AD
19632000-11-07 Akim Demaille <akim@epita.fr>
1964
1965 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
1966 Merge in a single CPP if/else.
1967
8a4f41d6
AD
19682000-11-07 Akim Demaille <akim@epita.fr>
1969
1970 * src/output.c (output): Remove useless variables.
1971 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
1972 argument `data' for consistency with the prototypes.
1973 Qualify it `const'.
1974 (obstack_copy, obstack_copy0): Rename the second argument as
1975 `address' for consistency. Qualify it `const'.
1976 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
1977 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
1978 `const' their input argument (`data' or `address').
1979 Adjust the corresponding macros to include `const' in casts.
1980
095a3fb5
AD
19812000-11-03 Akim Demaille <akim@epita.fr>
1982
1983 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
1984 s/PFILE1/BISON_HAIRY/.
1985 Adjust dependencies.
1986
d1cdce7c
AD
19872000-11-03 Akim Demaille <akim@epita.fr>
1988
090c5ebf 1989 For some reason, this was not applied.
d1cdce7c
AD
1990
1991 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
1992 `unlink': it's no longer used.
1993
9311529b
AD
19942000-11-03 Akim Demaille <akim@epita.fr>
1995
1996 * src/files.c (skeleton_find): New function, eved out of...
1997 (open_files, open_extra_files): here.
1998
d8880f69
AD
19992000-11-03 Akim Demaille <akim@epita.fr>
2000
2001 Don't use `atexit'.
2002
2003 * src/files.c (obstack_save): New function.
2004 (done): Rename as...
2005 (output_files): this.
2006 Use `obstack_save'.
2007 * src/main.c (main): Don't use `atexit' to register `done', since
2008 it no longer has to remove tmp files, just call `output_files'
2009 when there are no errors.
2010
0dbb648e
AD
20112000-11-02 Akim Demaille <akim@epita.fr>
2012
2013 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
2014 `unlink': it's no longer used.
2015 * src/files.h: Formatting changes.
2016
896fe5c1
AD
20172000-11-02 Akim Demaille <akim@epita.fr>
2018
2019 Remove the last uses of mktemp and unlink/delete.
2020
2021 * src/files.c (fdefines, ftable): Removed.
2022 (defines_ostack, table_obstack): New.
2023 Adjust dependencies of the former into uses of the latter.
2024 * src/output.c (output_short_or_char_table, output_short_table):
2025 Convert to using obstacks.
2026 * src/reader.c (copy_comment2): Accept one FILE * and two
2027 obstacks.
2028 (output_token_defines, reader_output_yylsp): Use obstacks.
2029 * src/system.h (obstack_fgrow3): New.
2030
dd60faec
AD
20312000-11-01 Akim Demaille <akim@epita.fr>
2032
2033 Change each use of `fattrs' into a use of `attrs_obstack'.
2034
2035 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
2036 * src/files.c (fattrs): Remove.
2037 (attrs_obstack): New.
2038 Adjust all dependencies.
2039 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
2040
8c7ebe49
AD
20412000-11-01 Akim Demaille <akim@epita.fr>
2042
2043 Introduce obstacks.
2044 Change each use of `faction' into a use of `action_obstack'.
2045
2046 * lib/obstack.h, lib/obstack.c: New files.
2047 * src/files.c (faction): Remove.
2048 (action_obstack): New.
2049 Adjust all dependencies.
2050
77aee789
AD
20512000-10-20 Akim Demaille <akim@epita.fr>
2052
2053 * lib/quote.h (PARAMS): New macro. Use it.
2054
43591cec
AD
20552000-10-16 Akim Demaille <akim@epita.fr>
2056
2057 * src/output.c (output_short_or_char_table): New function.
2058 (output_short_table, output_token_translations): Use it.
2059 (goto_actions): Use output_short_table.
2060
1e9798d5
AD
20612000-10-16 Akim Demaille <akim@epita.fr>
2062
2063 * src/symtab.c (bucket_new): New function.
2064 (getsym): Use it.
2065
2066 * src/output.c (output_short_table): New argument to display the
2067 comment associated with the table.
2068 Adjust dependencies.
2069 (output_gram): Use it.
2070 (output_rule_data): Nicer output layout for YYTNAME.
2071
f282676b
AD
20722000-10-16 Akim Demaille <akim@epita.fr>
2073
2074 * src/lex.c (read_typename): New function.
2075 (lex): Use it.
2076 * src/reader.c (copy_dollar): Likewise.
2077
550a72a3
AD
20782000-10-16 Akim Demaille <akim@epita.fr>
2079
2080 * src/reader.c (copy_comment2): Expect the input stream to be on
2081 the `/' which is suspected to open a comment, instead of being
2082 called after `//' or `/*' was read.
2083 (copy_comment, copy_definition, parse_union_decl, copy_action)
2084 (copy_guard): Adjust.
2085
131e2fef
AD
20862000-10-16 Akim Demaille <akim@epita.fr>
2087
2088 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
2089 `read_signed_integer'.
2090
79282c5a
AD
20912000-10-16 Akim Demaille <akim@epita.fr>
2092
2093 * src/reader.c (copy_dollar): New function.
2094 (copy_guard, copy_action): Use it.
2095
ff4a34be
AD
20962000-10-16 Akim Demaille <akim@epita.fr>
2097
2098 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
2099 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
2100 New files, from Fileutils 4.0.27.
2101 * src/main.c (printable_version): Remove.
2102 * src/lex.c, src/reader.c: Use `quote'.
2103
21042000-10-04 Akim Demaille <akim@epita.fr>
2105
2106 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
2107
14ded682
AD
21082000-10-04 Akim Demaille <akim@epita.fr>
2109
2110 * doc/bison.texinfo: Various typos spotted by Neil Booth.
2111
8e03724b
AD
21122000-10-04 Akim Demaille <akim@epita.fr>
2113
2114 When a literal string is used to define two different tokens,
2115 `bison -v' segfaults.
2116 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
2117
2118 * tests/regression.m4: New file.
2119 Include the core of the sample provided by Piotr Gackiewicz.
2120 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
2121 properly.
2122
a9e64249
AD
21232000-10-04 Akim Demaille <akim@epita.fr>
2124
2125 * src/reader.c (parse_expect_decl): Keep `count' within the size
2126 of `buffer'.
2127 From Neil Booth.
2128
da9abf43
AD
21292000-10-02 Paul Eggert <eggert@twinsun.com>
2130
2131 * bison.s1 (yyparse): Assign the default value
2132 unconditionally, to avoid a GCC warning and make the parser a
2133 tad smaller.
2134
c33638bb
AD
21352000-10-02 Akim Demaille <akim@epita.fr>
2136
2137 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
2138 options.
2139
444c570a
AD
21402000-10-02 Akim Demaille <akim@epita.fr>
2141
2142 * src/derives.c, src/print.c, src/reduce.c: To ease the
2143 translation, move some `\n' out of the translated strings.
2144
89cab50d
AD
21452000-10-02 Akim Demaille <akim@epita.fr>
2146
2147 The location tracking mechanism is precious for parse error
2148 messages. Nevertheless, it is enabled only when `@n' is used in
2149 the grammar, which is a different issue (you can use it in error
2150 message, but not in the grammar per se). Therefore, there should
2151 be another means to enable it.
2152
2153 * src/getargs.c (getargs): Support `--locations'.
2154 (usage): Report it.
2155 * src/getargs.h (locationsflag): Export it.
2156 * src/lex.c (percent_table): Support `%locations'.
2157 * src/reader.c (yylsp_needed): Remove this variable, now replaced
2158 with `locationsflag'.
2159 * doc/bison.texinfo: Document `--locations' and `%locations'.
2160 Sort the options.
2161 * tests/calc.m4: Test it.
2162
2163 For regularity of the names, replace each
2164 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
2165 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
2166 In addition replace each `flag' with `_flag'.
2167
d6c2cba0
AD
21682000-10-02 Akim Demaille <akim@epita.fr>
2169
2170 Also test parse error messages, including with YYERROR_VERBOSE.
2171
2172 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
2173 associative).
2174 Use it to check the computations.
2175 Use it to check `nonassoc' is honored.
2176 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
2177 `--yyerror-verbose'.
2178 (_AT_CHECK_CALC): Adjust to this option.
2179 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
2180
5a35a6cb
AD
21812000-10-02 Akim Demaille <akim@epita.fr>
2182
2183 Test also `--verbose', `--defines' and `--name-prefix'. Testing
2184 the latter demonstrates a flaw in the handling of non debugging
2185 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
2186 was used in order to simplify:
2187
2188 #if YYDEBUG
2189 if (yydebug)
2190 {
2191 ...
2192 }
2193 #endif
2194
2195 into
2196
2197 if (yydebug)
2198 {
2199 ...
2200 }
2201
2202 unfortunately this leads to a CPP conflict when
2203 `--name-prefix=foo' is used since it produces `#define yydebug
2204 foodebug'.
2205
2206 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
2207 (YYDPRINTF): New macro.
2208 Spread its use.
2209 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
2210 the bison options.
2211 Also test `--verbose', `--defines' and `--name-prefix'.
2212
71da9eea
AD
22132000-10-02 Akim Demaille <akim@epita.fr>
2214
2215 Improve the readability of the produced parsers.
2216
2217 * src/bison.s1: Formatting changes.
2218 Improve the comment related to the `$' mark.
2219 (yydefault): Don't fall through to `yyresume': `goto' there.
2220 * src/output.c (output_parser): When the `$' is met, skip the end
2221 of its line.
2222 New variable, `number_of_dollar_signs', to check there's exactly
2223 one `$' in the parser skeleton.
2224
95e36146
AD
22252000-10-02 Akim Demaille <akim@epita.fr>
2226
2227 * lib/xstrdup.c: New file, from the fileutils.
2228 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
2229 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
2230 instead of strlen + xmalloc + strcpy.
2231 * src/symtab.c (copys): Remove, use xstrdup instead.
2232
d7020c20
AD
22332000-10-02 Akim Demaille <akim@epita.fr>
2234
2235 * src/gram.h (associativity): New enum type which replaces the
2236 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
2237 `right_assoc', `left_assoc' and `non_assoc'.
2238 Adjust all dependencies.
2239 * src/reader.c: Formatting changes.
2240 (LTYPESTR): Don't define it, use it as a literal in
2241 `reader_output_yylsp'.
2242 * src/symtab.h (symbol_class): New enum type which replaces the
2243 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
2244 `sunknown', `stoken and `snterm'.
2245
1916f98e
AD
22462000-10-02 Akim Demaille <akim@epita.fr>
2247
2248 * src/getargs.c (fixed_outfiles): Rename as...
2249 (yaccflag): for consistency and accuracy.
2250 Adjust dependencies.
2251
d7913476
AD
22522000-10-02 Akim Demaille <akim@epita.fr>
2253
2254 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
2255 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
2256 difficult and introduced a lot of core dump. It turns out that
2257 Bison used an implementation of `xmalloc' based on `calloc', and
2258 at various places it does depend upon the initialization to 0. I
2259 have not tried to isolate the pertinent places, and all the former
2260 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
2261 someone should address this issue.
2262
2263 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
2264 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
2265 files.
2266 Adjust dependencies.
2267 * src/warshall.h: New file.
2268 Propagate.
2269
340ef489
AD
22702000-10-02 Akim Demaille <akim@epita.fr>
2271
2272 Various anti-`extern in *.c' changes.
2273
2274 * src/system.h: Include `assert.h'.
2275
b2ca4022
AD
22762000-10-02 Akim Demaille <akim@epita.fr>
2277
2278 * src/state.h (nstates, final_state, first_state, first_shift)
2279 (first_reduction): Move their exportation from here...
2280 * src/LR0.h: to here.
2281 Adjust dependencies.
2282 * src/getargs.c (statisticsflag): New variable.
2283 Add support for `--statistics'.
2284 Adjust dependencies.
2285
2286 Remove a lot of now useless `extern' statements in most files.
2287
403b315b
AD
22882000-10-02 Akim Demaille <akim@epita.fr>
2289
2290 * src/LR0.h: New file.
2291 Propagate its use.
2292
07a58c13
AD
22932000-10-02 Akim Demaille <akim@epita.fr>
2294
2295 * src/print.h: New file.
2296 Propagate its use.
2297 * src/print.c: Formatting and ordering changes.
2298 (verbose, terse): Replace with...
2299 (print_results): this new function.
2300 Adjust dependencies.
2301
0619caf0
AD
23022000-10-02 Akim Demaille <akim@epita.fr>
2303
2304 * src/conflicts.c (conflict_report): New function.
2305 (conflict_log, verbose_conflict_log): Replace with...
2306 (print_conflicts): this function.
2307 Adjust dependencies.
2308 * src/conflicts.h: New file.
2309 Propagate its inclusion.
2310
3519ec76
AD
23112000-10-02 Akim Demaille <akim@epita.fr>
2312
2313 * src/nullable.h: New file.
2314 Propagate its inclusion.
2315 * src/nullable.c: Formatting changes.
2316
015acc48
AD
23172000-10-02 Akim Demaille <akim@epita.fr>
2318
2319 * src/reduce.h: New file.
2320 Propagate its inclusion.
2321 * src/reduce.c: Topological sort and other formatting changes.
2322 (bool, TRUE, FALSE): Move their definition to...
2323 * src/system.h: here.
2324
8963a27b
AD
23252000-10-02 Akim Demaille <akim@epita.fr>
2326
2327 * src/files.c: Formatting changes.
2328 (tryopen, tryclose, openfiles): Rename as...
2329 (xfopen, xfclose, open_files): this.
2330 (stringappend): static.
2331 * src/files.h: Complete the list of exported symbols.
2332 Propagate its use.
2333
a70083a3
AD
23342000-10-02 Akim Demaille <akim@epita.fr>
2335
2336 * src/reader.h: New file.
2337 Propagate its use instead of tedious list of `extern' and
2338 prototypes.
2339 * src/reader.c: Formatting changes, topological sort,
2340 s/register//.
2341
abadc117
AD
23422000-10-02 Akim Demaille <akim@epita.fr>
2343
2344 * src/lex.h: Prototype `lex.c' exported functions.
2345 * src/reader.c: Adjust.
2346 * src/lex.c: Formatting changes.
2347 (safegetc): Rename as...
2348 (xgetc): this.
2349
720d742f
AD
23502000-10-02 Akim Demaille <akim@epita.fr>
2351
2352 * src/lalr.h: New file.
2353 Propagate its inclusion instead of prototypes and `extern'.
2354 * src/lalr.c: Formatting changes, topological sorting etc.
2355
f2acea59
AD
23562000-10-02 Akim Demaille <akim@epita.fr>
2357
2358 * src/output.c (token_actions): Introduce a temporary array,
2359 YYDEFACT, that makes it possible for this function to use
2360 output_short_table.
2361
d019d655
AD
23622000-10-02 Akim Demaille <akim@epita.fr>
2363
2364 `user_toknums' is output as a `short[]' in `output.c', while it is
2365 defined as a `int[]' in `reader.c'. For consistency with the
2366 other output tables, `user_toknums' is now defined as a table of
2367 shorts.
2368
2369 * src/reader.c (user_toknums): Be a short table instead of an int
2370 table.
2371 Adjust dependencies.
2372
2373 Factor the short table outputs.
2374
2375 * src/output.c (output_short_table): New function.
2376 * src/output.c (output_gram, output_stos, output_rule_data)
2377 (output_base, output_table, output_check): Use it.
2378
6c89f1c1
AD
23792000-10-02 Akim Demaille <akim@epita.fr>
2380
2381 * src/output.c (output): Topological sort of the functions, in
2382 order to get rid of the `static' prototypes.
2383 No longer use `register'.
2384 * src/output.h: New file.
2385 Propagate its inclusion in files explicitly prototyping functions
2386 from output.c.
2387
d9efd181
AD
23882000-09-21 Akim Demaille <akim@epita.fr>
2389
2390 * src/atgeneral.m4: Update from Autoconf.
2391
c29240e7 23922000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
2393
2394 * src/closure.h: New file.
2395 * src/closure.c: Formatting changes, topological sort over the
2396 functions, use of closure.h.
2397 (initialize_closure, finalize_closure): Rename as...
2398 (new_closure, free_closure): these. Adjust dependencies.
2399 * src/LR0.c: Formatting changes, topological sort, use of
2400 cloture.h.
2401 (initialize_states): Rename as...
2402 (new_states): this.
2403 * src/Makefile.am (noinst_HEADERS): Adjust.
2404
499daa50
AD
24052000-09-20 Akim Demaille <akim@epita.fr>
2406
2407 * src/acconfig.h: Don't protect config.h against multiple
2408 inclusion.
2409 Don't define PARAMS.
2410 * src/system.h: Define PARAMS.
2411 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
2412 purpose of config.h. system.h must not try to fix wrong
2413 definitions in config.h.
2414
cc84fd5d
AD
24152000-09-20 Akim Demaille <akim@epita.fr>
2416
2417 * src/derives.h: New file.
2418 * src/main.c, src/derives.h: Use it.
2419 Formatting changes.
2420 * src/Makefile.am (noinst_HEADERS): Adjust.
2421
db5b3a89
AD
24222000-09-20 Akim Demaille <akim@epita.fr>
2423
2424 * tests/atgeneral.m4: Update from Autoconf.
2425 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
2426 (AT_CHECK_CALC): New macros.
2427 Use these macros to test bison with options `', `--raw',
2428 `--debug', `--yacc', `--yacc --debug'.
2429
ceed8467
AD
24302000-09-19 Akim Demaille <akim@epita.fr>
2431
2432 * src/output.c: Formatting changes.
2433 * src/machine.h: Remove, leaving its contents in...
2434 * src/system.h: here.
2435 Include stdio.h.
2436 Adjust all dependencies on stdio.h and machine.h.
2437 * src/getargs.h: New file.
2438 Let all `extern' declarations about getargs.c be replaced with
2439 inclusion of `getargs.h'.
2440 * src/Makefile.am (noinst_HEADERS): Adjust.
2441
2442 * tests/calc.m4 (yyin): Be initialized in main, not on the global
2443 scope.
2444 (yyerror): Returns void, not int.
2445 * doc/bison.texinfo: Formatting changes.
2446
05a1d24b
AD
24472000-09-19 Akim Demaille <akim@epita.fr>
2448
2449 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
2450 portable.
2451
cbd25751
AD
24522000-09-18 Akim Demaille <akim@epita.fr>
2453
2454 * configure.in: Append WARNING_CFLAGS to CFLAGS.
2455 * src/Makefile.am (INCLUDES): Don't.
2456 Be ready to fetch headers in lib/.
2457
13863333
AD
24582000-09-18 Akim Demaille <akim@epita.fr>
2459
2460 * doc/bison.texinfo: Update the copyright.
2461 ANSIfy and GNUify the examples.
2462 Remove the old menu.
2463
0d533154
AD
24642000-09-18 Akim Demaille <akim@epita.fr>
2465
2466 First set of tests: use the `calc' example from the documentation.
2467
2468 * src/bison.s1 (yyparse): Condition the code using `yytname' which
2469 is defined only when YYDEBUG is.
2470 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
2471 * src/files.c (tryopen, tryclose): Formatting changes.
2472 Move to the top and be static.
2473 * src/reader.c (read_signed_integer): Likewise.
2474 * tests/calc.m4: New file.
2475 * Makefile.am, suite.m4: Adjust.
2476 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
2477
e79137ac
AD
24782000-09-18 Akim Demaille <akim@epita.fr>
2479
2480 Add support for an Autotest test suite for Bison.
2481
2482 * m4/m4.m4, m4/atconfig.m4: New files.
2483 * m4/Makefile.am (EXTRA_DIST): Adjust.
2484 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
2485 files.
2486 * src/getargs.c: Display a more standard --version message.
2487 * src/reader.c (reader): Formatting changes.
2488 No longer depend upon VERSION_STRING.
2489 * configure.in: No longer use `dnl'.
2490 Set up the test suite and the new directory `tests/.
2491 (VERSION_STRING): Remove.
2492
27821bff
AD
24932000-04-14 Akim Demaille <akim@epita.fr>
2494
2495 * src/reader.c (copy_comment2): New function, same as former
2496 `copy_comment', but outputs into two FILE *.
2497 (copy_comment): Use it.
2498 (parse_union_decl): Use it.
2499 (get_type, parse_start_decl): Use the same `invalid' message.
2500 (parse_start_decl, parse_union_decl): Use the same `multiple'
2501 message.
2502 (parse_union_decl, copy_guard, copy_action): Use the same
2503 `unmatched' message.
2504 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
2505
cfe5fbc0
AD
25062000-03-31 Akim Demaille <akim@epita.fr>
2507
2508 * src/files.c (tryopen, tryclose): Move to the top.
2509 Be static.
2510
cb7db13e
AD
25112000-03-31 Akim Demaille <akim@epita.fr>
2512
2513 * src/main.c (main): Don't call `done', exit does it.
2514
a0f6b076
AD
25152000-03-31 Akim Demaille <akim@epita.fr>
2516
36281465
AD
2517 * allocate.c: s/return (foo)/return foo/.
2518 * lalr.c: Likewise.
2519 * LR0.c: Likewise.
2520 * output.c: Likewise.
2521 * reader.c: Likewise.
2522 * symtab.c: Likewise.
2523 * vmsgetargs.c: Likewise.
2524
25252000-03-31 Akim Demaille <akim@epita.fr>
2526
2527 Clean up the error reporting functions.
a0f6b076
AD
2528
2529 * src/report.c: New file.
2530 * src/report.h: Likewise.
2531 * src/Makefile.am: Adjust.
2532 * m4/error.m4: New file.
2533 * m4/Makefile.am: Adjust.
2534 * configure.in (jm_PREREQ_ERROR): Call it.
2535 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
2536 Remove.
2537 (fatal, fatals): Remove. All callers use complain.c::fatal.
2538 (warn, warni, warns, warnss, warnss): Remove. All callers use
2539 complain.c::complain.
2540 (toomany): Remove, use fatal instead.
2541 * src/files.c (done): No argument, use complain_message_count.
2542 * src/main.c (main): Register `done' to `atexit'.
2543
2544 * src/getargs.c (usage): More `fputs', less `fprintf'.
2545
18539825
AD
25462000-03-28 Akim Demaille <akim@epita.fr>
2547
2548 * lib/: New directory.
2549 * Makefile.am (SUBDIRS): Adjust.
2550 * configure.in: Adjust.
2551 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
2552 useless.
2553 * src/alloca.c: Moved to lib/.
2554 * src/getopt.c: Likewise.
2555 * src/getopt1.c: Likewise.
2556 * src/getopt.h: Likewise.
2557 * src/ansi2knr.c: Likewise.
2558 * src/ansi2knr.1: Likewise.
2559 * src/Makefile.am: Adjust.
2560 * lib/Makefile.am: New file.
2561
9f306f2a
AD
25622000-03-28 Akim Demaille <akim@epita.fr>
2563
2564 * src/getargs.c (usage): Refresh the help message.
2565
0ba347b6
AD
25662000-03-17 Akim Demaille <akim@epita.fr>
2567
2568 * src/getopt1.c: Updated from textutils 2.0e
2569 * src/getopt.c: Likewise.
2570 * src/getopt.h: Likewise.
2571
dbe7f271
AD
25722000-03-17 Akim Demaille <akim@epita.fr>
2573
2574 * src/Makefile.am (bison.simple): Fix the awk program: quote only
2575 the file name, not the whole `#line LINE FILE'.
2576
75bbe78d
AD
25772000-03-17 Akim Demaille <akim@epita.fr>
2578
2579 On syntax errors, report the token on which we choked.
2580
aa5fd0ee
AD
2581 * src/bison.s1 (yyparse): In the label yyerrlab, when
2582 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 2583
7b306f52
AD
25842000-03-17 Akim Demaille <akim@epita.fr>
2585
aa5fd0ee 2586 * src/reader.c (copy_at): New function.
7b306f52
AD
2587 (copy_guard): Use it.
2588 (copy_action): Use it.
2589
e87b5700
AD
25902000-03-17 Akim Demaille <akim@epita.fr>
2591
2592 Be kind to translators, save some useless translations.
2593
aa5fd0ee 2594 * src/main.c (banner): New function.
e87b5700
AD
2595 (fatal_banner): Use it.
2596 (warn_banner): Use it.
2597
ae3c3164
AD
25982000-03-17 Akim Demaille <akim@epita.fr>
2599
aa5fd0ee
AD
2600 * src/reader.c (copy_definition): Use copy_string and
2601 copy_comment. Removed now unused `match', `ended',
2602 `cplus_comment'.
ae3c3164
AD
2603 (copy_comment, copy_string): Moved, to be visible from
2604 copy_definition.
2605
4dc58e7c
AD
26062000-03-17 Akim Demaille <akim@epita.fr>
2607
aa5fd0ee
AD
2608 * src/reader.c (copy_string): Declare `static inline'. No
2609 problems with inline, since it is checked by configure.
4dc58e7c
AD
2610 (copy_comment): Likewise.
2611
0a6384c4
AD
26122000-03-17 Akim Demaille <akim@epita.fr>
2613
aa5fd0ee 2614 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 2615
3cef001a
AD
26162000-03-17 Akim Demaille <akim@epita.fr>
2617
aa5fd0ee 2618 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
2619 (copy_action): Use it. Removed now unused `match', `ended',
2620 `cplus_comment'.
2621 (copy_guard): Likewise.
2622
ca36d2ef
AD
26232000-03-17 Akim Demaille <akim@epita.fr>
2624
aa5fd0ee 2625 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
2626 (copy_action): Use it.
2627 (copy_guard): Likewise.
2628
6666f98f
AD
26292000-03-17 Akim Demaille <akim@epita.fr>
2630
2631 Change the handling of @s so that they behave exactly like $s.
2632 There is now a pseudo variable @$ (readble and writable), location
2633 of the lhs of the rule (by default ranging from the location of
2634 the first symbol of the rhs, to the location of the last symbol,
2635 or, if the rhs is empty, YYLLOC).
2636
2637 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
2638 yyval.
2639 (yyparse): When providing a default semantic action, provide a
2640 default location action.
2641 (after the $): No longer change `*YYLSP', just stack YYLOC the
2642 same way you stack YYVAL.
2643 * src/reader.c (read_declarations): Use warns.
2644 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
2645 (copy_action, case '@'): Likewise.
2646 Use a standard error message, to save useless work from
2647 translators.
2648
41aca2e0
AD
26492000-03-17 Akim Demaille <akim@epita.fr>
2650
aa5fd0ee
AD
2651 * src/bison.s1: Formatting and cosmetics changes.
2652 * src/reader.c: Likewise.
41aca2e0
AD
2653 Update the Copyright notice.
2654
dc08c1d5
AD
26552000-03-17 Akim Demaille <akim@epita.fr>
2656
aa5fd0ee
AD
2657 * src/bison.s1 (#line): All set to `#line' only, since the
2658 Makefile now handles them.
dc08c1d5 2659
9ee3c97b
AD
26602000-03-16 Akim Demaille <akim@epita.fr>
2661
2662 * src/output.c (output_rule_data): Output the documentation of
2663 some of the tables.
2664 (Copyright notice): Update.
2665 Formatting changes.
2666
0de741ca
AD
26672000-03-16 Akim Demaille <akim@epita.fr>
2668
2669 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
2670 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
2671 One `#if YYDEBUG' remains, since it uses variables which are
2672 defined only if `YYDEBUG != 0'.
2673
bb10be54
AD
26742000-03-16 Akim Demaille <akim@epita.fr>
2675
2676 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
2677 and related variables so that the similarities are highlighted.
2678
b07b484a
AD
26792000-03-16 Akim Demaille <akim@epita.fr>
2680
2681 * src/bison.s1: Properly indent CPP directives.
2682
361f60b3
AD
26832000-03-16 Akim Demaille <akim@epita.fr>
2684
2685 * src/bison.s1: Properly indent the `alloca' CPP section.
2686
8c44d3ec
AD
26872000-03-16 Akim Demaille <akim@epita.fr>
2688
2689 Do not hard code values of directories in `configure.in'.
2690 Update the `configure' tool chain.
2691
2692 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
2693 src/makefile.am.
2694 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
2695 (AC_OUTPUT): Add m4/Makefile.
2696 Bump to bison 1.28a, 1.29 has never been released.
2697 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
2698 handled via src/Makefile.am.
2699 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
2700 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
2701 autoheader.
2702 * Makefile.am (SUBDIRS): Add m4.
2703 (ACLOCAL_AM_FLAGS): New variable.
2704 (AUTOMAKE_OPTIONS): Add check-news.
2705 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
2706 the proper line number and file name.
2707 (DEFS): Propagate the location of bison library files and of the
2708 locale files.
2709 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
2710 builddir.
2711 * acinclude.m4: Remove, replaced by the directory m4.
2712 * m4/Makefile.am (EXTRA_DIST): New variable.
2713 * m4/gettext.m4: New file, from the fileutils.
2714 * m4/lcmessage.m4: Likewise
2715 * m4/progtest.m4: Likewise.
2716 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
2717
f95997e7
AD
27182000-03-10 Akim Demaille <akim@epita.fr>
2719
2720 * src/closure.c:
2721 Formatting changes of various comments.
2722 Respect the GNU coding standards at various places.
2723 Don't use `_()' when no translation is needed.
2724
27251999-12-13 Jesse Thilo <jthilo@gnu.org>
2726
2727 * src/files.c:
2728 OS/2 honors TMPDIR environment variable.
2729
27301999-12-13 Jesse Thilo <jthilo@gnu.org>
2731
2732 * doc/bison.texinfo: Tweaked spelling and grammar.
2733 Updated ISBN.
2734 Removed reference to price of printed copy.
2735 Mention BISON_SIMPLE and BISON_HAIRY.
2736
27371999-12-13 Jesse Thilo <jthilo@gnu.org>
2738
2739 * configure.in, NEWS:
2740 Bison 1.29 released.
2741
27421999-10-27 Jesse Thilo <jthilo@gnu.org>
2743
2744 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
2745 Added reference card.
2746
27471999-07-26 Jesse Thilo <jthilo@gnu.org>
2748
2749 * po/ru.po: Added Russian translation.
2750
27511999-07-26 Jesse Thilo <jthilo@gnu.org>
2752
2753 * configure.in: Added Russian translation.
2754
27551999-07-06 Jesse Thilo <jthilo@gnu.org>
2756
2757 * configure.in, NEWS, README:
2758 Released version 1.28.
2759
27601999-06-14 Jesse Thilo <jthilo@gnu.org>
2761
2762 * src/system.h:
2763 Squashed redefinition warning on some systems.
2764
2765 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
2766 Have configure build version string instead of relying on ANSI string
2767 concatentation.
2768
27691999-06-14 Jesse Thilo <jthilo@gnu.org>
2770
2771 * po/POTFILES.in: Got rid of version.c.
2772
27731999-06-14 Jesse Thilo <jthilo@gnu.org>
2774
2775 * acconfig.h, configure.in:
2776 Have configure build version string instead of relying on ANSI string
2777 concatentation.
2778
27791999-06-08 Jesse Thilo <jthilo@gnu.org>
2780
2781 * doc/bison.1:
2782 Dropped mention of `+' for long-named options.
2783
27841999-05-30 Jesse Thilo <jthilo@gnu.org>
2785
2786 * src/files.c: Added <unistd.h> for unlink().
2787
2788 * src/Makefile.am, src/system.h:
2789 I18n fixes.
2790
27911999-05-30 Jesse Thilo <jthilo@gnu.org>
2792
2793 * README: Added a FAQ list.
2794
2795 * configure.in, acconfig.h:
2796 I18n fixes.
2797
27981999-05-30 Jesse Thilo <jthilo@gnu.org>
2799
2800 * doc/FAQ, doc/Makefile.am:
2801 Added a FAQ list.
2802
28031999-05-19 Jesse Thilo <jthilo@gnu.org>
2804
2805 * src/alloc.h, src/symtab.h, src/version.c:
2806 Protected inclusion of "config.h" with HAVE_CONFIG_H.
2807
28081999-04-18 Jesse Thilo <jthilo@gnu.org>
2809
2810 * src/.cvsignore, src/Makefile.am:
2811 Reorganized: sources in `src', documentation in `doc'.
2812
2813 * src/lex.c (literalchar):
2814 fixed the code for escaping double quotes (thanks
2815 Jonathan Czisny.)
2816
28171999-04-18 Jesse Thilo <jthilo@gnu.org>
2818
2819 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
2820 Adjusted paths to reflect directory reorganization.
2821
28221999-04-18 Jesse Thilo <jthilo@gnu.org>
2823
2824 * doc/.cvsignore, doc/Makefile.am:
2825 Reorganized: sources in `src', documentation in `doc'.
2826
28271999-04-18 Jesse Thilo <jthilo@gnu.org>
2828
2829 * configure.in:
2830 Updated AC_INIT file to reflect directory reorganization.
2831
2832 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
2833 Reorganized: sources in `src', documentation in `doc'.
2834
28351999-04-13 Jesse Thilo <jthilo@gnu.org>
2836
2837 * src/allocate.c:
2838 Don't declare calloc() and realloc() if not necessary.
2839
28401999-04-13 Jesse Thilo <jthilo@gnu.org>
2841
2842 * configure.in, acconfig.h, acinclude.m4:
2843 Don't declare calloc() and realloc() if not necessary.
2844
28451999-03-23 Jesse Thilo <jthilo@gnu.org>
2846
2847 * po/.cvsignore: Added i18n support.
2848
28491999-03-23 Jesse Thilo <jthilo@gnu.org>
2850
2851 * acconfig.h, configure.in, Makefile.am:
2852 Added i18n support.
2853
28541999-03-22 Jesse Thilo <jthilo@gnu.org>
2855
2856 * src/bison.s1: Fixed #line numbers.
2857
28581999-03-15 Jesse Thilo <jthilo@gnu.org>
2859
2860 * po/es.po, po/fr.po, po/nl.po, po/de.po:
2861 Added PO files from Translation Project.
2862
28631999-03-03 Jesse Thilo <jthilo@gnu.org>
2864
2865 * Makefile.am:
2866 Added support for non-ANSI compilers (ansi2knr).
2867
28681999-02-16 Jesse Thilo <jthilo@gnu.org>
2869
2870 * configure.in: Bumped version number to 1.27.
2871
2872 * Makefile.am:
2873 Added `bison.simple' to list of files removed by `make distclean'.
2874
28751999-02-12 Jesse Thilo <jthilo@gnu.org>
2876
2877 * src/files.c, src/files.h:
2878 Defined locations of parser files in config.h instead of Makefile.
2879
28801999-02-12 Jesse Thilo <jthilo@gnu.org>
2881
2882 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
2883 Defined locations of parser files in config.h instead of Makefile.
2884
28851999-02-09 Jesse Thilo <jthilo@gnu.org>
2886
2887 * Makefile.am:
2888 Removed inappropriate use of $< macro.
2889
28901999-02-05 Jesse Thilo <jthilo@gnu.org>
2891
2892 * po/Makefile.in.in, po/POTFILES.in:
2893 Add `po' directory skeleton.
2894
28951999-01-27 Jesse Thilo <jthilo@gnu.org>
2896
2897 * README: Document help-bison list.
2898
2899 * configure.in: Add check for mkstemp().
2900
29011999-01-20 Jesse Thilo <jthilo@gnu.org>
2902
2903 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
2904 Hush a few compiler warnings.
2905
2906 * src/files.c:
2907 Add tryclose(), which verifies that fclose was successful.
2908 Hush a couple of compiler warnings.
2909
29101999-01-20 Jesse Thilo <jthilo@gnu.org>
2911
2912 * Makefile.am, OChangeLog:
2913 ChangeLog is now automatically generated. Include the old version as
2914 OChangeLog.
2915
29161999-01-14 Jesse Thilo <jthilo@gnu.org>
2917
2918 * 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:
2919 Update FSF address.
2920
29211999-01-14 Jesse Thilo <jthilo@gnu.org>
2922
2923 * doc/bison.texinfo: Fix formatting glitch.
2924
2925 * doc/bison.texinfo: Update FSF address.
2926
29271999-01-14 Jesse Thilo <jthilo@gnu.org>
2928
2929 * acconfig.h: Update FSF address.
2930
29311999-01-08 Jesse Thilo <jthilo@gnu.org>
2932
2933 * src/system.h:
2934 Don't define PACKAGE here, since config.h defines it.
2935
29361998-12-30 Jesse Thilo <jthilo@gnu.org>
2937
2938 * src/reader.c: Update copyright date.
2939
2940 * src/main.c:
2941 Ditch sprintf to statically-sized buffers in fatal/warn functions in
2942 favor of output directly to stderr (avoids buffer overruns).
2943
2944 * src/reader.c: Some checks for premature EOF.
2945
2946 * 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:
2947 Use prototypes if the compiler understands them.
2948
2949 * src/files.c: Honor TMPDIR on Unix hosts.
2950 Use prototypes if the compiler understands them.
2951
2952 * src/reader.c:
2953 Fix a couple of buffer overrun bugs.
2954 Use prototypes if the compiler understands them.
2955
2956 * src/system.h: Include unistd.h and ctype.h.
2957 Use #ifdef instead of #if for NLS symbols.
2958
29591998-12-30 Jesse Thilo <jthilo@gnu.org>
2960
2961 * doc/bison.texinfo:
2962 Delete comment "consider using @set for edition number, etc..." since
2963 we now are doing so.
2964
29651998-12-30 Jesse Thilo <jthilo@gnu.org>
2966
2967 * configure.in:
2968 Use prototypes if the compiler understands them.
2969
2970 * NEWS: Document 1.26 highlights.
2971
2972 * Makefile.am: Require Automake 1.3 or later.
2973
2974 * acconfig.h:
2975 Use prototypes if the compiler understands them.
2976
29771998-12-29 Jesse Thilo <jthilo@gnu.org>
2978
2979 * src/version.c:
2980 Use VERSION symbol from automake for version number.
2981
29821998-12-29 Jesse Thilo <jthilo@gnu.org>
2983
2984 * acconfig.h, configure.in, version.cin:
2985 Use VERSION symbol from automake for version number.
2986
29871998-11-28 Jesse Thilo <jthilo@gnu.org>
2988
2989 * Makefile.am:
2990 Distribute original version of simple parser (bison.s1), not built
2991 version (bison.simple).
2992
29931998-11-28 Jesse Thilo <jthilo@gnu.org>
2994
2995 * doc/bison.texinfo: Add info dir entry.
2996
2997 * doc/bison.texinfo:
2998 Let automake put version number into documentation.
2999
30001998-11-26 Jesse Thilo <jthilo@gnu.org>
3001
3002 * src/bison.cld, src/build.com, src/vmshlp.mar:
3003 Add non-RCS files from /gd/gnu/bison.
3004
30051998-11-26 Jesse Thilo <jthilo@gnu.org>
3006
3007 * doc/bison.1:
3008 Document the BISON_HAIRY and BISON_SIMPLE variables.
3009
30101998-11-25 Jesse Thilo <jthilo@gnu.org>
3011
3012 * src/version.c: Build version.c automatically.
3013
3014 * src/reader.c:
3015 Fix token numbering (used to start at 258, not 257).
3016
3017 * src/system.h: Include config.h.
3018
3019 * src/getargs.c: Update bug report address.
3020
3021 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
3022 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
3023
30241998-11-25 Jesse Thilo <jthilo@gnu.org>
3025
3026 * Makefile.am:
3027 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
3028
3029 * configure.in, version.cin:
3030 Build version.c automatically.
3031
3032 * AUTHORS: Add AUTHORS file.
3033
3034 * README: Update bug report address.
3035
3036 * bison.simple:
3037 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
3038
3039 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
3040 Add automake stuff.
3041
30421998-11-25 Jesse Thilo <jthilo@gnu.org>
3043
3044 * doc/bison.texinfo: Clean up some formatting.
3045
30461998-05-05 Richard Stallman <rms@gnu.org>
3047
3048 * doc/bison.texinfo:
3049 Explain better why to make a pure parser.
3050
30511998-01-05 Richard Stallman <rms@gnu.org>
3052
3053 * src/files.c (openfiles):
3054 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
3055 find a temporary directory, if possible. Do not unlink files while
3056 they are open.
3057
30581997-08-25 Richard Stallman <rms@gnu.org>
3059
3060 * src/reader.c (stack_offset;):
3061 Change some warni to warns.
3062
3063 * src/lex.c (literalchar): Use warns, not warni.
3064
30651997-06-28 Richard Stallman <rms@gnu.org>
3066
3067 * src/bison.s1: Add a Bison version comment.
3068
3069 * src/main.c (fatal, warn, berror):
3070 Use program_name.
3071
30721997-06-28 Richard Stallman <rms@gnu.org>
3073
3074 * Makefile.in (bison_version): New variable.
3075 (dist): Use that variable.
3076 (bison.s1): Substitute the Bison version into bison.simple.
3077
3078 * bison.simple: Add a Bison version comment.
3079
30801997-06-18 Richard Stallman <rms@gnu.org>
3081
3082 * src/main.c (fatal, warn, berror):
3083 Make error messages standard.
3084 (toomany): Improve error message text.
3085
3086 * 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:
3087 new.h renamed to alloc.h.
3088
30891997-06-18 Richard Stallman <rms@gnu.org>
3090
3091 * Makefile.in: new.h renamed to alloc.h.
3092
30931997-05-24 Richard Stallman <rms@gnu.org>
3094
3095 * src/lex.c (literalchar):
3096 Fix the code for escaping \, " and '.
3097
3098 (lex): Avoid trouble when there are many chars
3099 to discard in a char literal with just several chars in it.
3100
31011997-05-17 Richard Stallman <rms@gnu.org>
3102
3103 * src/bison.s1:
3104 Use malloc, if using alloca is troublesome.
3105 (YYSTACK_USE_ALLOCA): New flag macro.
3106 Define it for some systems and compilers.
3107 (YYSTACK_ALLOC): New macro.
3108 (yyparse): Use YYSTACK_ALLOC to allocate stack.
3109 If it was malloc'd, free it.
3110
31111997-05-17 Richard Stallman <rms@gnu.org>
3112
3113 * bison.simple:
3114 Use malloc, if using alloca is troublesome.
3115 (YYSTACK_USE_ALLOCA): New flag macro.
3116 Define it for some systems and compilers.
3117 (YYSTACK_ALLOC): New macro.
3118 (yyparse): Use YYSTACK_ALLOC to allocate stack.
3119 If it was malloc'd, free it.
3120
31211997-04-23 Richard Stallman <rms@gnu.org>
3122
3123 * src/bison.s1:
3124 (alloca) [__hpux]: Always define as __builtin_alloca.
3125
31261997-04-23 Richard Stallman <rms@gnu.org>
3127
3128 * bison.simple:
3129 (alloca) [__hpux]: Always define as __builtin_alloca.
3130
31311997-04-22 Richard Stallman <rms@gnu.org>
3132
3133 * src/bison.s1:
3134 [__hpux]: Include alloca.h (right for HPUX 10)
3135 instead of declaring alloca (right for HPUX 9).
3136
3137 * src/bison.s1 (__yy_memcpy):
3138 Declare arg `count' as unsigned int.
3139 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
3140
31411997-04-22 Richard Stallman <rms@gnu.org>
3142
3143 * bison.simple:
3144 [__hpux]: Include alloca.h (right for HPUX 10)
3145 instead of declaring alloca (right for HPUX 9).
3146
3147 * bison.simple (__yy_memcpy):
3148 Declare arg `count' as unsigned int.
3149 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
3150
31511997-01-03 Richard Stallman <rms@gnu.org>
3152
3153 * src/allocate.c: [__STDC__ or _MSC_VER]:
3154 Declare calloc and realloc to return void *.
3155
31561997-01-02 Richard Stallman <rms@gnu.org>
3157
3158 * src/system.h:
3159 [_MSC_VER]: Include stdlib.h and process.h.
3160 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
3161
3162 * src/main.c (main): Return FAILURE as a value.
3163 (printable_version): Declare arg as int, not char.
3164
31651997-01-02 Richard Stallman <rms@gnu.org>
3166
3167 * Makefile.in (dist):
3168 Explicitly check for symlinks, and copy them.
3169
31701996-12-19 Richard Stallman <rms@gnu.org>
3171
3172 * src/files.c:
3173 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
3174
31751996-12-18 Paul Eggert <eggert@gnu.org>
3176
3177 * src/bison.s1 (yyparse):
3178 If __GNUC__ and YYPARSE_PARAM are both defined,
3179 declare yyparse to have a void * argument.
3180
31811996-12-18 Paul Eggert <eggert@gnu.org>
3182
3183 * bison.simple (yyparse):
3184 If __GNUC__ and YYPARSE_PARAM are both defined,
3185 declare yyparse to have a void * argument.
3186
31871996-12-17 Richard Stallman <rms@gnu.org>
3188
3189 * src/reduce.c (nbits): Add some casts.
3190
31911996-08-12 Richard Stallman <rms@gnu.org>
3192
3193 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
3194
31951996-08-12 Richard Stallman <rms@gnu.org>
3196
3197 * bison.simple: Test _MSDOS as well as _MSDOS_.
3198
31991996-07-31 Richard Stallman <rms@gnu.org>
3200
3201 * src/bison.s1:
3202 [__sun && __i386]: Include alloca.h.
3203
32041996-07-31 Richard Stallman <rms@gnu.org>
3205
3206 * bison.simple:
3207 [__sun && __i386]: Include alloca.h.
3208
32091996-07-30 Richard Stallman <rms@gnu.org>
3210
3211 * src/bison.s1: Comment change.
3212
3213 * src/bison.s1: Test _MSDOS_, not MSDOS.
3214
32151996-07-30 Richard Stallman <rms@gnu.org>
3216
3217 * bison.simple: Comment change.
3218
3219 * bison.simple: Test _MSDOS_, not MSDOS.
3220
32211996-06-01 Richard Stallman <rms@gnu.org>
3222
3223 * 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:
3224 Insert `_' macro around many string constants.
3225
3226 * src/main.c:
3227 Insert `_' macro around many string constants.
3228
3229 (main): Call setlocale, bindtextdomain and textdomain.
3230
3231 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
3232 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
3233 [ENABLE_NLS]: Include libintl.h.
3234 [ENABLE_NLS] (gettext): Define.
3235 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
3236 (N_, PACKAGE, LOCALEDIR): New macros.
3237
32381996-06-01 Richard Stallman <rms@gnu.org>
3239
3240 * POTFILES.in: New file.
3241
3242 * Makefile.in (allocate.o):
3243 Define target explicitly.
3244
3245 * Makefile.in (CFLAGS): Set to @CFLAGS@.
3246 (LDFLAGS): Set to @LDFLAGS@.
3247 (configure): Run autoconf only if preceding `cd' succeeds.
3248 (bison.s1): Redirect output to temporary file then move the
3249 temporary to the target, rather than redirecting directly to bison.s1.
3250 (clean): Remove config.status and config.log.
3251 (distclean): Don't remove config.status here.
3252
32531996-05-12 Richard Stallman <rms@gnu.org>
3254
3255 * src/bison.s1:
3256 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
3257
32581996-05-12 Richard Stallman <rms@gnu.org>
3259
3260 * bison.simple:
3261 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
3262
32631996-05-11 Richard Stallman <rms@gnu.org>
3264
3265 * src/bison.s1 (__yy_memcpy):
3266 Really reorder the args, as was supposedly done on Feb 14 1995.
3267 (yyparse): Calls changed accordingly.
3268
32691996-05-11 Richard Stallman <rms@gnu.org>
3270
3271 * Makefile.in (dist): Don't use $(srcdir).
3272
3273 * bison.simple (__yy_memcpy):
3274 Really reorder the args, as was supposedly done on Feb 14 1995.
3275 (yyparse): Calls changed accordingly.
3276
32771996-01-27 Richard Stallman <rms@gnu.org>
3278
3279 * src/output.c (output_rule_data):
3280 Test YYERROR_VERBOSE in the conditional
3281 around the definition of ttyname.
3282
32831995-12-29 Richard Stallman <rms@gnu.org>
3284
3285 * src/bison.s1:
3286 Fix line numbers in #line commands.
3287
32881995-12-29 Richard Stallman <rms@gnu.org>
3289
3290 * bison.simple:
3291 Fix line numbers in #line commands.
3292
32931995-12-27 Richard Stallman <rms@gnu.org>
3294
3295 * src/bison.s1 (YYPARSE_PARAM_DECL):
3296 In C++, make it always null.
3297 (YYPARSE_PARAM_ARG): New macro.
3298 (yyparse): Use YYPARSE_PARAM_ARG.
3299
33001995-12-27 Richard Stallman <rms@gnu.org>
3301
3302 * bison.simple (YYPARSE_PARAM_DECL):
3303 In C++, make it always null.
3304 (YYPARSE_PARAM_ARG): New macro.
3305 (yyparse): Use YYPARSE_PARAM_ARG.
3306
33071995-11-29 Richard Stallman <rms@gnu.org>
3308
3309 * doc/bison.texinfo:
3310 Describe literal string tokens, %raw, %no_lines, %token_table.
3311
33121995-11-29 Daniel Hagerty <hag@gnu.org>
3313
3314 * doc/bison.texinfo: Fixed update date
3315
33161995-10-16 Richard Stallman <rms@gnu.org>
3317
3318 * src/version.c: Version 1.25.
3319
33201995-10-16 Richard Stallman <rms@gnu.org>
3321
3322 * NEWS: *** empty log message ***
3323
33241995-10-16 Richard Stallman <rms@gnu.org>
3325
3326 * doc/bison.1, doc/bison.rnh:
3327 Add new options.
3328
33291995-10-15 Richard Stallman <rms@gnu.org>
3330
3331 * src/vmsgetargs.c, src/getargs.c:
3332 Added -n, -k, and -raw switches.
3333 (noparserflag, toknumflag, rawtoknumflag): New variables.
3334
3335 * src/symtab.h (SALIAS):
3336 New #define for adding aliases to %token.
3337 (struct bucket): Added `alias' field.
3338
3339 * src/reduce.c (reduce_grammar):
3340 Revise error message.
3341 (print_notices): Remove final `.' from error message.
3342
3343 * src/reader.c (reader_output_yylsp):
3344 New function.
3345 (readgram): Use `#if 0' around code that accepted %command
3346 inside grammar rules: The documentation doesn't allow it,
3347 and it will fail since the %command processors scan for the next %.
3348 (parse_token_decl): Extended the %token
3349 declaration to allow a multi-character symbol as an alias.
3350 (parse_thong_decl): New function.
3351 (read_declarations): Added %thong declarations.
3352 (read_declarations): Handle NOOP to deal with allowing
3353 % declarations as another means to specify the flags.
3354 (readgram): Allow %prec prior to semantics embedded in a rule.
3355 (skip_to_char, read_declarations, copy_definition)
3356 (parse_token_decl, parse_start_decl, parse_type_decl)
3357 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
3358 (get_type_name, copy_guard, copy_action, readgram)
3359 (get_type, packsymbols): Revised most error messages.
3360 Changed `fatal' to `warnxxx' to avoid aborting for error.
3361 Revised and use multiple warnxxx functions to avoid using VARARGS1.
3362 (read_declarations): Improve the error message for
3363 an invalid character. Do not abort.
3364 (read_declarations, copy_guard, copy_action): Use
3365 printable_version to avoid unprintable characters in printed output.
3366 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
3367 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
3368 Allow the type of a non-terminal can be given
3369 more than once, as long as all specifications give the same type.
3370
3371 * src/output.c:
3372 (output_headers, output_trailers, output, output_gram)
3373 (output_rule_data): Implement noparserflag variable.
3374 Implement toknumflag variable.
3375 (output): Call reader_output_yylsp to output LTYPESTR.
3376
3377 * src/main.c (main):
3378 If reader sees an error, don't process the grammar.
3379 (fatals): Updated to not use VARARGS1.
3380 (printable_version, int_to_string, warn, warni, warns, warnss)
3381 (warnsss): New error reporting functions. Avoid abort for error.
3382
3383 * src/lex.h:
3384 Added THONG and NOOP for alias processing.
3385 Added SETOPT for the new code that allows setting options with %flags.
3386
3387 * src/lex.c:
3388 Include getopt.h. Add some extern decls.
3389 (safegetc): New function to deal with EOF gracefully.
3390 (literalchar); new function to deal with reading \ escapes.
3391 (lex): Use literalchar.
3392 (lex): Implemented "..." tokens.
3393 (literalchar, lex, parse_percent_token): Made tokenbuffer
3394 always contain the token. This includes growing the token
3395 buffer while reading an integer.
3396 (parse_percent_token): Replaced if-else statement with percent_table.
3397 (parse_percent_token): Added % declarations as another
3398 way to specify the flags -n, -l, and -r. Also added hooks for
3399 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
3400 major changes to files.c.
3401 (lex) Retain in the incoming stream a character following
3402 an incorrect '/'.
3403 (skip_white_space, lex): Revised most error messages
3404 and changed fatal to warn to avoid aborting.
3405 (percent_table): Added %thong declarations.
3406
3407 * src/gram.h: Comment changes.
3408
3409 * src/files.c (openfiles, open_extra_files, done):
3410 Add faction flag
3411 and actfile file. Handle noparserflag. Both for -n switch.
3412
3413 * src/conflicts.c (resolve_sr_conflict):
3414 Remove use of alloca.
3415
34161995-06-01 Jim Meyering <meyering@gnu.org>
3417
3418 * doc/bison.texinfo: *** empty log message ***
3419
34201995-05-06 Richard Stallman <rms@gnu.org>
3421
3422 * src/bison.s1: Comment change.
3423
34241995-05-06 Richard Stallman <rms@gnu.org>
3425
3426 * bison.simple: Comment change.
3427
34281995-05-03 Richard Stallman <rms@gnu.org>
3429
3430 * src/version.c: Version now 1.24.
3431
3432 * src/bison.s1: Change distribution terms.
3433
3434 * src/version.c: Version now 1.23.
3435
34361995-05-03 Richard Stallman <rms@gnu.org>
3437
3438 * doc/bison.texinfo:
3439 Rewrite "Conditions for Using Bison".
3440 Update version to 1.24.
3441
34421995-05-03 Richard Stallman <rms@gnu.org>
3443
3444 * bison.simple: Change distribution terms.
3445
34461995-02-23 Richard Stallman <rms@gnu.org>
3447
3448 * src/files.c: Test __VMS_POSIX as well as VMS.
3449
34501995-02-14 Jim Meyering <meyering@gnu.org>
3451
3452 * src/bison.s1 (__yy_memcpy):
3453 Renamed from __yy_bcopy to avoid
3454 confusion. Reverse FROM and TO arguments to be consistent with
3455 those of memcpy.
3456
34571995-02-14 Jim Meyering <meyering@gnu.org>
3458
3459 * bison.simple (__yy_memcpy):
3460 Renamed from __yy_bcopy to avoid
3461 confusion. Reverse FROM and TO arguments to be consistent with
3462 those of memcpy.
3463
34641994-11-10 David J. MacKenzie <djm@gnu.org>
3465
3466 * NEWS: reformat
3467
3468 * NEWS: New file.
3469
3470 * Makefile.in (DISTFILES): Include NEWS.
3471
3472 * Makefile.in (DISTFILES):
3473 Include install-sh, not install.sh.
3474
3475 * configure.in: Update to Autoconf v2 macro names.
3476
34771994-10-05 David J. MacKenzie <djm@gnu.org>
3478
3479 * Makefile.in: fix typo
3480
3481 * Makefile.in (prefix, exec_prefix):
3482 Let configure set them.
3483
34841994-09-28 David J. MacKenzie <djm@gnu.org>
3485
3486 * Makefile.in: Set datadir to $(prefix)/share.
3487
34881994-09-15 Richard Stallman <rms@gnu.org>
3489
3490 * src/bison.s1:
3491 Update copyright notice and GPL version.
3492
34931994-09-15 Richard Stallman <rms@gnu.org>
3494
3495 * bison.simple:
3496 Update copyright notice and GPL version.
3497
34981994-07-12 Richard Stallman <rms@gnu.org>
3499
3500 * src/reduce.c, src/reader.c:
3501 entered into RCS
3502
35031994-05-05 David J. MacKenzie <djm@gnu.org>
3504
3505 * Makefile.in: entered into RCS
3506
35071994-03-26 Richard Stallman <rms@gnu.org>
3508
3509 * src/bison.s1: entered into RCS
3510
35111994-03-26 Richard Stallman <rms@gnu.org>
3512
3513 * bison.simple: entered into RCS
3514
35151994-03-25 Richard Stallman <rms@gnu.org>
3516
3517 * src/main.c: entered into RCS
3518
35191994-03-24 Richard Stallman <rms@gnu.org>
3520
3521 * src/conflicts.c: entered into RCS
3522
35231994-01-02 Richard Stallman <rms@gnu.org>
3524
3525 * Makefile.in: *** empty log message ***
3526
35271993-11-21 Richard Stallman <rms@gnu.org>
3528
3529 * src/bison.s1: *** empty log message ***
3530
35311993-11-21 Richard Stallman <rms@gnu.org>
3532
3533 * doc/bison.texinfo: entered into RCS
3534
3535 * doc/bison.texinfo: *** empty log message ***
3536
35371993-11-21 Richard Stallman <rms@gnu.org>
3538
3539 * bison.simple: *** empty log message ***
3540
35411993-10-25 David J. MacKenzie <djm@gnu.org>
3542
3543 * doc/bison.texinfo: *** empty log message ***
3544
35451993-10-19 Richard Stallman <rms@gnu.org>
3546
3547 * src/bison.s1: *** empty log message ***
3548
35491993-10-19 Richard Stallman <rms@gnu.org>
3550
3551 * bison.simple: *** empty log message ***
3552
35531993-10-14 Richard Stallman <rms@gnu.org>
3554
3555 * src/bison.s1: *** empty log message ***
3556
35571993-10-14 Richard Stallman <rms@gnu.org>
3558
3559 * bison.simple: *** empty log message ***
3560
35611993-09-14 David J. MacKenzie <djm@gnu.org>
3562
3563 * doc/bison.texinfo: *** empty log message ***
3564
35651993-09-13 Noah Friedman <friedman@gnu.org>
3566
3567 * Makefile.in: *** empty log message ***
3568
35691993-09-10 Richard Stallman <rms@gnu.org>
3570
3571 * src/conflicts.c: *** empty log message ***
3572
3573 * src/system.h: entered into RCS
3574
35751993-09-10 Richard Stallman <rms@gnu.org>
3576
3577 * doc/bison.1: entered into RCS
3578
35791993-09-06 Noah Friedman <friedman@gnu.org>
3580
3581 * src/version.c: entered into RCS
3582
35831993-09-06 Noah Friedman <friedman@gnu.org>
3584
3585 * Makefile.in: *** empty log message ***
3586
35871993-07-30 David J. MacKenzie <djm@gnu.org>
3588
3589 * Makefile.in: *** empty log message ***
3590
35911993-07-24 Richard Stallman <rms@gnu.org>
3592
3593 * src/bison.s1: *** empty log message ***
3594
35951993-07-24 Richard Stallman <rms@gnu.org>
3596
3597 * bison.simple: *** empty log message ***
3598
35991993-07-08 David J. MacKenzie <djm@gnu.org>
3600
3601 * Makefile.in: *** empty log message ***
3602
36031993-07-04 Richard Stallman <rms@gnu.org>
3604
3605 * src/bison.s1: *** empty log message ***
3606
36071993-07-04 Richard Stallman <rms@gnu.org>
3608
3609 * bison.simple: *** empty log message ***
3610
36111993-06-26 David J. MacKenzie <djm@gnu.org>
3612
3613 * src/getargs.c: entered into RCS
3614
36151993-06-26 David J. MacKenzie <djm@gnu.org>
3616
3617 * doc/bison.texinfo: *** empty log message ***
3618
3619 * doc/bison.1: New file.
3620
36211993-06-25 Richard Stallman <rms@gnu.org>
3622
3623 * src/getargs.c: New file.
3624
36251993-06-16 Richard Stallman <rms@gnu.org>
3626
3627 * src/bison.s1: *** empty log message ***
3628
36291993-06-16 Richard Stallman <rms@gnu.org>
3630
3631 * bison.simple: *** empty log message ***
3632
36331993-06-03 Richard Stallman <rms@gnu.org>
3634
3635 * src/bison.s1: New file.
3636
36371993-06-03 Richard Stallman <rms@gnu.org>
3638
3639 * doc/bison.texinfo: *** empty log message ***
3640
36411993-06-03 Richard Stallman <rms@gnu.org>
3642
3643 * bison.simple: New file.
3644
36451993-05-19 Richard Stallman <rms@gnu.org>
3646
3647 * doc/bison.texinfo: New file.
3648
36491993-05-07 Noah Friedman <friedman@gnu.org>
3650
3651 * Makefile.in: *** empty log message ***
3652
36531993-04-28 Noah Friedman <friedman@gnu.org>
3654
3655 * src/reader.c: *** empty log message ***
3656
36571993-04-23 Noah Friedman <friedman@gnu.org>
3658
3659 * src/alloc.h: entered into RCS
3660
36611993-04-20 David J. MacKenzie <djm@gnu.org>
3662
3663 * src/version.c: *** empty log message ***
3664
3665 * src/files.c, src/allocate.c:
3666 entered into RCS
3667
3668 * src/reader.c: *** empty log message ***
3669
3670 * src/lex.c: entered into RCS
3671
3672 * src/conflicts.c: New file.
3673
3674 * src/symtab.c: entered into RCS
3675
3676 * src/alloc.h: New file.
3677
3678 * src/LR0.c: entered into RCS
3679
36801993-04-18 Noah Friedman <friedman@gnu.org>
3681
3682 * src/reader.c: New file.
3683
3684 * src/version.c: *** empty log message ***
3685
36861993-04-18 Noah Friedman <friedman@gnu.org>
3687
3688 * Makefile.in: *** empty log message ***
3689
36901993-04-17 Noah Friedman <friedman@gnu.org>
3691
3692 * Makefile.in: *** empty log message ***
3693
36941993-04-15 Richard Stallman <rms@gnu.org>
3695
3696 * src/main.c, src/files.c:
3697 New file.
3698
36991993-04-15 Noah Friedman <friedman@gnu.org>
3700
3701 * configure.in: entered into RCS
3702
3703 * configure.in: *** empty log message ***
3704
3705 * configure.in: New file.
3706
37071993-04-14 Richard Stallman <rms@gnu.org>
3708
3709 * Makefile.in: New file.
3710
37111993-04-13 Richard Stallman <rms@gnu.org>
3712
3713 * src/version.c: New file.
3714
37151993-03-25 Richard Stallman <rms@gnu.org>
3716
3717 * src/output.c: entered into RCS
3718
37191992-09-25 Richard Stallman <rms@gnu.org>
3720
3721 * configure.bat: entered into RCS
3722
37231992-06-22 Richard Stallman <rms@gnu.org>
3724
3725 * src/vmsgetargs.c: entered into RCS
3726
37271992-06-22 Richard Stallman <rms@gnu.org>
3728
3729 * doc/bison.rnh: entered into RCS
3730
37311992-04-20 David J. MacKenzie <djm@gnu.org>
3732
3733 * README: entered into RCS
3734
37351992-01-22 Richard Stallman <rms@gnu.org>
3736
3737 * src/machine.h: entered into RCS
3738
37391991-12-21 Richard Stallman <rms@gnu.org>
3740
3741 * src/lalr.c, src/closure.c:
3742 entered into RCS
3743
37441991-12-20 Richard Stallman <rms@gnu.org>
3745
3746 * src/state.h: entered into RCS
3747
37481991-12-18 Richard Stallman <rms@gnu.org>
3749
3750 * src/print.c, src/nullable.c, src/derives.c:
3751 entered into RCS
3752
37531991-11-03 David J. MacKenzie <djm@gnu.org>
3754
3755 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
3756 entered into RCS
3757
37581988-09-09 Richard Stallman <rms@gnu.org>
3759
3760 * src/bison.hairy: entered into RCS
3761
37621987-12-16 Richard Stallman <rms@gnu.org>
3763
3764 * REFERENCES: entered into RCS