]> git.saurik.com Git - bison.git/blob - ChangeLog
* src/files.c (action_obstack): Remove, unused.
[bison.git] / ChangeLog
1 2002-06-14 Akim Demaille <akim@epita.fr>
2
3 * src/files.c (action_obstack): Remove, unused.
4 (output_obstack): Remove it, and all its dependencies, as it is no
5 longer needed.
6 * src/reader.c (epilogue_set): Build the epilogue in the
7 muscle_obstack.
8 * src/output.h, src/output.c (muscle_obstack): Move to...
9 * src/muscle_tab.h, src/muscle_tab.h: here.
10 (muscle_init): Initialize muscle_obstack.
11 (muscle_free): New.
12 * src/main.c (main): Call it.
13
14
15 2002-06-14 Akim Demaille <akim@epita.fr>
16
17 * src/location.h: New, extracted from...
18 * src/reader.h: here.
19 * src/Makefile.am (noinst_HEADERS): Merge into
20 (bison_SOURCES): this.
21 Add location.h.
22 * src/parse-gram.y: Use location_t instead of Bison's.
23 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
24 Use location_t instead of ints.
25
26
27 2002-06-14 Akim Demaille <akim@epita.fr>
28
29 * data/bison.simple, data/bison.c++: Be sure to restore the
30 current #line when returning to the skeleton contents after having
31 exposed the input file's #line.
32
33 2002-06-12 Akim Demaille <akim@epita.fr>
34
35 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
36 eager.
37 * tests/actions.at (Exotic Dollars): New.
38
39 2002-06-12 Akim Demaille <akim@epita.fr>
40
41 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
42 ['"/] too eagerly.
43 * tests/input.at (Torturing the Scanner): New.
44
45 2002-06-11 Akim Demaille <akim@epita.fr>
46
47 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
48 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
49 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
50 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
51 * src/reader.c (reader): Use it.
52
53 2002-06-11 Akim Demaille <akim@epita.fr>
54
55 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
56 Adjust all callers.
57 (scanner_last_string_free): New.
58
59 2002-06-11 Akim Demaille <akim@epita.fr>
60
61 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
62 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
63 (last_string, YY_OBS_FREE): New.
64 Use them when returning an ID.
65
66 2002-06-11 Akim Demaille <akim@epita.fr>
67
68 Have Bison grammars parsed by a Bison grammar.
69
70 * src/reader.c, src/reader.h (prologue_augment): New.
71 * src/reader.c (copy_definition): Remove.
72
73 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
74 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
75 (grammar_current_rule_prec_set, grammar_current_rule_check)
76 (grammar_current_rule_symbol_append)
77 (grammar_current_rule_action_append): Export.
78 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
79 (symbol_list_action_append): Remove.
80 Hook the routines from reader.
81 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
82 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
83
84 * src/reader.c (read_declarations): Remove, unused.
85
86 * src/parse-gram.y: Handle the epilogue.
87 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
88 (grammar_start_symbol_set): this.
89 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
90 * src/reader.c (readgram): Remove, unused.
91 (reader): Adjust to insert eoftoken and axiom where appropriate.
92
93 * src/reader.c (copy_dollar): Replace with...
94 * src/scan-gram.h (handle_dollar): this.
95 * src/parse-gram.y: Remove `%thong'.
96
97 * src/reader.c (copy_at): Replace with...
98 * src/scan-gram.h (handle_at): this.
99
100 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
101 New.
102
103 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
104 time being.
105
106 * src/reader.h, src/reader.c (grammar_rule_end): New.
107
108 * src/parse.y (current_type, current_class): New.
109 Implement `%nterm', `%token' support.
110 Merge `%term' into `%token'.
111 (string_as_id): New.
112 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
113 type name.
114
115 * src/parse-gram.y: Be sure to handle properly the beginning of
116 rules.
117
118 * src/parse-gram.y: Handle %type.
119 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
120
121 * src/parse-gram.y: More directives support.
122 * src/options.c: No longer handle source directives.
123
124 * src/parse-gram.y: Fix %output.
125
126 * src/parse-gram.y: Handle %union.
127 Use the prologue locations.
128 * src/reader.c (parse_union_decl): Remove.
129
130 * src/reader.h, src/reader.c (epilogue_set): New.
131 * src/parse-gram.y: Use it.
132
133 * data/bison.simple, data/bison.c++: b4_stype is now either not
134 defined, then default to int, or to the contents of %union,
135 without `union' itself.
136 Adjust.
137 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
138
139 * src/output.c (actions_output): Don't output braces, as they are
140 already handled by the scanner.
141
142 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
143 characters to themselves.
144
145 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
146 that the epilogue has a proper #line.
147
148 * src/parse-gram.y: Handle precedence/associativity.
149
150 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
151 a terminal.
152 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
153 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
154 at all to define terminals that cannot be emitted.
155
156 * src/scan-gram.l: Escape M4 characters.
157
158 * src/scan-gram.l: Working properly with escapes in user
159 strings/characters.
160
161 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
162 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
163 grammar.
164 Use more modest sizes, as for the time being the parser does not
165 release memory, and therefore the process swallows a huge amount
166 of memory.
167
168 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
169 stricter %token grammar.
170
171 * src/symtab.h (associativity): Add `undef_assoc'.
172 (symbol_precedence_set): Do nothing when passed an undef_assoc.
173 * src/symtab.c (symbol_check_alias_consistence): Adjust.
174
175 * tests/regression.at (Invalid %directive): Remove, as it is now
176 meaningless.
177 (Invalid inputs): Adjust to the new error messages.
178 (Token definitions): The new grammar doesn't allow too many
179 eccentricities.
180
181 * src/lex.h, src/lex.c: Remove.
182 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
183 (copy_character, copy_string2, copy_string, copy_identifier)
184 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
185 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
186 (parse_action): Remove.
187 * po/POTFILES.in: Adjust.
188
189 2002-06-11 Akim Demaille <akim@epita.fr>
190
191 * src/reader.c (parse_action): Don't store directly into the
192 rule's action member: return the action as a string.
193 Don't require `rule_length' as an argument: compute it.
194 (grammar_current_rule_symbol_append)
195 (grammar_current_rule_action_append): New, eved out from
196 (readgram): here.
197 Remove `action_flag', `rulelength', unused now.
198
199 2002-06-11 Akim Demaille <akim@epita.fr>
200
201 * src/reader.c (grammar_current_rule_prec_set).
202 (grammar_current_rule_check): New, eved out from...
203 (readgram): here.
204 Remove `xaction', `first_rhs': useless.
205 * tests/input.at (Type clashes): New.
206 * tests/existing.at (GNU Cim Grammar): Adjust.
207
208 2002-06-11 Akim Demaille <akim@epita.fr>
209
210 * src/reader.c (grammar_midrule_action): New, Eved out from
211 (readgram): here.
212
213 2002-06-11 Akim Demaille <akim@epita.fr>
214
215 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
216 New.
217 (readgram): Use them as replacement of inlined code, crule and
218 crule1.
219
220 2002-06-11 Akim Demaille <akim@epita.fr>
221
222 * src/reader.c (grammar_end, grammar_symbol_append): New.
223 (readgram): Use them.
224 Make the use of `p' as local as possible.
225
226 2002-06-10 Akim Demaille <akim@epita.fr>
227
228 GCJ's parser requires the tokens to be defined before the prologue.
229
230 * data/bison.simple: Output the token definition before the user's
231 prologue.
232 * tests/regression.at (Braces parsing, Duplicate string)
233 (Mixing %token styles): Check the output from bison.
234 (Early token definitions): New.
235
236 2002-06-10 Akim Demaille <akim@epita.fr>
237
238 * src/symtab.c (symbol_user_token_number_set): Don't complain when
239 assigning twice the same user number to a token, so that we can
240 use it in...
241 * src/lex.c (lex): here.
242 Also use `symbol_class_set' instead of hand written code.
243 * src/reader.c (parse_assoc_decl): Likewise.
244
245 2002-06-10 Akim Demaille <akim@epita.fr>
246
247 * src/symtab.c, src/symtab.c (symbol_class_set)
248 (symbol_user_token_number_set): New.
249 * src/reader.c (parse_token_decl): Use them.
250 Use a switch instead of ifs.
251 Use a single argument.
252
253 2002-06-10 Akim Demaille <akim@epita.fr>
254
255 Remove `%thong' support as it is undocumented, unused, duplicates
256 `%token's job, and creates useless e-mail traffic with people who
257 want to know what it is, why it is undocumented, unused, and
258 duplicates `%token's job.
259
260 * src/reader.c (parse_thong_decl): Remove.
261 * src/options.c (option_table): Remove "thong".
262 * src/lex.h (tok_thong): Remove.
263
264 2002-06-10 Akim Demaille <akim@epita.fr>
265
266 * src/symtab.c, src/symtab.c (symbol_type_set)
267 (symbol_precedence_set): New.
268 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
269 (value_components_used): Remove, unused.
270
271 2002-06-09 Akim Demaille <akim@epita.fr>
272
273 Move symbols handling code out of the reader.
274
275 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
276 (axiom): Move to...
277 * src/symtab.h, src/symtab.c: here.
278
279 * src/gram.c (start_symbol): Remove: use startsymbol->number.
280 * src/reader.c (startval): Rename as...
281 * src/symtab.h, src/symtab.c (startsymbol): this.
282 * src/reader.c: Adjust.
283
284 * src/reader.c (symbol_check_defined, symbol_make_alias)
285 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
286 (token_translations_init)
287 Move to...
288 * src/symtab.c: here.
289 * src/reader.c (packsymbols): Move to...
290 * src/symtab.h, src/symtab.c (symbols_pack): here.
291 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
292 argument.
293
294 2002-06-03 Akim Demaille <akim@epita.fr>
295
296 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
297 then statements.
298
299 2002-06-03 Akim Demaille <akim@epita.fr>
300
301 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
302 structs with non literals.
303 * src/scan-skel.l: never-interactive.
304 * src/conflicts.c (enum conflict_resolution_e): No trailing
305 comma.
306 * src/getargs.c (usage): Split long literal strings.
307 Reported by Hans Aberg.
308
309 2002-05-28 Akim Demaille <akim@epita.fr>
310
311 * data/bison.c++: Use C++ ostreams.
312 (cdebug_): New member.
313
314 2002-05-28 Akim Demaille <akim@epita.fr>
315
316 * src/output.c (output_skeleton): Be sure to allocate enough room
317 for `/' _and_ for `\0' in full_skeleton.
318
319 2002-05-28 Akim Demaille <akim@epita.fr>
320
321 * data/bison.c++: Catch up with bison.simple:
322 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
323 and Paul Eggert <eggert@twinsun.com>: `error' handing.
324 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
325 and popping traces.
326
327 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
328
329 * src/output.c (output_skeleton): Put an explicit path in front of
330 the skeleton file name, rather than relying on the -I directory,
331 to partially alleviate effects of having a skeleton file lying around
332 in the current directory.
333
334 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
335
336 * src/conflicts.c (log_resolution): Correct typo:
337 obstack_printf should be obstack_fgrow1.
338
339 2002-05-26 Akim Demaille <akim@epita.fr>
340
341 * src/state.h (state_t): `solved_conflicts' is a new member.
342 * src/LR0.c (new_state): Set it to 0.
343 * src/conflicts.h, src/conflicts.c (print_conflicts)
344 (free_conflicts, solve_conflicts): Rename as...
345 (conflicts_print, conflicts_free, conflicts_solve): these.
346 Adjust callers.
347 * src/conflicts.c (enum conflict_resolution_e)
348 (solved_conflicts_obstack): New, used by...
349 (log_resolution): this.
350 Adjust to attach the conflict resolution to each state.
351 Complete the description with the precedence/associativity
352 information.
353 (resolve_sr_conflict): Adjust.
354 * src/print.c (print_state): Output its solved_conflicts.
355 * tests/conflicts.at (Unresolved SR Conflicts)
356 (Solved SR Conflicts): Exercise --report=all.
357
358 2002-05-26 Akim Demaille <akim@epita.fr>
359
360 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
361 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
362 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
363 (token_number_t, item_number_as_token_number)
364 (token_number_as_item_number, muscle_insert_token_number_table):
365 Rename as...
366 (symbol_number_t, item_number_as_symbol_number)
367 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
368 these, since it is more appropriate.
369
370 2002-05-26 Akim Demaille <akim@epita.fr>
371
372 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
373 `Error:' lines.
374 * data/bison.simple (yystos) [YYDEBUG]: New.
375 (yyparse) [YYDEBUG]: Display the symbols which are popped during
376 error recovery.
377 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
378
379 2002-05-25 Akim Demaille <akim@epita.fr>
380
381 * doc/bison.texinfo (Debugging): Split into...
382 (Tracing): this new section, its former contents, and...
383 (Understanding): this new section.
384 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
385 by...
386 (report_flag): this.
387 Adjust all dependencies.
388 (report_args, report_types, report_argmatch): New.
389 (usage, getargs): Report/support -r, --report.
390 * src/options.h
391 (struct option_table_struct): Rename as..,
392 (struct option_table_s): this.
393 Rename the `set_flag' member to `flag' to match with getopt_long's
394 struct.
395 * src/options.c (option_table): Split verbose into an entry for
396 %verbose, and another for --verbose.
397 Support --report/-r, so remove -r from the obsolete --raw.
398 * src/print.c: Attach full item sets and lookaheads reports to
399 report_flag instead of trace_flag.
400 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
401
402 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
403 and Paul Eggert <eggert@twinsun.com>
404
405 * data/bison.simple (yyparse): Correct error handling to conform to
406 POSIX and yacc. Specifically, after syntax error is discovered,
407 do not reduce further before shifting the error token.
408 Clean up the code a bit by removing the labels yyerrdefault,
409 yyerrhandle, yyerrpop.
410 * NEWS: Document the above.
411
412 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
413
414 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
415 type; it isn't always big enough, since it doesn't necessarily
416 include non-terminals.
417 (yytranslate): Expand definition of yy_token_number_type, so that
418 the latter can be removed.
419 (yy_token_number_type): Remove, only one use.
420 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
421 don't use TokenNumberType as element type.
422
423 * tests/regression.at: Modify expected output to agree with change
424 to yyr1 and yytranslate.
425
426 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
427
428 * src/reader.c (parse_action): Use copy_character instead of
429 obstack_1grow.
430
431 2002-05-13 Akim Demaille <akim@epita.fr>
432
433 * tests/regression.at (Token definitions): Prototype yylex and
434 yyerror.
435
436 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
437
438 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
439 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
440 32-bit arithmetic.
441 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
442
443 2002-05-07 Akim Demaille <akim@epita.fr>
444
445 * tests/synclines.at: Be sure to prototype yylex and yyerror to
446 avoid GCC warnings.
447
448 2002-05-07 Akim Demaille <akim@epita.fr>
449
450 Kill GCC warnings.
451
452 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
453 over the RHS of each rule.
454 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
455 * src/state.h (state_t): Member `nitems' is unsigned short.
456 * src/LR0.c (get_state): Adjust.
457 * src/reader.c (packgram): Likewise.
458 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
459 `Type'.
460 (muscle_insert_int_table): Remove, unused.
461 (prepare_rules): Remove `max'.
462
463 2002-05-06 Akim Demaille <akim@epita.fr>
464
465 * src/closure.c (print_firsts): Display of the symbol tags.
466 (bitmatrix_print): Move to...
467 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
468 here.
469 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
470
471 2002-05-06 Akim Demaille <akim@epita.fr>
472
473 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
474 hash_do_for_each.
475
476 2002-05-06 Akim Demaille <akim@epita.fr>
477
478 * src/LR0.c (new_state, get_state): Instead of using the global
479 `kernel_size' and `kernel_base', have two new arguments:
480 `core_size' and `core'.
481 Adjust callers.
482
483 2002-05-06 Akim Demaille <akim@epita.fr>
484
485 * src/reader.c (packgram): No longer end `ritem' with a 0
486 sentinel: it is not used.
487
488 2002-05-05 Akim Demaille <akim@epita.fr>
489
490 New experimental feature: display the lookaheads in the report and
491 graph.
492
493 * src/print (print_core): When --trace-flag, display the rules
494 lookaheads.
495 * src/print_graph.c (print_core): Likewise.
496 Swap the arguments.
497 Adjust caller.
498
499 2002-05-05 Akim Demaille <akim@epita.fr>
500
501 * tests/torture.at (Many lookaheads): New test.
502
503 2002-05-05 Akim Demaille <akim@epita.fr>
504
505 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
506 (GENERATE_MUSCLE_INSERT_TABLE): this.
507 (output_int_table, output_unsigned_int_table, output_short_table)
508 (output_token_number_table, output_item_number_table): Replace with...
509 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
510 (muscle_insert_short_table, muscle_insert_token_number_table)
511 (muscle_insert_item_number_table): these.
512 Adjust all callers.
513 (prepare_tokens): Don't free `translations', since...
514 * src/reader.h, src/reader.c (grammar_free): do it.
515 Move to...
516 * src/gram.h, src/gram.c (grammar_free): here.
517 * data/bison.simple, data/bison.c++: b4_token_number_max is now
518 b4_translate_max.
519
520 2002-05-05 Akim Demaille <akim@epita.fr>
521
522 * src/output.c (output_unsigned_int_table): New.
523 (prepare_rules): `i' is unsigned.
524 `prhs', `rline', `r2' are unsigned int.
525 Rename muscle `rhs_number_max' as `rhs_max'.
526 Output muscles `prhs_max', `rline_max', and `r2_max'.
527 Free rline and r1.
528 * data/bison.simple, data/bison.c++: Adjust to use these muscles
529 to compute types instead of constant types.
530 * tests/regression.at (Web2c Actions): Adjust.
531
532 2002-05-04 Akim Demaille <akim@epita.fr>
533
534 * src/symtab.h (SALIAS, SUNDEF): Rename as...
535 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
536 Adjust dependencies.
537 * src/output.c (token_definitions_output): Be sure not to output a
538 `#define 'a'' when fed with `%token 'a' "a"'.
539 * tests/regression.at (Token definitions): New.
540
541 2002-05-03 Paul Eggert <eggert@twinsun.com>
542
543 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
544 for K&R C.
545
546 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
547
548 * Makefile.am (SUBDIRS): Remove intl.
549 (EXTRA_DIST): Add config/config.rpath.
550
551 2002-05-03 Akim Demaille <akim@epita.fr>
552
553 * data/bison.simple (m4_if): Don't output empty enums.
554 And actually, output valid enum definitions :(.
555
556 2002-05-03 Akim Demaille <akim@epita.fr>
557
558 * configure.bat: Remove, completely obsolete.
559 * Makefile.am (EXTRA_DIST): Adjust.
560 Don't distribute config.rpath...
561 * config/Makefile.am (EXTRA_DIST): Do it.
562
563 2002-05-03 Akim Demaille <akim@epita.fr>
564
565 * configure.in (GETTEXT_VERSION): New.
566 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
567
568 2002-05-03 Akim Demaille <akim@epita.fr>
569
570 * data/bison.simple (b4_token_enum): New.
571 (b4_token_defines): Use it to output tokens both as #define and
572 enums.
573 Suggested by Paul Eggert.
574 * src/output.c (token_definitions_output): Don't output spurious
575 white spaces.
576
577 2002-05-03 Akim Demaille <akim@epita.fr>
578
579 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
580
581 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
582
583 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
584 Update the stack class, give a try to deque as the default container.
585
586 2002-05-02 Akim Demaille <akim@epita.fr>
587
588 * data/bison.simple (yyparse): Do not implement @$ = @1.
589 (YYLLOC_DEFAULT): Adjust to do it.
590 * doc/bison.texinfo (Location Default Action): Fix.
591
592 2002-05-02 Akim Demaille <akim@epita.fr>
593
594 * src/reader.c (parse_braces): Merge into...
595 (parse_action): this.
596
597 2002-05-02 Akim Demaille <akim@epita.fr>
598
599 * configure.in (ALL_LINGUAS): Remove.
600 * po/LINGUAS, hr.po: New.
601
602 2002-05-02 Akim Demaille <akim@epita.fr>
603
604 Remove the so called hairy (semantic) parsers.
605
606 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
607 * src/gram.h, src/gram.c (semantic_parser): Remove.
608 (rule_t): Remove the guard and guard_line members.
609 * src/lex.h (token_t): remove tok_guard.
610 * src/options.c (option_table): Remove %guard and %semantic_parser
611 support.
612 * src/output.c, src/output.h (guards_output): Remove.
613 (prepare): Adjust.
614 (token_definitions_output): Don't output the `T'
615 tokens (???).
616 (output_skeleton): Don't output the guards.
617 * src/files.c, src/files.c (attrsfile): Remove.
618 * src/reader.c (symbol_list): Remove the guard and guard_line
619 members.
620 Adjust dependencies.
621 (parse_guard): Remove.
622 * data/bison.hairy: Remove.
623 * doc/bison.texinfo (Environment Variables): Remove occurrences of
624 BISON_HAIRY.
625
626 2002-05-02 Akim Demaille <akim@epita.fr>
627
628 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
629 (parse_guard): Rename the formal argument `stack_offset' as
630 `rule_length', which is more readable.
631 Adjust callers.
632 (copy_at, copy_dollar): Instead of outputting the hard coded
633 values of $$, $n and so forth, output invocation to b4_lhs_value,
634 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
635 Note: this patch partially drops `semantic-parser' support: it
636 always does `rule_length - n', where semantic parsers ought to
637 always use `-n'.
638 * data/bison.simple, data/bison.c++ (b4_lhs_value)
639 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
640
641 2002-05-02 Akim Demaille <akim@epita.fr>
642
643 * configure.in (AC_INIT): Bump to 1.49b.
644 (AM_INIT_AUTOMAKE): Short invocation.
645
646 2002-05-02 Akim Demaille <akim@epita.fr>
647
648 Version 1.49a.
649
650 2002-05-01 Akim Demaille <akim@epita.fr>
651
652 * src/skeleton.h: Remove.
653
654 2002-05-01 Akim Demaille <akim@epita.fr>
655
656 * src/skeleton.h: Fix the #endif.
657 Reported by Magnus Fromreide.
658
659 2002-04-26 Paul Eggert <eggert@twinsun.com>
660
661 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
662 Define if we define YYSTYPE and YYLTYPE, respectively.
663 (YYCOPY): Fix [] quoting problem in the non-GCC case.
664
665 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
666
667 * src/scan-skel.l: Postprocess quadrigraphs.
668
669 * src/reader.c (copy_character): New function, used to output
670 single characters while replacing `[' and `]' with quadrigraphs, to
671 avoid troubles with M4 quotes.
672 (copy_comment): Output characters with copy_character.
673 (read_additionnal_code): Likewise.
674 (copy_string2): Likewise.
675 (copy_definition): Likewise.
676
677 * tests/calc.at: Exercise M4 quoting.
678
679 2002-04-25 Akim Demaille <akim@epita.fr>
680
681 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
682 between `!' and the command.
683 Reported by Paul Eggert.
684
685 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
686
687 * tests/calc.at: Exercise prologue splitting.
688
689 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
690 `b4_post_prologue' instead of `b4_prologue'.
691
692 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
693 muscles.
694 (output): Free pre_prologue_obstack and post_prologue_obstack.
695 * src/files.h, src/files.c (attrs_obstack): Remove.
696 (pre_prologue_obstack, post_prologue_obstack): New.
697 * src/reader.c (copy_definition): Add a parameter to specify the
698 obstack to fill, instead of using attrs_obstack unconditionally.
699 (read_declarations): Pass pre_prologue_obstack to copy_definition if
700 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
701
702 2002-04-23 Paul Eggert <eggert@twinsun.com>
703
704 * data/bison.simple: Remove unnecessary commentary and white
705 space differences from 1_29-branch.
706 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
707
708 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
709 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
710 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
711 constructors or destructors.
712
713 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
714
715 2002-04-23 Akim Demaille <akim@epita.fr>
716
717 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
718 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
719 location with columns.
720 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
721 All reported by Paul Eggert.
722
723 2002-04-22 Akim Demaille <akim@epita.fr>
724
725 * src/reduce.c (dump_grammar): Move to...
726 * src/gram.h, src/gram.c (grammar_dump): here.
727 Be sure to separate long item numbers.
728 Don't read the members of a rule's prec if its nil.
729
730 2002-04-22 Akim Demaille <akim@epita.fr>
731
732 * src/output.c (table_size, table_grow): New.
733 (MAXTABLE): Remove, replace uses with table_size.
734 (pack_vector): Instead of dying when the table is too big, grow it.
735
736 2002-04-22 Akim Demaille <akim@epita.fr>
737
738 * data/bison.simple (yyr1): Its type is that of a token number.
739 * data/bison.c++ (r1_): Likewise.
740 * tests/regression.at (Web2c Actions): Adjust.
741
742 2002-04-22 Akim Demaille <akim@epita.fr>
743
744 * src/reader.c (token_translations_init): 256 is now the default
745 value for the error token, i.e., it will be assigned another
746 number if the user assigned 256 to one of her tokens.
747 (reader): Don't force 256 to error.
748 * doc/bison.texinfo (Symbols): Adjust.
749 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
750 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
751 etc. instead of 10, 20, 30 (which was used to `jump' over error
752 (256) and undefined (2)).
753
754 2002-04-22 Akim Demaille <akim@epita.fr>
755
756 Propagate more token_number_t.
757
758 * src/gram.h (token_number_as_item_number)
759 (item_number_as_token_number): New.
760 * src/output.c (GENERATE_OUTPUT_TABLE): New.
761 Use it to create output_item_number_table and
762 output_token_number_table.
763 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
764 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
765 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
766 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
767
768 2002-04-22 Akim Demaille <akim@epita.fr>
769
770 * src/output.h, src/output.c (get_lines_number): Remove.
771
772 2002-04-19 Akim Demaille <akim@epita.fr>
773
774 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
775 as Lex/Flex'.
776 (Debugging): More details about enabling the debugging features.
777 (Table of Symbols): Describe $$, $n, @$, and @n.
778 Suggested by Tim Josling.
779
780 2002-04-19 Akim Demaille <akim@epita.fr>
781
782 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
783
784 2002-04-10 Akim Demaille <akim@epita.fr>
785
786 * src/system.h: Rely on HAVE_LIMITS_H.
787 Suggested by Paul Eggert.
788
789 2002-04-09 Akim Demaille <akim@epita.fr>
790
791 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
792 full stderr, and strip it according to the bison options, instead
793 of composing the error message from different bits.
794 This makes it easier to check for several error messages.
795 Adjust all the invocations.
796 Add an invocation exercising the error token.
797 Add an invocation demonstrating a stupid error message.
798 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
799 Adjust the tests.
800 Error message are for stderr, not stdout.
801
802 2002-04-09 Akim Demaille <akim@epita.fr>
803
804 * src/gram.h, src/gram.c (error_token_number): Remove, use
805 errtoken->number.
806 * src/reader.c (reader): Don't specify the user token number (2)
807 for $undefined, as it uselessly prevents using it.
808 * src/gram.h (token_number_t): Move to...
809 * src/symtab.h: here.
810 (state_t.number): Is a token_number_t.
811 * src/print.c, src/reader.c: Use undeftoken->number instead of
812 hard coded 2.
813 (Even though this 2 is not the same as above: the number of the
814 undeftoken remains being 2, it is its user token number which
815 might not be 2).
816 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
817 `user_token_number_max'.
818 Output `undef_token_number'.
819 * data/bison.simple, data/bison.c++: Use them.
820 Be sure to map invalid yylex return values to
821 `undef_token_number'. This saves us from gratuitous SEGV.
822
823 * tests/conflicts.at (Solved SR Conflicts)
824 (Unresolved SR Conflicts): Adjust.
825 * tests/regression.at (Web2c Actions): Adjust.
826
827 2002-04-08 Akim Demaille <akim@epita.fr>
828
829 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
830 Adding #line.
831 Remove the duplicate `typedefs'.
832 (RhsNumberType): Fix the declaration and various other typos.
833 Use __ofile__.
834 * data/bison.simple: Use __ofile__.
835 * src/scan-skel.l: Handle __ofile__.
836
837 2002-04-08 Akim Demaille <akim@epita.fr>
838
839 * src/gram.h (item_number_t): New, the type of item numbers in
840 RITEM. Note that it must be able to code symbol numbers as
841 positive number, and the negation of rule numbers as negative
842 numbers.
843 Adjust all dependencies (pretty many).
844 * src/reduce.c (rule): Remove this `short *' pointer: use
845 item_number_t.
846 * src/system.h (MINSHORT, MAXSHORT): Remove.
847 Include `limits.h'.
848 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
849 (shortcpy): Remove.
850 (MAXTABLE): Move to...
851 * src/output.c (MAXTABLE): here.
852 (prepare_rules): Use output_int_table to output rhs.
853 * data/bison.simple, data/bison.c++: Adjust.
854 * tests/torture.at (Big triangle): Move the limit from 254 to
855 500.
856 * tests/regression.at (Web2c Actions): Ajust.
857
858 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
859 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
860 passes, but produces negative #line number, once fixed, GCC is
861 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
862 C), it passes.
863 * src/state.h (state_h): Code input lines on ints, not shorts.
864
865 2002-04-08 Akim Demaille <akim@epita.fr>
866
867 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
868 and then the grammar.
869
870 2002-04-08 Akim Demaille <akim@epita.fr>
871
872 * src/system.h: No longer using strndup.
873
874 2002-04-07 Akim Demaille <akim@epita.fr>
875
876 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
877 * src/output.c (output_table_data): Return the longest number.
878 (prepare_tokens): Output `token_number_max').
879 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
880 New.
881 Use them to define yy_token_number_type/TokenNumberType.
882 Use this type for yytranslate.
883 * tests/torture.at (Big triangle): Push the limit from 124 to
884 253.
885 * tests/regression.at (Web2c Actions): Adjust.
886
887 2002-04-07 Akim Demaille <akim@epita.fr>
888
889 * tests/torture.at (Big triangle): New.
890 (GNU AWK Grammar, GNU Cim Grammar): Move to...
891 * tests/existing.at: here.
892
893 2002-04-07 Akim Demaille <akim@epita.fr>
894
895 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
896 nritems.
897 Adjust dependencies.
898
899 2002-04-07 Akim Demaille <akim@epita.fr>
900
901 * src/reader.c: Normalize increments to prefix form.
902
903 2002-04-07 Akim Demaille <akim@epita.fr>
904
905 * src/reader.c, symtab.c: Remove debugging code.
906
907 2002-04-07 Akim Demaille <akim@epita.fr>
908
909 Rename all the `bucket's as `symbol_t'.
910
911 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
912 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
913 * src/symtab.c, src/symtab.h (bucket): Rename as...
914 (symbol_t): this.
915 (symbol_list_new, bucket_check_defined, bucket_make_alias)
916 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
917 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
918 (buckets_new, buckets_free, buckets_do): Rename as...
919 (symbol_list_new, symbol_check_defined, symbol_make_alias)
920 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
921 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
922 (symbols_new, symbols_free, symbols_do): these.
923
924 2002-04-07 Akim Demaille <akim@epita.fr>
925
926 Use lib/hash for the symbol table.
927
928 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
929 EOF.
930 * src/lex.c (lex): Set the `number' member of new terminals.
931 * src/reader.c (bucket_check_defined, bucket_make_alias)
932 (bucket_check_alias_consistence, bucket_translation): New.
933 (reader, grammar_free, readgram, token_translations_init)
934 (packsymbols): Adjust.
935 (reader): Number the predefined tokens.
936 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
937 for predefined tokens.
938 * src/symtab.h (bucket): Remove all the hash table related
939 members.
940 * src/symtab.c (symtab): Replace by...
941 (bucket_table): this.
942 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
943 (buckets_new, buckets_do): New.
944
945 2002-04-07 Akim Demaille <akim@epita.fr>
946
947 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
948 (start_symbol, max_user_token_number, semantic_parser)
949 (error_token_number): Initialize.
950 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
951 Initialize.
952 (reader): Don't.
953 (errtoken, eoftoken, undeftoken, axiom): Extern.
954
955 2002-04-07 Akim Demaille <akim@epita.fr>
956
957 * src/gram.h (rule_s): prec and precsym are now pointers
958 to the bucket giving the priority/associativity.
959 Member `associativity' removed: useless.
960 * src/reduce.c, src/conflicts.c: Adjust.
961
962 2002-04-07 Akim Demaille <akim@epita.fr>
963
964 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
965 Properly escape the symbols' TAG when outputting them.
966
967 2002-04-07 Akim Demaille <akim@epita.fr>
968
969 * src/lalr.h (LA): Is a bitsetv, not bitset*.
970
971 2002-04-07 Akim Demaille <akim@epita.fr>
972
973 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
974 (LArule): this, which is an array to rule_t*.
975 * src/print.c, src/conflicts.c: Adjust.
976
977 2002-04-07 Akim Demaille <akim@epita.fr>
978
979 * src/gram.h (rule_t): Rename `number' as `user_number'.
980 `number' is a new member.
981 Adjust dependencies.
982 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
983
984 2002-04-07 Akim Demaille <akim@epita.fr>
985
986 As a result of the previous patch, it is no longer needed
987 to reorder ritem itself.
988
989 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
990
991 2002-04-07 Akim Demaille <akim@epita.fr>
992
993 Be sure never to walk through RITEMS, but use only data related to
994 the rules themselves. RITEMS should be banished.
995
996 * src/output.c (output_token_translations): Rename as...
997 (prepare_tokens): this.
998 In addition to `translate', prepare the muscles `tname' and
999 `toknum', which were handled by...
1000 (output_rule_data): this.
1001 Remove, and move the remainder of its outputs into...
1002 (prepare_rules): this new routines, which also merges content from
1003 (output_gram): this.
1004 (prepare_rules): Be sure never to walk through RITEMS.
1005 (output_stos): Rename as...
1006 (prepare_stos): this.
1007 (output): Always invoke prepare_states, after all, just don't use it
1008 in the output if you don't need it.
1009
1010 2002-04-07 Akim Demaille <akim@epita.fr>
1011
1012 * src/LR0.c (new_state): Display `nstates' as the name of the
1013 newly created state.
1014 Adjust to initialize first_state and last_state if needed.
1015 Be sure to distinguish the initial from the final state.
1016 (new_states): Create the itemset of the initial state, and use
1017 new_state.
1018 * src/closure.c (closure): Now that the initial state has its
1019 items properly set, there is no need for a special case when
1020 creating `ruleset'.
1021
1022 As a result, now the rule 0, reducing to $axiom, is visible in the
1023 outputs. Adjust the test suite.
1024
1025 * tests/conflicts.at (Solved SR Conflicts)
1026 (Unresolved SR Conflicts): Adjust.
1027 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
1028 * tests/conflicts.at (S/R in initial): New.
1029
1030 2002-04-07 Akim Demaille <akim@epita.fr>
1031
1032 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
1033 the RHS of the rules.
1034 * src/output.c (output_gram): Likewise.
1035
1036 2002-04-07 Akim Demaille <akim@epita.fr>
1037
1038 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
1039 bucket.
1040 Adjust all dependencies.
1041 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
1042 `number' of the buckets too.
1043 * src/gram.h: Include `symtab.h'.
1044 (associativity): Move to...
1045 * src/symtab.h: here.
1046 No longer include `gram.h'.
1047
1048 2002-04-07 Akim Demaille <akim@epita.fr>
1049
1050 * src/gram.h, src/gram.c (rules_rhs_length): New.
1051 (ritem_longest_rhs): Use it.
1052 * src/gram.h (rule_t): `number' is a new member.
1053 * src/reader.c (packgram): Set it.
1054 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
1055 the end of `rules', and count them out of `nrules'.
1056 (reduce_output, dump_grammar): Adjust.
1057 * src/print.c (print_grammar): It is no longer needed to check for
1058 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
1059 * tests/reduce.at (Reduced Automaton): New test.
1060
1061 2002-04-07 Akim Demaille <akim@epita.fr>
1062
1063 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
1064 lacking `+ 1' to nrules, Bison reported as useless a token if it
1065 was used solely to set the precedence of the last rule...
1066
1067 2002-04-07 Akim Demaille <akim@epita.fr>
1068
1069 * data/bison.c++, data/bison.simple: Don't output the current file
1070 name in #line, to avoid useless diffs between two identical
1071 outputs under different names.
1072
1073 2002-04-07 Akim Demaille <akim@epita.fr>
1074
1075 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
1076 Normalize loops to using `< nrules + 1', not `<= nrules'.
1077
1078 2002-04-07 Akim Demaille <akim@epita.fr>
1079
1080 * TODO: Update.
1081
1082 2002-04-07 Akim Demaille <akim@epita.fr>
1083
1084 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
1085 bucket.value as bucket.number.
1086
1087 2002-04-07 Akim Demaille <akim@epita.fr>
1088
1089 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
1090 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
1091 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
1092 RHS, instead of being an index in RITEMS.
1093
1094 2002-04-04 Paul Eggert <eggert@twinsun.com>
1095
1096 * doc/bison.texinfo: Update copyright date.
1097 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
1098 (Symbols): Warn about running Bison in one character set,
1099 but compiling and/or running in an incompatible one.
1100 Warn about character code 256, too.
1101
1102 2002-04-03 Paul Eggert <eggert@twinsun.com>
1103
1104 * src/bison.data (YYSTACK_ALLOC): Depend on whether
1105 YYERROR_VERBOSE is nonzero, not whether it is defined.
1106
1107 Merge changes from bison-1_29-branch.
1108
1109 2002-03-20 Paul Eggert <eggert@twinsun.com>
1110
1111 Merge fixes from Debian bison_1.34-1.diff.
1112
1113 * configure.in (AC_PREREQ): 2.53.
1114
1115 2002-03-20 Akim Demaille <akim@epita.fr>
1116
1117 * src/conflicts.c (log_resolution): Argument `resolution' is const.
1118
1119 2002-03-19 Paul Eggert <eggert@twinsun.com>
1120
1121 * src/bison.simple (YYCOPY): New macro.
1122 (YYSTACK_RELOCATE): Use it.
1123 Remove Type arg; no longer needed. All callers changed.
1124 (yymemcpy): Remove; no longer needed.
1125
1126 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
1127 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1128
1129 2002-03-19 Akim Demaille <akim@epita.fr>
1130
1131 Test and fix the #line outputs.
1132
1133 * tests/atlocal.at (GCC): New.
1134 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
1135 (Prologue synch line, ,%union synch line, Postprologue synch line)
1136 (Action synch line, Epilogue synch line): New tests.
1137 * src/reader.c (parse_union_decl): Define the muscle stype_line.
1138 * data/bison.simple, data/bison.c++: Use it.
1139
1140 2002-03-19 Akim Demaille <akim@epita.fr>
1141
1142 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
1143 (Solved SR Conflicts, %expect not enough, %expect right)
1144 (%expect too much): Move to...
1145 * tests/conflicts.at: this new file.
1146
1147 2002-03-19 Akim Demaille <akim@epita.fr>
1148
1149 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
1150 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
1151 that we can move to enums for instance.
1152 * src/output.c (token_definitions_output): Output a list of
1153 `token-name, token-number' instead of the #define.
1154 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
1155
1156 2002-03-14 Akim Demaille <akim@epita.fr>
1157
1158 Use Gettext 0.11.1.
1159
1160 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
1161
1162 * data/bison.c++: Make the user able to add members to the generated
1163 parser by subclassing.
1164
1165 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
1166
1167 * src/reader.c (read_additionnal_code): `c' should be an integer, not
1168 a character.
1169 Reported by Nicolas Tisserand and Nicolas Burrus.
1170
1171 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
1172
1173 * src/reader.c: Warn about lacking semi-colons, do not complain.
1174
1175 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
1176
1177 * data/bison.c++: Remove a debug line.
1178
1179 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
1180
1181 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
1182 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
1183 provide a default implementation.
1184
1185 2002-03-04 Akim Demaille <akim@epita.fr>
1186
1187 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
1188 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
1189 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
1190 * tests/semantic.at (Parsing Guards): Similarly.
1191 * src/reader.at (readgram): Complain if the last rule is not ended
1192 with a semi-colon.
1193
1194 2002-03-04 Akim Demaille <akim@epita.fr>
1195
1196 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
1197 * src/closure.c: here.
1198 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
1199 RTC.
1200 * src/warshall.h, src/warshall.c: Remove.
1201 * tests/sets.at (Broken Closure): Adjust.
1202
1203 2002-03-04 Akim Demaille <akim@epita.fr>
1204
1205 * src/output.c (output_skeleton): tempdir is const.
1206 bytes_read is unused.
1207
1208 2002-03-04 Akim Demaille <akim@epita.fr>
1209
1210 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
1211 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
1212 Update.
1213 From Michael Hayes.
1214
1215 2002-03-04 Akim Demaille <akim@epita.fr>
1216
1217 * src/closure.c (closure): `r' is unused.
1218
1219 2002-03-04 Akim Demaille <akim@epita.fr>
1220
1221 * tests/sets.at (Broken Closure): Add the ending `;'.
1222 * src/reader.at (readgram): Complain if a rule is not ended with a
1223 semi-colon.
1224
1225 2002-03-04 Akim Demaille <akim@epita.fr>
1226
1227 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
1228 (count_sr_conflicts): Use bitset_count.
1229 * src/reduce.c (inaccessable_symbols): Ditto.
1230 (bits_size): Remove.
1231 * src/warshall.h, src/warshall.c: Convert to bitsetv.
1232
1233 2002-03-04 Akim Demaille <akim@epita.fr>
1234
1235 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
1236 * src/reduce.c: Remove the `bitset_zero's following the
1237 `bitset_create's, as now it is performed by the latter.
1238
1239 2002-03-04 Akim Demaille <akim@epita.fr>
1240
1241 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
1242 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
1243 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
1244 latest sources from Michael.
1245
1246 2002-03-04 Akim Demaille <akim@epita.fr>
1247
1248 * src/output.c (output): Don't free the grammar.
1249 * src/reader.c (grammar_free): New.
1250 * src/main.c (main): Call it and don't free symtab here.
1251
1252 2002-03-04 Akim Demaille <akim@epita.fr>
1253
1254 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
1255 before returning.
1256 Reported by Benoit Perrot.
1257
1258 2002-03-04 Akim Demaille <akim@epita.fr>
1259
1260 Use bitset operations when possible, not loops over bits.
1261
1262 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
1263 bitset_or.
1264 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
1265 * src/reduce.c (useless_nonterminals): Formatting changes.
1266 * src/warshall.c (TC): Use bitset_or.
1267
1268 2002-03-04 Akim Demaille <akim@epita.fr>
1269
1270 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
1271 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
1272 Ditto.
1273
1274 2002-03-04 Akim Demaille <akim@epita.fr>
1275
1276 * src/lalr.c (F): Now a bitset*.
1277 Adjust all dependencies.
1278
1279 2002-03-04 Akim Demaille <akim@epita.fr>
1280
1281 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
1282 Adjust all dependencies.
1283
1284 2002-03-04 Akim Demaille <akim@epita.fr>
1285
1286 * src/L0.c, src/LR0.h (nstates): Be size_t.
1287 Adjust comparisons (signed vs unsigned).
1288 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
1289 bitset*.
1290 Adjust all dependencies.
1291
1292 2002-03-04 Akim Demaille <akim@epita.fr>
1293
1294 * src/closure.c (firsts): Now, also a bitset.
1295 Adjust all dependencies.
1296 (varsetsize): Remove, now unused.
1297 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
1298
1299 2002-03-04 Akim Demaille <akim@epita.fr>
1300
1301 * src/print.c: Convert to use bitset.h, not hand coded iterations
1302 over ints.
1303
1304 2002-03-04 Akim Demaille <akim@epita.fr>
1305
1306 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
1307
1308 2002-03-04 Akim Demaille <akim@epita.fr>
1309
1310 * src/closure.c (ruleset): Be a bitset.
1311 (rulesetsize): Remove.
1312
1313 2002-03-04 Akim Demaille <akim@epita.fr>
1314
1315 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
1316 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
1317 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
1318 * src/closure.c (fderives): Be an array of bitsets.
1319
1320 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
1321
1322 * data/bison.c++: Merge the two generated headers. Insert a copyright
1323 notice in each output file.
1324
1325 2002-02-28 Akim Demaille <akim@epita.fr>
1326
1327 * data/bison.c++: Copy the prologue of bison.simple to fetch
1328 useful M4 definitions, such as b4_header_guard.
1329
1330 2002-02-25 Akim Demaille <akim@epita.fr>
1331
1332 * src/getargs.c (version): Give the name of the authors, and use a
1333 translator friendly scheme for the bgr
1334 copyright notice.
1335
1336 2002-02-25 Akim Demaille <akim@epita.fr>
1337
1338 * src/output.c (header_output): Remove, now handled completely via
1339 M4.
1340
1341 2002-02-25 Akim Demaille <akim@epita.fr>
1342
1343 * m4/m4.m4: New, from CVS Autoconf.
1344 * configure.in: Invoke it.
1345 * src/output.c (output_skeleton): Use its result instead of the
1346 hard coded name.
1347
1348 2002-02-25 Akim Demaille <akim@epita.fr>
1349
1350 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
1351 Fileutils 4.1.5.
1352 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
1353 * src/output.c (output_skeleton): Use mkstemp to create a real
1354 temporary file.
1355 Move the filling of `skeleton' and its muscle to...
1356 (prepare): here.
1357 (output): Move the definition of the prologue muscle to...
1358 (prepare): here.
1359 * src/system.h (DEFAULT_TMPDIR): New.
1360
1361 2002-02-14 Paul Eggert <eggert@twinsun.com>
1362
1363 Remove the support for C++ namespace cleanliness; it was
1364 causing more problems than it was curing, since it didn't work
1365 properly on some nonstandard C++ compilers. This can wait
1366 for a proper C++ parser.
1367
1368 * NEWS: Document this.
1369 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
1370 of C++, as it's treated like C now.
1371 * src/bison.simple (YYSTD): Remove.
1372 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
1373 Treat C++ just like Standard C instead of trying to support
1374 namespace cleanliness.
1375
1376 2002-02-14 Akim Demaille <akim@epita.fr>
1377
1378 * tests/regression.at (else): Adjust to Andreas' change.
1379
1380 2002-02-14 Akim Demaille <akim@epita.fr>
1381
1382 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
1383
1384 2002-02-13 Andreas Schwab <schwab@suse.de>
1385
1386 * src/output.c (output_rule_data): Don't output NULL, it might
1387 not be defined yet.
1388
1389 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
1390
1391 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
1392 (Copyright notice): Update.
1393
1394 2002-02-11 Akim Demaille <akim@epita.fr>
1395
1396 * tests/regression.at (%nonassoc and eof): Don't include
1397 nonportable headers.
1398
1399 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
1400
1401 * data/bison.c++: Correct error recovery. Make the user able to
1402 initialize the starting location.
1403
1404 2002-02-07 Akim Demaille <akim@epita.fr>
1405
1406 * tests/input.at: New.
1407
1408 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
1409
1410 * data/bison.c++: Replace some direct m4 expansions by constants. Be
1411 more consistent when naming methods and variables. Put preprocessor
1412 directives around tables only needed for debugging.
1413
1414 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
1415
1416 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
1417 C++ parsers.
1418 (yy::b4_name::parse): Use print_.
1419
1420 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
1421
1422 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
1423
1424 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
1425
1426 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
1427 C++ parsers.
1428 (yy::b4_name::parse): Build verbose error messages, and use error_.
1429
1430 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
1431
1432 * data/bison.c++: Fix m4 quoting in comments.
1433
1434 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
1435
1436 * data/bison.c++: Adjust the parser code. Fix some muscles that were
1437 not expanded by m4.
1438
1439 2002-02-05 Akim Demaille <akim@epita.fr>
1440
1441 * data/bison.c++: Adjust to the M4 back end.
1442 More is certainly needed.
1443
1444 2002-02-05 Akim Demaille <akim@epita.fr>
1445
1446 Give a try to M4 as a back end.
1447
1448 * lib/readpipe.c: New, from wdiff.
1449 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
1450 BISON_HAIRY.
1451 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
1452 specific values. Now it is m4 that performs the lookup.
1453 * src/parse-skel.y: Remove.
1454 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
1455 * src/output.c (actions_output, guards_output)
1456 (token_definitions_output): No longer keeps track of the output
1457 line number, hence remove the second argument.
1458 (guards_output): Check against the guard member of a rule, not the
1459 action member.
1460 Adjust callers.
1461 (output_skeleton): Don't look for the skeleton location, let m4 do
1462 that.
1463 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
1464 file will be used.
1465 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
1466 (prepare): Given that for the time being changesyntax is not
1467 usable in M4, rename the muscles using `-' to `_'.
1468 Define `defines_flag', `output_parser_name' and `output_header_name'.
1469 * src/output.h (actions_output, guards_output)
1470 (token_definitions_output): Adjust prototypes.
1471 * src/scan-skel.l: Instead of scanning the skeletons, it now
1472 processes the output of m4: `__oline__' and `#output'.
1473 * data/bison.simple: Adjust to be used by M4(sugar).
1474 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
1475 to date.
1476 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
1477 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
1478 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
1479 shamelessly stolen from CVS Autoconf.
1480
1481 2002-02-05 Akim Demaille <akim@epita.fr>
1482
1483 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
1484 * configure.in: Check for the declarations of free and malloc.
1485 * src/muscle_tab.c: Adjust.
1486
1487 2002-02-05 Akim Demaille <akim@epita.fr>
1488
1489 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
1490 which have no values.
1491
1492 2002-02-05 Akim Demaille <akim@epita.fr>
1493
1494 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
1495 * data/: here.
1496
1497 2002-01-29 Paul Eggert <eggert@twinsun.com>
1498
1499 * src/bison.simple (YYSIZE_T): Do not define merely because
1500 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
1501 On some platforms, <alloca.h> does not declare YYSTD (size_t).
1502
1503 2002-01-27 Akim Demaille <akim@epita.fr>
1504
1505 Fix `%nonassoc and eof'.
1506
1507 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
1508 which were not properly copied! Replace
1509 memcpy (res->errs, src->errs, src->nerrs);
1510 with
1511 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
1512 !!!
1513 * tests/regression.at (%nonassoc and eof): Adjust to newest
1514 Autotest: `.' is not in the PATH.
1515
1516 2002-01-27 Akim Demaille <akim@epita.fr>
1517
1518 * tests/sets.at (AT_EXTRACT_SETS): New.
1519 (Nullable): Use it.
1520 (Firsts): New.
1521
1522 2002-01-26 Akim Demaille <akim@epita.fr>
1523
1524 * tests/actions.at, tests/calc.at, tests/headers.at,
1525 * tests/torture.at: Adjust to the newest Autotest which no longer
1526 forces `.' in the PATH.
1527
1528 2002-01-25 Akim Demaille <akim@epita.fr>
1529
1530 * tests/regression.at (%nonassoc and eof): New.
1531 Suggested by Robert Anisko.
1532
1533 2002-01-24 Akim Demaille <akim@epita.fr>
1534
1535 Bison dumps core when trying to complain about broken input files.
1536 Reported by Cris van Pelt.
1537
1538 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
1539 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
1540 into...
1541 (Invalid inputs): Strengthen: exercise parse_percent_token.
1542
1543 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
1544
1545 * src/Makefile.am: Add bison.c++.
1546 * src/bison.c++: New skeleton.
1547
1548 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
1549
1550 * po/it.po: New.
1551
1552 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
1553
1554 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
1555
1556 2002-01-20 Marc Autret <marc@gnu.org>
1557
1558 * src/files.c (compute_output_file_names): Fix
1559
1560 2002-01-20 Marc Autret <marc@gnu.org>
1561
1562 * tests/output.at: New test.
1563 * src/files.c (compute_base_names): Don't map extensions when
1564 the YACC flag is set, use defaults.
1565 Reported by Evgeny Stambulchik.
1566
1567 2002-01-20 Marc Autret <marc@gnu.org>
1568
1569 * src/system.h: Need to define __attribute__ away for non-GCC
1570 compilers as well (i.e. the vendor C compiler).
1571 Suggested by Albert Chin-A-Young.
1572
1573 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
1574
1575 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
1576 canonical definition.
1577 * src/system.h: Use the canonical definition for PARAMS (avoids
1578 a conflict with the macro from lib/hash.h).
1579
1580 2002-01-11 Akim Demaille <akim@epita.fr>
1581
1582 * configure.in: Use AC_FUNC_STRNLEN.
1583 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
1584
1585 2002-01-09 Akim Demaille <akim@epita.fr>
1586
1587 * src/files.c, src/files.h (output_infix): New.
1588 (tab_extension): Remove.
1589 (compute_base_names): Compute the former, drop the latter.
1590 * src/output.c (prepare): Insert the muscles `output-infix', and
1591 `output-suffix'.
1592 * src/parse-skel.y (string, string.1): New.
1593 (section.header): Use it.
1594 (section.yacc): Remove.
1595 (prefix): Remove too.
1596 * src/scan-skel.l: Adjust.
1597 * src/bison.simple, src/bison.hairy: Adjust.
1598
1599 2002-01-09 Akim Demaille <akim@epita.fr>
1600
1601 * configure.in (WERROR_CFLAGS): Compute it.
1602 * src/Makefile.am (CFLAGS): Pass it.
1603 * tests/atlocal.in (CFLAGS): Idem.
1604 * src/files.c: Fix a few warnings.
1605 (get_extension_index): Remove, unused.
1606
1607 2002-01-08 Akim Demaille <akim@epita.fr>
1608
1609 * src/getargs.c (AS_FILE_NAME): New.
1610 (getargs): Use it to convert DOSish file names.
1611 * src/files.c (base_name): Rename as full_base_name to avoid
1612 clashes with `base_name ()'.
1613 (filename_split): New.
1614 (compute_base_names): N-th rewrite, using filename_split.
1615
1616 2002-01-08 Akim Demaille <akim@epita.fr>
1617
1618 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
1619 New, stolen from the Fileutils 4.1.
1620 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
1621 * configure.in: Check for the presence of memrchr, and of its
1622 prototype.
1623
1624 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
1625
1626 * lib/hash.h (__P): Added definition for this macro.
1627 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
1628 BUILT_SOURCES, to ensure they are generated first.
1629 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
1630 %error-verbose to allow bootstrapping with bison 1.30x.
1631
1632 2002-01-06 Akim Demaille <akim@epita.fr>
1633
1634 * src/reader.c (parse_braces): Don't fetch the next char, the
1635 convention is to fetch on entry.
1636 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
1637 'switch' without a following semicolon.
1638 * tests/regression.at (braces parsing): New.
1639
1640 2002-01-06 Akim Demaille <akim@epita.fr>
1641
1642 Bison is dead wrong in its RR conflict reports.
1643
1644 * tests/torture.at (GNU Cim Grammar): New.
1645 * src/conflicts.c (count_rr_conflicts): Fix.
1646
1647 2002-01-06 Akim Demaille <akim@epita.fr>
1648
1649 Creating package.m4 from configure.ac causes too many problems.
1650
1651 * tests/Makefile.am (package.m4): Create it by hand,
1652 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
1653
1654 2002-01-06 Akim Demaille <akim@epita.fr>
1655
1656 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
1657 skeleton.h.
1658
1659 2002-01-04 Paul Eggert <eggert@twinsun.com>
1660
1661 * doc/bison.texinfo (Debugging):
1662 Remove YYSTDERR; it's no longer defined or used.
1663 Also, s/cstdio.h/cstdio/.
1664
1665 2002-01-03 Akim Demaille <akim@epita.fr>
1666
1667 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
1668
1669 2002-01-03 Akim Demaille <akim@epita.fr>
1670
1671 * src/parse-skel.y (process_skeleton): Don't bind the parser's
1672 tracing code to --trace, wait for a better --trace option, with
1673 args.
1674
1675 2002-01-03 Akim Demaille <akim@epita.fr>
1676
1677 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
1678 The ISO C++ standard is extremely clear about it: stderr is
1679 considered a macro, not a regular symbol (see table 94 `Header
1680 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
1681 Therefore std:: does not apply to it. It still does with fprintf.
1682 Also, s/cstdio.h/cstdio/.
1683
1684 2002-01-03 Akim Demaille <akim@epita.fr>
1685
1686 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
1687 for non system headers.
1688
1689 2002-01-02 Akim Demaille <akim@epita.fr>
1690
1691 Equip the skeleton chain with location tracking, runtime trace,
1692 pure parser and scanner.
1693
1694 * src/parse-skel.y: Request a pure parser, locations, and prefix
1695 renaming.
1696 (%union): Having several members with the same type does not help
1697 type mismatches, simplify.
1698 (YYPRINT, yyprint): New.
1699 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
1700 (skel_error): this.
1701 Handle locations.
1702 * src/scan-skel.l: Adjust to these changes.
1703 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
1704 (LOCATION_PRINT, skel_control_t): New.
1705
1706 2001-12-30 Akim Demaille <akim@epita.fr>
1707
1708 * src/parse-skel.y: Get rid of the shift/reduce conflict:
1709 replace `gb' with BLANKS.
1710 * src/scan-skel.l: Adjust.
1711
1712 2001-12-30 Akim Demaille <akim@epita.fr>
1713
1714 * src/system.h: We don't need nor want bcopy.
1715 Throw away MS-DOS crap: we don't need getpid.
1716 * configure.in: We don't need strndup. It was even causing
1717 problems: because Flex includes the headers *before* us,
1718 _GNU_SOURCE is not defined by config.h, and therefore strndup was
1719 not visible.
1720 * lib/xstrndup.c: New.
1721 * src/scan-skel.l: Use it.
1722 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
1723 * src/parse-skel.y: Use %directives instead of #defines.
1724
1725 2001-12-30 Akim Demaille <akim@epita.fr>
1726
1727 * src/skeleton.h: New.
1728 * src/output.c (output_parser, output_master_parser): Remove, dead
1729 code.
1730 * src/output.h (get_lines_number, actions_output, guards_output)
1731 (token_definitions_output): Prototype them.
1732 * src/parse-skel.y: Add the license notice.
1733 Include output.h and skeleton.h.
1734 (process_skeleton): Returns void, and takes a single parameter.
1735 * src/scan-skel.l: Add the license notice.
1736 Include skeleton.h.
1737 Don't use %option yylineno: it seems that then Flex imagines
1738 REJECT has been used, and therefore it won't reallocate its
1739 buffers (which makes no other sense to me than a bug). It results
1740 in warnings for `unused: yy_flex_realloc'.
1741
1742 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
1743
1744 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1745 (MUSCLE_INSERT_PREFIX): ...to there.
1746 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1747 (MUSCLE_INSERT_PREFIX): Move from here...
1748
1749 * src/bison.hairy: Add a section directive. Put braces around muscle
1750 names. This parser skeleton is still broken, but Bison should not
1751 choke on a bad muscle 'syntax'.
1752 * src/bison.simple: Add a section directive. Put braces around muscle
1753 names.
1754
1755 * src/files.h (strsuffix, stringappend): Add declarations.
1756 (tab_extension): Add declaration.
1757 (short_base_name): Add declaration.
1758
1759 * src/files.c (strsuffix, stringappend): No longer static. These
1760 functions are used in the skeleton parser.
1761 (tab_extension): New.
1762 (compute_base_names): Use the computations done in this function
1763 to guess if the generated parsers should have '.tab' in their
1764 names.
1765 (short_base_name): No longer static.
1766
1767 * src/output.c (output_skeleton): New.
1768 (output): Disable call to output_master_parser, and give a try to
1769 a new skeleton handling system.
1770 (guards_output, actions_output): No longer static.
1771 (token_definitions_output, get_lines_number): No longer static.
1772
1773 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
1774
1775 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
1776 parse-skel.y.
1777
1778 * src/parse-skel.y: New file.
1779 * src/scan-skel.l: New file.
1780
1781 2001-12-29 Akim Demaille <akim@epita.fr>
1782
1783 %name-prefix is broken.
1784
1785 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
1786 Adjust all dependencies.
1787 * tests/headers.at (export YYLTYPE): Strengthen this test: use
1788 %name-prefix.
1789
1790 Renaming yylval but not yylloc is not consistent. Now we do.
1791
1792 * src/bison.simple: Prefix yylloc if used.
1793 * doc/bison.texinfo (Decl Summary): Document that.
1794
1795 2001-12-29 Akim Demaille <akim@epita.fr>
1796
1797 * doc/bison.texinfo: Promote `%long-directive' over
1798 `%long_directive'.
1799 Remove all references to fixed-output-files, yacc is enough.
1800
1801 2001-12-29 Akim Demaille <akim@epita.fr>
1802
1803 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
1804 user prologue. These are defaults.
1805 * tests/actions.at (Mid-rule actions): Make sure the user can
1806 define YYDEBUG and YYERROR_VERBOSE.
1807
1808 2001-12-29 Akim Demaille <akim@epita.fr>
1809
1810 * src/output.c (header_output): Don't forget to export YYLTYPE and
1811 yylloc.
1812 * tests/headers.at (export YYLTYPE): New, make sure it does.
1813 * tests/regression.at (%union and --defines, Invalid CPP headers):
1814 Move to...
1815 * tests/headers.at: here.
1816
1817 2001-12-29 Akim Demaille <akim@epita.fr>
1818
1819 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
1820
1821 2001-12-29 Akim Demaille <akim@epita.fr>
1822
1823 * tests/actions.at (Mid-rule actions): Output on a single line
1824 instead of several.
1825
1826 2001-12-29 Akim Demaille <akim@epita.fr>
1827
1828 * doc/bison.texinfo: Formatting changes.
1829
1830 2001-12-29 Akim Demaille <akim@epita.fr>
1831
1832 Don't store the token defs in a muscle, just be ready to output it
1833 on command. Now possible via `symbols'. Fixes a memory leak.
1834
1835 * src/output.c (token_definitions_output): New.
1836 (output_parser, header_output): Use it.
1837 * src/reader.c (symbols_save): Remove.
1838
1839 2001-12-29 Akim Demaille <akim@epita.fr>
1840
1841 * src/bison.simple: Do not provide a default for YYSTYPE and
1842 YYLTYPE before the user's prologue. Otherwise it's hardly... a
1843 default.
1844
1845 2001-12-29 Akim Demaille <akim@epita.fr>
1846
1847 Mid-rule actions are simply... ignored!
1848
1849 * src/reader.c (readgram): Be sure to attach mid-rule actions to
1850 the empty-rule associated to the dummy symbol, not to the host
1851 rule.
1852 * tests/actions.at (Mid-rule actions): New.
1853
1854 2001-12-29 Akim Demaille <akim@epita.fr>
1855
1856 Memory leak.
1857
1858 * src/reader.c (reader): Free grammar.
1859
1860 2001-12-29 Akim Demaille <akim@epita.fr>
1861
1862 Memory leak.
1863
1864 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
1865 since it allocates it for each state, although only one is needed.
1866 (allocate_storage): Do it here.
1867
1868 2001-12-29 Akim Demaille <akim@epita.fr>
1869
1870 * src/options.h, src/options.c (create_long_option_table): Rename
1871 as...
1872 (long_option_table_new): this, with a clearer prototype.
1873 (percent_table): Remove, unused,
1874 * src/getargs.c (getargs): Adjust.
1875
1876 2001-12-29 Akim Demaille <akim@epita.fr>
1877
1878 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
1879 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
1880 as states.
1881
1882 2001-12-29 Akim Demaille <akim@epita.fr>
1883
1884 * src/lalr.c (build_relations): Rename `states' as `states1'.
1885 Sorry, I don't understand exactly what it is, no better name...
1886
1887 2001-12-29 Akim Demaille <akim@epita.fr>
1888
1889 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
1890 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
1891 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
1892 as rules.
1893
1894 2001-12-29 Akim Demaille <akim@epita.fr>
1895
1896 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
1897 ago.
1898
1899 2001-12-29 Akim Demaille <akim@epita.fr>
1900
1901 * src/reader.c, src/reader.h (user_toknums): Remove.
1902 Adjust all users to use symbols[i]->user_token_number.
1903
1904 2001-12-29 Akim Demaille <akim@epita.fr>
1905
1906 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
1907 Adjust all users to use symbols[i]->prec or ->assoc.
1908
1909 2001-12-29 Akim Demaille <akim@epita.fr>
1910
1911 * src/reader.c, src/reader.h (tags): Remove.
1912 Adjust all users to use symbols[i]->tag.
1913
1914 2001-12-29 Akim Demaille <akim@epita.fr>
1915
1916 * src/gram.h, src/gram.c (symbols): New, similar to state_table
1917 and rule_table.
1918 * src/reader.c (packsymbols): Fill this table.
1919 Drop sprec.
1920 * src/conflicts.c (resolve_sr_conflict): Adjust.
1921 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
1922 single table.
1923 Use symbols[i]->tag instead of tags[i].
1924
1925 2001-12-29 Akim Demaille <akim@epita.fr>
1926
1927 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
1928 In addition, put a comment in there, to replace...
1929 * tests/regression.at (%union and C comments): Remove.
1930
1931 2001-12-29 Akim Demaille <akim@epita.fr>
1932
1933 * tests/regression.at (Web2c Actions): Blindly move the actual
1934 output as expected output. The contents *seem* right to me, but I
1935 can't pretend reading perfectly parser tables... Nonetheless, all
1936 the other tests pass correctly, the table look OK, even though the
1937 presence of `$axiom' is to be noted: AFAICS it is useless (but
1938 harmless).
1939
1940 2001-12-29 Akim Demaille <akim@epita.fr>
1941
1942 * src/reader.c (readgram): Don't add the rule 0 if there were no
1943 rules read. In other words, add it _after_ having performed
1944 grammar sanity checks.
1945 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
1946
1947 2001-12-29 Akim Demaille <akim@epita.fr>
1948
1949 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
1950 visible, and some states have now a different number.
1951
1952 2001-12-29 Akim Demaille <akim@epita.fr>
1953
1954 * src/reader.c (readgram): Bind the initial rule's lineno to that
1955 of the first rule.
1956 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
1957 (Solved SR Conflicts): Adjust rule 0's line number.
1958
1959 2001-12-29 Akim Demaille <akim@epita.fr>
1960
1961 Fix the `GAWK Grammar' failure.
1962
1963 * src/LR0.c (final_state): Initialize to -1 so that we do compute
1964 the reductions of the first state which was mistakenly confused
1965 with the final state because precisely final_state was initialized
1966 to 0.
1967 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
1968 now noticed by Bison.
1969 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
1970 have a reduction on $default.
1971
1972 2001-12-29 Akim Demaille <akim@epita.fr>
1973
1974 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
1975 rule line numbers.
1976 * src/closure.c (print_closure): Likewise.
1977 * src/derives.c (print_derives): Likewise.
1978 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
1979 now.
1980
1981 2001-12-29 Akim Demaille <akim@epita.fr>
1982
1983 * src/lalr.c (lookaheads_print): New.
1984 (lalr): Call it when --trace-flag.
1985 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
1986 are dumped.
1987
1988 2001-12-29 Akim Demaille <akim@epita.fr>
1989
1990 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
1991 when walking through ritem, even via rule->rhs.
1992 * src/reduce.c (dump_grammar, useful_production, reduce_output)
1993 (useful_production, useless_nonterminals): Likewise.
1994 (reduce_grammar_tables): Likewise, plus update nritems.
1995 * src/nullable.c (set_nullable): Likewise.
1996 * src/lalr.c (build_relations): Likewise.
1997 * tests/sets.at (Nullable): Adjust.
1998 Fortunately, now, the $axiom is no longer nullable.
1999
2000 2001-12-29 Akim Demaille <akim@epita.fr>
2001
2002 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
2003 the 0-sentinel.
2004 * src/gram.c (ritem_longest_rhs): Likewise.
2005 * src/reduce.c (nonterminals_reduce): Likewise.
2006 * src/print_graph.c (print_graph): Likewise.
2007 * src/output.c (output_rule_data): Likewise.
2008 * src/nullable.c (set_nullable): Likewise.
2009
2010 2001-12-29 Akim Demaille <akim@epita.fr>
2011
2012 * src/output.c: Comment changes.
2013
2014 2001-12-27 Paul Eggert <eggert@twinsun.com>
2015
2016 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
2017 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
2018 Sparc, as they were causing more porting problems than the
2019 (minor) performance improvement was worth.
2020
2021 Also, catch up with 1.31's YYSTD.
2022
2023 2001-12-27 Akim Demaille <akim@epita.fr>
2024
2025 * src/output.c (output_gram): Rely on nritems, not the
2026 0-sentinel. See below.
2027 Use -1 as separator, not 0.
2028 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
2029 Rely on -1 as separator in yyrhs, instead of 0.
2030 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
2031 twice `Now at end of input', therefore there are two lines less to
2032 expect.
2033
2034 2001-12-27 Akim Demaille <akim@epita.fr>
2035
2036 * tests/regression.at (Unresolved SR Conflicts):
2037 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
2038 below.
2039
2040 2001-12-27 Akim Demaille <akim@epita.fr>
2041
2042 * src/LR0.c (new_state): Recognize the final state by the fact it
2043 is reached by eoftoken.
2044 (insert_start_shifting_state, insert_eof_shifting_state)
2045 (insert_accepting_state, augment_automaton): Remove, since now
2046 these states are automatically computed from the initial state.
2047 (generate_states): Adjust.
2048 * src/print.c: When reporting a rule number to the user, substract
2049 1, so that the axiom rule is rule 0, and the first user rule is 1.
2050 * src/reduce.c: Likewise.
2051 * src/print_graph.c (print_core): For the time being, just as for
2052 the report, depend upon --trace-flags to dump the full set of
2053 items.
2054 * src/reader.c (readgram): Once the grammar read, insert the rule
2055 0: `$axiom: START-SYMBOL $'.
2056 * tests/set.at: Adjust: rule 0 is now displayed, and since the
2057 number of the states has changed (the final state is no longer
2058 necessarily the last), catch up.
2059
2060 2001-12-27 Akim Demaille <akim@epita.fr>
2061
2062 Try to make the use of the eoftoken valid. Given that its value
2063 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
2064 is used instead of > 0 where appropriate, (ii), depend upon nritems
2065 instead of the 0-sentinel.
2066
2067 * src/gram.h, src/gram.c (nritems): New.
2068 Expected to be duplication of nitems, but for the time being...
2069 * src/reader.c (packgram): Assert nritems and nitems are equal.
2070 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
2071 * src/closure.c (print_closure, print_fderives): Likewise.
2072 * src/gram.c (ritem_print): Likewise.
2073 * src/print.c (print_core, print_grammar): Likewise.
2074 * src/print_graph.c: Likewise.
2075
2076 2001-12-27 Akim Demaille <akim@epita.fr>
2077
2078 * src/main.c (main): If there are complains after grammar
2079 reductions, then output the report anyway if requested, then die.
2080 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
2081 * src/reader.c (eoftoken): New.
2082 (parse_token_decl): If the token being defined has value `0', it
2083 is the eoftoken.
2084 (packsymbols): No longer hack `tags' to insert `$' by hand.
2085 Be sure to preserve the value of the eoftoken.
2086 (reader): Make sure eoftoken is defined.
2087 Initialize nsyms to 0: now eoftoken is created just like the others.
2088 * src/print.c (print_grammar): Don't special case the eof token.
2089 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
2090 lie anyway, albeit pleasant.
2091 * tests/calc.at: Exercise error messages with eoftoken.
2092 Change the grammar so that empty input is invalid.
2093 Adjust expectations.
2094 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
2095
2096 2001-12-27 Akim Demaille <akim@epita.fr>
2097
2098 * configure.in: Check the protos of strchr ans strspn.
2099 Replace strchr if needed.
2100 * src/system.h: Provide the protos of strchr, strspn and memchr if
2101 missing.
2102 * lib/strchr.c: New.
2103 * src/reader.c (symbols_save): Use strchr.
2104
2105 2001-12-27 Akim Demaille <akim@epita.fr>
2106
2107 * src/print.c, src/print_graph.c (escape): New.
2108 Use it to quote the TAGS outputs.
2109 * src/print_graph.c (print_state): Now errors are in red, and
2110 reductions in green.
2111 Prefer high to wide: output the state number on a line of its own.
2112
2113 2001-12-27 Akim Demaille <akim@epita.fr>
2114
2115 * src/state.h, src/state.c (reductions_new): New.
2116 * src/LR0.c (set_state_table): Let all the states have a
2117 `reductions', even if reduced to 0.
2118 (save_reductions): Adjust.
2119 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
2120 * src/print.c (print_reductions, print_actions): Adjust.
2121 * src/output.c (action_row): Adjust.
2122
2123 2001-12-27 Akim Demaille <akim@epita.fr>
2124
2125 * src/state.h, src/state.c (errs_new, errs_dup): New.
2126 * src/LR0.c (set_state_table): Let all the states have an errs,
2127 even if reduced to 0.
2128 * src/print.c (print_errs, print_reductions): Adjust.
2129 * src/output.c (output_actions, action_row): Adjust.
2130 * src/conflicts.c (resolve_sr_conflict): Adjust.
2131
2132 2001-12-27 Akim Demaille <akim@epita.fr>
2133
2134 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
2135
2136 2001-12-27 Akim Demaille <akim@epita.fr>
2137
2138 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
2139 * src/print.c: here.
2140 (lookaheadset, shiftset): New, used as additional storage by
2141 print_reductions.
2142 (print_results): Adjust.
2143 (print_shifts, print_gotos, print_errs): New, extracted from...
2144 (print_actions): here.
2145 * src/print_graph.c (print_actions): Remove dead code.
2146
2147 2001-12-27 Akim Demaille <akim@epita.fr>
2148
2149 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
2150 `$n' and `@n'.
2151
2152 2001-12-27 Akim Demaille <akim@epita.fr>
2153
2154 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
2155 (build_relations): Adjust.
2156
2157 2001-12-27 Akim Demaille <akim@epita.fr>
2158
2159 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
2160 duplication.
2161
2162 2001-12-27 Akim Demaille <akim@epita.fr>
2163
2164 * src/reader.c (packgram): Catch nitems overflows.
2165
2166 2001-12-27 Akim Demaille <akim@epita.fr>
2167
2168 * src/files.c, src/files.h (guard_obstack): Remove.
2169 * src/output.c (output): Adjust.
2170 * src/reader.c (parse_braces): New, factoring...
2171 (copy_action, copy_guard): these two which are renamed as...
2172 (parse_action, parse_guard): these.
2173 As a voluntary consequence, using braces around guards is now
2174 mandatory.
2175
2176 2001-12-27 Akim Demaille <akim@epita.fr>
2177
2178 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
2179 * src/reader.c (symbol_list): `guard' and `guard_line' are new
2180 members.
2181 (symbol_list_new): Adjust.
2182 (copy_action): action_line is the first line, not the last.
2183 (copy_guard): Just as for actions, store the `action' only, not
2184 the switch/case/break flesh.
2185 Don't parse the user action that might follow the guard, let...
2186 (readgram): do it, i.e., now, there can be an action after a
2187 guard.
2188 In other words the guard is just explicitly optional.
2189 (packgram): Adjust.
2190 * src/output.c (guards_output): New.
2191 (output_parser): Call it when needed.
2192 (output): Also free the guard and attrs obstacks.
2193 * src/files.c, src/files.h (obstack_save): Remove.
2194 (output_files): Remove.
2195 As a result, if one needs the former `.act' file, using an
2196 appropriate skeleton which requires actions and guards is now
2197 required.
2198 * src/main.c (main): Adjust.
2199 * tests/semantic.at: New.
2200 * tests/regression.at: Use `input.y' as input file name.
2201 Avoid 8+3 problems by requiring input.c when the test needs the
2202 parser.
2203
2204 2001-12-27 Akim Demaille <akim@epita.fr>
2205
2206 * src/reader.c (symbol_list_new): Be sure to initialize all the
2207 fields.
2208
2209 2001-12-27 Akim Demaille <akim@epita.fr>
2210
2211 All the hacks using a final pseudo state are now useless.
2212
2213 * src/LR0.c (set_state_table): state_table holds exactly nstates.
2214 * src/lalr.c (nLA): New.
2215 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
2216 instead of lookaheadsp from the pseudo state (nstate + 1).
2217
2218 2001-12-27 Akim Demaille <akim@epita.fr>
2219
2220 * src/output.c (action_row, token_actions): Use a state_t instead
2221 of a integer, and nlookaheads instead of the following state's
2222 lookaheadsp.
2223
2224 2001-12-27 Akim Demaille <akim@epita.fr>
2225
2226 * src/conflicts.c (log_resolution, flush_shift)
2227 (resolve_sr_conflict, set_conflicts, solve_conflicts)
2228 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
2229 (conflicts_print, print_reductions): Use a state_t instead of an
2230 integer when referring to a state.
2231 As much as possible, depend upon nlookaheads, instead of the
2232 `lookaheadsp' member of the following state (since lookaheads of
2233 successive states are successive, the difference between state n + 1
2234 and n served as the number of lookaheads for state n).
2235 * src/lalr.c (add_lookback_edge): Likewise.
2236 * src/print.c (print_core, print_actions, print_state)
2237 (print_results): Likewise.
2238 * src/print_graph.c (print_core, print_actions, print_state)
2239 (print_graph): Likewise.
2240 * src/conflicts.h: Adjust.
2241
2242 2001-12-27 Akim Demaille <akim@epita.fr>
2243
2244 * src/bison.hairy: Formatting/comment changes.
2245 ANSIfy.
2246 Remove `register' indications.
2247 Add plenty of `static'.
2248
2249 2001-12-27 Akim Demaille <akim@epita.fr>
2250
2251 * src/output.c (prepare): Drop the muscle `ntbase' which
2252 duplicates ntokens.
2253 * src/bison.simple: Formatting/comment changes.
2254 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
2255 is an undocumented synonym.
2256
2257 2001-12-22 Akim Demaille <akim@epita.fr>
2258
2259 * src/output.c (output_table_data): Change the prototype to use
2260 `int' for array ranges: some invocations do pass an int, not a
2261 short.
2262 Reported by Wayne Green.
2263
2264 2001-12-22 Akim Demaille <akim@epita.fr>
2265
2266 Some actions of web2c.y are improperly triggered.
2267 Reported by Mike Castle.
2268
2269 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
2270 * tests/regression.at (Web2c): Rename as...
2271 (Web2c Report): this.
2272 (Web2c Actions): New.
2273
2274 2001-12-22 Akim Demaille <akim@epita.fr>
2275
2276 Reductions in web2c.y are improperly reported.
2277 Reported by Mike Castle.
2278
2279 * src/conflicts.c (print_reductions): Fix.
2280 * tests/regression.at (Web2c): New.
2281
2282 2001-12-18 Akim Demaille <akim@epita.fr>
2283
2284 Some host fail on `assert (!"foo")', which expands to
2285 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
2286 Reported by Nelson Beebee.
2287
2288 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
2289 `#define it_succeeded 0' and `assert (it_succeeded)'.
2290
2291 2001-12-17 Marc Autret <autret_m@epita.fr>
2292
2293 * src/bison.simple: Don't hard code the skeleton line and filename.
2294 * src/output.c (output_parser): Rename 'line' as 'output_line'.
2295 New line counter 'skeleton_line' (skeleton-line muscle).
2296
2297 2001-12-17 Paul Eggert <eggert@twinsun.com>
2298
2299 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
2300 YYDEBUG must be defined to a nonzero value.
2301
2302 * src/bison.simple (yytname): Do not assume that the user defines
2303 YYDEBUG to a properly parenthesized expression.
2304
2305 2001-12-17 Akim Demaille <akim@epita.fr>
2306
2307 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
2308 nlookaheads is a new member.
2309 Adjust all users.
2310 * src/lalr.h (nlookaheads): Remove this orphan declaration.
2311 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
2312 state.
2313
2314 2001-12-17 Akim Demaille <akim@epita.fr>
2315
2316 * src/files.h, src/files.c (open_files, close_files): Remove.
2317 * src/main.c (main): Don't open/close files, nor invoke lex_free,
2318 let...
2319 * src/reader.c (reader): Do it.
2320
2321 2001-12-17 Akim Demaille <akim@epita.fr>
2322
2323 * src/conflicts.c (print_reductions): Formatting changes.
2324
2325 2001-12-17 Akim Demaille <akim@epita.fr>
2326
2327 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
2328 (flush_reduce): New.
2329 (resolve_sr_conflict): Adjust.
2330
2331 2001-12-17 Akim Demaille <akim@epita.fr>
2332
2333 * src/output.c (output_obstack): Be static and rename as...
2334 (format_obstack): this, to avoid any confusion with files.c's
2335 output_obstack.
2336 * src/reader.h (muscle_obstack): Move to...
2337 * src/output.h: here, since it's defined in output.c.
2338
2339 2001-12-17 Akim Demaille <akim@epita.fr>
2340
2341 * src/output.c (action_row, save_column, default_goto)
2342 (sort_actions, matching_state, pack_vector): Better variable
2343 locality.
2344
2345 2001-12-17 Akim Demaille <akim@epita.fr>
2346
2347 * src/output.c: Various formatting changes.
2348
2349 2001-12-17 Akim Demaille <akim@epita.fr>
2350
2351 * src/files.c (output_files): Free the output_obstack.
2352 * src/main.c (main): Call print and print_graph conditionally.
2353 * src/print.c (print): Work unconditionally.
2354 * src/print_graph.c (print_graph): Work unconditionally.
2355 * src/conflicts.c (log_resolution): Output only if verbose_flag.
2356
2357 2001-12-16 Marc Autret <autret_m@epita.fr>
2358
2359 * src/output.c (actions_output): Fix. When we use %no-lines,
2360 there is one less line per action.
2361
2362 2001-12-16 Marc Autret <autret_m@epita.fr>
2363
2364 * src/bison.simple: Remove a useless #line directive.
2365 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
2366 * src/output.c (get_lines_number): New.
2367 (output_parser): Adjust, now takes care about the lines of a
2368 output muscles.
2369 Fix line numbering.
2370 (actions_output): Computes the number of lines taken by actions.
2371 (output_master_parser): Insert new skeleton which is the name of
2372 the output parser file name.
2373
2374 2001-12-15 Marc Autret <autret_m@epita.fr>
2375
2376 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
2377
2378 2001-12-15 Marc Autret <autret_m@epita.fr>
2379
2380 * src/output.c (output_gram): Keep track of the hairy one.
2381
2382 2001-12-15 Akim Demaille <akim@epita.fr>
2383
2384 Make `make distcheck' work.
2385
2386 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
2387 system.h which uses libgettext.h.
2388
2389 2001-12-15 Akim Demaille <akim@epita.fr>
2390
2391 * src/nullable.c (set_nullable): Useless rules must be skipped,
2392 otherwise, since we range over their symbols, we might look at a
2393 nonterminal which no longer ``exists'', i.e., it is not counted in
2394 `nvars', hence we overflow our arrays.
2395
2396 2001-12-15 Akim Demaille <akim@epita.fr>
2397
2398 The header can also be produced directly, without any obstack!
2399 Yahoo!
2400
2401 * src/files.c, src/files.h (defines_obstack): Remove.
2402 (compute_header_macro): Global.
2403 (defines_obstack_save): Remove.
2404 * src/reader.c (parse_union_decl): No longer output to
2405 defines_obstack: its content can be found in the `stype' muscle
2406 anyway.
2407 (output_token_translations): Merge into...
2408 (symbols_output): this.
2409 Rename as...
2410 (symbols_save): this.
2411 (reader): Adjust.
2412 * src/output.c (header_output): New.
2413 (output): Call it.
2414
2415 2001-12-15 Akim Demaille <akim@epita.fr>
2416
2417 * src/reader.c (parse_union_decl): Instead of handling two obstack
2418 simultaneously, use one to define the `stype' muscle, and use the
2419 value of the latter to fill defines_obstack.
2420 (copy_comment): Remove.
2421 (copy_comment2): Work for a single obstack.
2422 Rename as...
2423 (copy_comment): this.
2424
2425 2001-12-15 Akim Demaille <akim@epita.fr>
2426
2427 * src/lex.c, src/lex.h (xgetc): No longer static.
2428 * src/reader.c (parse_union_decl): Revamp.
2429
2430 2001-12-15 Akim Demaille <akim@epita.fr>
2431
2432 Still making progress in separating Bison into (i) input, (ii)
2433 process, (iii) output: now we can directly output the parser file
2434 without using table_obstack at all.
2435
2436 * src/files.c, src/files.h (table_obstack): Bye bye.
2437 (parser_file_name): New.
2438 * src/files.c (compute_output_file_names): Compute it.
2439 * src/output.c (actions_output, output_parser)
2440 (output_master_parser): To a file instead of an obstack.
2441
2442 2001-12-15 Akim Demaille <akim@epita.fr>
2443
2444 Attach actions to rules, instead of pre-outputting them to
2445 actions_obstack.
2446
2447 * src/gram.h (rule_t): action and action_line are new members.
2448 * src/reader.c (symbol_list): Likewise.
2449 (copy_action): Save the actions within the rule.
2450 (packgram): Save them in rule_table.
2451 * src/output.c (actions_output): New.
2452 (output_parser): Use it on `%%actions'.
2453 (output_rule_data): Don't free rule_table.
2454 (output): Do it.
2455 (prepare): Don't save the `action' muscle.
2456 * src/bison.simple: s/%%action/%%actions/.
2457
2458 2001-12-15 Akim Demaille <akim@epita.fr>
2459
2460 * src/reader.c (copy_action): When --yacc, don't append a `;'
2461 to the user action: let it fail if lacking.
2462 Suggested by Arnold Robbins and Tom Tromey.
2463
2464 2001-12-14 Akim Demaille <akim@epita.fr>
2465
2466 * src/lex.c (literalchar): Simply return the char you decoded, non
2467 longer mess around with obstacks and int pointers.
2468 Adjust all callers.
2469
2470 2001-12-14 Akim Demaille <akim@epita.fr>
2471
2472 * src/lex.c (literalchar): Don't escape the special characters,
2473 just decode them, and keep them as char (before, eol was output as
2474 the 2 char string `\n' etc.).
2475 * src/output.c (output_rule_data): Use quotearg to output the
2476 token strings.
2477
2478 2001-12-13 Paul Eggert <eggert@twinsun.com>
2479
2480 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
2481 Do not infringe on the global user namespace when using C++.
2482 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
2483 All uses of `fprintf' and `stderr' changed.
2484
2485 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
2486
2487 2001-12-13 Akim Demaille <akim@epita.fr>
2488
2489 The computation of nullable is broken: it doesn't handle empty
2490 RHS's properly.
2491
2492 * tests/torture.at (GNU AWK Grammar): New.
2493 * tests/sets.at (Nullable): New.
2494 * src/nullable.c (set_nullable): Instead of blindly looping over
2495 `ritems', loop over the rules, and then over their rhs's.
2496
2497 Work around Autotest bugs.
2498
2499 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
2500 frame, because Autotest understand lines starting with a `+' as
2501 traces from the shell. Then, they are not processed properly.
2502 Admittedly an Autotest bug, but we don't have time to wait for
2503 Autotest to catch up.
2504 * tests/regression.at (Broken Closure): Adjust to the new table
2505 frames.
2506 Move to...
2507 * tests/sets.at: here.
2508
2509 2001-12-13 Akim Demaille <akim@epita.fr>
2510
2511 * src/closure.c (closure): Use nrules instead of playing tricks
2512 with BITS_PER_WORD.
2513
2514 2001-12-13 Akim Demaille <akim@epita.fr>
2515
2516 * src/print.c (print_actions): Output the handling of `$' as the
2517 traces do: shifting the token EOF. Before EOF was treated as a
2518 nonterminal.
2519 * tests/regression.at: Adjust some tests.
2520 * src/print_graph.c (print_core): Complete the set of items via
2521 closure. The next-to-final and final states are still unsatisfying,
2522 but that's to be addressed elsewhere.
2523 No longer output the rule numbers, but do output the state number.
2524 A single loop for the shifts + gotos is enough, but picked a
2525 distinct color for each.
2526 (print_graph): Initialize and finalize closure.
2527
2528 2001-12-13 Akim Demaille <akim@epita.fr>
2529
2530 * src/reader.c (readgram): Remove dead code, an strip useless
2531 braces.
2532 (get_type): Remove, unused.
2533
2534 2001-12-12 Akim Demaille <akim@epita.fr>
2535
2536 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
2537 on that of lib/error.c.
2538
2539 2001-12-12 Akim Demaille <akim@epita.fr>
2540
2541 Some hosts don't like `/' in includes.
2542
2543 * src/system.h: Include libgettext.h without qualifying the path.
2544 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
2545 $(top_srcdir).
2546
2547 2001-12-11 Marc Autret <autret_m@epita.fr>
2548
2549 * src/output.c (output_parser): Remove useless muscle.
2550
2551 2001-12-11 Marc Autret <autret_m@epita.fr>
2552
2553 * src/bison.simple: Remove #line just before %%epilogue. It
2554 is now handled in ...
2555 * src/reader.c (read_additionnal_code): Add the output of a
2556 #line for the epilogue.
2557
2558 2001-12-10 Marc Autret <autret_m@epita.fr>
2559
2560 * src/reader.c (copy_definition): Re-use CPP-outed code which
2561 replace precedent remove.
2562 * src/bison.simple: Remove #line before %%prologue because
2563 %%input-line is wrong at this time.
2564
2565 2001-12-10 Marc Autret <autret_m@epita.fr>
2566
2567 * src/reader.c (symbols_output): Clean up.
2568 * src/output.c (output_gram, output): Clean up.
2569
2570 2001-12-10 Akim Demaille <akim@epita.fr>
2571
2572 * src/lalr.c (initialize_lookaheads): New. Extracted from...
2573 * src/LR0.c (set_state_table): here.
2574 * src/lalr.c (lalr): Call it.
2575
2576 2001-12-10 Akim Demaille <akim@epita.fr>
2577
2578 * src/state.h (shifts): Remove the `number' member: shifts are
2579 attached to state, hence no longer need to be labelled with a
2580 state number.
2581
2582 2001-12-10 Akim Demaille <akim@epita.fr>
2583
2584 Now that states have a complete set of members, the linked list of
2585 shifts is useless: just fill directly the state's shifts member.
2586
2587 * src/state.h (shifts): Remove the `next' member.
2588 * src/LR0.c (first_state, last_state): Remove.
2589 Adjust the callers.
2590 (augment_automaton): Don't look for the shifts that must be added
2591 a shift on EOF: it is those of the state we looked for! But now,
2592 since shifts are attached, it is no longer needed to looking
2593 merely by its id: its number.
2594
2595 2001-12-10 Akim Demaille <akim@epita.fr>
2596
2597 * src/LR0.c (augment_automaton): Better variable locality.
2598 Remove an impossible branch: if there is a state corresponding to
2599 the start symbol being shifted, then there is shift for the start
2600 symbol from the initial state.
2601
2602 2001-12-10 Akim Demaille <akim@epita.fr>
2603
2604 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
2605 only when appropriate: when insert_start_shifting_state' is not
2606 invoked.
2607 * tests/regression.at (Rule Line Numbers): Adjust.
2608
2609 2001-12-10 Akim Demaille <akim@epita.fr>
2610
2611 * src/LR0.c (augment_automaton): Now that all states have shifts,
2612 merge the two cases addition shifts to the initial state.
2613
2614 2001-12-10 Akim Demaille <akim@epita.fr>
2615
2616 * src/lalr.c (set_state_table): Move to...
2617 * src/LR0.c: here.
2618 * src/lalr.c (lalr): Don't call it...
2619 * src/LR0.c (generate_states): do it.
2620 * src/LR0.h (first_state): Remove, only the table is used.
2621
2622 2001-12-10 Akim Demaille <akim@epita.fr>
2623
2624 * src/LR0.h (first_shift, first_reduction): Remove.
2625 * src/lalr.c: Don't use first_shift: find shifts through the
2626 states.
2627
2628 2001-12-10 Akim Demaille <akim@epita.fr>
2629
2630 * src/LR0.c: Attach shifts to states as soon as they are
2631 computed.
2632 * src/lalr.c (set_state_table): Instead of assigning shifts to
2633 state, just assert that the mapping was properly done.
2634
2635 2001-12-10 Akim Demaille <akim@epita.fr>
2636
2637 * src/LR0.c (insert_start_shift): Rename as...
2638 (insert_start_shifting_state): this.
2639 (insert_eof_shifting_state, insert_accepting_state): New.
2640 (augment_automaton): Adjust.
2641 Better locality of the variables.
2642 When looking if the start_symbol is shifted from the initial
2643 state, using `while (... symbol != start_symbol ...)' sounds
2644 better than `while (... symbol < start_symbol ...)': If fail
2645 to see how the order between symbols could be relevant!
2646
2647 2001-12-10 Akim Demaille <akim@epita.fr>
2648
2649 * src/getargs.h: Don't declare `spec_name_prefix' and
2650 `spec_file_prefix', declared by src/files.h.
2651 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
2652 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
2653 * src/output.c (prepare): Adjust.
2654 * src/reader.c (symbols_output): Likewise.
2655 * src/vmsgetargs.c: Vaguely adjust, but who cares?
2656
2657 2001-12-10 Akim Demaille <akim@epita.fr>
2658
2659 * src/muscle_tab.c (muscle_init): NULL is a better default than
2660 `"0"'.
2661
2662 2001-12-10 Akim Demaille <akim@epita.fr>
2663
2664 * src/reader.c (reader): Calling symbols_output once is enough.
2665
2666 2001-12-10 Akim Demaille <akim@epita.fr>
2667
2668 Now that states have a complete set of members, the linked list of
2669 reductions is useless: just fill directly the state's reductions
2670 member.
2671
2672 * src/state.h (struct reductions): Remove member `number' and
2673 `next'.
2674 * src/LR0.c (first_reduction, last_reduction): Remove.
2675 (save_reductions): Don't link the new reductions, store them in
2676 this_state.
2677 * src/lalr.c (set_state_table): No need to attach reductions to
2678 states, it's already done.
2679 * src/output.c (output_actions): No longer free the shifts, then
2680 the reductions, then the states: free all the states and their
2681 members.
2682
2683 2001-12-10 Akim Demaille <akim@epita.fr>
2684
2685 * src/options.c (OPTN, DRTV, BOTH): New.
2686 (option_table): Use them.
2687
2688 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
2689 the job of system.h.
2690 * src/options.c: Don't include stdio.h and xalloc.h for the same
2691 reasons.
2692
2693 2001-12-10 Akim Demaille <akim@epita.fr>
2694
2695 * src/output.c (output, prepare): Make sure the values of the
2696 muscles `action' and `prologue' are 0-terminated.
2697
2698 2001-12-10 Akim Demaille <akim@epita.fr>
2699
2700 Clean up GCC warnings.
2701
2702 * src/reader.c (copy_action): `buf' is not used.
2703 (parse_skel_decl): Be static.
2704 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
2705 * src/options.h (create_long_option_table): Have a real prototype.
2706 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
2707 (hash_delete_at): Return const void *.
2708 Adjust casts to preserve the const.
2709
2710 2001-12-10 Akim Demaille <akim@epita.fr>
2711
2712 * configure.in: Require 2.52g.
2713 M4 is not needed, but AUTOM4TE is.
2714 * m4/m4.m4: Remove.
2715 * tests/Makefile.am: Adjust.
2716
2717 2001-12-10 Akim Demaille <akim@epita.fr>
2718
2719 One structure for states is enough, even though theoretically
2720 there are LR(0) states and LALR(1) states.
2721
2722 * src/lalr.h (state_t): Remove.
2723 (state_table): Be state_t **, not state_t *.
2724 * src/state.h (core, CORE_ALLOC): Rename as...
2725 (state_t, STATE_ALLOC): this.
2726 Add the LALR(1) members: shifts, reductions, errs.
2727 * src/LR0.c (state_table): Rename as...
2728 (state_hash): this, to avoid name clashes with the global
2729 `state_table'.
2730 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
2731 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
2732
2733 2001-12-10 Akim Demaille <akim@epita.fr>
2734
2735 Bison dumps core on bash.y.
2736 Reported by Pascal Bart.
2737
2738 * src/warshall.c (bitmatrix_print): New.
2739 (TC): Use it.
2740 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
2741 j must be the outer loop.
2742 * tests/regression.at (Broken Closure): New.
2743
2744 2001-12-05 Akim Demaille <akim@epita.fr>
2745
2746 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
2747 its argument.
2748 Reported by Peter Hámorský.
2749
2750 2001-12-05 Akim Demaille <akim@epita.fr>
2751
2752 * src/conflicts.c (err_table): Remove.
2753 (resolve_sr_conflict): Adjust.
2754 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
2755 Rename as...
2756 (state_t.reductions, state_t.shifts): this.
2757
2758 2001-12-05 Akim Demaille <akim@epita.fr>
2759
2760 * src/reduce.c (reduce_grammar_tables): No longer disable the
2761 removal of useless rules via CPP but via `if (0)', so that the
2762 compiler still check the code is valid.
2763 For instance, it should have noticed `rline' no longer exists: use
2764 the `line' member of rule_t.
2765 * src/gram.c (dummy, rline): Remove, unused.
2766
2767 2001-12-05 Akim Demaille <akim@epita.fr>
2768
2769 * src/output.c (pack_vector): Use assert, not berror.
2770 * src/main.c (berror): Remove, unused.
2771
2772 2001-12-05 Akim Demaille <akim@epita.fr>
2773
2774 New experimental feature: if --verbose --trace output all the
2775 items of a state, not only its kernel.
2776
2777 * src/print.c (print_core): If `trace_flag', then invoke closure
2778 before outputting the items of the state (print_core is no longer
2779 a correct name them).
2780 (print_results): Invoke new_closure/free_closure if needed.
2781
2782 2001-12-05 Akim Demaille <akim@epita.fr>
2783
2784 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
2785 * src/closure.c, src/closure.h (itemsetsize): Rename as...
2786 (nitemset): for consistency with the rest of the project.
2787
2788 2001-12-05 Akim Demaille <akim@epita.fr>
2789
2790 * src/closure.c (print_closure): Improve.
2791 (closure): Use it for printing input and output.
2792
2793 2001-12-05 Akim Demaille <akim@epita.fr>
2794
2795 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
2796 indexed by nonterminals.
2797
2798 2001-12-05 Akim Demaille <akim@epita.fr>
2799
2800 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
2801 what it was!).
2802 * src/warshall.h: Remove accidental duplication of the content.
2803
2804 2001-12-05 Akim Demaille <akim@epita.fr>
2805
2806 * src/closure.c (set_fderives): De-obfuscate.
2807
2808 2001-12-05 Akim Demaille <akim@epita.fr>
2809
2810 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
2811
2812 2001-12-05 Akim Demaille <akim@epita.fr>
2813
2814 * src/closure.c (set_firsts): De-obfuscate.
2815
2816 2001-12-05 Akim Demaille <akim@epita.fr>
2817
2818 * src/output.c (action_row): De-obfuscate
2819 using the good o' techniques: arrays not pointers, variable
2820 locality, BITISSET, RESETBIT etc.
2821
2822 2001-12-05 Akim Demaille <akim@epita.fr>
2823
2824 Pessimize the code to simplify it: from now on, all the states
2825 have a valid SHIFTS, which NSHIFTS is possibly 0.
2826
2827 * src/LR0.c (shifts_new): Be global and move to..
2828 * src/state.c, src/state.h: here.
2829 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
2830 * src/print_graph: Adjust.
2831
2832 2001-12-05 Akim Demaille <akim@epita.fr>
2833
2834 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
2835 * src/conflicts.c: Use it.
2836 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
2837 incorrectly ``simplified''.
2838
2839 2001-12-05 Akim Demaille <akim@epita.fr>
2840
2841 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
2842 using the good o' techniques: arrays not pointers, variable
2843 locality, BITISSET, RESETBIT etc.
2844
2845 2001-12-05 Akim Demaille <akim@epita.fr>
2846
2847 * src/state.h (SHIFT_SYMBOL): New.
2848 * src/conflicts.c: Use it to deobfuscate.
2849
2850 2001-12-05 Akim Demaille <akim@epita.fr>
2851
2852 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
2853 (print_reductions): De-obfuscate using the good o' techniques:
2854 arrays not pointers, variable locality, BITISSET.
2855
2856 2001-12-05 Akim Demaille <akim@epita.fr>
2857
2858 * src/conflicts.c (print_reductions): Arrays, not pointers.
2859 Use BITISSET.
2860
2861 2001-12-05 Akim Demaille <akim@epita.fr>
2862
2863 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2864
2865 2001-12-05 Akim Demaille <akim@epita.fr>
2866
2867 * src/conflicts.c (print_reductions): Improve variable locality.
2868
2869 2001-12-05 Akim Demaille <akim@epita.fr>
2870
2871 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2872
2873 2001-12-05 Akim Demaille <akim@epita.fr>
2874
2875 * src/conflicts.c (print_reductions): Improve variable locality.
2876
2877 2001-12-05 Akim Demaille <akim@epita.fr>
2878
2879 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
2880 * src/lalr.c: Use them.
2881
2882 2001-12-05 Akim Demaille <akim@epita.fr>
2883
2884 * src/LR0.c (augment_automaton): Formatting changes.
2885 Better variable locality.
2886
2887 2001-12-05 Akim Demaille <akim@epita.fr>
2888
2889 * src/lalr.c (matrix_print): New.
2890 (transpose): Use it.
2891 Use arrays instead of pointers.
2892
2893 2001-12-05 Akim Demaille <akim@epita.fr>
2894
2895 * src/lalr.c (maxrhs): Move to...
2896 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
2897 * src/lalr.c (build_relations): Adjust.
2898
2899 2001-12-05 Akim Demaille <akim@epita.fr>
2900
2901 * src/lalr.c (transpose): Free the memory allocated to the
2902 argument, as it is replaced by the results by the unique caller.
2903 (build_relations): Merely invoke transpose: it handles the memory
2904 deallocation.
2905 Improve variable locality.
2906 Avoid variables used as mere abbreviations.
2907 (compute_lookaheads): Use arrays instead of pointers.
2908
2909 2001-12-05 Akim Demaille <akim@epita.fr>
2910
2911 * src/lalr.c (initialize_F): Improve variable locality.
2912 Avoid variables used as mere abbreviations.
2913
2914 2001-12-05 Akim Demaille <akim@epita.fr>
2915
2916 * src/derives.c (print_derives): Display the ruleno.
2917 * src/lalr.c (initialize_F, transpose): Better variable locality
2918 to improve readability.
2919 Avoid variables used as mere abbreviations.
2920
2921 2001-12-05 Akim Demaille <akim@epita.fr>
2922
2923 * src/lalr.c (traverse): Use arrays instead of pointers.
2924
2925 2001-12-05 Akim Demaille <akim@epita.fr>
2926
2927 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
2928 the handling of squeue.
2929 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2930
2931 2001-12-05 Akim Demaille <akim@epita.fr>
2932
2933 Because useless nonterminals are now kept alive (instead of being
2934 `destroyed'), we now sometimes examine them, and store information
2935 related to them. Hence we need to know their number, and adjust
2936 memory allocations.
2937
2938 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
2939 static.
2940 * src/LR0.c (allocate_itemsets): The memory allocated to
2941 `symbol_count' was used for two different purpose: once to count
2942 the number of occurrences of each symbol, and later reassigned to
2943 `shift_symbol', containing the symbol that can be shifted from a
2944 given state.
2945 Deobfuscate, i.e., allocate, use and free `symbol_count' here
2946 only, and...
2947 (new_itemsets): Allocate `shift_symbol' here.
2948 (allocate_itemsets): symbol_count includes useless nonterminals.
2949 Make room for them.
2950 (free_storage): Use `free', not `XFREE', for pointers that cannot
2951 be null.
2952
2953 2001-12-05 Akim Demaille <akim@epita.fr>
2954
2955 * src/nullable.c (set_nullable): Deobfuscate the handling of
2956 ritem.
2957 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2958
2959 2001-12-05 Akim Demaille <akim@epita.fr>
2960
2961 * src/gram.c, src/gram.h (ritem_print): New.
2962 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
2963 (This useless function was defined only to work around VMS linkers
2964 that can't handle compilation units with variables only).
2965 * src/reduce.c (dump_grammar): Use it to trace the construction of
2966 ritem.
2967
2968 2001-12-04 Paul Eggert <eggert@twinsun.com>
2969
2970 * src/bison.simple (union yyalloc): Change member names
2971 to be the same as the stack names.
2972 (yyparse): yyptr is now union yyalloc *, not char *.
2973 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
2974 and may generate better code on some machines.
2975 (yystpcpy): Use prototype if __STDC__ is defined, not just
2976 if __cplusplus is defined.
2977
2978 2001-11-30 Akim Demaille <akim@epita.fr>
2979
2980 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
2981 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
2982 Gettext doesn't compile cleanly, and dies with -Werror.
2983 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
2984 Include WARNING_CFLAGS here.
2985 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
2986 before being defined.
2987
2988 2001-11-27 Paul Eggert <eggert@twinsun.com>
2989
2990 * lib/quotearg.h (quotearg_n, quotearg_n_style):
2991 First arg is int, not unsigned.
2992 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
2993 (SIZE_MAX, UINT_MAX): New macros.
2994 (quotearg_n_options): Abort if N is negative.
2995 Avoid overflow check on hosts where size_t is 64 bits and int
2996 is 32 bits, as overflow is impossible there.
2997 Fix off-by-one typo that caused unnecessary reallocation.
2998
2999 2001-11-29 Paul Eggert <eggert@twinsun.com>
3000
3001 Name space cleanup in generated parser.
3002
3003 * doc/bison.texinfo (Bison Parser): Discuss system headers
3004 and their effect on the user name space.
3005
3006 * src/bison.simple:
3007 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
3008 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
3009 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
3010
3011 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
3012 on user names when possible.
3013
3014 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
3015 Simplify test for whather <alloca.h> exists.
3016
3017 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
3018
3019 (<stdio.h>): Include if YYDEBUG.
3020
3021 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
3022 ! defined (yyoverflow) && ! defined (yymemcpy).
3023
3024 (yymemcpy, yyparse): Rename local variables as needed so that
3025 they all begin with 'yy'.
3026
3027 (yystrlen, yystpcpy): New functions.
3028
3029 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
3030 All uses changed.
3031
3032 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
3033 instead of relying on string.h functions. Use YYSTACK_ALLOC
3034 and YYSTACK_FREE instead of malloc and free.
3035
3036 2001-11-30 Akim Demaille <akim@epita.fr>
3037
3038 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
3039 before their first uses.
3040 (YYBISON, YYPURE): Move to the top of the output.
3041
3042 2001-11-30 Akim Demaille <akim@epita.fr>
3043
3044 * tests/reduce.at (Useless Nonterminals): Fix.
3045
3046 2001-11-30 Akim Demaille <akim@epita.fr>
3047
3048 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
3049 if body instead of `;' to pacify GCC's warnings.
3050
3051 2001-11-30 Akim Demaille <akim@epita.fr>
3052
3053 Instead of mapping the LHS of unused rules to -1, keep the LHS
3054 valid, but flag the rules as invalid.
3055
3056 * src/gram.h (rule_t): `useful' is a new member.
3057 * src/print.c (print_grammar): Adjust.
3058 * src/derives.c (set_derives): Likewise.
3059 * src/reader.c (packgram, reduce_output): Likewise.
3060 * src/reduce.c (reduce_grammar_tables): Likewise.
3061 * tests/reduce.at (Underivable Rules, Useless Rules): New.
3062
3063 2001-11-30 Akim Demaille <akim@epita.fr>
3064
3065 * src/reduce.c (reduce_output): Formatting changes.
3066 * src/print.c (print_results, print_grammar): Likewise.
3067 * tests/regression.at (Rule Line Numbers)
3068 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
3069
3070 2001-11-30 Akim Demaille <akim@epita.fr>
3071
3072 * src/reduce.c (nonterminals_reduce): Instead of throwing away
3073 useless nonterminals, move them at the end of the symbol arrays.
3074 (reduce_output): Adjust.
3075 * tests/reduce.at (Useless Nonterminals): Adjust.
3076
3077 2001-11-30 Akim Demaille <akim@epita.fr>
3078
3079 * src/reduce.c: Various comment/formatting changes.
3080 (nonterminals_reduce): New, extracted from...
3081 (reduce_grammar_tables): here.
3082 (reduce_grammar): Call nonterminals_reduce.
3083
3084 2001-11-29 Paul Eggert <eggert@twinsun.com>
3085
3086 * src/bison.simple (YYSTACK_REALLOC): Remove.
3087 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
3088 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
3089 New macros.
3090 (union yyalloc): New type.
3091 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
3092 an arbitrary restriction on hosts where size_t is wider than int.
3093
3094 (yyparse): Don't dump core if alloca or malloc fails; instead, report
3095 a parser stack overflow. Allocate just one block of memory for all
3096 three stacks, instead of allocating three blocks; this typically is
3097 faster and reduces fragmentation.
3098
3099 Do not limit the number of items in the stack to a value that fits
3100 in 'int', as this is an arbitrary limit on hosts with 64-bit
3101 size_t and 32-bit int.
3102
3103 2001-11-29 Marc Autret <autret_m@epita.fr>
3104
3105 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
3106 of defining YYERROR_VERBOSE.
3107 [AT_DATA]: $4 is now out of C declarations in the prologue.
3108
3109 2001-11-28 Marc Autret <autret_m@epita.fr>
3110
3111 * src/reader.c (parse_dquoted_param): New.
3112 (parse_skel_decl): Use it.
3113 * src/lex.h: Add its prototype.
3114 * src/lex.c (literalchar): Become not static.
3115
3116 2001-11-28 Marc Autret <autret_m@epita.fr>
3117
3118 * src/output.h: And put its extern declaration here.
3119 * src/output.c (error_verbose): Define here.
3120 (prepare): Echo name modification.
3121 * src/getargs.h: Clean its extern declaration.
3122 * src/getargs.c (error_verbose_flag): Remove.
3123 (getargs): Remove case 'e'.
3124 * src/options.c (option_table): 'error-verbose' is now seen as simple
3125 percent option.
3126 Include output.h.
3127
3128 * src/reader.c (read_declarations): Remove case tok_include.
3129 (parse_include_decl): Remove.
3130 * src/lex.h (token_t): Remove tok_include.
3131 * src/options.c (option_table): 'include' is now a simple command line
3132 option.
3133
3134 2001-11-28 Marc Autret <autret_m@epita.fr>
3135
3136 * src/bison.simple: Adjust muscle names.
3137 * src/muscle_tab.c (muscle_init): Also rename the muscles.
3138 * src/output.c (prepare): s/_/-/ for the muscles names.
3139 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
3140
3141 2001-11-28 Marc Autret <autret_m@epita.fr>
3142
3143 * src/bison.simple: Fix debug.
3144 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
3145
3146 2001-11-28 Akim Demaille <akim@epita.fr>
3147
3148 * src/LR0.c (shifts_new): New.
3149 (save_shifts, insert_start_shift, augment_automaton): Use it.
3150
3151 2001-11-28 Akim Demaille <akim@epita.fr>
3152
3153 * src/closure.c (closure): `b' and `ruleno' denote the same value:
3154 keep ruleno only.
3155
3156 2001-11-28 Akim Demaille <akim@epita.fr>
3157
3158 * src/closure.c (closure): Instead of looping over word in array
3159 then bits in words, loop over bits in array.
3160
3161 2001-11-28 Akim Demaille <akim@epita.fr>
3162
3163 * src/closure.c (closure): No longer optimize the special case
3164 where all the bits of `ruleset[r]' are set to 0, to make the code
3165 clearer.
3166
3167 2001-11-28 Akim Demaille <akim@epita.fr>
3168
3169 * src/closure.c (closure): `r' and `c' are new variables, used to
3170 de-obfuscate accesses to RULESET and CORE.
3171
3172 2001-11-28 Akim Demaille <akim@epita.fr>
3173
3174 * src/reduce.c (reduce_print): Use ngettext.
3175 (dump_grammar): Improve the trace accuracy.
3176
3177 2001-11-28 Akim Demaille <akim@epita.fr>
3178
3179 * src/reduce.c (dump_grammar): Don't translate trace messages.
3180
3181 2001-11-28 Akim Demaille <akim@epita.fr>
3182
3183 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
3184 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
3185 as all tags are free'ed afterwards.
3186 From Enrico Scholz.
3187
3188 2001-11-27 Paul Eggert <eggert@twinsun.com>
3189
3190 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
3191 use alloca when we didn't want to, and vice versa.
3192
3193 2001-11-27 Marc Autret <autret_m@epita.fr>
3194
3195 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
3196 initialization.
3197 * src/output.c (prepare): Remove its update.
3198
3199 2001-11-27 Marc Autret <autret_m@epita.fr>
3200
3201 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
3202 Use %error-verbose.
3203
3204 2001-11-27 Marc Autret <autret_m@epita.fr>
3205
3206 * src/bison.simple: Remove YYERROR_VERBOSE using.
3207 Use %%error_verbose.
3208 (yyparse): Likewise.
3209 * src/output.c (prepare): Give its final value.
3210 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
3211 * src/getargs.h: Add its extern declaration.
3212 * src/getargs.c (error_verbose_flag): New int.
3213 (getargs): Update to catch new case.
3214 * src/options.c (option_table): 'error-verbose' is a new option.
3215 (shortopts): Update.
3216
3217 2001-11-27 Akim Demaille <akim@epita.fr>
3218
3219 * src/system.h: Use intl/libgettext.h.
3220 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
3221
3222 2001-11-27 Akim Demaille <akim@epita.fr>
3223
3224 * tests/torture.at (Exploding the Stack Size with Malloc):
3225 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
3226
3227 2001-11-27 Akim Demaille <akim@epita.fr>
3228
3229 * src/files.c: Include error.h.
3230 Reported by Hans Aberg.
3231
3232 2001-11-26 Marc Autret <autret_m@epita.fr>
3233
3234 * src/reader.c (parse_include_decl): New, not yet implemented.
3235 (read_declarations): Add case tok_include.
3236 * src/getargs.h (include): Add its extern definition.
3237 * src/getargs.c (include): New const char *.
3238 (getargs): Add case '-I'.
3239 * src/options.c (option_table): Add include as command line and
3240 percent option.
3241 * src/lex.h (token_t): Add tok_include.
3242
3243 2001-11-26 Akim Demaille <akim@epita.fr>
3244
3245 * src/reader.c (readgram): Make sure rules for mid-rule actions
3246 have a lineno equal to that of their host rule.
3247 Reported by Hans Aberg.
3248 * tests/regression.at (Rule Line Numbers): New.
3249
3250 2001-11-26 Akim Demaille <akim@epita.fr>
3251
3252 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
3253 size_ts.
3254
3255 2001-11-26 Akim Demaille <akim@epita.fr>
3256
3257 * src/complain.c, src/complain.h (error): Remove, provided by
3258 lib/error.[ch].
3259
3260 2001-11-26 Akim Demaille <akim@epita.fr>
3261
3262 * src/reader.c (read_declarations): Don't abort on tok_illegal,
3263 issue an error message.
3264 * tests/regression.at (Invalid %directive): New.
3265 Reported by Hans Aberg.
3266
3267 2001-11-26 Akim Demaille <akim@epita.fr>
3268
3269 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
3270 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
3271
3272 2001-11-26 Akim Demaille <akim@epita.fr>
3273
3274 * src/conflicts.c (conflicts_print): Don't complain at all when
3275 there are no reduce/reduce conflicts, and as many shift/reduce
3276 conflicts as expected.
3277 * tests/regression.at (%expect right): Adjust.
3278
3279 2001-11-23 Akim Demaille <akim@epita.fr>
3280
3281 * lib/alloca.c: Update, from fileutils.
3282
3283 2001-11-23 Akim Demaille <akim@epita.fr>
3284
3285 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
3286
3287 2001-11-23 Akim Demaille <akim@epita.fr>
3288
3289 * src/system.h: Include alloca.h.
3290 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
3291
3292 2001-11-23 Akim Demaille <akim@epita.fr>
3293
3294 * src/print_graph.c (print_actions): Remove `rule', unused.
3295 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
3296 pacify GCC's signed < unsigned warnings.
3297 * src/closure.c (itemsetsize): Likewise.
3298 * src/reader.c (symbol_list_new): Static.
3299
3300 2001-11-23 Akim Demaille <akim@epita.fr>
3301
3302 Attaching lineno to buckets is stupid, since only one copy of each
3303 symbol is kept, only the line of the first occurrence is kept too.
3304
3305 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
3306 * src/reader.c (rline_allocated): Remove, unused.
3307 (symbol_list): Have a `line' member.
3308 (symbol_list_new): New.
3309 (readgram): Use it.
3310 * src/print.c (print_grammar): Output the rule line numbers.
3311 * tests/regression.at (Solved SR Conflicts)
3312 (Unresolved SR Conflicts): Adjust.
3313 Reported by Hans Aberg.
3314
3315 2001-11-22 Marc Autret <autret_m@epita.fr>
3316
3317 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
3318
3319 2001-11-22 Marc Autret <autret_m@epita.fr>
3320
3321 * src/muscle_tab.c (muscle_init): Remove initialization of
3322 skeleton muscle.
3323 * src/output.c (output_master_parser): Do it here.
3324
3325 2001-11-20 Akim Demaille <akim@epita.fr>
3326
3327 * po/sv.po: New.
3328 * configure.in (ALL_LINGUAS): Adjust.
3329 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
3330 longer contains strings to translate.
3331
3332 2001-11-19 Akim Demaille <akim@epita.fr>
3333
3334 * src/conflicts.c (conflicts_print): Add a missing \n.
3335
3336 2001-11-19 Akim Demaille <akim@epita.fr>
3337
3338 * src/nullable.c (nullable_print): New.
3339 (set_nullable): Call it when tracing.
3340 Better locality of variables.
3341
3342 2001-11-19 Akim Demaille <akim@epita.fr>
3343
3344 * src/print.c (print_actions): Better locality of variables.
3345
3346 2001-11-19 Akim Demaille <akim@epita.fr>
3347
3348 * src/derives.c (print_derives): Fix and enrich.
3349 * src/closure.c (print_fderives): Likewise.
3350
3351 2001-11-19 Akim Demaille <akim@epita.fr>
3352
3353 * src/closure.c (itemsetend): Remove, replaced with...
3354 (itemsetsize): new.
3355
3356 2001-11-19 Akim Demaille <akim@epita.fr>
3357
3358 * src/LR0.c (kernel_end): Remove, replaced with...
3359 (kernel_size): new.
3360
3361 2001-11-19 Akim Demaille <akim@epita.fr>
3362
3363 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
3364 to clarify.
3365
3366 2001-11-19 Akim Demaille <akim@epita.fr>
3367
3368 * src/closure.c (closure): Use arrays instead of pointers to clarify.
3369
3370 2001-11-19 Akim Demaille <akim@epita.fr>
3371
3372 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
3373 trace messages.
3374 * src/LR0.c: Likewise.
3375 (allocate_itemsets): Use arrays instead of pointers to clarify.
3376
3377 2001-11-19 Akim Demaille <akim@epita.fr>
3378
3379 * src/getargs.c (statistics_flag): Replace with...
3380 (trace_flag): New.
3381 (longopts): Accept --trace instead of --statistics.
3382 * src/getargs.h, src/options.c: Adjust.
3383 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
3384 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
3385
3386 2001-11-19 Akim Demaille <akim@epita.fr>
3387
3388 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
3389 pointers to clarify the code.
3390 (save_reductions, save_shifts): Factor common parts of alternatives.
3391
3392 2001-11-19 Akim Demaille <akim@epita.fr>
3393
3394 * src/LR0.c (new_state, get_state): Complete TRACE code.
3395 * src/closure.c: Include `reader.h' to get `tags', needed by the
3396 trace code.
3397 Rename the conditional DEBUG as TRACE.
3398 Output consistently TRACEs to stderr, not stdout.
3399 * src/derives.c: Likewise.
3400 * src/reduce.c: (inaccessable_symbols): Using if is better style
3401 than goto.
3402 Use `#if TRACE' instead of `#if 0' for tracing code.
3403
3404 2001-11-19 Akim Demaille <akim@epita.fr>
3405
3406 * src/system.h (LIST_FREE, shortcpy): New.
3407 * src/LR0.c: Use them.
3408 * src/output.c (free_itemsets, free_reductions, free_shifts):
3409 Remove, replaced by LIST_FREE.
3410
3411 2001-11-19 Akim Demaille <akim@epita.fr>
3412
3413 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
3414 (REDUCTIONS_ALLOC): New.
3415 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
3416 allocation.
3417
3418 2001-11-19 Akim Demaille <akim@epita.fr>
3419
3420 * src/LR0.c (new_state): Complete trace code.
3421 * src/nullable.c (set_nullable): Don't translate traces.
3422
3423 2001-11-19 Akim Demaille <akim@epita.fr>
3424
3425 * src/print_graph.c (print_core): Better locality of variables.
3426 * src/print.c (print_core): Likewise.
3427
3428 2001-11-19 Akim Demaille <akim@epita.fr>
3429
3430 * src/vcg.c: You do the output, so you are responsible of the
3431 handling of VCG syntax, in particular: use quotearg.
3432 * src/print_graph.c: Don't.
3433 (print_actions): Don't output the actions as part of the nodes,
3434 since that's the job of the edges.
3435 (print_state): Don't output by hand: fill the node description,
3436 and ask for its output.
3437
3438 2001-11-19 Akim Demaille <akim@epita.fr>
3439
3440 * src/bison.simple (yyparse): When verbosely reporting an error,
3441 no longer put additional quotes around token names.
3442 * tests/calc.at: Adjust.
3443
3444 2001-11-19 Akim Demaille <akim@epita.fr>
3445
3446 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
3447 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
3448 * src/output.c: Adjust.
3449
3450 2001-11-19 Akim Demaille <akim@epita.fr>
3451
3452 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
3453 (rule_t): this.
3454 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
3455
3456 2001-11-19 Akim Demaille <akim@epita.fr>
3457
3458 * src/gram.h (rule_t): New.
3459 (rule_table): New.
3460 (rrhs, rlhs): Remove, part of state_t.
3461 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
3462 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
3463 * src/reader.c, src/reduce.c: Adjust.
3464
3465 2001-11-19 Akim Demaille <akim@epita.fr>
3466
3467 * src/reader.c (symbols_output): New, extracted from...
3468 (packsymbols): Here.
3469 (reader): Call it.
3470
3471 2001-11-19 Akim Demaille <akim@epita.fr>
3472
3473 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
3474 (maxrhs): this new function.
3475
3476 2001-11-19 Akim Demaille <akim@epita.fr>
3477
3478 * src/lalr.c (F): New macro to access the variable F.
3479 Adjust.
3480
3481 2001-11-19 Akim Demaille <akim@epita.fr>
3482
3483 * src/lalr.h (LA): New macro to access the variable LA.
3484 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3485 * src/lalr.c: Adjust.
3486
3487 2001-11-19 Akim Demaille <akim@epita.fr>
3488
3489 * src/lalr.c (initialize_LA): Only initialize LA. Let...
3490 (set_state_table): handle the `lookaheads' members.
3491
3492 2001-11-19 Akim Demaille <akim@epita.fr>
3493
3494 * src/lalr.h (lookaheads): Removed array, whose contents is now
3495 a member of...
3496 (state_t): this structure.
3497 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3498 Adjust.
3499
3500 2001-11-19 Akim Demaille <akim@epita.fr>
3501
3502 * src/lalr.h (consistent): Removed array, whose contents is now
3503 a member of...
3504 (state_t): this structure.
3505 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3506 Adjust.
3507
3508 2001-11-19 Akim Demaille <akim@epita.fr>
3509
3510 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
3511 contents are now members of...
3512 (state_t): this structure.
3513 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3514 Adjust.
3515
3516 2001-11-19 Akim Demaille <akim@epita.fr>
3517
3518 * src/lalr.h (state_t): New.
3519 (state_table): Be a state_t * instead of a core **.
3520 (accessing_symbol): Remove, part of state_t.
3521 * src/lalr.c: Adjust.
3522 (set_accessing_symbol): Merge into...
3523 (set_state_table): this.
3524 * src/print_graph.c, src/conflicts.c: Adjust.
3525
3526 2001-11-14 Akim Demaille <akim@epita.fr>
3527
3528 * tests/calc.at, tests/output.at, tests/regression.at,
3529 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
3530 now the tests are run in private dirs, therefore AC_CLEANUP and
3531 family can be simplified to 0-ary.
3532 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
3533 use abs. path to find config.h.
3534 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
3535 stderr, there can be way too much random noise.
3536 Instead pass -Werror to GCC and rely on the exit status.
3537 Reported by Wolfram Wagner.
3538
3539 2001-11-14 Akim Demaille <akim@epita.fr>
3540
3541 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
3542 defined only if yyoverflow is defined, to avoid `warning: unused
3543 variable `yyvs1''.
3544 Reported by The Test Suite.
3545
3546 2001-11-14 Akim Demaille <akim@epita.fr>
3547
3548 * src/print.c: Include reduce.h.
3549 Reported by Hans Aberg.
3550
3551 2001-11-14 Akim Demaille <akim@epita.fr>
3552
3553 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
3554 Revert a previous patch: these are really const.
3555 * src/conflicts.c (conflict_report): Additional useless pair of
3556 braces to pacify GCC's warnings for `if () if () {} else {}'.
3557 * src/lex.c (parse_percent_token): Replace equal_offset with
3558 arg_offset.
3559 arg is const.
3560 Be sure to strdup `arg' when used, since there is no reason for
3561 token_buffer not to change.
3562
3563 2001-11-14 Akim Demaille <akim@epita.fr>
3564
3565 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
3566 definition.
3567 * src/main.c (main): Use them.
3568 Suggested by Hans Aberg.
3569
3570 2001-11-12 Akim Demaille <akim@epita.fr>
3571
3572 * src/system.h (ngettext): Now that we use ngettext, be sure to
3573 provide a default definition when NLS are not used.
3574
3575 2001-11-12 Akim Demaille <akim@epita.fr>
3576
3577 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
3578 Use @kbd to denote user input.
3579 (Language and Grammar): ANSIfy the example.
3580 Adjust its layout for info/notinfo.
3581 (Location Tracking Calc): Output error messages to stderr.
3582 Output locations in a more GNUtically correct way.
3583 Fix a couple of Englishos.
3584 Adjust @group/@end group pairs.
3585
3586 2001-11-12 Akim Demaille <akim@epita.fr>
3587
3588 %expext was not functioning at all.
3589
3590 * src/conflicts.c (expected_conflicts): Set to -1.
3591 (conflict_report): Use ngettext.
3592 (conflicts_print): Check %expect and make its violation an error.
3593 * doc/bison.texinfo (Expect Decl): Adjust.
3594 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
3595 * tests/regression.at (%expect not enough, %expect right)
3596 (%expect too much): New.
3597
3598 2001-11-12 Akim Demaille <akim@epita.fr>
3599
3600 * tests/regression.at (Conflicts): Rename as...
3601 (Unresolved SR Conflicts): this.
3602 (Solved SR Conflicts): New.
3603
3604 2001-11-12 Akim Demaille <akim@epita.fr>
3605
3606 * src/reduce.c (print_results): Rename as...
3607 (reduce_output): This.
3608 Output to OUT, passed as argument, instead of output_obstack.
3609 (dump_grammar): Likewise.
3610 (reduce_free): New.
3611 Also free V1.
3612 (reduce_grammar): No longer call reduce_output, since...
3613 * src/print.c (print_results): do it.
3614 * src/main.c (main): Call reduce_free;
3615
3616 2001-11-12 Akim Demaille <akim@epita.fr>
3617
3618 * src/conflicts.c (print_reductions): Accept OUT as argument.
3619 Output to it, not to output_obstack.
3620 * src/print.c (print_actions): Adjust.
3621
3622 2001-11-12 Akim Demaille <akim@epita.fr>
3623
3624 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
3625 the result instead of using...
3626 (src_total, rrc_total, src_count, rrc_count): Remove.
3627 (any_conflicts): Remove.
3628 (print_conflicts): Split into...
3629 (conflicts_print, conflicts_output): New.
3630 * src/conflicts.h: Adjust.
3631 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
3632 * src/print.c (print_grammar): Issue `\n' between two rules.
3633 * tests/regression.at (Conflicts): New.
3634 Reported by Tom Lane.
3635
3636 2001-11-12 Akim Demaille <akim@epita.fr>
3637
3638 * tests/regression.at (Invalid input): Remove, duplicate with
3639 ``Invalid input: 1''.
3640
3641 2001-11-12 Akim Demaille <akim@epita.fr>
3642
3643 * tests/torture.at (AT_DATA_STACK_TORTURE)
3644 (Exploding the Stack Size with Alloca)
3645 (Exploding the Stack Size with Malloc): New.
3646
3647 2001-11-12 Akim Demaille <akim@epita.fr>
3648
3649 * src/bison.simple (YYSTACK_REALLOC): New.
3650 (yyparse) [!yyoverflow]: Use it and free the old stack.
3651 Reported by Per Allansson.
3652
3653 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
3654
3655 * src/bison.simple: Define type yystype instead of YYSTYPE, and
3656 define CPP macro, which substitute YYSTYPE by yystype.
3657 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
3658 with yyltype/YYLTYPE. This allows inclusion of the generated
3659 header within the parser if the compiler, such as GGC, accepts
3660 multiple equivalent #defines.
3661 From Akim.
3662
3663 2001-11-05 Akim Demaille <akim@epita.fr>
3664
3665 * src/reader.c (symbols_output): New, extracted from...
3666 (packsymbols): here.
3667 (reader): Adjust.
3668
3669 2001-11-05 Akim Demaille <akim@epita.fr>
3670
3671 * src/lex.c (parse_percent_token): s/quotearg/quote/.
3672
3673 2001-11-05 Akim Demaille <akim@epita.fr>
3674
3675 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
3676 pattern.
3677
3678 2001-11-05 Akim Demaille <akim@epita.fr>
3679
3680 * src/options.h (struct option_table_struct): set_flags is void*.
3681 * src/options.c (longopts): Support `--output' and `%output'.
3682 (usage): Adjust.
3683 * src/lex.h (tok_setopt): Remove, replaced with...
3684 (tok_intopt, tok_stropt): these new guys.
3685 * src/lex.c (getopt.h): Not needed.
3686 (token_buffer, unlexed_token_buffer): Not const.
3687 (percent_table): Promote `-' over `_' in directive names.
3688 Active `%name-prefix', `file-prefix', and `output'.
3689 (parse_percent_token): Accept possible arguments to directives.
3690 Promote `-' over `_' in directive names.
3691
3692 2001-11-04 Akim Demaille <akim@epita.fr>
3693
3694 * doc/bison.texinfo (Decl Summary): Split the list into
3695 `directives for grammars' and `directives for bison'.
3696 Sort'em.
3697 Add description of `%name-prefix', `file-prefix', and `output'.
3698 Promote `-' over `_' in directive names.
3699 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
3700 Simplify the description of `--name-prefix'.
3701 Promote `-' over `_' in directive names.
3702 Promote `--output' over `--output-file'.
3703 Fix the description of `--defines'.
3704 * tests/output.at: Exercise %file-prefix and %output.
3705
3706 2001-11-02 Akim Demaille <akim@epita.fr>
3707
3708 * doc/refcard.tex: Update.
3709
3710 2001-11-02 Akim Demaille <akim@epita.fr>
3711
3712 * src/symtab.h (SUNDEF): New.
3713 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
3714 stand for `uninitialized', instead of 0.
3715 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
3716 * src/lex.c (lex): Adjust.
3717
3718 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
3719 Number it 0.
3720 Let yylex return it instead of a plain 0.
3721 Reported by Dick Streefland.
3722
3723 2001-11-02 Akim Demaille <akim@epita.fr>
3724
3725 * tests/regression.at (Mixing %token styles): New test.
3726
3727 2001-11-02 Akim Demaille <akim@epita.fr>
3728
3729 * src/reader.c (parse_thong_decl): Formatting changes.
3730 (token_translations_init): New, extracted from...
3731 (packsymbols): Here.
3732 Adjust.
3733
3734 2001-11-01 Akim Demaille <akim@epita.fr>
3735
3736 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
3737 Check that `9foo.y' produces correct cpp guards.
3738 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
3739 guards.
3740 Reported by Wwp.
3741
3742 2001-11-01 Akim Demaille <akim@epita.fr>
3743
3744 * tests/regression.at (Invalid input: 2): New.
3745 * src/lex.c (unlexed_token_buffer): New.
3746 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
3747 too.
3748 Reported by Wwp.
3749
3750 2001-11-01 Akim Demaille <akim@epita.fr>
3751
3752 * tests/calc.at: Catch up with 1.30.
3753 * configure.in: Bump to 1.49a.
3754 Adjust to newer Autotest.
3755
3756 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
3757
3758 * src/conflicts.c: Move global variables rrc_total and src_total ...
3759 (print_conflicts): here.
3760 * src/output.c (output): Free global variable user_toknums.
3761 * src/lex.c (token_obstack): Become static.
3762
3763 2001-10-18 Akim Demaille <akim@epita.fr>
3764
3765 * tests/atlocal.in (GCC): Add.
3766 * tests/calc.at: s/m4_match/m4_bmatch/.
3767 s/m4_patsubst/m4_bpatsubst/.
3768 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
3769 * configure.in: AC_SUBST(GCC).
3770
3771 2001-10-14 Marc Autret <autret_m@epita.fr>
3772
3773 * src/options.c (create_long_option_table): Fix.
3774
3775 2001-10-10 Akim Demaille <akim@epita.fr>
3776
3777 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
3778
3779 2001-10-04 Akim Demaille <akim@epita.fr>
3780
3781 * src/reader.c (parse_union_decl): Push the caracters in
3782 union_obstack, not attrs_obstack.
3783
3784 2001-10-04 Akim Demaille <akim@epita.fr>
3785
3786 Merge in the branch 1.29.
3787
3788 * src/reader.c (packsymbols): Use a temporary obstack for
3789 `%%tokendef', since output_stack is already used elsewhere.
3790
3791 2001-10-02 Akim Demaille <akim@epita.fr>
3792
3793 Bump 1.29d.
3794
3795 2001-10-02 Akim Demaille <akim@epita.fr>
3796
3797 Version 1.29c.
3798
3799 2001-10-02 Akim Demaille <akim@epita.fr>
3800
3801 * tests/regression.at (Invalid CPP headers): New.
3802 From Alexander Belopolsky.
3803 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
3804
3805 2001-10-02 Akim Demaille <akim@epita.fr>
3806
3807 * tests/regression.at (Invalid input): New.
3808 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
3809 Reported by Shura.
3810
3811 2001-10-02 Akim Demaille <akim@epita.fr>
3812
3813 * tests/calc.at: Now that --debug works, the tests must be adjusted.
3814
3815 2001-10-02 Akim Demaille <akim@epita.fr>
3816
3817 * src/output.c (output_parser): Assert `skeleton'.
3818 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
3819 systems.
3820 From Shura.
3821
3822 2001-10-01 Marc Autret <autret_m@epita.fr>
3823
3824 * src/lex.h: Echo modifications.
3825 * src/lex.c (unlex): Parameter is now token_t.
3826 From Hans Aberg.
3827
3828 2001-10-01 Marc Autret <autret_m@epita.fr>
3829
3830 * src/main.c: Include lex.h.
3831 From Hans Aberg.
3832
3833 2001-09-29 Akim Demaille <akim@epita.fr>
3834
3835 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
3836
3837 2001-09-28 Akim Demaille <akim@epita.fr>
3838
3839 * tests/testsuite.at: Update to newer Autotest.
3840 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
3841
3842 2001-09-27 Akim Demaille <akim@epita.fr>
3843
3844 Position independent wrapper.
3845
3846 * tests/bison: Remove.
3847 * tests/bison.in: New.
3848 * configure.in: Adjust.
3849
3850 2001-09-27 Paul Eggert <eggert@twinsun.com>
3851
3852 Port quotearg fixes from tar 1.13.24.
3853
3854 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
3855 tm to be declared.
3856 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
3857 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
3858
3859 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
3860 * m4/mbrtowc.m4: New file.
3861 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
3862 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
3863
3864 2001-09-27 Akim Demaille <akim@epita.fr>
3865
3866 Bump to 1.29c.
3867
3868 2001-09-27 Akim Demaille <akim@epita.fr>
3869
3870 Version 1.29b.
3871
3872 2001-09-25 Akim Demaille <akim@epita.fr>
3873
3874 * src/system.h: Include `xalloc.h'.
3875 Remove it from the C files.
3876 * src/files.c (output_files): Free the obstacks.
3877 * src/lex.c (init_lex): Rename as...
3878 (lex_init): this.
3879 (lex_free): New.
3880 * src/main.c (main): Use it.
3881
3882 2001-09-24 Marc Autret <autret_m@epita.fr>
3883
3884 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
3885 to output informations in fout (FILE*).
3886 (open_graph, close_graph): Likewise.
3887 (output_graph, output_edge, output_node): Likewise.
3888 * src/vcg.h: Update function prototypes.
3889 * src/print_graph.c (print_graph): Open output graph file.
3890 (print_actions): Adjust.
3891 * src/files.h: Remove extern declaration.
3892 * src/files.c: Remove graph_obstack declaration.
3893 (open_files): Remove graph_obstack initialization.
3894 (output_files): Remove graph_obstack saving.
3895
3896 2001-09-24 Marc Autret <autret_m@epita.fr>
3897
3898 * src/files.c (compute_output_file_names): Fix.
3899
3900 2001-09-24 Marc Autret <autret_m@epita.fr>,
3901 Akim Demaille <akim@epita.fr>
3902
3903 * src/reader.c (reader): Remove call to free_symtab ().
3904 * src/main.c (main): Call it here.
3905 Include symtab.h.
3906 * src/conflicts.c (initialize_conflicts): Rename as...
3907 (solve_conflicts): this.
3908 * src/print.c (print_core, print_actions, print_state)
3909 (print_grammar): Dump to a file instead a `output_obstack'.
3910 (print_results): Dump `output_obstack', and then proceed with the
3911 FILE *.
3912 * src/files.c (compute_output_file_names, close_files): New.
3913 (output_files): Adjust.
3914 * src/main.c (main): Adjust.
3915
3916 2001-09-23 Marc Autret <autret_m@epita.fr>
3917
3918 * src/files.c (compute_header_macro): Computes header macro name
3919 from spec_defines_file when given.
3920
3921 2001-09-23 Marc Autret <autret_m@epita.fr>
3922
3923 * src/files.c (output_files): Add default extensions.
3924
3925 2001-09-22 Akim Demaille <akim@epita.fr>
3926
3927 * src/conflicts.c (finalize_conflicts): Rename as...
3928 (free_conflicts): this.
3929
3930 2001-09-22 Akim Demaille <akim@epita.fr>
3931
3932 * src/gram.c (gram_free): Rename back as...
3933 (dummy): this.
3934 (output_token_translations): Free `token_translations'.
3935 * src/symtab.c (free_symtab): Free the tag field.
3936
3937 2001-09-22 Akim Demaille <akim@epita.fr>
3938
3939 Remove `translations' as it is always set to true.
3940
3941 * src/gram.h: Adjust.
3942 * src/reader.c (packsymbols, parse_token_decl): Adjust
3943 * src/print.c (print_grammar): Adjust.
3944 * src/output.c (output_token_translations): Adjust.
3945 * src/lex.c (lex): Adjust.
3946 * src/gram.c: Be sure the set pointers to NULL.
3947 (dummy): Rename as...
3948 (gram_free): this.
3949
3950 2001-09-22 Akim Demaille <akim@epita.fr>
3951
3952 * configure.in: Invoke AM_LIB_DMALLOC.
3953 * src/system.h: Use dmalloc.
3954 * src/LR0.c: Be sure to have pointers initialized to NULL.
3955 (allocate_itemsets): Allocate kernel_items only if needed.
3956
3957 2001-09-22 Akim Demaille <akim@epita.fr>
3958
3959 * configure.in: Bump to 1.29b.
3960 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
3961 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
3962 need xmalloc.c in calc.y.
3963 From Pascal Bart.
3964
3965 2001-09-21 Akim Demaille <akim@epita.fr>
3966
3967 Version 1.29a.
3968 * Makefile.maint, config/config.guess, config/config.sub,
3969 * config/missing: Update from masters.
3970 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
3971 upon package.m4.
3972 * configure.in (ALL_LINGUAS): Add `tr'.
3973
3974 2001-09-21 Akim Demaille <akim@epita.fr>
3975
3976 * tests/Makefile.am (package.m4): Move to...
3977 ($(srcdir)/$(TESTSUITE)): here.
3978
3979 2001-09-20 Akim Demaille <akim@epita.fr>
3980
3981 * src/complain.c: No longer try to be standalone: use system.h.
3982 Don't assume __STDC__ is defined to 1. Just test if it is defined.
3983 * src/complain.h: Likewise.
3984 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
3985 Remove the unused variable `n'.
3986 From Albert Chin-A-Young.
3987
3988 2001-09-18 Marc Autret <autret_m@epita.fr>
3989
3990 * doc/bison.1: Update.
3991 * doc/bison.texinfo (Bison Options): Update --defines and --graph
3992 descriptions.
3993 (Option Cross Key): Update.
3994 Add --graph.
3995
3996 2001-09-18 Marc Autret <autret_m@epita.fr>
3997
3998 * tests/regression.at: New test (comment in %union).
3999
4000 2001-09-18 Marc Autret <autret_m@epita.fr>
4001
4002 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
4003 do that.
4004 Reported by Keith Browne.
4005
4006 2001-09-18 Marc Autret <autret_m@epita.fr>
4007
4008 * tests/output.at: Add tests for --defines and --graph.
4009
4010 2001-09-18 Marc Autret <autret_m@epita.fr>
4011
4012 * tests/output.at: Removes tests of %{header,src}_extension features.
4013
4014 2001-09-18 Akim Demaille <akim@epita.fr>
4015
4016 * tests/Makefile.am (package.m4): New.
4017 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
4018 (_AT_CHECK_CALC_ERROR): Likewise.
4019 Factor the `, ' part of verbose error messages.
4020
4021 2001-09-18 Marc Autret <autret_m@epita.fr>
4022
4023 * src/getargs.c (longopts): Declare --defines and --graph as options
4024 with optional arguments.
4025 * src/files.h: Add extern declarations.
4026 * src/files.c (spec_graph_file, spec_defines_file): New.
4027 (output_files): Update.
4028 Remove CPP-outed code.
4029
4030 2001-09-18 Marc Autret <autret_m@epita.fr>
4031
4032 Turn off %{source,header}_extension feature.
4033
4034 * src/files.c (compute_exts_from_gf): Update.
4035 (compute_exts_from_src): Update.
4036 (output_files): CPP-out useless code.
4037 * src/files.h: Remove {header,source}_extension extern declarations.
4038 * src/reader.c (parse_dquoted_param): CPP-out.
4039 (parse_header_extension_decl): Remove.
4040 (parse_source_extension_decl): Remove.
4041 (read_declarations): Remove cases tok_{hdrext,srcext}.
4042 * src/lex.c (percent_table): Remove {header,source}_extension entries.
4043 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
4044
4045 2001-09-10 Akim Demaille <akim@epita.fr>
4046
4047 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
4048 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
4049 (AT_CHECK_OUTPUT): this.
4050 Merely check ls' exit status, its output is useless.
4051
4052 2001-09-10 Akim Demaille <akim@epita.fr>
4053
4054 * tests/calc.at: Use m4_match.
4055 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
4056
4057 2001-09-10 Marc Autret <autret_m@epita.fr>,
4058 Akim Demaille <akim@epita.fr>
4059
4060 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
4061 enum color_e.
4062 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
4063 to `normal'.
4064 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
4065 * src/lex.h: Adjust prototype.
4066 (token_t): Add `tok_undef'.
4067 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
4068 (parse_percent_token): Now returns token_t.
4069 Add default statement in switch.
4070 (lex): Separate `c' as an input variable, from the token_t result
4071 part.
4072 (unlexed): Is a token_t.
4073
4074 2001-09-10 Akim Demaille <akim@epita.fr>
4075
4076 * configure.in: Bump to 1.29a.
4077
4078 2001-09-07 Akim Demaille <akim@epita.fr>
4079
4080 Version 1.29.
4081
4082 2001-08-30 Akim Demaille <akim@epita.fr>
4083
4084 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
4085 * m4/atconfig.m4: Remove.
4086 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
4087 * tests/bison: New.
4088 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
4089 m4_if, m4_patsubst, and m4_regexp.
4090 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
4091 `input' file instead of echo.
4092
4093 2001-08-29 Akim Demaille <akim@epita.fr>
4094
4095 Bump to 1.28e.
4096
4097 2001-08-29 Akim Demaille <akim@epita.fr>
4098
4099 Version 1.28d.
4100
4101 2001-08-29 Paul Eggert <eggert@twinsun.com>
4102
4103 * src/bison.simple (yyparse): Don't take the address of an
4104 item before the start of an array, as that doesn't conform to
4105 the C Standard.
4106
4107 2001-08-29 Robert Anisko <anisko_r@epita.fr>
4108
4109 * doc/bison.texinfo (Location Tracking Calc): New node.
4110
4111 2001-08-29 Paul Eggert <eggert@twinsun.com>
4112
4113 * src/output.c (output): Do not define const, as this now
4114 causes more problems than it cures.
4115
4116 2001-08-29 Akim Demaille <akim@epita.fr>
4117
4118 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
4119 the nodes.
4120 Be sure to tag the `detailmenu'.
4121
4122 2001-08-29 Akim Demaille <akim@epita.fr>
4123
4124 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
4125 download in a tmp dir.
4126
4127 2001-08-28 Marc Autret <autret_m@epita.fr>
4128
4129 * config/depcomp: New file.
4130
4131 2001-08-28 Marc Autret <autret_m@epita.fr>
4132
4133 * doc/bison.1 (mandoc): Adjust.
4134 From Juan Manuel Guerrero.
4135
4136 2001-08-28 Marc Autret <autret_m@epita.fr>
4137
4138 * src/print_graph.c (print_state): Fix.
4139
4140 2001-08-27 Marc Autret <autret_m@epita.fr>
4141
4142 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
4143 char * members.
4144 Echo modifications to the functions prototypes.
4145 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
4146
4147 2001-08-27 Marc Autret <autret_m@epita.fr>
4148
4149 * src/vcg.c: Include `xalloc.h'.
4150 (add_colorentry): New.
4151 (add_classname): New.
4152 (add_infoname): New.
4153 * src/vcg.h: Add new prototypes.
4154
4155 2001-08-27 Akim Demaille <akim@epita.fr>
4156
4157 * Makefile.maint: Sync. again with CVS Autoconf.
4158
4159 2001-08-27 Akim Demaille <akim@epita.fr>
4160
4161 * Makefile.maint: Formatting changes.
4162 (po-update, cvs-update, update): New targets.
4163 (AMTAR): Remove.
4164
4165 2001-08-27 Akim Demaille <akim@epita.fr>
4166
4167 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
4168 * Makefile.maint: Sync. with CVS Autoconf.
4169
4170 2001-08-27 Marc Autret <autret_m@epita.fr>
4171
4172 * src/vcg.h (struct infoname_s): New.
4173 (struct colorentry_s): New.
4174 (graph_s): New fields {vertical,horizontal}_order in structure.
4175 Add `infoname' field.
4176 Add `colorentry' field;
4177 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
4178 (G_HORIZONTAL_ORDER): New.
4179 (G_INFONAME): New.
4180 (G_COLORENTRY): New.
4181 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
4182 Add output of `infoname'.
4183 Add output of `colorentry'.
4184
4185 2001-08-27 Marc Autret <autret_m@epita.fr>
4186
4187 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
4188 This one shadowed a global parameter.
4189
4190 2001-08-24 Marc Autret <autret_m@epita.fr>
4191
4192 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
4193 instead of `unsigned'.
4194 (print_state): Do not call obstack_object_size () in obstack_grow ()
4195 to avoid macro variables shadowing.
4196
4197 2001-08-23 Marc Autret <autret_m@epita.fr>
4198
4199 * src/lex.c (percent_table): Typo: s/naem/name/.
4200 Add graph option.
4201 Normalize new options declarations.
4202
4203 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
4204
4205 * tests/suite.at: Exercise %header_extension and %source_extension.
4206
4207 2001-08-16 Marc Autret <autret_m@epita.fr>
4208
4209 * src/reader.c (parse_dquoted_param): New.
4210 (parse_header_extension_decl): Use it.
4211 (parse_source_extension_decl): Likewise.
4212
4213 2001-08-16 Marc Autret <autret_m@epita.fr>
4214
4215 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
4216 (get_xxxx_str): Use assert () instead of complain ().
4217 Remove return invokations in default cases.
4218 (get_decision_str): Modify default behaviour. Remove second argument.
4219 Echo modifications on calls.
4220 (output_graph): Fix.
4221
4222 2001-08-16 Marc Autret <autret_m@epita.fr>
4223
4224 * src/getargs.c (usage): Update with ``-g, --graph''.
4225
4226 2001-08-16 Marc Autret <autret_m@epita.fr>
4227
4228 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
4229 (Option Cross Key): Likewise.
4230 * doc/bison.1: Update.
4231
4232 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
4233
4234 * src/output.c (output_master_parser): Don't finish action_obstack.
4235 (output_parser): Don't care about the muscle action, here.
4236 (prepare): Copy the action_obstack in the action muscle.
4237 (output): Free action_obstack.
4238
4239 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
4240
4241 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
4242 will contain `%union' declaration.
4243 (parse_union_decl): Delete #line directive output.
4244 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
4245 informations about %union.
4246 (parse_union_decl): Copy the union_obstack in the muscle stype.
4247 * src/bison.simple: Add new #line directive.
4248 Add typdef %%stype YYSTYPE.
4249
4250 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
4251
4252 * src/bison.simple: Add new `#line' directive.
4253
4254 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
4255
4256 * src/bison.simple: New `#line' directive.
4257 * src/output.c (output_parser): Support new dynamic muscle input_line.
4258
4259 2001-09-22 Marc Autret <autret_m@epita.fr>
4260
4261 * src/output.c (output_master_parser): New.
4262 (output_parser): Be more re-entrant.
4263
4264 2001-09-21 Marc Autret <autret_m@epita.fr>
4265
4266 * src/reader.c (copy_definition, parse_union_decl): Update and use
4267 `linef' muscle.
4268 (copy_action): Likewise.
4269 Use obstack_1grow ().
4270 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
4271
4272 2001-09-21 Marc Autret <autret_m@epita.fr>
4273
4274 * src/options.c (option_table): Adjust.
4275 * src/lex.c (parse_percent_token): Fix.
4276
4277 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
4278
4279 * src/options.c (symtab.h): Include it, need by lex.h.
4280
4281 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
4282
4283 * src/lex.c (parse_percent_token): Change type of variable `tx', which
4284 is now an option_table_struct*.
4285 (option_strcmp): New function option_strcmp.
4286 (parse_percent_token): Call option_strcmp.
4287 * src/getargs.c (xalloc.h, options.h): Include it.
4288 (getargs): Call create_long_option_table.
4289 (getargs): Free longopts at the end of the function.
4290 (shortopts): Move in options.c.
4291 * src/options.c (create_long_option_table): New function. Convert
4292 information from option_table to option structure.
4293 * src/reader.c (options.h): Include it.
4294
4295 * src/Makefile.am: Adjust.
4296 * src/options.c (option_table): Create from longopts and percent_table.
4297 * src/getargs.c (longopts): Delete.
4298 * src/lex.c (struct percent_table_struct): Delete.
4299 (percent_table): Delete.
4300 (options.h): Include it.
4301 * src/options.c: Create.
4302 * src/options.h: Create.
4303 Declare enum opt_access_e.
4304 Define struct option_table_struct.
4305
4306 2001-09-20 Marc Autret <autret_m@epita.fr>
4307
4308 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
4309 sections of Bison.
4310
4311 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
4312
4313 * src/bison.simple: s/%%filename/%%skeleton.
4314 * src/muscle_tab.c (getargs.h): Include it.
4315 (muscle_init): Insert new muscle skeleton.
4316
4317 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
4318
4319 * src/output.c (output_parser): Delete unused variable actions_dumped.
4320
4321 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
4322
4323 * src/output.c (output): Delete call to reader_output_yylsp.
4324 * src/reader.c (reader): Likewise.
4325 * src/reader.h: Delete declaration of reader_output_yylsp.
4326
4327 2001-09-02 Marc Autret <autret_m@epita.fr>
4328
4329 * src/reader.c: Include muscle_tab.h.
4330 (parse_union_decl): Update.
4331 (parse_macro_decl): Rename parse_muscle_decl.
4332 Update to use renamed functions and variable.
4333 (read_declarations, copy_action, read_additionnal_code, : Updated
4334 with correct variables and functions names.
4335 (packsymbols, reader): Likewise.
4336
4337 * src/reader.h (muscle_obstack): Extern declaration update.
4338
4339 * src/output.c: Include muscle_tab.h
4340 In all functions using macro_insert, change by using muscle_insert ().
4341 (macro_obstack): Rename muscle_obstack.
4342 Echo modifications in the whole file.
4343 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
4344 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
4345 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
4346
4347 * src/muscle_tab.h: Update double inclusion macros.
4348 (macro_entry_s): Rename muscle_entry_s.
4349 Update prototypes.
4350
4351 * src/muscle_tab.c: Include muscle_tab.h.
4352 Rename macro_tabble to muscle_table.
4353 (mhash1, mhash2, mcmp): Use muscle_entry.
4354 (macro_init): Rename muscle_init. Update.
4355 (macro_insert): Rename muscle_insert. Update.
4356 (macro_find): Rename muscle_find. Update.
4357
4358 * src/main.c: Include muscle_tab.h.
4359 (main): Call muscle_init ().
4360 * src/Makefile.am (bison_SOURCES): Echo modifications.
4361
4362 2001-09-02 Marc Autret <autret_m@epita.fr>
4363
4364 Now the files macro_tab.[ch] are named muscle_tab.[ch].
4365
4366 * src/muscle_tab.c, src/muscle_tab.h: Add files.
4367
4368 2001-09-02 Marc Autret <autret_m@epita.fr>
4369
4370 * src/macrotab.c, src/macrotab.h: Remove.
4371
4372 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
4373
4374 * src/reader.c (copy_guard): Use muscle to specify the `#line'
4375 filename.
4376
4377 2001-09-01 Marc Autret <autret_m@epita.fr>
4378
4379 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
4380 to an explicit value to activate the feature. We do it here.
4381
4382 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
4383
4384 * src/output.c (prepare): Delete the `filename' muscule insertion.
4385 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
4386 (parse_union_decl): Likewise.
4387 * src/macrotab.c (macro_init): Initialize filename by infile.
4388
4389 2001-08-31 Marc Autret <autret_m@epita.fr>
4390
4391 * src/bison.simple (YYLSP_NEEDED): New definition.
4392 * src/output.c (prepare): Add macro insertion of `locations_flag'
4393
4394 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
4395
4396 * src/output.c (prepare): Delete insertion of previous muscles,
4397 and insert the `prefix' muscles.
4398 * src/macrotab.c (macro_init): Likewise.
4399 (macro_init): Initialization prefix directive by `yy'.
4400 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
4401 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
4402 yylval, yydebug, yyerror, yynerrs and yyparse.
4403 New directive `#define' to substitute yydebug, ... with option
4404 name_prefix.
4405
4406 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
4407
4408 * src/main.c (main): Standardize.
4409 * src/output.c (output_table_data, output_parser): Likewise.
4410 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
4411
4412 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
4413
4414 * src/reader.c (read_additionnal_code): Rename %%user_code to
4415 %%epilogue.
4416 * src/output.c (output): Rename %%declarations to %%prologue.
4417 * src/bison.simple: Echo modifications.
4418
4419 2001-08-31 Marc Autret <autret_m@epita.fr>
4420
4421 * src/reader.c (readgram): CleanUp.
4422 (output_token_defines): Likewise.
4423 (packsymbols): Likewise.
4424 (reader): Likewise.
4425 * src/output.c (output): CPP-out useless code.
4426
4427 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
4428
4429 * src/reader.c (reader): Delete obsolete call to function
4430 output_trailers and output_headers.
4431 * src/output.h: Remove obsolete functions prototypes of output_headers
4432 and output_trailers.
4433
4434 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
4435
4436 * src/main.c: Include macrotab.h.
4437 * src/macrotab.h (macro_entry_s): Constify fields.
4438 Adjust functions prototypes.
4439 * src/macrotab.c (macro_insert): Constify key and value.
4440 (macro_find): Constify key.
4441 (macro_insert): Include 'xalloc.h'
4442 (macro_insert): Use XMALLOC.
4443 (macro_find): Constify return value.
4444 * src/output.c (output_table_data): Rename table to table_data.
4445 (output_parser): Constify macro_key, macro_value.
4446
4447 2001-08-30 Marc Autret <autret_m@epita.fr>
4448
4449 * src/reader.c (parse_skel_decl): New.
4450 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
4451 * src/lex.h (token_t): New token `tok_skel'.
4452 * src/lex.c (percent_table): Add skeleton option entry.
4453 Standardize.
4454
4455 2001-08-29 Marc Autret <autret_m@epita.fr>
4456
4457 * src/bison.simple: Add %%user_code directive at the end.
4458 * src/reader.c (read_additionnal_code): New.
4459 (reader): Use it.
4460 * src/output.c (output_program): Remove.
4461 (output): Update.
4462
4463 2001-08-28 Marc Autret <autret_m@epita.fr>
4464
4465 * src/output.c (output_actions): Clean up.
4466 (output_gram): CPP-out useless code.
4467 * src/reader.c (reader): Clean up, CPP-out useless code.
4468
4469 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
4470
4471 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
4472 directive.
4473 * src/bison.simple: Add `%%definitions'.
4474
4475 2001-08-28 Marc Autret <autret_m@epita.fr>
4476
4477 * config/depcomp: New file.
4478
4479 2001-08-27 Paul Eggert <eggert@twinsun.com>
4480
4481 * src/bison.simple (yyparse): Don't take the address of an
4482 item before the start of an array, as that doesn't conform to
4483 the C Standard.
4484
4485 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
4486
4487 * src/output.c (output): Remove the initialization of the macro
4488 obstack. It was done too late here.
4489
4490 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
4491 completely wrong.
4492 (reader): Initialize the macro obstack here, since we need it to grow
4493 '%define' directives.
4494
4495 * src/reader.h: Declare the macro obstack as extern.
4496
4497 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
4498
4499 * src/output.c (output_parser): Fix. Store single '%' characters in
4500 the output obstack instead of throwing them away.
4501
4502 2001-08-27 Akim Demaille <akim@epita.fr>
4503
4504 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
4505
4506 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4507
4508 * lib/Makefile.am: Adjust.
4509
4510 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4511
4512 * src/bison.simple: Update and add '%%' directives.
4513
4514 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4515
4516 * src/reader.c (reader): Remove calls to 'output_headers' and
4517 'output_trailers'. Remove some C output.
4518 (readgram): Disable a piece of code that was writing a default
4519 definition for 'YYSTYPE'.
4520 (reader_output_yylsp): Remove.
4521 (packsymbols): Output token defintions to a macro.
4522 (copy_definition): Disable C output.
4523
4524 * src/reader.c (parse_macro_decl): New function used to parse macro
4525 declarations.
4526 (copy_string2): Put the body of copy_string into this new function.
4527 Add a parameter to let the caller choose whether he wants to copy the
4528 string delimiters or not.
4529 (copy_string): Be a simple call to copy_string2 with the last argument
4530 bound to true.
4531 (read_declarations): Add case for macro definition.
4532 (copy_identifier): New.
4533 (parse_macro_decl): Read macro identifiers using copy_identifier
4534 rather than lex.
4535
4536 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4537
4538 * src/output.c (prepare): Add prefixed names.
4539 (output_parser): Output semantic actions.
4540 (output_parser): Fix bug on '%%line' directives.
4541
4542 * src/output.c (output_headers): Remove. The C code printed by this
4543 function should now be in the skeletons.
4544 (output_trailers): Remove.
4545 (output): Disable call to 'reader_output_yylsp'.
4546 (output_rule_data): Do not output tables to the table obstack.
4547
4548 * src/output.c: Remove some C dedicated output.
4549 Improve the use of macro and output obstacks.
4550 (output_defines): Remove.
4551
4552 * src/output.c (output_token_translations): Associate 'translate'
4553 table with a macro. No output to the table obstack.
4554 (output_gram): Same for 'rhs' and 'prhs'.
4555 (output_stos): Same for 'stos'.
4556 (output_rule_data): Same for 'r1' and 'r2'.
4557 (token_actions): Same for 'defact'.
4558 (goto_actions): Same for 'defgoto'.
4559 (output_base): Same for 'pact' and 'pgoto'.
4560 (output_table): Same for 'table'.
4561 (output_check): Same for 'check'.
4562
4563 * src/output.c (output_table_data): New function.
4564 (output_short_table): Remove.
4565 (output_short_or_char_table): Remove.
4566
4567 * src/output.c (output_parser): Replace most of the skeleton copy code
4568 with something new. Skeletons are now processed character by character
4569 rather than line by line, and Bison looks for '%%' macros. This is the
4570 first step in making Bison's output process (a lot) more flexible.
4571 (output_parser): Use the macro table.
4572
4573 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4574
4575 * src/main.c (main): Initialize the macro table.
4576
4577 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4578
4579 * src/lex.c (percent_table): Add tok_define.
4580 * src/lex.h: Add tok_define.
4581
4582 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4583
4584 * src/macrotab.c: New file.
4585 * src/macrotab.h: New file.
4586 * src/Makefile.am: Update.
4587
4588 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4589
4590 * lib/hash.c: New file.
4591 * lib/hash.h: New file.
4592 * lib/Makefile.am: Update.
4593
4594 2001-08-15 Akim Demaille <akim@epita.fr>
4595
4596 Version 1.28c.
4597
4598 2001-08-15 Marc Autret <autret_m@epita.fr>
4599
4600 * src/reader.c (readgram): Indent output macro YYSTYPE.
4601 (packsymbols): Likewise.
4602 (output_token_defines): Likewise.
4603 * src/files.c: Standardize.
4604 (compute_header_macro): New.
4605 (defines_obstack_save): New. Use compute_header_macro.
4606 (output_files): Update. Use defines_obstack_save.
4607
4608 2001-08-15 Akim Demaille <akim@epita.fr>
4609
4610 * doc/bison.texinfo (Table of Symbols): Document
4611 YYSTACK_USE_ALLOCA.
4612
4613 2001-08-15 Akim Demaille <akim@epita.fr>
4614
4615 * missing: Update from CVS Automake.
4616 * config/config.guess, config/config.sub, config/texinfo.tex:
4617 Update from gnu.org.
4618
4619 2001-08-15 Akim Demaille <akim@epita.fr>
4620
4621 * Makefile.maint: Sync with CVS Autoconf.
4622
4623 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
4624
4625 * doc/bison.texinfo: Include GNU Free Documentation License from
4626 `fdl.texi'.
4627 * doc/fdl.texi: Add to package.
4628
4629 2001-08-14 Marc Autret <autret_m@epita.fr>
4630
4631 Turn on %{source,header}_extension features.
4632
4633 * src/lex.c (percent_table): Un-CPP out header_extension and
4634 source_extension.
4635 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
4636 (compute_exts_from_src): Remove conditions. It restores priorities
4637 between options.
4638
4639 2001-08-14 Marc Autret <autret_m@epita.fr>
4640
4641 * src/files.c (compute_base_names): Add extensions computing when
4642 `--file-prefix' used.
4643 Standardize function calls.
4644
4645 2001-08-13 Marc Autret <autret_m@epita.fr>
4646
4647 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
4648 defining it (defined but null disables alloca).
4649
4650 2001-08-13 Marc Autret <autret_m@epita.fr>
4651
4652 * src/bison.simple (_yy_memcpy): CPP reformat.
4653
4654 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
4655
4656 * tests/atconfig.in (CPPFLAGS): Fix.
4657
4658 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
4659
4660 * doc/bison.texinfo: Include GNU General Public License from
4661 `gpl.texi'.
4662 * doc/gpl.texi: Add to package.
4663
4664 2001-08-10 Marc Autret <autret_m@epita.fr>
4665
4666 * src/print_graph.h: Fix.
4667 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
4668
4669 2001-08-10 Akim Demaille <akim@epita.fr>
4670
4671 * src/system.h: Provide default declarations for stpcpy, strndup,
4672 and strnlen.
4673
4674 2001-08-10 Robert Anisko <anisko_r@epita.fr>
4675
4676 * doc/bison.texinfo (Locations): Update @$ stuff.
4677
4678 2001-08-09 Robert Anisko <anisko_r@epita.fr>
4679
4680 * src/bison.simple (YYLLOC_DEFAULT): Update.
4681 (yyparse): Adjust.
4682
4683 2001-08-08 Marc Autret <autret_m@epita.fr>
4684
4685 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
4686 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
4687 Reported by Fabrice Bauzac.
4688
4689 2001-08-08 Marc Autret <autret_m@epita.fr>
4690
4691 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
4692 * src/vcg.c (output_node): Fix.
4693 * src/vcg.h: Cleanup.
4694 * src/print_graph.c: Add comments.
4695 (node_output_size): New global variable. Simplify the formatting of
4696 the VCG graph output.
4697 (print_actions): Unused code is now used. It notifies the final state
4698 and no action states in the VCG graph. It also give the reduce actions.
4699 The `shift and goto' edges are red and the `go to state' edges are
4700 blue.
4701 Get the current node name and node_obstack by argument.
4702 (node_obstack): New variable.
4703 (print_state): Manage node_obstack.
4704 (print_core): Use node_obstack given by argument.
4705 A node is not only computed here but in print_actions also.
4706 (print_graph): CPP out useless code instead of commenting it.
4707
4708 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
4709
4710 * tests/atconfig.in (CPPFLAGS): Fix.
4711
4712 2001-08-07 Akim Demaille <akim@epita.fr>
4713
4714 * src/print_graph.c (quote): New.
4715 (print_core): Use it.
4716
4717 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
4718
4719 * src/vcg.c (complain.h): Include it.
4720 Unepitaize `return' invocations.
4721 [NDEBUG] (main): Remove.
4722 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
4723 * src/files.c (open_files): Initialize graph_obstack.
4724 * src/print_graph.c (print_actions): CPP out useless code.
4725 (print_core): Don't output the last `\n' in labels.
4726 Use `quote'.
4727 * src/files.c (output_files): Output the VCG file.
4728 * src/main.c (main): Invoke print_graph ();
4729
4730 2001-08-06 Marc Autret <autret_m@epita.fr>
4731
4732 Automaton VCG graph output.
4733 Using option ``-g'' or long option ``--graph'', you can generate
4734 a gram_filename.vcg file containing a VCG description of the LALR (1)
4735 automaton of your grammar.
4736
4737 * src/main.c: Call to print_graph() function.
4738 * src/getargs.h: Update.
4739 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
4740 (graph_flag): New flag.
4741 (longopts): Update.
4742 (getargs): Add case `g'.
4743 * src/files.c (graph_obstack): New obstack struct.
4744 (open_files): Initialize new obstack.
4745 (output_files): Saves graph_obstack if required.
4746 * src/files.h (graph_obstack): New extern declaration.
4747 * src/Makefile.am: Add new source files.
4748
4749 2001-08-06 Marc Autret <autret_m@epita.fr>
4750
4751 * src/print_graph.c, src/print_graph.h (graph): New.
4752 * src/vcg.h: New file.
4753 * src/vcg.c: New file, VCG graph handling.
4754
4755 2001-08-06 Marc Autret <autret_m@epita.fr>
4756
4757 Add of %source_extension and %header_extension which specify
4758 the source or/and the header output file extension.
4759
4760 * src/files.c (compute_base_names): Remove initialisation of
4761 src_extension and header_extension.
4762 (compute_exts_from_gf): Update.
4763 (compute_exts_from_src): Update.
4764 (output_files): Update.
4765 * src/reader.c (parse_header_extension_decl): New.
4766 (parse_source_extension_decl): New.
4767 (read_declarations): New case statements for the new tokens.
4768 * src/lex.c (percent_table): Add entries for %source_extension
4769 and %header_extension.
4770 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
4771
4772 2001-08-06 Marc Autret <autret_m@epita.fr>
4773
4774 * configure.in: Bump to 1.28c.
4775 * doc/bison.texinfo: Texinfo thingies.
4776
4777 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
4778
4779 * tests/atconfig.in (CPPFLAGS): Add.
4780 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
4781
4782 2001-08-03 Akim Demaille <akim@epita.fr>
4783
4784 Version 1.28b.
4785
4786 2001-08-03 Akim Demaille <akim@epita.fr>
4787
4788 * tests/Makefile.am (check-local): Ship testsuite.
4789 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
4790 Include `string.h'.
4791
4792 2001-08-03 Akim Demaille <akim@epita.fr>
4793
4794 * configure.in: Try using -Wformat when compiling.
4795
4796 2001-08-03 Akim Demaille <akim@epita.fr>
4797
4798 * configure.in: Bump to 1.28b.
4799
4800 2001-08-03 Akim Demaille <akim@epita.fr>
4801
4802 * src/complain.c: Adjust strerror_r portability issues.
4803
4804 2001-08-03 Akim Demaille <akim@epita.fr>
4805
4806 Version 1.28a.
4807
4808 2001-08-03 Akim Demaille <akim@epita.fr>
4809
4810 * src/getargs.c, src/getarg.h (skeleton)): Constify.
4811 * src/lex.c (literalchar): Avoid name clashes on `buf'.
4812 * src/getargs.c: Include complain.h.
4813 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
4814 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
4815
4816 2001-08-03 Akim Demaille <akim@epita.fr>
4817
4818 * src/reader.c (readgram): Display hidden chars in error messages.
4819
4820 2001-08-03 Akim Demaille <akim@epita.fr>
4821
4822 Update to gettext 0.10.39.
4823
4824 2001-08-03 Akim Demaille <akim@epita.fr>
4825
4826 * lib/strspn.c: New.
4827
4828 2001-08-01 Marc Autret <autret_m@epita.fr>
4829
4830 * doc/bison.texinfo: Update.
4831 * doc/bison.1 (mandoc): Update.
4832 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
4833 * src/files.c: Support output files extensions computing.
4834 (src_extension): New static variable.
4835 (header_extension): New static variable.
4836 (tr): New function.
4837 (get_extension_index): New function, gets the index of an extension
4838 filename in a string.
4839 (compute_exts_from_gf): New function, computes extensions from the
4840 grammar file extension.
4841 (compute_exts_from_src): New functions, computes extensions from the
4842 C source file extension, file given by ``-o'' option.
4843 (compute_base_names): Update.
4844 (output_files): Update.
4845
4846 2001-08-01 Robert Anisko <anisko_r@epita.fr>
4847
4848 * doc/bison.texi: Document @$.
4849 (Locations): New section.
4850
4851 2001-07-18 Akim Demaille <akim@epita.fr>
4852
4853 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
4854 * config/prev-version.txt, config/move-if-change: New.
4855 * Makefile.am: Adjust.
4856
4857 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
4858
4859 * src/bison.simple (yyparse): Suppress warning `comparaison
4860 between signed and unsigned'.
4861
4862 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
4863
4864 * src/getargs.h (raw_flag): Remove.
4865 * src/getargs.c: Die on `-r'/`--raw'.
4866 * src/lex.c (parse_percent_token): Die on `%raw'.
4867 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
4868 * tests/calc.at: Suppress test with option `--raw'.
4869
4870 2001-07-14 Akim Demaille <akim@epita.fr>
4871
4872 * config/: New.
4873 * configure.in: Require Autoconf 2.50.
4874 Update to gettext 0.10.38.
4875
4876 2001-03-16 Akim Demaille <akim@epita.fr>
4877
4878 * doc/bison.texinfo: ANSIfy the examples.
4879
4880 2001-03-16 Akim Demaille <akim@epita.fr>
4881
4882 * getargs.c (skeleton): New variable.
4883 (longopts): --skeleton is a new option.
4884 (shortopts, getargs): -S is a new option.
4885 * getargs.h: Declare skeleton.
4886 * output.c (output_parser): Use it.
4887
4888 2001-03-16 Akim Demaille <akim@epita.fr>
4889
4890 * m4/strerror_r.m4: New.
4891 * m4/error.m4: Run AC_FUNC_STRERROR_R.
4892 * lib/error.h, lib/error.c: Update.
4893
4894 2001-03-16 Akim Demaille <akim@epita.fr>
4895
4896 * src/getargs.c (longopts): Clean up.
4897
4898 2001-02-21 Akim Demaille <akim@epita.fr>
4899
4900 * src/reader.c (gensym): `gensym_count' is your own.
4901 Use a static buf to create the symbol name, as token_buffer is no
4902 longer a buffer.
4903
4904 2001-02-08 Akim Demaille <akim@epita.fr>
4905
4906 * src/conflicts.c (conflict_report): Be sure not to append to res
4907 between two calls, which could happen if both first sprintf were
4908 skipped, but not the first cp += strlen.
4909
4910 2001-02-08 Akim Demaille <akim@epita.fr>
4911
4912 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
4913 New, from fileutils 4.0.37.
4914 * configure.in: Require Autoconf 2.49c. I took some time before
4915 making this decision. This is the only way out for portability
4916 issues in Bison, it would mean way too much duplicate effort to
4917 import in Bison features implemented in 2.49c since 2.13.
4918 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
4919
4920 2001-02-02 Akim Demaille <akim@epita.fr>
4921
4922 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
4923 * lib/xalloc.h, lib/xmalloc.c: Update.
4924
4925 2001-01-19 Akim Demaille <akim@epita.fr>
4926
4927 Get rid of the ad hoc handling of token_buffer in the scanner: use
4928 the obstacks.
4929
4930 * src/lex.c (token_obstack): New.
4931 (init_lex): Initialize it. No longer call...
4932 (grow_token_buffer): this. Remove it.
4933 Adjust all the places which used it to use the obstack.
4934
4935 2001-01-19 Akim Demaille <akim@epita.fr>
4936
4937 * src/lex.h: Rename all the tokens:
4938 s/\bENDFILE\b/tok_eof/g;
4939 s/\bIDENTIFIER\b/tok_identifier/g;
4940 etc.
4941 Let them be enums, not #define, to ease debugging.
4942 Adjust all the code.
4943
4944 2001-01-18 Akim Demaille <akim@epita.fr>
4945
4946 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
4947 * src/lex.c (maxtoken, grow_token_buffer): Static.
4948
4949 2001-01-18 Akim Demaille <akim@epita.fr>
4950
4951 Since we now use obstacks, more % directives can be enabled.
4952
4953 * src/lex.c (percent_table): Also accept `%yacc',
4954 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
4955 `%debug'.
4956 Handle the actions for `%semantic_parser' and `%pure_parser' here,
4957 instead of returning a token.
4958 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
4959 * src/reader.c (read_declarations): Adjust.
4960 * src/files.c (open_files): Don't call `compute_base_names', don't
4961 compute `attrsfile' since they depend upon data which might be
4962 *in* the input file now.
4963 (output_files): Do it here.
4964 * src/output.c (output_headers): Document the fact that this patch
4965 introduces a guaranteed SEGV for semantic parsers.
4966 * doc/bison.texinfo: Document them.
4967 * tests/suite.at: Exercise these %options.
4968
4969 2000-12-20 Akim Demaille <akim@epita.fr>
4970
4971 Also handle the output file (--verbose) with obstacks.
4972
4973 * files.c (foutput): Remove.
4974 (output_obstack): New.
4975 Adjust all dependencies.
4976 * src/conflicts.c: Return a string.
4977 * src/system.h (obstack_grow_string): Rename as...
4978 (obstack_sgrow): this. Be ready to work with non literals.
4979 (obstack_fgrow4): New.
4980
4981 2000-12-20 Akim Demaille <akim@epita.fr>
4982
4983 * src/files.c (open_files): Fix the computation of short_base_name
4984 in the case of `-o foo.tab.c'.
4985
4986 2000-12-20 Akim Demaille <akim@epita.fr>
4987
4988 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
4989 (copy_dollar): Now that everything uses obstacks, get rid of the
4990 FILE * parameters.
4991
4992 2000-12-20 Akim Demaille <akim@epita.fr>
4993
4994 * src/files.c (open_files): Actually the `.output' file is based
4995 on the short_base_name, not base_name.
4996 * tests/suite.at (Checking output file names): Adjust.
4997
4998 2000-12-20 Akim Demaille <akim@epita.fr>
4999
5000 * src/bison.s1: Remove, we now use directly...
5001 * src/bison.simple: this.
5002 * src/Makefile.am: Use pkgdata instead of data.
5003
5004 2000-12-20 Akim Demaille <akim@epita.fr>
5005
5006 * src/files.c (guard_obstack): New.
5007 (open_files): Initialize it.
5008 (output_files): Dump it...
5009 * src/files.h: Export it.
5010 * src/reader.c (copy_guard): Use it.
5011
5012 2000-12-19 Akim Demaille <akim@epita.fr>
5013
5014 * src/files.c (outfile, defsfile, actfile): Removed as global
5015 vars.
5016 (open_files): Don't compute them.
5017 (output_files): Adjust.
5018 (base_name, short_base_name): Be global.
5019 Adjust dependencies.
5020
5021 2000-12-19 Akim Demaille <akim@epita.fr>
5022
5023 * src/files.c (strsuffix): New.
5024 (stringappend): Be just like strcat but allocate.
5025 (base_names): Eve out from open_files.
5026 Try to simplify the rather hairy computation of base_name and
5027 short_base_name.
5028 (open_files): Use it.
5029 * tests/suite.at (Checking output file names): New test.
5030
5031 2000-12-19 Akim Demaille <akim@epita.fr>
5032
5033 * src/system.h (obstack_grow_literal_string): Rename as...
5034 (obstack_grow_string): this.
5035 * src/output.c (output_parser): Recognize `%% actions' instead of
5036 `$'.
5037 * src/bison.s1: s/$/%% actions/.
5038 * src/bison.hairy: Likewise.
5039
5040 2000-12-19 Akim Demaille <akim@epita.fr>
5041
5042 * src/output.c (output_parser): Compute the `#line' lines when
5043 there are.
5044 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
5045 Suggested by Hans Aberg.
5046
5047 2000-12-19 Akim Demaille <akim@epita.fr>
5048
5049 Let the handling of the skeleton files be local to the procedures
5050 that use it.
5051
5052 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
5053 longer static.
5054 (fparser, open_extra_files): Remove.
5055 (open_files, output_files): Don't take care of fparser.
5056 * src/files.h: Adjust.
5057 * src/output.c (output_parser): Open and close the file to the
5058 skeleton.
5059 * src/reader.c (read_declarations): When %semantic_parser, open
5060 fguard.
5061
5062 2000-12-19 Akim Demaille <akim@epita.fr>
5063
5064 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
5065 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
5066
5067 2000-12-19 Akim Demaille <akim@epita.fr>
5068
5069 * src/files.c (open_files): Yipee! We no longer need all the code
5070 looking for `/tmp' since we have no tmp file.
5071
5072 2000-12-19 Akim Demaille <akim@epita.fr>
5073
5074 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
5075 New macros.
5076 * src/files.c (open_files): Less dependency on MSDOS etc.
5077
5078 2000-12-14 Akim Demaille <akim@epita.fr>
5079
5080 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
5081 Provide a default definition.
5082 Use it when executing the default @ action.
5083 * src/reader.c (reader_output_yylsp): No longer include
5084 `timestamp' and `text' in the default YYLTYPE.
5085
5086 2000-12-12 Akim Demaille <akim@epita.fr>
5087
5088 * src/reader.c (copy_definition, parse_union_decl, copy_action)
5089 (copy_guard): Quote the file names.
5090 Reported by Laurent Mascherpa.
5091
5092 2000-12-12 Akim Demaille <akim@epita.fr>
5093
5094 * src/output.c (output_headers, output_program, output): Be sure
5095 to escape special characters when outputting filenames.
5096 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
5097 (output_headers): Don't depend on them, Use ACTSTR.
5098
5099 2000-11-17 Akim Demaille <akim@epita.fr>
5100
5101 * lib/obstack.h: Formatting changes.
5102 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
5103 prevents type checking.
5104 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
5105 cast the value to (void *): assigning a `foo *' to a `void *'
5106 variable is valid.
5107 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
5108 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
5109 append characters.
5110
5111 2000-11-17 Akim Demaille <akim@epita.fr>
5112
5113 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
5114 as...
5115 (suite.m4, regression.m4, calc.m4): these.
5116 * tests/atgeneral.m4: Update from CVS Autoconf.
5117
5118 2000-11-17 Akim Demaille <akim@epita.fr>
5119
5120 * tests/regression.m4 (%union and --defines): New test,
5121 demonstrating a current bug in the obstack implementation.
5122
5123 2000-11-17 Akim Demaille <akim@epita.fr>
5124
5125 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
5126 macros.
5127 Use them to declare the variables which are global or local to
5128 `yyparse'.
5129
5130 2000-11-17 Akim Demaille <akim@epita.fr>
5131
5132 * acconfig.h: Remove, no longer used.
5133
5134 2000-11-07 Akim Demaille <akim@epita.fr>
5135
5136 * src: s/Copyright (C)/Copyright/g.
5137
5138 2000-11-07 Akim Demaille <akim@epita.fr>
5139
5140 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
5141 defining.
5142 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
5143
5144 2000-11-07 Akim Demaille <akim@epita.fr>
5145
5146 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
5147 Merge in a single CPP if/else.
5148
5149 2000-11-07 Akim Demaille <akim@epita.fr>
5150
5151 * src/output.c (output): Remove useless variables.
5152 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
5153 argument `data' for consistency with the prototypes.
5154 Qualify it `const'.
5155 (obstack_copy, obstack_copy0): Rename the second argument as
5156 `address' for consistency. Qualify it `const'.
5157 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
5158 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
5159 `const' their input argument (`data' or `address').
5160 Adjust the corresponding macros to include `const' in casts.
5161
5162 2000-11-03 Akim Demaille <akim@epita.fr>
5163
5164 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
5165 s/PFILE1/BISON_HAIRY/.
5166 Adjust dependencies.
5167
5168 2000-11-03 Akim Demaille <akim@epita.fr>
5169
5170 For some reason, this was not applied.
5171
5172 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
5173 `unlink': it's no longer used.
5174
5175 2000-11-03 Akim Demaille <akim@epita.fr>
5176
5177 * src/files.c (skeleton_find): New function, eved out of...
5178 (open_files, open_extra_files): here.
5179
5180 2000-11-03 Akim Demaille <akim@epita.fr>
5181
5182 Don't use `atexit'.
5183
5184 * src/files.c (obstack_save): New function.
5185 (done): Rename as...
5186 (output_files): this.
5187 Use `obstack_save'.
5188 * src/main.c (main): Don't use `atexit' to register `done', since
5189 it no longer has to remove tmp files, just call `output_files'
5190 when there are no errors.
5191
5192 2000-11-02 Akim Demaille <akim@epita.fr>
5193
5194 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
5195 `unlink': it's no longer used.
5196 * src/files.h: Formatting changes.
5197
5198 2000-11-02 Akim Demaille <akim@epita.fr>
5199
5200 Remove the last uses of mktemp and unlink/delete.
5201
5202 * src/files.c (fdefines, ftable): Removed.
5203 (defines_ostack, table_obstack): New.
5204 Adjust dependencies of the former into uses of the latter.
5205 * src/output.c (output_short_or_char_table, output_short_table):
5206 Convert to using obstacks.
5207 * src/reader.c (copy_comment2): Accept one FILE * and two
5208 obstacks.
5209 (output_token_defines, reader_output_yylsp): Use obstacks.
5210 * src/system.h (obstack_fgrow3): New.
5211
5212 2000-11-01 Akim Demaille <akim@epita.fr>
5213
5214 Change each use of `fattrs' into a use of `attrs_obstack'.
5215
5216 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
5217 * src/files.c (fattrs): Remove.
5218 (attrs_obstack): New.
5219 Adjust all dependencies.
5220 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
5221
5222 2000-11-01 Akim Demaille <akim@epita.fr>
5223
5224 Introduce obstacks.
5225 Change each use of `faction' into a use of `action_obstack'.
5226
5227 * lib/obstack.h, lib/obstack.c: New files.
5228 * src/files.c (faction): Remove.
5229 (action_obstack): New.
5230 Adjust all dependencies.
5231
5232 2000-10-20 Akim Demaille <akim@epita.fr>
5233
5234 * lib/quote.h (PARAMS): New macro. Use it.
5235
5236 2000-10-16 Akim Demaille <akim@epita.fr>
5237
5238 * src/output.c (output_short_or_char_table): New function.
5239 (output_short_table, output_token_translations): Use it.
5240 (goto_actions): Use output_short_table.
5241
5242 2000-10-16 Akim Demaille <akim@epita.fr>
5243
5244 * src/symtab.c (bucket_new): New function.
5245 (getsym): Use it.
5246
5247 * src/output.c (output_short_table): New argument to display the
5248 comment associated with the table.
5249 Adjust dependencies.
5250 (output_gram): Use it.
5251 (output_rule_data): Nicer output layout for YYTNAME.
5252
5253 2000-10-16 Akim Demaille <akim@epita.fr>
5254
5255 * src/lex.c (read_typename): New function.
5256 (lex): Use it.
5257 * src/reader.c (copy_dollar): Likewise.
5258
5259 2000-10-16 Akim Demaille <akim@epita.fr>
5260
5261 * src/reader.c (copy_comment2): Expect the input stream to be on
5262 the `/' which is suspected to open a comment, instead of being
5263 called after `//' or `/*' was read.
5264 (copy_comment, copy_definition, parse_union_decl, copy_action)
5265 (copy_guard): Adjust.
5266
5267 2000-10-16 Akim Demaille <akim@epita.fr>
5268
5269 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
5270 `read_signed_integer'.
5271
5272 2000-10-16 Akim Demaille <akim@epita.fr>
5273
5274 * src/reader.c (copy_dollar): New function.
5275 (copy_guard, copy_action): Use it.
5276
5277 2000-10-16 Akim Demaille <akim@epita.fr>
5278
5279 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
5280 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
5281 New files, from Fileutils 4.0.27.
5282 * src/main.c (printable_version): Remove.
5283 * src/lex.c, src/reader.c: Use `quote'.
5284
5285 2000-10-04 Akim Demaille <akim@epita.fr>
5286
5287 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
5288
5289 2000-10-04 Akim Demaille <akim@epita.fr>
5290
5291 * doc/bison.texinfo: Various typos spotted by Neil Booth.
5292
5293 2000-10-04 Akim Demaille <akim@epita.fr>
5294
5295 When a literal string is used to define two different tokens,
5296 `bison -v' segfaults.
5297 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
5298
5299 * tests/regression.m4: New file.
5300 Include the core of the sample provided by Piotr Gackiewicz.
5301 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
5302 properly.
5303
5304 2000-10-04 Akim Demaille <akim@epita.fr>
5305
5306 * src/reader.c (parse_expect_decl): Keep `count' within the size
5307 of `buffer'.
5308 From Neil Booth.
5309
5310 2000-10-02 Paul Eggert <eggert@twinsun.com>
5311
5312 * bison.s1 (yyparse): Assign the default value
5313 unconditionally, to avoid a GCC warning and make the parser a
5314 tad smaller.
5315
5316 2000-10-02 Akim Demaille <akim@epita.fr>
5317
5318 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
5319 options.
5320
5321 2000-10-02 Akim Demaille <akim@epita.fr>
5322
5323 * src/derives.c, src/print.c, src/reduce.c: To ease the
5324 translation, move some `\n' out of the translated strings.
5325
5326 2000-10-02 Akim Demaille <akim@epita.fr>
5327
5328 The location tracking mechanism is precious for parse error
5329 messages. Nevertheless, it is enabled only when `@n' is used in
5330 the grammar, which is a different issue (you can use it in error
5331 message, but not in the grammar per se). Therefore, there should
5332 be another means to enable it.
5333
5334 * src/getargs.c (getargs): Support `--locations'.
5335 (usage): Report it.
5336 * src/getargs.h (locationsflag): Export it.
5337 * src/lex.c (percent_table): Support `%locations'.
5338 * src/reader.c (yylsp_needed): Remove this variable, now replaced
5339 with `locationsflag'.
5340 * doc/bison.texinfo: Document `--locations' and `%locations'.
5341 Sort the options.
5342 * tests/calc.m4: Test it.
5343
5344 For regularity of the names, replace each
5345 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
5346 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
5347 In addition replace each `flag' with `_flag'.
5348
5349 2000-10-02 Akim Demaille <akim@epita.fr>
5350
5351 Also test parse error messages, including with YYERROR_VERBOSE.
5352
5353 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
5354 associative).
5355 Use it to check the computations.
5356 Use it to check `nonassoc' is honored.
5357 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
5358 `--yyerror-verbose'.
5359 (_AT_CHECK_CALC): Adjust to this option.
5360 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
5361
5362 2000-10-02 Akim Demaille <akim@epita.fr>
5363
5364 Test also `--verbose', `--defines' and `--name-prefix'. Testing
5365 the latter demonstrates a flaw in the handling of non debugging
5366 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
5367 was used in order to simplify:
5368
5369 #if YYDEBUG
5370 if (yydebug)
5371 {
5372 ...
5373 }
5374 #endif
5375
5376 into
5377
5378 if (yydebug)
5379 {
5380 ...
5381 }
5382
5383 unfortunately this leads to a CPP conflict when
5384 `--name-prefix=foo' is used since it produces `#define yydebug
5385 foodebug'.
5386
5387 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
5388 (YYDPRINTF): New macro.
5389 Spread its use.
5390 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
5391 the bison options.
5392 Also test `--verbose', `--defines' and `--name-prefix'.
5393
5394 2000-10-02 Akim Demaille <akim@epita.fr>
5395
5396 Improve the readability of the produced parsers.
5397
5398 * src/bison.s1: Formatting changes.
5399 Improve the comment related to the `$' mark.
5400 (yydefault): Don't fall through to `yyresume': `goto' there.
5401 * src/output.c (output_parser): When the `$' is met, skip the end
5402 of its line.
5403 New variable, `number_of_dollar_signs', to check there's exactly
5404 one `$' in the parser skeleton.
5405
5406 2000-10-02 Akim Demaille <akim@epita.fr>
5407
5408 * lib/xstrdup.c: New file, from the fileutils.
5409 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
5410 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
5411 instead of strlen + xmalloc + strcpy.
5412 * src/symtab.c (copys): Remove, use xstrdup instead.
5413
5414 2000-10-02 Akim Demaille <akim@epita.fr>
5415
5416 * src/gram.h (associativity): New enum type which replaces the
5417 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
5418 `right_assoc', `left_assoc' and `non_assoc'.
5419 Adjust all dependencies.
5420 * src/reader.c: Formatting changes.
5421 (LTYPESTR): Don't define it, use it as a literal in
5422 `reader_output_yylsp'.
5423 * src/symtab.h (symbol_class): New enum type which replaces the
5424 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
5425 `sunknown', `stoken and `snterm'.
5426
5427 2000-10-02 Akim Demaille <akim@epita.fr>
5428
5429 * src/getargs.c (fixed_outfiles): Rename as...
5430 (yaccflag): for consistency and accuracy.
5431 Adjust dependencies.
5432
5433 2000-10-02 Akim Demaille <akim@epita.fr>
5434
5435 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
5436 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
5437 difficult and introduced a lot of core dump. It turns out that
5438 Bison used an implementation of `xmalloc' based on `calloc', and
5439 at various places it does depend upon the initialization to 0. I
5440 have not tried to isolate the pertinent places, and all the former
5441 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
5442 someone should address this issue.
5443
5444 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
5445 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
5446 files.
5447 Adjust dependencies.
5448 * src/warshall.h: New file.
5449 Propagate.
5450
5451 2000-10-02 Akim Demaille <akim@epita.fr>
5452
5453 Various anti-`extern in *.c' changes.
5454
5455 * src/system.h: Include `assert.h'.
5456
5457 2000-10-02 Akim Demaille <akim@epita.fr>
5458
5459 * src/state.h (nstates, final_state, first_state, first_shift)
5460 (first_reduction): Move their exportation from here...
5461 * src/LR0.h: to here.
5462 Adjust dependencies.
5463 * src/getargs.c (statisticsflag): New variable.
5464 Add support for `--statistics'.
5465 Adjust dependencies.
5466
5467 Remove a lot of now useless `extern' statements in most files.
5468
5469 2000-10-02 Akim Demaille <akim@epita.fr>
5470
5471 * src/LR0.h: New file.
5472 Propagate its use.
5473
5474 2000-10-02 Akim Demaille <akim@epita.fr>
5475
5476 * src/print.h: New file.
5477 Propagate its use.
5478 * src/print.c: Formatting and ordering changes.
5479 (verbose, terse): Replace with...
5480 (print_results): this new function.
5481 Adjust dependencies.
5482
5483 2000-10-02 Akim Demaille <akim@epita.fr>
5484
5485 * src/conflicts.c (conflict_report): New function.
5486 (conflict_log, verbose_conflict_log): Replace with...
5487 (print_conflicts): this function.
5488 Adjust dependencies.
5489 * src/conflicts.h: New file.
5490 Propagate its inclusion.
5491
5492 2000-10-02 Akim Demaille <akim@epita.fr>
5493
5494 * src/nullable.h: New file.
5495 Propagate its inclusion.
5496 * src/nullable.c: Formatting changes.
5497
5498 2000-10-02 Akim Demaille <akim@epita.fr>
5499
5500 * src/reduce.h: New file.
5501 Propagate its inclusion.
5502 * src/reduce.c: Topological sort and other formatting changes.
5503 (bool, TRUE, FALSE): Move their definition to...
5504 * src/system.h: here.
5505
5506 2000-10-02 Akim Demaille <akim@epita.fr>
5507
5508 * src/files.c: Formatting changes.
5509 (tryopen, tryclose, openfiles): Rename as...
5510 (xfopen, xfclose, open_files): this.
5511 (stringappend): static.
5512 * src/files.h: Complete the list of exported symbols.
5513 Propagate its use.
5514
5515 2000-10-02 Akim Demaille <akim@epita.fr>
5516
5517 * src/reader.h: New file.
5518 Propagate its use instead of tedious list of `extern' and
5519 prototypes.
5520 * src/reader.c: Formatting changes, topological sort,
5521 s/register//.
5522
5523 2000-10-02 Akim Demaille <akim@epita.fr>
5524
5525 * src/lex.h: Prototype `lex.c' exported functions.
5526 * src/reader.c: Adjust.
5527 * src/lex.c: Formatting changes.
5528 (safegetc): Rename as...
5529 (xgetc): this.
5530
5531 2000-10-02 Akim Demaille <akim@epita.fr>
5532
5533 * src/lalr.h: New file.
5534 Propagate its inclusion instead of prototypes and `extern'.
5535 * src/lalr.c: Formatting changes, topological sorting etc.
5536
5537 2000-10-02 Akim Demaille <akim@epita.fr>
5538
5539 * src/output.c (token_actions): Introduce a temporary array,
5540 YYDEFACT, that makes it possible for this function to use
5541 output_short_table.
5542
5543 2000-10-02 Akim Demaille <akim@epita.fr>
5544
5545 `user_toknums' is output as a `short[]' in `output.c', while it is
5546 defined as a `int[]' in `reader.c'. For consistency with the
5547 other output tables, `user_toknums' is now defined as a table of
5548 shorts.
5549
5550 * src/reader.c (user_toknums): Be a short table instead of an int
5551 table.
5552 Adjust dependencies.
5553
5554 Factor the short table outputs.
5555
5556 * src/output.c (output_short_table): New function.
5557 * src/output.c (output_gram, output_stos, output_rule_data)
5558 (output_base, output_table, output_check): Use it.
5559
5560 2000-10-02 Akim Demaille <akim@epita.fr>
5561
5562 * src/output.c (output): Topological sort of the functions, in
5563 order to get rid of the `static' prototypes.
5564 No longer use `register'.
5565 * src/output.h: New file.
5566 Propagate its inclusion in files explicitly prototyping functions
5567 from output.c.
5568
5569 2000-09-21 Akim Demaille <akim@epita.fr>
5570
5571 * src/atgeneral.m4: Update from Autoconf.
5572
5573 2000-09-21 Akim Demaille <akim@epita.fr>
5574
5575 * src/closure.h: New file.
5576 * src/closure.c: Formatting changes, topological sort over the
5577 functions, use of closure.h.
5578 (initialize_closure, finalize_closure): Rename as...
5579 (new_closure, free_closure): these. Adjust dependencies.
5580 * src/LR0.c: Formatting changes, topological sort, use of
5581 cloture.h.
5582 (initialize_states): Rename as...
5583 (new_states): this.
5584 * src/Makefile.am (noinst_HEADERS): Adjust.
5585
5586 2000-09-20 Akim Demaille <akim@epita.fr>
5587
5588 * src/acconfig.h: Don't protect config.h against multiple
5589 inclusion.
5590 Don't define PARAMS.
5591 * src/system.h: Define PARAMS.
5592 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
5593 purpose of config.h. system.h must not try to fix wrong
5594 definitions in config.h.
5595
5596 2000-09-20 Akim Demaille <akim@epita.fr>
5597
5598 * src/derives.h: New file.
5599 * src/main.c, src/derives.h: Use it.
5600 Formatting changes.
5601 * src/Makefile.am (noinst_HEADERS): Adjust.
5602
5603 2000-09-20 Akim Demaille <akim@epita.fr>
5604
5605 * tests/atgeneral.m4: Update from Autoconf.
5606 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
5607 (AT_CHECK_CALC): New macros.
5608 Use these macros to test bison with options `', `--raw',
5609 `--debug', `--yacc', `--yacc --debug'.
5610
5611 2000-09-19 Akim Demaille <akim@epita.fr>
5612
5613 * src/output.c: Formatting changes.
5614 * src/machine.h: Remove, leaving its contents in...
5615 * src/system.h: here.
5616 Include stdio.h.
5617 Adjust all dependencies on stdio.h and machine.h.
5618 * src/getargs.h: New file.
5619 Let all `extern' declarations about getargs.c be replaced with
5620 inclusion of `getargs.h'.
5621 * src/Makefile.am (noinst_HEADERS): Adjust.
5622
5623 * tests/calc.m4 (yyin): Be initialized in main, not on the global
5624 scope.
5625 (yyerror): Returns void, not int.
5626 * doc/bison.texinfo: Formatting changes.
5627
5628 2000-09-19 Akim Demaille <akim@epita.fr>
5629
5630 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
5631 portable.
5632
5633 2000-09-18 Akim Demaille <akim@epita.fr>
5634
5635 * configure.in: Append WARNING_CFLAGS to CFLAGS.
5636 * src/Makefile.am (INCLUDES): Don't.
5637 Be ready to fetch headers in lib/.
5638
5639 2000-09-18 Akim Demaille <akim@epita.fr>
5640
5641 * doc/bison.texinfo: Update the copyright.
5642 ANSIfy and GNUify the examples.
5643 Remove the old menu.
5644
5645 2000-09-18 Akim Demaille <akim@epita.fr>
5646
5647 First set of tests: use the `calc' example from the documentation.
5648
5649 * src/bison.s1 (yyparse): Condition the code using `yytname' which
5650 is defined only when YYDEBUG is.
5651 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
5652 * src/files.c (tryopen, tryclose): Formatting changes.
5653 Move to the top and be static.
5654 * src/reader.c (read_signed_integer): Likewise.
5655 * tests/calc.m4: New file.
5656 * Makefile.am, suite.m4: Adjust.
5657 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
5658
5659 2000-09-18 Akim Demaille <akim@epita.fr>
5660
5661 Add support for an Autotest test suite for Bison.
5662
5663 * m4/m4.m4, m4/atconfig.m4: New files.
5664 * m4/Makefile.am (EXTRA_DIST): Adjust.
5665 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
5666 files.
5667 * src/getargs.c: Display a more standard --version message.
5668 * src/reader.c (reader): Formatting changes.
5669 No longer depend upon VERSION_STRING.
5670 * configure.in: No longer use `dnl'.
5671 Set up the test suite and the new directory `tests/.
5672 (VERSION_STRING): Remove.
5673
5674 2000-04-14 Akim Demaille <akim@epita.fr>
5675
5676 * src/reader.c (copy_comment2): New function, same as former
5677 `copy_comment', but outputs into two FILE *.
5678 (copy_comment): Use it.
5679 (parse_union_decl): Use it.
5680 (get_type, parse_start_decl): Use the same `invalid' message.
5681 (parse_start_decl, parse_union_decl): Use the same `multiple'
5682 message.
5683 (parse_union_decl, copy_guard, copy_action): Use the same
5684 `unmatched' message.
5685 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
5686
5687 2000-03-31 Akim Demaille <akim@epita.fr>
5688
5689 * src/files.c (tryopen, tryclose): Move to the top.
5690 Be static.
5691
5692 2000-03-31 Akim Demaille <akim@epita.fr>
5693
5694 * src/main.c (main): Don't call `done', exit does it.
5695
5696 2000-03-31 Akim Demaille <akim@epita.fr>
5697
5698 * allocate.c: s/return (foo)/return foo/.
5699 * lalr.c: Likewise.
5700 * LR0.c: Likewise.
5701 * output.c: Likewise.
5702 * reader.c: Likewise.
5703 * symtab.c: Likewise.
5704 * vmsgetargs.c: Likewise.
5705
5706 2000-03-31 Akim Demaille <akim@epita.fr>
5707
5708 Clean up the error reporting functions.
5709
5710 * src/report.c: New file.
5711 * src/report.h: Likewise.
5712 * src/Makefile.am: Adjust.
5713 * m4/error.m4: New file.
5714 * m4/Makefile.am: Adjust.
5715 * configure.in (jm_PREREQ_ERROR): Call it.
5716 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
5717 Remove.
5718 (fatal, fatals): Remove. All callers use complain.c::fatal.
5719 (warn, warni, warns, warnss, warnss): Remove. All callers use
5720 complain.c::complain.
5721 (toomany): Remove, use fatal instead.
5722 * src/files.c (done): No argument, use complain_message_count.
5723 * src/main.c (main): Register `done' to `atexit'.
5724
5725 * src/getargs.c (usage): More `fputs', less `fprintf'.
5726
5727 2000-03-28 Akim Demaille <akim@epita.fr>
5728
5729 * lib/: New directory.
5730 * Makefile.am (SUBDIRS): Adjust.
5731 * configure.in: Adjust.
5732 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
5733 useless.
5734 * src/alloca.c: Moved to lib/.
5735 * src/getopt.c: Likewise.
5736 * src/getopt1.c: Likewise.
5737 * src/getopt.h: Likewise.
5738 * src/ansi2knr.c: Likewise.
5739 * src/ansi2knr.1: Likewise.
5740 * src/Makefile.am: Adjust.
5741 * lib/Makefile.am: New file.
5742
5743 2000-03-28 Akim Demaille <akim@epita.fr>
5744
5745 * src/getargs.c (usage): Refresh the help message.
5746
5747 2000-03-17 Akim Demaille <akim@epita.fr>
5748
5749 * src/getopt1.c: Updated from textutils 2.0e
5750 * src/getopt.c: Likewise.
5751 * src/getopt.h: Likewise.
5752
5753 2000-03-17 Akim Demaille <akim@epita.fr>
5754
5755 * src/Makefile.am (bison.simple): Fix the awk program: quote only
5756 the file name, not the whole `#line LINE FILE'.
5757
5758 2000-03-17 Akim Demaille <akim@epita.fr>
5759
5760 On syntax errors, report the token on which we choked.
5761
5762 * src/bison.s1 (yyparse): In the label yyerrlab, when
5763 YYERROR_VERBOSE, add yychar in msg.
5764
5765 2000-03-17 Akim Demaille <akim@epita.fr>
5766
5767 * src/reader.c (copy_at): New function.
5768 (copy_guard): Use it.
5769 (copy_action): Use it.
5770
5771 2000-03-17 Akim Demaille <akim@epita.fr>
5772
5773 Be kind to translators, save some useless translations.
5774
5775 * src/main.c (banner): New function.
5776 (fatal_banner): Use it.
5777 (warn_banner): Use it.
5778
5779 2000-03-17 Akim Demaille <akim@epita.fr>
5780
5781 * src/reader.c (copy_definition): Use copy_string and
5782 copy_comment. Removed now unused `match', `ended',
5783 `cplus_comment'.
5784 (copy_comment, copy_string): Moved, to be visible from
5785 copy_definition.
5786
5787 2000-03-17 Akim Demaille <akim@epita.fr>
5788
5789 * src/reader.c (copy_string): Declare `static inline'. No
5790 problems with inline, since it is checked by configure.
5791 (copy_comment): Likewise.
5792
5793 2000-03-17 Akim Demaille <akim@epita.fr>
5794
5795 * src/reader.c (packsymbols): Formatting changes.
5796
5797 2000-03-17 Akim Demaille <akim@epita.fr>
5798
5799 * src/reader.c (copy_comment): New function, factored out from:
5800 (copy_action): Use it. Removed now unused `match', `ended',
5801 `cplus_comment'.
5802 (copy_guard): Likewise.
5803
5804 2000-03-17 Akim Demaille <akim@epita.fr>
5805
5806 * src/reader.c (copy_string): New function, factored out from:
5807 (copy_action): Use it.
5808 (copy_guard): Likewise.
5809
5810 2000-03-17 Akim Demaille <akim@epita.fr>
5811
5812 Change the handling of @s so that they behave exactly like $s.
5813 There is now a pseudo variable @$ (readble and writable), location
5814 of the lhs of the rule (by default ranging from the location of
5815 the first symbol of the rhs, to the location of the last symbol,
5816 or, if the rhs is empty, YYLLOC).
5817
5818 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
5819 yyval.
5820 (yyparse): When providing a default semantic action, provide a
5821 default location action.
5822 (after the $): No longer change `*YYLSP', just stack YYLOC the
5823 same way you stack YYVAL.
5824 * src/reader.c (read_declarations): Use warns.
5825 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
5826 (copy_action, case '@'): Likewise.
5827 Use a standard error message, to save useless work from
5828 translators.
5829
5830 2000-03-17 Akim Demaille <akim@epita.fr>
5831
5832 * src/bison.s1: Formatting and cosmetics changes.
5833 * src/reader.c: Likewise.
5834 Update the Copyright notice.
5835
5836 2000-03-17 Akim Demaille <akim@epita.fr>
5837
5838 * src/bison.s1 (#line): All set to `#line' only, since the
5839 Makefile now handles them.
5840
5841 2000-03-16 Akim Demaille <akim@epita.fr>
5842
5843 * src/output.c (output_rule_data): Output the documentation of
5844 some of the tables.
5845 (Copyright notice): Update.
5846 Formatting changes.
5847
5848 2000-03-16 Akim Demaille <akim@epita.fr>
5849
5850 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
5851 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
5852 One `#if YYDEBUG' remains, since it uses variables which are
5853 defined only if `YYDEBUG != 0'.
5854
5855 2000-03-16 Akim Demaille <akim@epita.fr>
5856
5857 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
5858 and related variables so that the similarities are highlighted.
5859
5860 2000-03-16 Akim Demaille <akim@epita.fr>
5861
5862 * src/bison.s1: Properly indent CPP directives.
5863
5864 2000-03-16 Akim Demaille <akim@epita.fr>
5865
5866 * src/bison.s1: Properly indent the `alloca' CPP section.
5867
5868 2000-03-16 Akim Demaille <akim@epita.fr>
5869
5870 Do not hard code values of directories in `configure.in'.
5871 Update the `configure' tool chain.
5872
5873 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
5874 src/makefile.am.
5875 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
5876 (AC_OUTPUT): Add m4/Makefile.
5877 Bump to bison 1.28a, 1.29 has never been released.
5878 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
5879 handled via src/Makefile.am.
5880 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
5881 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
5882 autoheader.
5883 * Makefile.am (SUBDIRS): Add m4.
5884 (ACLOCAL_AM_FLAGS): New variable.
5885 (AUTOMAKE_OPTIONS): Add check-news.
5886 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
5887 the proper line number and file name.
5888 (DEFS): Propagate the location of bison library files and of the
5889 locale files.
5890 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
5891 builddir.
5892 * acinclude.m4: Remove, replaced by the directory m4.
5893 * m4/Makefile.am (EXTRA_DIST): New variable.
5894 * m4/gettext.m4: New file, from the fileutils.
5895 * m4/lcmessage.m4: Likewise
5896 * m4/progtest.m4: Likewise.
5897 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
5898
5899 2000-03-10 Akim Demaille <akim@epita.fr>
5900
5901 * src/closure.c:
5902 Formatting changes of various comments.
5903 Respect the GNU coding standards at various places.
5904 Don't use `_()' when no translation is needed.
5905
5906 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5907
5908 * src/files.c:
5909 OS/2 honors TMPDIR environment variable.
5910
5911 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5912
5913 * doc/bison.texinfo: Tweaked spelling and grammar.
5914 Updated ISBN.
5915 Removed reference to price of printed copy.
5916 Mention BISON_SIMPLE and BISON_HAIRY.
5917
5918 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5919
5920 * configure.in, NEWS:
5921 Bison 1.29 released.
5922
5923 1999-10-27 Jesse Thilo <jthilo@gnu.org>
5924
5925 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
5926 Added reference card.
5927
5928 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5929
5930 * po/ru.po: Added Russian translation.
5931
5932 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5933
5934 * configure.in: Added Russian translation.
5935
5936 1999-07-06 Jesse Thilo <jthilo@gnu.org>
5937
5938 * configure.in, NEWS, README:
5939 Released version 1.28.
5940
5941 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5942
5943 * src/system.h:
5944 Squashed redefinition warning on some systems.
5945
5946 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
5947 Have configure build version string instead of relying on ANSI string
5948 concatentation.
5949
5950 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5951
5952 * po/POTFILES.in: Got rid of version.c.
5953
5954 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5955
5956 * acconfig.h, configure.in:
5957 Have configure build version string instead of relying on ANSI string
5958 concatentation.
5959
5960 1999-06-08 Jesse Thilo <jthilo@gnu.org>
5961
5962 * doc/bison.1:
5963 Dropped mention of `+' for long-named options.
5964
5965 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5966
5967 * src/files.c: Added <unistd.h> for unlink().
5968
5969 * src/Makefile.am, src/system.h:
5970 I18n fixes.
5971
5972 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5973
5974 * README: Added a FAQ list.
5975
5976 * configure.in, acconfig.h:
5977 I18n fixes.
5978
5979 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5980
5981 * doc/FAQ, doc/Makefile.am:
5982 Added a FAQ list.
5983
5984 1999-05-19 Jesse Thilo <jthilo@gnu.org>
5985
5986 * src/alloc.h, src/symtab.h, src/version.c:
5987 Protected inclusion of "config.h" with HAVE_CONFIG_H.
5988
5989 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5990
5991 * src/.cvsignore, src/Makefile.am:
5992 Reorganized: sources in `src', documentation in `doc'.
5993
5994 * src/lex.c (literalchar):
5995 fixed the code for escaping double quotes (thanks
5996 Jonathan Czisny.)
5997
5998 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5999
6000 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
6001 Adjusted paths to reflect directory reorganization.
6002
6003 1999-04-18 Jesse Thilo <jthilo@gnu.org>
6004
6005 * doc/.cvsignore, doc/Makefile.am:
6006 Reorganized: sources in `src', documentation in `doc'.
6007
6008 1999-04-18 Jesse Thilo <jthilo@gnu.org>
6009
6010 * configure.in:
6011 Updated AC_INIT file to reflect directory reorganization.
6012
6013 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
6014 Reorganized: sources in `src', documentation in `doc'.
6015
6016 1999-04-13 Jesse Thilo <jthilo@gnu.org>
6017
6018 * src/allocate.c:
6019 Don't declare calloc() and realloc() if not necessary.
6020
6021 1999-04-13 Jesse Thilo <jthilo@gnu.org>
6022
6023 * configure.in, acconfig.h, acinclude.m4:
6024 Don't declare calloc() and realloc() if not necessary.
6025
6026 1999-03-23 Jesse Thilo <jthilo@gnu.org>
6027
6028 * po/.cvsignore: Added i18n support.
6029
6030 1999-03-23 Jesse Thilo <jthilo@gnu.org>
6031
6032 * acconfig.h, configure.in, Makefile.am:
6033 Added i18n support.
6034
6035 1999-03-22 Jesse Thilo <jthilo@gnu.org>
6036
6037 * src/bison.s1: Fixed #line numbers.
6038
6039 1999-03-15 Jesse Thilo <jthilo@gnu.org>
6040
6041 * po/es.po, po/fr.po, po/nl.po, po/de.po:
6042 Added PO files from Translation Project.
6043
6044 1999-03-03 Jesse Thilo <jthilo@gnu.org>
6045
6046 * Makefile.am:
6047 Added support for non-ANSI compilers (ansi2knr).
6048
6049 1999-02-16 Jesse Thilo <jthilo@gnu.org>
6050
6051 * configure.in: Bumped version number to 1.27.
6052
6053 * Makefile.am:
6054 Added `bison.simple' to list of files removed by `make distclean'.
6055
6056 1999-02-12 Jesse Thilo <jthilo@gnu.org>
6057
6058 * src/files.c, src/files.h:
6059 Defined locations of parser files in config.h instead of Makefile.
6060
6061 1999-02-12 Jesse Thilo <jthilo@gnu.org>
6062
6063 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
6064 Defined locations of parser files in config.h instead of Makefile.
6065
6066 1999-02-09 Jesse Thilo <jthilo@gnu.org>
6067
6068 * Makefile.am:
6069 Removed inappropriate use of $< macro.
6070
6071 1999-02-05 Jesse Thilo <jthilo@gnu.org>
6072
6073 * po/Makefile.in.in, po/POTFILES.in:
6074 Add `po' directory skeleton.
6075
6076 1999-01-27 Jesse Thilo <jthilo@gnu.org>
6077
6078 * README: Document help-bison list.
6079
6080 * configure.in: Add check for mkstemp().
6081
6082 1999-01-20 Jesse Thilo <jthilo@gnu.org>
6083
6084 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
6085 Hush a few compiler warnings.
6086
6087 * src/files.c:
6088 Add tryclose(), which verifies that fclose was successful.
6089 Hush a couple of compiler warnings.
6090
6091 1999-01-20 Jesse Thilo <jthilo@gnu.org>
6092
6093 * Makefile.am, OChangeLog:
6094 ChangeLog is now automatically generated. Include the old version as
6095 OChangeLog.
6096
6097 1999-01-14 Jesse Thilo <jthilo@gnu.org>
6098
6099 * 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:
6100 Update FSF address.
6101
6102 1999-01-14 Jesse Thilo <jthilo@gnu.org>
6103
6104 * doc/bison.texinfo: Fix formatting glitch.
6105
6106 * doc/bison.texinfo: Update FSF address.
6107
6108 1999-01-14 Jesse Thilo <jthilo@gnu.org>
6109
6110 * acconfig.h: Update FSF address.
6111
6112 1999-01-08 Jesse Thilo <jthilo@gnu.org>
6113
6114 * src/system.h:
6115 Don't define PACKAGE here, since config.h defines it.
6116
6117 1998-12-30 Jesse Thilo <jthilo@gnu.org>
6118
6119 * src/reader.c: Update copyright date.
6120
6121 * src/main.c:
6122 Ditch sprintf to statically-sized buffers in fatal/warn functions in
6123 favor of output directly to stderr (avoids buffer overruns).
6124
6125 * src/reader.c: Some checks for premature EOF.
6126
6127 * 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:
6128 Use prototypes if the compiler understands them.
6129
6130 * src/files.c: Honor TMPDIR on Unix hosts.
6131 Use prototypes if the compiler understands them.
6132
6133 * src/reader.c:
6134 Fix a couple of buffer overrun bugs.
6135 Use prototypes if the compiler understands them.
6136
6137 * src/system.h: Include unistd.h and ctype.h.
6138 Use #ifdef instead of #if for NLS symbols.
6139
6140 1998-12-30 Jesse Thilo <jthilo@gnu.org>
6141
6142 * doc/bison.texinfo:
6143 Delete comment "consider using @set for edition number, etc..." since
6144 we now are doing so.
6145
6146 1998-12-30 Jesse Thilo <jthilo@gnu.org>
6147
6148 * configure.in:
6149 Use prototypes if the compiler understands them.
6150
6151 * NEWS: Document 1.26 highlights.
6152
6153 * Makefile.am: Require Automake 1.3 or later.
6154
6155 * acconfig.h:
6156 Use prototypes if the compiler understands them.
6157
6158 1998-12-29 Jesse Thilo <jthilo@gnu.org>
6159
6160 * src/version.c:
6161 Use VERSION symbol from automake for version number.
6162
6163 1998-12-29 Jesse Thilo <jthilo@gnu.org>
6164
6165 * acconfig.h, configure.in, version.cin:
6166 Use VERSION symbol from automake for version number.
6167
6168 1998-11-28 Jesse Thilo <jthilo@gnu.org>
6169
6170 * Makefile.am:
6171 Distribute original version of simple parser (bison.s1), not built
6172 version (bison.simple).
6173
6174 1998-11-28 Jesse Thilo <jthilo@gnu.org>
6175
6176 * doc/bison.texinfo: Add info dir entry.
6177
6178 * doc/bison.texinfo:
6179 Let automake put version number into documentation.
6180
6181 1998-11-26 Jesse Thilo <jthilo@gnu.org>
6182
6183 * src/bison.cld, src/build.com, src/vmshlp.mar:
6184 Add non-RCS files from /gd/gnu/bison.
6185
6186 1998-11-26 Jesse Thilo <jthilo@gnu.org>
6187
6188 * doc/bison.1:
6189 Document the BISON_HAIRY and BISON_SIMPLE variables.
6190
6191 1998-11-25 Jesse Thilo <jthilo@gnu.org>
6192
6193 * src/version.c: Build version.c automatically.
6194
6195 * src/reader.c:
6196 Fix token numbering (used to start at 258, not 257).
6197
6198 * src/system.h: Include config.h.
6199
6200 * src/getargs.c: Update bug report address.
6201
6202 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
6203 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
6204
6205 1998-11-25 Jesse Thilo <jthilo@gnu.org>
6206
6207 * Makefile.am:
6208 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
6209
6210 * configure.in, version.cin:
6211 Build version.c automatically.
6212
6213 * AUTHORS: Add AUTHORS file.
6214
6215 * README: Update bug report address.
6216
6217 * bison.simple:
6218 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
6219
6220 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
6221 Add automake stuff.
6222
6223 1998-11-25 Jesse Thilo <jthilo@gnu.org>
6224
6225 * doc/bison.texinfo: Clean up some formatting.
6226
6227 1998-05-05 Richard Stallman <rms@gnu.org>
6228
6229 * doc/bison.texinfo:
6230 Explain better why to make a pure parser.
6231
6232 1998-01-05 Richard Stallman <rms@gnu.org>
6233
6234 * src/files.c (openfiles):
6235 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
6236 find a temporary directory, if possible. Do not unlink files while
6237 they are open.
6238
6239 1997-08-25 Richard Stallman <rms@gnu.org>
6240
6241 * src/reader.c (stack_offset;):
6242 Change some warni to warns.
6243
6244 * src/lex.c (literalchar): Use warns, not warni.
6245
6246 1997-06-28 Richard Stallman <rms@gnu.org>
6247
6248 * src/bison.s1: Add a Bison version comment.
6249
6250 * src/main.c (fatal, warn, berror):
6251 Use program_name.
6252
6253 1997-06-28 Richard Stallman <rms@gnu.org>
6254
6255 * Makefile.in (bison_version): New variable.
6256 (dist): Use that variable.
6257 (bison.s1): Substitute the Bison version into bison.simple.
6258
6259 * bison.simple: Add a Bison version comment.
6260
6261 1997-06-18 Richard Stallman <rms@gnu.org>
6262
6263 * src/main.c (fatal, warn, berror):
6264 Make error messages standard.
6265 (toomany): Improve error message text.
6266
6267 * 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:
6268 new.h renamed to alloc.h.
6269
6270 1997-06-18 Richard Stallman <rms@gnu.org>
6271
6272 * Makefile.in: new.h renamed to alloc.h.
6273
6274 1997-05-24 Richard Stallman <rms@gnu.org>
6275
6276 * src/lex.c (literalchar):
6277 Fix the code for escaping \, " and '.
6278
6279 (lex): Avoid trouble when there are many chars
6280 to discard in a char literal with just several chars in it.
6281
6282 1997-05-17 Richard Stallman <rms@gnu.org>
6283
6284 * src/bison.s1:
6285 Use malloc, if using alloca is troublesome.
6286 (YYSTACK_USE_ALLOCA): New flag macro.
6287 Define it for some systems and compilers.
6288 (YYSTACK_ALLOC): New macro.
6289 (yyparse): Use YYSTACK_ALLOC to allocate stack.
6290 If it was malloc'd, free it.
6291
6292 1997-05-17 Richard Stallman <rms@gnu.org>
6293
6294 * bison.simple:
6295 Use malloc, if using alloca is troublesome.
6296 (YYSTACK_USE_ALLOCA): New flag macro.
6297 Define it for some systems and compilers.
6298 (YYSTACK_ALLOC): New macro.
6299 (yyparse): Use YYSTACK_ALLOC to allocate stack.
6300 If it was malloc'd, free it.
6301
6302 1997-04-23 Richard Stallman <rms@gnu.org>
6303
6304 * src/bison.s1:
6305 (alloca) [__hpux]: Always define as __builtin_alloca.
6306
6307 1997-04-23 Richard Stallman <rms@gnu.org>
6308
6309 * bison.simple:
6310 (alloca) [__hpux]: Always define as __builtin_alloca.
6311
6312 1997-04-22 Richard Stallman <rms@gnu.org>
6313
6314 * src/bison.s1:
6315 [__hpux]: Include alloca.h (right for HPUX 10)
6316 instead of declaring alloca (right for HPUX 9).
6317
6318 * src/bison.s1 (__yy_memcpy):
6319 Declare arg `count' as unsigned int.
6320 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
6321
6322 1997-04-22 Richard Stallman <rms@gnu.org>
6323
6324 * bison.simple:
6325 [__hpux]: Include alloca.h (right for HPUX 10)
6326 instead of declaring alloca (right for HPUX 9).
6327
6328 * bison.simple (__yy_memcpy):
6329 Declare arg `count' as unsigned int.
6330 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
6331
6332 1997-01-03 Richard Stallman <rms@gnu.org>
6333
6334 * src/allocate.c: [__STDC__ or _MSC_VER]:
6335 Declare calloc and realloc to return void *.
6336
6337 1997-01-02 Richard Stallman <rms@gnu.org>
6338
6339 * src/system.h:
6340 [_MSC_VER]: Include stdlib.h and process.h.
6341 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
6342
6343 * src/main.c (main): Return FAILURE as a value.
6344 (printable_version): Declare arg as int, not char.
6345
6346 1997-01-02 Richard Stallman <rms@gnu.org>
6347
6348 * Makefile.in (dist):
6349 Explicitly check for symlinks, and copy them.
6350
6351 1996-12-19 Richard Stallman <rms@gnu.org>
6352
6353 * src/files.c:
6354 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
6355
6356 1996-12-18 Paul Eggert <eggert@gnu.org>
6357
6358 * src/bison.s1 (yyparse):
6359 If __GNUC__ and YYPARSE_PARAM are both defined,
6360 declare yyparse to have a void * argument.
6361
6362 1996-12-18 Paul Eggert <eggert@gnu.org>
6363
6364 * bison.simple (yyparse):
6365 If __GNUC__ and YYPARSE_PARAM are both defined,
6366 declare yyparse to have a void * argument.
6367
6368 1996-12-17 Richard Stallman <rms@gnu.org>
6369
6370 * src/reduce.c (nbits): Add some casts.
6371
6372 1996-08-12 Richard Stallman <rms@gnu.org>
6373
6374 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
6375
6376 1996-08-12 Richard Stallman <rms@gnu.org>
6377
6378 * bison.simple: Test _MSDOS as well as _MSDOS_.
6379
6380 1996-07-31 Richard Stallman <rms@gnu.org>
6381
6382 * src/bison.s1:
6383 [__sun && __i386]: Include alloca.h.
6384
6385 1996-07-31 Richard Stallman <rms@gnu.org>
6386
6387 * bison.simple:
6388 [__sun && __i386]: Include alloca.h.
6389
6390 1996-07-30 Richard Stallman <rms@gnu.org>
6391
6392 * src/bison.s1: Comment change.
6393
6394 * src/bison.s1: Test _MSDOS_, not MSDOS.
6395
6396 1996-07-30 Richard Stallman <rms@gnu.org>
6397
6398 * bison.simple: Comment change.
6399
6400 * bison.simple: Test _MSDOS_, not MSDOS.
6401
6402 1996-06-01 Richard Stallman <rms@gnu.org>
6403
6404 * 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:
6405 Insert `_' macro around many string constants.
6406
6407 * src/main.c:
6408 Insert `_' macro around many string constants.
6409
6410 (main): Call setlocale, bindtextdomain and textdomain.
6411
6412 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
6413 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
6414 [ENABLE_NLS]: Include libintl.h.
6415 [ENABLE_NLS] (gettext): Define.
6416 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
6417 (N_, PACKAGE, LOCALEDIR): New macros.
6418
6419 1996-06-01 Richard Stallman <rms@gnu.org>
6420
6421 * POTFILES.in: New file.
6422
6423 * Makefile.in (allocate.o):
6424 Define target explicitly.
6425
6426 * Makefile.in (CFLAGS): Set to @CFLAGS@.
6427 (LDFLAGS): Set to @LDFLAGS@.
6428 (configure): Run autoconf only if preceding `cd' succeeds.
6429 (bison.s1): Redirect output to temporary file then move the
6430 temporary to the target, rather than redirecting directly to bison.s1.
6431 (clean): Remove config.status and config.log.
6432 (distclean): Don't remove config.status here.
6433
6434 1996-05-12 Richard Stallman <rms@gnu.org>
6435
6436 * src/bison.s1:
6437 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
6438
6439 1996-05-12 Richard Stallman <rms@gnu.org>
6440
6441 * bison.simple:
6442 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
6443
6444 1996-05-11 Richard Stallman <rms@gnu.org>
6445
6446 * src/bison.s1 (__yy_memcpy):
6447 Really reorder the args, as was supposedly done on Feb 14 1995.
6448 (yyparse): Calls changed accordingly.
6449
6450 1996-05-11 Richard Stallman <rms@gnu.org>
6451
6452 * Makefile.in (dist): Don't use $(srcdir).
6453
6454 * bison.simple (__yy_memcpy):
6455 Really reorder the args, as was supposedly done on Feb 14 1995.
6456 (yyparse): Calls changed accordingly.
6457
6458 1996-01-27 Richard Stallman <rms@gnu.org>
6459
6460 * src/output.c (output_rule_data):
6461 Test YYERROR_VERBOSE in the conditional
6462 around the definition of ttyname.
6463
6464 1995-12-29 Richard Stallman <rms@gnu.org>
6465
6466 * src/bison.s1:
6467 Fix line numbers in #line commands.
6468
6469 1995-12-29 Richard Stallman <rms@gnu.org>
6470
6471 * bison.simple:
6472 Fix line numbers in #line commands.
6473
6474 1995-12-27 Richard Stallman <rms@gnu.org>
6475
6476 * src/bison.s1 (YYPARSE_PARAM_DECL):
6477 In C++, make it always null.
6478 (YYPARSE_PARAM_ARG): New macro.
6479 (yyparse): Use YYPARSE_PARAM_ARG.
6480
6481 1995-12-27 Richard Stallman <rms@gnu.org>
6482
6483 * bison.simple (YYPARSE_PARAM_DECL):
6484 In C++, make it always null.
6485 (YYPARSE_PARAM_ARG): New macro.
6486 (yyparse): Use YYPARSE_PARAM_ARG.
6487
6488 1995-11-29 Richard Stallman <rms@gnu.org>
6489
6490 * doc/bison.texinfo:
6491 Describe literal string tokens, %raw, %no_lines, %token_table.
6492
6493 1995-11-29 Daniel Hagerty <hag@gnu.org>
6494
6495 * doc/bison.texinfo: Fixed update date
6496
6497 1995-10-16 Richard Stallman <rms@gnu.org>
6498
6499 * src/version.c: Version 1.25.
6500
6501 1995-10-16 Richard Stallman <rms@gnu.org>
6502
6503 * NEWS: *** empty log message ***
6504
6505 1995-10-16 Richard Stallman <rms@gnu.org>
6506
6507 * doc/bison.1, doc/bison.rnh:
6508 Add new options.
6509
6510 1995-10-15 Richard Stallman <rms@gnu.org>
6511
6512 * src/vmsgetargs.c, src/getargs.c:
6513 Added -n, -k, and -raw switches.
6514 (noparserflag, toknumflag, rawtoknumflag): New variables.
6515
6516 * src/symtab.h (SALIAS):
6517 New #define for adding aliases to %token.
6518 (struct bucket): Added `alias' field.
6519
6520 * src/reduce.c (reduce_grammar):
6521 Revise error message.
6522 (print_notices): Remove final `.' from error message.
6523
6524 * src/reader.c (reader_output_yylsp):
6525 New function.
6526 (readgram): Use `#if 0' around code that accepted %command
6527 inside grammar rules: The documentation doesn't allow it,
6528 and it will fail since the %command processors scan for the next %.
6529 (parse_token_decl): Extended the %token
6530 declaration to allow a multi-character symbol as an alias.
6531 (parse_thong_decl): New function.
6532 (read_declarations): Added %thong declarations.
6533 (read_declarations): Handle NOOP to deal with allowing
6534 % declarations as another means to specify the flags.
6535 (readgram): Allow %prec prior to semantics embedded in a rule.
6536 (skip_to_char, read_declarations, copy_definition)
6537 (parse_token_decl, parse_start_decl, parse_type_decl)
6538 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
6539 (get_type_name, copy_guard, copy_action, readgram)
6540 (get_type, packsymbols): Revised most error messages.
6541 Changed `fatal' to `warnxxx' to avoid aborting for error.
6542 Revised and use multiple warnxxx functions to avoid using VARARGS1.
6543 (read_declarations): Improve the error message for
6544 an invalid character. Do not abort.
6545 (read_declarations, copy_guard, copy_action): Use
6546 printable_version to avoid unprintable characters in printed output.
6547 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
6548 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
6549 Allow the type of a non-terminal can be given
6550 more than once, as long as all specifications give the same type.
6551
6552 * src/output.c:
6553 (output_headers, output_trailers, output, output_gram)
6554 (output_rule_data): Implement noparserflag variable.
6555 Implement toknumflag variable.
6556 (output): Call reader_output_yylsp to output LTYPESTR.
6557
6558 * src/main.c (main):
6559 If reader sees an error, don't process the grammar.
6560 (fatals): Updated to not use VARARGS1.
6561 (printable_version, int_to_string, warn, warni, warns, warnss)
6562 (warnsss): New error reporting functions. Avoid abort for error.
6563
6564 * src/lex.h:
6565 Added THONG and NOOP for alias processing.
6566 Added SETOPT for the new code that allows setting options with %flags.
6567
6568 * src/lex.c:
6569 Include getopt.h. Add some extern decls.
6570 (safegetc): New function to deal with EOF gracefully.
6571 (literalchar); new function to deal with reading \ escapes.
6572 (lex): Use literalchar.
6573 (lex): Implemented "..." tokens.
6574 (literalchar, lex, parse_percent_token): Made tokenbuffer
6575 always contain the token. This includes growing the token
6576 buffer while reading an integer.
6577 (parse_percent_token): Replaced if-else statement with percent_table.
6578 (parse_percent_token): Added % declarations as another
6579 way to specify the flags -n, -l, and -r. Also added hooks for
6580 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
6581 major changes to files.c.
6582 (lex) Retain in the incoming stream a character following
6583 an incorrect '/'.
6584 (skip_white_space, lex): Revised most error messages
6585 and changed fatal to warn to avoid aborting.
6586 (percent_table): Added %thong declarations.
6587
6588 * src/gram.h: Comment changes.
6589
6590 * src/files.c (openfiles, open_extra_files, done):
6591 Add faction flag
6592 and actfile file. Handle noparserflag. Both for -n switch.
6593
6594 * src/conflicts.c (resolve_sr_conflict):
6595 Remove use of alloca.
6596
6597 1995-06-01 Jim Meyering <meyering@gnu.org>
6598
6599 * doc/bison.texinfo: *** empty log message ***
6600
6601 1995-05-06 Richard Stallman <rms@gnu.org>
6602
6603 * src/bison.s1: Comment change.
6604
6605 1995-05-06 Richard Stallman <rms@gnu.org>
6606
6607 * bison.simple: Comment change.
6608
6609 1995-05-03 Richard Stallman <rms@gnu.org>
6610
6611 * src/version.c: Version now 1.24.
6612
6613 * src/bison.s1: Change distribution terms.
6614
6615 * src/version.c: Version now 1.23.
6616
6617 1995-05-03 Richard Stallman <rms@gnu.org>
6618
6619 * doc/bison.texinfo:
6620 Rewrite "Conditions for Using Bison".
6621 Update version to 1.24.
6622
6623 1995-05-03 Richard Stallman <rms@gnu.org>
6624
6625 * bison.simple: Change distribution terms.
6626
6627 1995-02-23 Richard Stallman <rms@gnu.org>
6628
6629 * src/files.c: Test __VMS_POSIX as well as VMS.
6630
6631 1995-02-14 Jim Meyering <meyering@gnu.org>
6632
6633 * src/bison.s1 (__yy_memcpy):
6634 Renamed from __yy_bcopy to avoid
6635 confusion. Reverse FROM and TO arguments to be consistent with
6636 those of memcpy.
6637
6638 1995-02-14 Jim Meyering <meyering@gnu.org>
6639
6640 * bison.simple (__yy_memcpy):
6641 Renamed from __yy_bcopy to avoid
6642 confusion. Reverse FROM and TO arguments to be consistent with
6643 those of memcpy.
6644
6645 1994-11-10 David J. MacKenzie <djm@gnu.org>
6646
6647 * NEWS: reformat
6648
6649 * NEWS: New file.
6650
6651 * Makefile.in (DISTFILES): Include NEWS.
6652
6653 * Makefile.in (DISTFILES):
6654 Include install-sh, not install.sh.
6655
6656 * configure.in: Update to Autoconf v2 macro names.
6657
6658 1994-10-05 David J. MacKenzie <djm@gnu.org>
6659
6660 * Makefile.in: fix typo
6661
6662 * Makefile.in (prefix, exec_prefix):
6663 Let configure set them.
6664
6665 1994-09-28 David J. MacKenzie <djm@gnu.org>
6666
6667 * Makefile.in: Set datadir to $(prefix)/share.
6668
6669 1994-09-15 Richard Stallman <rms@gnu.org>
6670
6671 * src/bison.s1:
6672 Update copyright notice and GPL version.
6673
6674 1994-09-15 Richard Stallman <rms@gnu.org>
6675
6676 * bison.simple:
6677 Update copyright notice and GPL version.
6678
6679 1994-07-12 Richard Stallman <rms@gnu.org>
6680
6681 * src/reduce.c, src/reader.c:
6682 entered into RCS
6683
6684 1994-05-05 David J. MacKenzie <djm@gnu.org>
6685
6686 * Makefile.in: entered into RCS
6687
6688 1994-03-26 Richard Stallman <rms@gnu.org>
6689
6690 * src/bison.s1: entered into RCS
6691
6692 1994-03-26 Richard Stallman <rms@gnu.org>
6693
6694 * bison.simple: entered into RCS
6695
6696 1994-03-25 Richard Stallman <rms@gnu.org>
6697
6698 * src/main.c: entered into RCS
6699
6700 1994-03-24 Richard Stallman <rms@gnu.org>
6701
6702 * src/conflicts.c: entered into RCS
6703
6704 1994-01-02 Richard Stallman <rms@gnu.org>
6705
6706 * Makefile.in: *** empty log message ***
6707
6708 1993-11-21 Richard Stallman <rms@gnu.org>
6709
6710 * src/bison.s1: *** empty log message ***
6711
6712 1993-11-21 Richard Stallman <rms@gnu.org>
6713
6714 * doc/bison.texinfo: entered into RCS
6715
6716 * doc/bison.texinfo: *** empty log message ***
6717
6718 1993-11-21 Richard Stallman <rms@gnu.org>
6719
6720 * bison.simple: *** empty log message ***
6721
6722 1993-10-25 David J. MacKenzie <djm@gnu.org>
6723
6724 * doc/bison.texinfo: *** empty log message ***
6725
6726 1993-10-19 Richard Stallman <rms@gnu.org>
6727
6728 * src/bison.s1: *** empty log message ***
6729
6730 1993-10-19 Richard Stallman <rms@gnu.org>
6731
6732 * bison.simple: *** empty log message ***
6733
6734 1993-10-14 Richard Stallman <rms@gnu.org>
6735
6736 * src/bison.s1: *** empty log message ***
6737
6738 1993-10-14 Richard Stallman <rms@gnu.org>
6739
6740 * bison.simple: *** empty log message ***
6741
6742 1993-09-14 David J. MacKenzie <djm@gnu.org>
6743
6744 * doc/bison.texinfo: *** empty log message ***
6745
6746 1993-09-13 Noah Friedman <friedman@gnu.org>
6747
6748 * Makefile.in: *** empty log message ***
6749
6750 1993-09-10 Richard Stallman <rms@gnu.org>
6751
6752 * src/conflicts.c: *** empty log message ***
6753
6754 * src/system.h: entered into RCS
6755
6756 1993-09-10 Richard Stallman <rms@gnu.org>
6757
6758 * doc/bison.1: entered into RCS
6759
6760 1993-09-06 Noah Friedman <friedman@gnu.org>
6761
6762 * src/version.c: entered into RCS
6763
6764 1993-09-06 Noah Friedman <friedman@gnu.org>
6765
6766 * Makefile.in: *** empty log message ***
6767
6768 1993-07-30 David J. MacKenzie <djm@gnu.org>
6769
6770 * Makefile.in: *** empty log message ***
6771
6772 1993-07-24 Richard Stallman <rms@gnu.org>
6773
6774 * src/bison.s1: *** empty log message ***
6775
6776 1993-07-24 Richard Stallman <rms@gnu.org>
6777
6778 * bison.simple: *** empty log message ***
6779
6780 1993-07-08 David J. MacKenzie <djm@gnu.org>
6781
6782 * Makefile.in: *** empty log message ***
6783
6784 1993-07-04 Richard Stallman <rms@gnu.org>
6785
6786 * src/bison.s1: *** empty log message ***
6787
6788 1993-07-04 Richard Stallman <rms@gnu.org>
6789
6790 * bison.simple: *** empty log message ***
6791
6792 1993-06-26 David J. MacKenzie <djm@gnu.org>
6793
6794 * src/getargs.c: entered into RCS
6795
6796 1993-06-26 David J. MacKenzie <djm@gnu.org>
6797
6798 * doc/bison.texinfo: *** empty log message ***
6799
6800 * doc/bison.1: New file.
6801
6802 1993-06-25 Richard Stallman <rms@gnu.org>
6803
6804 * src/getargs.c: New file.
6805
6806 1993-06-16 Richard Stallman <rms@gnu.org>
6807
6808 * src/bison.s1: *** empty log message ***
6809
6810 1993-06-16 Richard Stallman <rms@gnu.org>
6811
6812 * bison.simple: *** empty log message ***
6813
6814 1993-06-03 Richard Stallman <rms@gnu.org>
6815
6816 * src/bison.s1: New file.
6817
6818 1993-06-03 Richard Stallman <rms@gnu.org>
6819
6820 * doc/bison.texinfo: *** empty log message ***
6821
6822 1993-06-03 Richard Stallman <rms@gnu.org>
6823
6824 * bison.simple: New file.
6825
6826 1993-05-19 Richard Stallman <rms@gnu.org>
6827
6828 * doc/bison.texinfo: New file.
6829
6830 1993-05-07 Noah Friedman <friedman@gnu.org>
6831
6832 * Makefile.in: *** empty log message ***
6833
6834 1993-04-28 Noah Friedman <friedman@gnu.org>
6835
6836 * src/reader.c: *** empty log message ***
6837
6838 1993-04-23 Noah Friedman <friedman@gnu.org>
6839
6840 * src/alloc.h: entered into RCS
6841
6842 1993-04-20 David J. MacKenzie <djm@gnu.org>
6843
6844 * src/version.c: *** empty log message ***
6845
6846 * src/files.c, src/allocate.c:
6847 entered into RCS
6848
6849 * src/reader.c: *** empty log message ***
6850
6851 * src/lex.c: entered into RCS
6852
6853 * src/conflicts.c: New file.
6854
6855 * src/symtab.c: entered into RCS
6856
6857 * src/alloc.h: New file.
6858
6859 * src/LR0.c: entered into RCS
6860
6861 1993-04-18 Noah Friedman <friedman@gnu.org>
6862
6863 * src/reader.c: New file.
6864
6865 * src/version.c: *** empty log message ***
6866
6867 1993-04-18 Noah Friedman <friedman@gnu.org>
6868
6869 * Makefile.in: *** empty log message ***
6870
6871 1993-04-17 Noah Friedman <friedman@gnu.org>
6872
6873 * Makefile.in: *** empty log message ***
6874
6875 1993-04-15 Richard Stallman <rms@gnu.org>
6876
6877 * src/main.c, src/files.c:
6878 New file.
6879
6880 1993-04-15 Noah Friedman <friedman@gnu.org>
6881
6882 * configure.in: entered into RCS
6883
6884 * configure.in: *** empty log message ***
6885
6886 * configure.in: New file.
6887
6888 1993-04-14 Richard Stallman <rms@gnu.org>
6889
6890 * Makefile.in: New file.
6891
6892 1993-04-13 Richard Stallman <rms@gnu.org>
6893
6894 * src/version.c: New file.
6895
6896 1993-03-25 Richard Stallman <rms@gnu.org>
6897
6898 * src/output.c: entered into RCS
6899
6900 1992-09-25 Richard Stallman <rms@gnu.org>
6901
6902 * configure.bat: entered into RCS
6903
6904 1992-06-22 Richard Stallman <rms@gnu.org>
6905
6906 * src/vmsgetargs.c: entered into RCS
6907
6908 1992-06-22 Richard Stallman <rms@gnu.org>
6909
6910 * doc/bison.rnh: entered into RCS
6911
6912 1992-04-20 David J. MacKenzie <djm@gnu.org>
6913
6914 * README: entered into RCS
6915
6916 1992-01-22 Richard Stallman <rms@gnu.org>
6917
6918 * src/machine.h: entered into RCS
6919
6920 1991-12-21 Richard Stallman <rms@gnu.org>
6921
6922 * src/lalr.c, src/closure.c:
6923 entered into RCS
6924
6925 1991-12-20 Richard Stallman <rms@gnu.org>
6926
6927 * src/state.h: entered into RCS
6928
6929 1991-12-18 Richard Stallman <rms@gnu.org>
6930
6931 * src/print.c, src/nullable.c, src/derives.c:
6932 entered into RCS
6933
6934 1991-11-03 David J. MacKenzie <djm@gnu.org>
6935
6936 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
6937 entered into RCS
6938
6939 1988-09-09 Richard Stallman <rms@gnu.org>
6940
6941 * src/bison.hairy: entered into RCS
6942
6943 1987-12-16 Richard Stallman <rms@gnu.org>
6944
6945 * REFERENCES: entered into RCS
6946 -----
6947
6948 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
6949
6950 This file is part of GNU Autoconf.
6951
6952 GNU Autoconf is free software; you can redistribute it and/or modify
6953 it under the terms of the GNU General Public License as published by
6954 the Free Software Foundation; either version 2, or (at your option)
6955 any later version.
6956
6957 GNU Autoconf is distributed in the hope that it will be useful,
6958 but WITHOUT ANY WARRANTY; without even the implied warranty of
6959 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
6960 GNU General Public License for more details.
6961
6962 You should have received a copy of the GNU General Public License
6963 along with autoconf; see the file COPYING. If not, write to
6964 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
6965 Boston, MA 02111-1307, USA.