]> git.saurik.com Git - bison.git/blob - ChangeLog
Add src/system.h; this isn't really needed, but it keeps "make update"
[bison.git] / ChangeLog
1 2002-11-11 Paul Eggert <eggert@twinsun.com>
2
3 Revamp to fix many (but not all) of the C- and M4-related quoting
4 problems. Among other things, this fixes the Bison bug reported
5 by Jan Hubicka when processing the Bash grammar; see:
6 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001329.html>
7
8 Use new @ escapes consistently. Represent brackets with @{ and @}
9 rather than @<:@ and @:>@, since this works a bit better with dumb
10 editors like vi. Represent @ with @@, since @ is now consistently
11 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12 __ofile__, to avoid unexpected expansions. Similarly, use @output
13 rather than #output.
14
15 * data/c.m4 (b4_copyright): Omit file name from comment, since
16 the file name could contain "*/".
17 (b4_synclines_flag): Don't quote the 2nd argument; it should already
18 be quoted. All uses changed.
19
20 * data/glr.c: Use new @ escapes consistently.
21 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
22 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
23 Remove, since they couldn't handle arbitrary characters in file
24 names.
25 * data/lalr1.cc: Likewise.
26 * data/yacc.c: Likewise.
27
28 * src/files.c (output_infix): Remove; all uses removed.
29 * src/files.h: Likewise.
30
31 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
32 mishandled funny characters in file names, and anyway it isn't
33 needed any more.
34 * data/yacc.c: Likewise.
35 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
36
37 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
38 * data/yacc.c: Likewise.
39
40 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
41 strings now.
42 (muscle_init): Quote filename as a C string.
43 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
44 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
45 * src/output.c (escaped_file_name_output): New function.
46 (prepare_symbols): Quote tokens for M4.
47 (prepare): Don't insert output_infix, output_prefix,
48 output_parser_name, output_header_name; this is now down by scan-skel.
49 Insert skeleton as a C string.
50
51 * src/output.c (user_actions_output, symbol_destructors_output,
52 symbol_printers_output): Quote filenames for C and M4.
53 * src/reader.c (prologue_augment, epilogue_set): Likewise.
54
55 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
56 escapes other than \\ and \'; this simplifies the code.
57 (<SC_STRING>): Likewise, for \\ and \".
58 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
59 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
60 Use new escapes @{ and @} for [ and ].
61
62 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
63 them with auto vars.
64 Switch to new escape scheme, where @ is the escape character uniformly.
65 Abort if a stray escape character is found. Avoid unbounded input
66 buffer when parsing non-escaped text.
67
68 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
69 __oline__, #output, $@, and @{ do not have unintended meanings.
70
71 2002-11-09 Paul Eggert <eggert@twinsun.com>
72
73 Fix the test failure due to GCC warnings described in
74 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001815.html>.
75 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
76 evaluate to 0 if it's impossible for NINF to be in the respective
77 table.
78 (yygetLRActions, yyrecoverParseError): Use them.
79
80 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
81 counted in the token inserted at end of file. Now takes
82 location_t *, not location_t, so that the location can be
83 adjusted. All uses changed.
84
85 * tests/regression.at (Invalid inputs): Adjust wording in
86 diagnostic to match the new behavior.
87
88 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
89 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
90 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
91 abort ();'. This reduces the runtime of the "Many lookaheads"
92 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
93 GCC 3.2.
94
95 2002-11-07 Paul Eggert <eggert@twinsun.com>
96
97 * src/parse-gram.y (CHARACTER): Remove unused token.
98 All uses removed.
99
100 * src/scan-gram.l: Remove stack option. We no longer use the
101 stack, since the stack was never deeper than 1; instead, use the
102 new auto var c_context to record the stacked value.
103
104 Remove nounput option. At an unexpected end of file, we now unput
105 the minimal input necessary to end cleanly; this simplifies the
106 code.
107
108 Avoid unbounded token sizes where this is easy.
109
110 (unexpected_end_of_file): New function.
111 Use it to systematize the error message on unexpected EOF.
112 (last-string): Now auto, not static.
113 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
114 (scanner_last_string_free): Remove; not used.
115 (percent_percent_count): Move decl to just before use.
116 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
117 not the (never otherwised-used) CHARACTER.
118
119 2002-11-07 Akim Demaille <akim@epita.fr>
120
121 Let yyerror always receive the msg as last argument, so that
122 yyerror can be variadic.
123
124 * data/yacc.c (b4_yyerror_args): New.
125 Use it when calling yyerror.
126 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
127 Use it when calling yyerror.
128 * doc/bison.texinfo (Error Reporting): Adjust.
129 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
130 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
131
132 2002-11-06 Akim Demaille <akim@epita.fr>
133
134 #line should have quoted strings.
135 Ideally, this should be done by m4_quotearg.
136
137 * src/scan-skel.l: Include quotearg.h.
138 Quote __ofile__.
139 * src/output.c (symbol_printers_output)
140 (symbol_destructors_output): Quote the file name.
141
142 2002-11-06 Akim Demaille <akim@epita.fr>
143
144 * tests/regression.at (Invalid inputs): Adjust to the recent
145 messages.
146
147 2002-11-06 Akim Demaille <akim@epita.fr>
148
149 Restore --no-lines.
150 Reported by Jim Kent.
151
152 * data/c.m4 (b4_syncline): New.
153 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
154 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
155 * src/output.c (user_actions_output): Likewise.
156 (prepare): Define 'b4_synclines_flag'.
157 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
158
159 2002-11-06 Akim Demaille <akim@epita.fr>
160
161 * src/main.c (main): Free `infile'.
162 * src/scan-gram.l (handle_syncline): New.
163 Recognize `#line'.
164 * src/output.c (user_actions_output, symbol_destructors_output)
165 (symbol_printers_output): Use the location's file name, not
166 infile.
167 * src/reader.c (prologue_augment, epilogue_set): Likewise.
168
169 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
170
171 * src/tables.c (matching_state): Don't allow states to match if
172 either has GLR conflict entries.
173
174 2002-11-05 Paul Eggert <eggert@twinsun.com>
175
176 * src/scan-gram.l: Use more accurate diagnostics, e.g.
177 "integer out of range" rather than "invalid value".
178 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
179 accordingly.
180
181 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
182 Also, remove one static variable in the scanner.
183
184 * src/scan-gram.l (braces_level): Now auto, not static.
185 Initialize to zero if the compiler is being picky.
186 (INITIAL): Clear braces_level instead of incrementing it.
187 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
188 as POSIX 1003.1-2001 requires.
189 * src/system.h (IF_LINT): New macro, taken from coreutils.
190 * configure.ac: Define "lint" if --enable-gcc-warnings.
191
192 2002-11-05 Akim Demaille <akim@epita.fr>
193
194 * src/scan-gram.l: When it starts with `%', complain about the
195 whole directive, not just that `invalid character: %'.
196
197 2002-11-04 Akim Demaille <akim@epita.fr>
198
199 * Makefile.maint: Update from Autoconf.
200 (update, cvs-update, po-update, do-po-update): New.
201
202 2002-11-04 Akim Demaille <akim@epita.fr>
203
204 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
205 and yyerror.
206 Have yyerror `use' its arguments.
207 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
208 returns true when location & yacc & pure & parse-param.
209 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
210
211 2002-11-04 Akim Demaille <akim@epita.fr>
212
213 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
214 clashes.
215 * src/scan-gram.l: Use [\'] instead of ['] to pacify
216 font-lock-mode.
217 Use complain_at.
218 Use quote, not quote_n since LOCATION_PRINT no longer uses the
219 slot 0.
220
221 2002-11-03 Paul Eggert <eggert@twinsun.com>
222
223 * src/reader.c (get_merge_function, grammar_current_rule_check):
224 Use consistent diagnostics for reporting type name clashes.
225 Quote the types with <>, for consistency with Yacc.
226 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
227
228 2002-11-03 Akim Demaille <akim@epita.fr>
229
230 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
231 New.
232 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
233 (b4_parse_param): Remove.
234 Use b4_identification.
235 Propagate b4_pure_args where needed to pass them to yyerror.
236 * data/glr.m4 (b4_parse_param): Remove.
237 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
238 (b4_lpure_formals): New.
239 Use b4_identification.
240 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
241 b4_user_formals and b4_user_args.
242 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
243 (yyreportAmbiguity): When using a pure parser, also need
244 the location, and the parse-params.
245 Adjust callers.
246 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
247 When using a pure parser, also need the parse-params.
248 Adjust callers.
249 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
250 (%pure-parser + %parse-param) LALR and GLR parsers.
251 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
252 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
253 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
254 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
255 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
256 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
257 * doc/bison.texinfo: Untabify the whole file.
258 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
259 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
260 (Error Reporting): Adjust to these new directives.
261 Document %error-verbose, deprecate YYERROR_VERBOSE.
262
263 2002-11-03 Akim Demaille <akim@epita.fr>
264
265 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
266 AT_CHECK_CALC_GLR invocations to use % directives, instead of
267 command line options.
268 * tests/cxx-type.at: Formatting changes.
269
270 2002-11-03 Paul Eggert <eggert@twinsun.com>
271
272 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
273 to count columns correctly, and to check for invalid inputs.
274
275 Use mbsnwidth to count columns correctly. Account for tabs, too.
276 Include mbswidth.h.
277 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
278 (extend_location): New function.
279 (YY_LINES): Remove.
280
281 Handle CRLF in C code rather than in Lex code.
282 (YY_INPUT): New macro.
283 (no_cr_read): New function.
284
285 Scan UCNs, even though we don't fully handle them yet.
286 (convert_ucn_to_byte): New function.
287
288 Handle backslash-newline correctly in C code.
289 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
290 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
291 all uses changed.
292 (tag, splice): New EREs. Do not allow NUL or newline in tags.
293 Use {splice} wherever C allows backslash-newline.
294 YY_STEP after space, newline, vertical-tab.
295 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
296
297 (letter, id): Don't assume ASCII; e.g., spell out a-z.
298
299 ({int}, handle_action_dollar, handle_action_at): Check for integer
300 overflow.
301
302 (YY_STEP): Omit trailing semicolon, so that it's more like C.
303
304 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
305 as well as \000. Check for UCHAR_MAX, not 255.
306 Allow \x with an arbitrary positive number of digits, as in C.
307 Check for overflow here.
308 Allow \? and UCNs, for compatibility with C.
309
310 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
311 with quote slot used by complain_at.
312
313 * tests/input.at: Add tests for backslash-newline, m4 quotes
314 in symbols, long literals, and funny escapes in strings.
315
316 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
317 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
318 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
319 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
320 * m4/mbswidth.m4: New file, from GNU coreutils.
321
322 * doc/bison.texinfo (Grammar Outline): Document // comments.
323 (Symbols): Document that trigraphs have no special meaning in Bison,
324 nor is backslash-newline allowed.
325 (Actions): Document that trigraphs have no special meaning.
326
327 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
328 no longer used.
329
330 2002-11-02 Paul Eggert <eggert@twinsun.com>
331
332 * src/reader.c: Don't include quote.h; not needed.
333 (get_merge_function): Reword warning to be consistent with
334 type clash diagnostic in grammar_current_rule_check.
335
336 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
337 bug in trigraph handling.
338
339 * src/output.c (prepare_symbols): When printing token names,
340 escape "[" as "@<:@" and likewise for "]".
341
342 * src/system.h (errno): Remove declaration, as we are now
343 assuming C89 or better, and C89 guarantees errno.
344
345 2002-10-30 Paul Eggert <eggert@twinsun.com>
346
347 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
348 Check for close failures.
349 * src/files.h (xfclose): Return void, not int, since it always
350 returned zero.
351 * src/files.c (xfclose): Likewise. Report I/O error if ferror
352 indicates one.
353 * src/output.c (output_skeleton): Use xfclose rather than fclose
354 and ferror. xfclose now checks ferror.
355
356 * data/glr.c (YYLEFTMOST_STATE): Remove.
357 (yyreportTree): Use a stack-based leftmost state. This avoids
358 our continuing battles with bogus warnings about initializers.
359
360 2002-10-30 Akim Demaille <akim@epita.fr>
361
362 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
363 #if.
364
365 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
366
367 * tests/glr-regr1.at: New test for reported regressions.
368 * tests/testsuite.at: Add glr-regr1.at test.
369 * tests/Makefile.am: Add glr-regr1.at test.
370
371 2002-10-24 Paul Eggert <eggert@twinsun.com>
372
373 Version 1.75a.
374
375 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
376 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
377 we use malloc. Don't assume 'A' through 'Z' are contiguous.
378 Don't assume strdup exists; POSIX says its an XSI extension.
379 Check for buffer overflow on input.
380
381 2002-10-24 Akim Demaille <akim@epita.fr>
382
383 * src/output.c (output_skeleton): Don't disable M4sugar comments
384 too soon: it results in comments being expanded.
385 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
386 first output.
387
388 2002-10-24 Akim Demaille <akim@epita.fr>
389
390 * data/yacc.c (m4_int_type): New.
391 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
392 char' as only yacc.c wants K&R portability.
393 * data/glr.c (yysigned_char): Remove.
394 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
395 Reported by Quoc Peyrot.
396
397 2002-10-23 Paul Eggert <eggert@twinsun.com>
398
399 * src/main.c (main): With --trace=time, report times even if a
400 non-fatal error occurs. Formerly, the times were reported in some
401 such cases but not in others.
402 * src/reader.c (reader): Just return if a complaint has been issued,
403 instead of exiting, so that 'main' can report times.
404
405 2002-10-22 Akim Demaille <akim@epita.fr>
406
407 * src/system.h: Include sys/types.
408 Reported by Bert Deknuydt.
409
410 2002-10-23 Paul Eggert <eggert@twinsun.com>
411
412 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
413 Suggested by Art Haas.
414
415 2002-10-22 Paul Eggert <eggert@twinsun.com>
416
417 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
418 decl; not needed any more.
419 * src/main.c (main): Use return to exit, undoing yesterday's change.
420 The last OS that we could find where this wouldn't work is
421 SunOS 3.5, and that's too old to worry about now.
422
423 * data/glr.c (struct yyltype): Define members even when not
424 doing locations. This is more consistent with yacc.c, and it
425 works around the following bug reports:
426 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
427 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
428 and I hope it also fixes this bug report:
429 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
430
431 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
432 @acronym consistently. Standardize on "Yacc" instead of "YACC",
433 "Algol" instead of "ALGOL". Give a bit more history about BNF.
434
435 2002-10-22 Akim Demaille <akim@epita.fr>
436
437 * data/README: New.
438
439 2002-10-21 Paul Eggert <eggert@twinsun.com>
440
441 Be consistent about 'bool'; the old code used an enum in one
442 module and an int in another, and this violates the C standard.
443 * m4/stdbool.m4: New file, from coreutils 4.5.3.
444 * configure.ac (AC_HEADER_STDBOOL): Add.
445 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
446 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
447 * src/symtab.c (hash_compare_symbol_t): Likewise.
448 * src/system.h (bool, false, true): Use a definition consistent
449 with ../lib/hash.c. All uses changed.
450
451 * src/complain.c (warning_issued): Renamed from warn_message_count,
452 so that we needn't worry about integer overflow (!).
453 Now of type bool. All uses changed.
454 (complaint_issued): Renamed from complain_message_count; likewise.
455
456 * src/main.c (main): Use exit to exit with failure.
457
458 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
459 rather than 1 and 0.
460 * src/main.c (main): Likewise.
461 * src/getargs.c (getargs): Likewise.
462 * src/reader.c (reader): Likewise.
463
464 * src/getarg.c (getargs): Remove duplicate code for
465 "Try `bison --help'".
466
467 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
468 What was that "2" for?
469
470 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
471 * src/getargs.c (usage): Likewise.
472
473 * src/getargs.c (getargs): When there are too few operands, report
474 the last one. When there are too many, report the first extra
475 one. This is how diffutils does it.
476
477 2002-10-20 Paul Eggert <eggert@twinsun.com>
478
479 Remove K&R vestiges.
480 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
481 * src/complain.c (VA_START): Remove. Assume prototypes.
482 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
483 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
484 fatal): Assume prototypes.
485 * src/complain.h: Assume prototypes.
486 * src/system.h (PARAMS): Remove.
487 Include <limits.h> unconditionally, since it's guaranteeed even
488 for a freestanding C89 compiler.
489 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
490 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
491
492 2002-10-20 Akim Demaille <akim@epita.fr>
493
494 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
495 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
496 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
497 (yyresolveStates, yyresolveAction, yyresolveStack)
498 (yyprocessOneStack): Use them.
499 (yy_reduce_print): New.
500 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
501
502 2002-10-20 Akim Demaille <akim@epita.fr>
503
504 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
505 arguments and output `void'.
506 (b4_c_function): Rename as...
507 (b4_c_function_def): this.
508 (b4_c_function_decl, b4_c_ansi_function_def)
509 (b4_c_ansi_function_decl): New.
510 Change the interpretation of the arguments: before `int, foo', now
511 `int foo, foo'.
512 * data/yacc.c (yyparse): Prototype and define thanks to these.
513 Adjust b4_c_function_def uses.
514 * data/glr.c (yyparse): Likewise, but ANSI only.
515
516 2002-10-20 Akim Demaille <akim@epita.fr>
517
518 * src/output.c (prepare): Move the definition of `tokens_number',
519 `nterms_number', `undef_token_number', `user_token_number_max'
520 to...
521 (prepare_tokens): Here.
522 (prepare_tokens): Rename as...
523 (prepare_symbols): this.
524 (prepare): Move the definition of `rules_number' to...
525 (prepare_rules): here.
526 (prepare): Move the definition of `last', `final_state_number',
527 `states_number' to...
528 (prepare_states): here.
529 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
530
531 2002-10-20 Akim Demaille <akim@epita.fr>
532
533 * src/tables.h, src/tables.c, src/output.c: Comment changes.
534
535 2002-10-20 Akim Demaille <akim@epita.fr>
536
537 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
538 * data/c.m4: here.
539
540 2002-10-20 Akim Demaille <akim@epita.fr>
541
542 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
543 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
544 `pair'.
545 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
546 `name' to...
547 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
548 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
549 These.
550
551 2002-10-19 Paul Eggert <eggert@twinsun.com>
552
553 Do not create a temporary file, as that involves security and
554 cleanup headaches. Instead, use a pair of pipes.
555 Derived from a suggestion by Florian Krohm.
556 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
557 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
558 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
559 (BISON_PREREQ_SUBPIPE): Add.
560 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
561 Add subpipe.h, subpipe.c.
562 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
563 * po/POTFILES.in: Add lib/subpipe.c.
564 * src/output.c: Include "subpipe.h".
565 (m4_invoke): Remove decl.
566 (scan_skel): New decl.
567 (output_skeleton): Use pipe rather than temporary file for m4 input.
568 Check that m4sugar.m4 is readable, to avoid deadlock.
569 Check for pipe I/O error.
570 * src/scan-skel.l (readpipe): Remove decl.
571 (scan_skel): New function, to be used in place of m4_invoke.
572 Read from stream rather than file.
573
574 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
575 float, as this generates a warning on Solaris 8 + GCC 3.2 with
576 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
577 this generates a more-accurate value anyway.
578
579 * lib/timevar.c (timervar_accumulate): Rename locals to
580 avoid confusion with similarly-named more-global.
581 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
582
583 * src/output.c (prepare): Use xstrdup to convert char const *
584 to char *, to avoid GCC warning.
585
586 2002-10-19 Akim Demaille <akim@epita.fr>
587
588 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
589 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
590 Use them to have `calc.y' ready for %pure-parser.
591 * data/yacc.c (YYLEX): Pass a yylex return type to
592 b4_c_function_call.
593
594 2002-10-19 Akim Demaille <akim@epita.fr>
595
596 Prototype support of %lex-param and %parse-param.
597
598 * src/parse-gram.y: Add the definition of the %lex-param and
599 %parse-param tokens, plus their rules.
600 Drop the `_' version of %glr-parser.
601 Add the "," token.
602 * src/scan-gram.l (INITIAL): Scan them.
603 * src/muscle_tab.c: Comment changes.
604 (muscle_insert, muscle_find): Rename `pair' as `probe'.
605 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
606 (muscle_entry_s): The `value' member is no longer const.
607 Adjust all dependencies.
608 * src/muscle_tab.c (muscle_init): Adjust: use
609 MUSCLE_INSERT_STRING.
610 Initialize the obstack earlier.
611 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
612 (muscle_pair_list_grow): New.
613 * data/c.m4 (b4_c_function_call, b4_c_args): New.
614 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
615 * tests/calc.at: Use %locations, not --locations.
616 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
617
618 2002-10-19 Akim Demaille <akim@epita.fr>
619
620 * src/getargs.c (usage): Take status as argument and exit
621 accordingly.
622 Report the traditional `Try ... --help' message when status != 0.
623 (usage, version): Don't take a FILE * as arg, it is pointless.
624 (getargs): When there is an incorrect number of arguments, make it
625 an error, and report it GNUlically thanks to `usage ()'.
626
627 2002-10-18 Paul Eggert <eggert@twinsun.com>
628
629 * data/glr.c (yyreportParseError): Don't assume that sprintf
630 yields the length of the printed string, as this is not true
631 on SunOS 4.1.4. Reported by Peter Klein.
632
633 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
634 * tests/conflicts.at (%nonassoc and eof): Likewise.
635 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
636
637 2002-10-17 Akim Demaille <akim@epita.fr>
638
639 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
640 * src/getargs.c (trace_types, trace_args): Adjust.
641 * src/reader.c (grammar_current_rule_prec_set)
642 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
643 Standardize error messages.
644 And s/@prec/%prec/!
645 (reader): Use trace_flag to enable scanner/parser debugging,
646 instead of an adhoc scheme.
647 * src/scan-gram.l: Remove trailing debugging code.
648
649 2002-10-16 Paul Eggert <eggert@twinsun.com>
650
651 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
652 MUSCLE_TAB_H.
653
654 * NEWS: Officially drop support for building Bison with K&R C,
655 since it didn't work anyway and it's not worth worrying about.
656 * Makefile.maint (wget_files): Remove ansi2knr.c.
657 (ansi2knr.c-url_prefix): Remove.
658 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
659 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
660 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
661
662 2002-10-15 Paul Eggert <eggert@twinsun.com>
663
664 Stop using the "enum_" trick for K&R-style function definitions;
665 it confused me, and I was the author! Instead, assume that people
666 who want to use K&R C compilers (when using these modules in GCC,
667 perhaps?) will run ansi2knr.
668
669 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
670 All uses of "enum_" changed to "enum ".
671 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
672 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
673
674 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
675 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
676 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
677 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
678 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
679 abitset_not, abitset_ones, abitset_or, abitset_or_and,
680 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
681 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
682 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
683 Use function prototypes; this removes the need for declaring
684 static functions simply to provide their prototypes.
685 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
686 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
687 bitset_count_, bitset_create, bitset_dump, bitset_first,
688 bitset_free, bitset_init, bitset_last, bitset_next,
689 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
690 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
691 bitset_print, bitset_release_memory, bitset_toggle_,
692 bitset_type_choose, bitset_type_get, bitset_type_name_get,
693 debug_bitset): Likewise.
694 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
695 * lib/bitset_stats.c (bitset_log_histogram_print,
696 bitset_percent_histogram_print, bitset_stats_and,
697 bitset_stats_and_cmp, bitset_stats_and_or,
698 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
699 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
700 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
701 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
702 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
703 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
704 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
705 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
706 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
707 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
708 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
709 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
710 bitset_stats_zero): Likewise.
711 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
712 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
713 bitsetv_dump, debug_bitsetv): Likewise.
714 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
715 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
716 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
717 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
718 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
719 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
720 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
721 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
722 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
723 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
724 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
725 Likewise.
726 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
727 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
728 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
729 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
730 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
731 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
732 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
733 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
734 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
735 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
736 lbitset_xor_cmp, lbitset_zero): Likewise.
737
738 2002-10-14 Akim Demaille <akim@epita.fr>
739
740 Version 1.75.
741
742 2002-10-14 Akim Demaille <akim@epita.fr>
743
744 * tests/Makefile.am (maintainer-check-posix): New.
745
746 2002-10-14 Akim Demaille <akim@epita.fr>
747
748 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
749 member.
750
751 2002-10-14 Akim Demaille <akim@epita.fr>
752
753 * src/tables.c (table_ninf_remap): base -> tab.
754 Reported by Matt Rosing.
755
756 2002-10-14 Paul Eggert <eggert@twinsun.com>
757
758 * tests/action.at, tests/calc.at, tests/conflicts.at,
759 tests/cxx-type.at, tests/headers.at, tests/input.at,
760 tests/regression.at, tests/synclines.at, tests/torture.at:
761 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
762 so that the tests still work even if POSIXLY_CORRECT is set.
763 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
764
765 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
766 for portability to K&R hosts. Fix typo: signed char is guaranteed
767 only to 127, not to 128.
768 * data/glr.c (yysigned_char): New type.
769 * data/yacc.c (yysigned_char): Likewise.
770 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
771
772 2002-10-13 Paul Eggert <eggert@twinsun.com>
773
774 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
775 true due to limited range of data type" warning from GCC.
776
777 * data/c.m4 (b4_token_defines): Protect against double-inclusion
778 by wrapping enum yytokentype's definition inside #ifndef
779 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
780
781 2002-10-13 Akim Demaille <akim@epita.fr>
782
783 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
784 Un yy- yyrhs to avoid the name clash with the global YYRHS.
785
786 2002-10-13 Akim Demaille <akim@epita.fr>
787
788 * Makefile.maint: Update from Autoconf 2.54.
789 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
790
791 2002-10-13 Akim Demaille <akim@epita.fr>
792
793 * src/print.c (print_state): Separate the list of solved conflicts
794 from the other items.
795 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
796
797 2002-10-13 Akim Demaille <akim@epita.fr>
798
799 Let nondeterministic skeletons be usable with deterministic
800 tables.
801
802 With the patch, GAWK compiled by GCC without -O2 passes its test
803 suite using a GLR parser driven by LALR tables. It fails with -O2
804 because `struct stat' gives two different answers on my machine:
805 88 (definition of an auto var) and later 96 (memset on this var).
806 Hence the stack is badly corrumpted. The headers inclusion is to
807 blame: if I move the awk.h inclusion before GLR's system header
808 inclusion, the two struct stat have the same size.
809
810 * src/tables.c (pack_table): Always create conflict_table.
811 (token_actions): Always create conflict_list.
812 * data/glr.c (YYFLAG): Remove, unused.
813
814 2002-10-13 Akim Demaille <akim@epita.fr>
815
816 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
817 (O0FLAGS): New.
818 (VALGRIND, GXX): New.
819 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
820 * tests/bison.in: Run $PREBISON a pre-command.
821 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
822 (maintainer-check-g++): New.
823 * Makefile.am (maintainer-check): New.
824
825 2002-10-13 Akim Demaille <akim@epita.fr>
826
827 * data/glr.c: Formatting changes.
828 Tweak some trace messages to match yacc.c's.
829
830 2002-10-13 Akim Demaille <akim@epita.fr>
831
832 GLR parsers sometimes raise parse errors instead of performing the
833 default reduction.
834 Reported by Charles-Henry de Boysson.
835
836 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
837 check the length of the traces when %glr.
838 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
839 GLR's traces.
840 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
841 Test GLR parsers.
842 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
843 (yyltype): Remove the yy prefix from the member names.
844 (yytable): Complete its comment.
845 (yygetLRActions): Map error action number from YYTABLE from
846 YYTABLE_NINF to 0.
847 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
848 (which was a bug: it should have been YYTABEL_NINF, and yet it was
849 not satisfying as we could compare an YYACTION computed from
850 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
851 only value for error actions.
852 (yyreportParseError): In verbose parse error messages, don't issue
853 `error' in the list of expected tokens.
854 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
855 next action to perform to match glr.c's decoding.
856 (yytable): Complete its comment.
857
858 2002-10-13 Paul Eggert <eggert@twinsun.com>
859
860 Fix problem reported by Henrik Grubbstroem in
861 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
862 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
863 because the Bison parser reads the second action before reducing
864 the first one.
865 * src/scan-gram.l (rule_length): New static var.
866 Use it to keep track of the rule length in the scanner, since
867 we can't expect the parser to be in lock-step sync with the scanner.
868 (handle_action_dollar, handle_action_at): Use this var.
869 * tests/actions.at (Exotic Dollars): Test for the problem.
870
871 2002-10-12 Paul Eggert <eggert@twinsun.com>
872
873 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
874 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
875 Include <sys/time.h> when checking for clock_t and struct tms.
876 Use same include order as source.
877 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
878 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
879
880 * lib/timevar.c: Update copyright date and clarify comments.
881 (get_time) [IN_GCC]: Keep the GCC version for reference.
882
883 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
884 GCC version as of today, then merge Bison's changes.
885 Change "GCC" to "Bison" in copyright notice. timevar.def's
886 author is Akim, so change that too.
887
888 * src/reader.c (grammar_current_rule_check):
889 Don't worry about the default action if $$ is untyped.
890 Prevents bogus warnings reported by Jim Gifford in
891 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
892
893 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
894 * data/glr.c, data/lalr1.cc, data/yacc.c:
895 Output token definitions before the first part of user declarations.
896 Fixes compatibility problem reported by Jim Gifford for kbd in
897 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
898
899 2002-10-11 Paul Eggert <eggert@twinsun.com>
900
901 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
902 (yyparse): here. This undoes some of the 2002-07-25 change.
903 Compatibility problem reported by Ralf S. Engelschall with
904 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
905
906 2002-10-11 Akim Demaille <akim@epita.fr>
907
908 * tests/regression.at Characters Escapes): New.
909 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
910 characters.
911 Reported by Jan Nieuwenhuizen.
912
913 2002-10-11 Akim Demaille <akim@epita.fr>
914
915 * po/id.po: New.
916
917 2002-10-10 Paul Eggert <eggert@twinsun.com>
918
919 Portability fixes for bitsets; this also avoids several GCC
920 warnings.
921
922 * lib/abitset.c: Include <stddef.h>, for offsetof.
923 * lib/lbitset.c: Likewise.
924
925 * lib/abitset.c (abitset_bytes): Return a size that is aligned
926 properly for vectors of objects. Do not assume that adding a
927 header size to a multiple of a word size yields a value that is
928 properly aligned for the whole union.
929 * lib/bitsetv.c (bitsetv_alloc): Likewise.
930
931 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
932 unique names for structures.
933 * lib/ebitset.c (ebitset_bytes): Likewise.
934 * lib/lbitset.c (lbitset_bytes): Likewise.
935
936 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
937 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
938 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
939 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
940 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
941 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
942 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
943 to improve the type-checking that GCC can do.
944 * lib/bitset.c (bitset_op4_cmp): Likewise.
945 * lib/bitset_stats.c (bitset_stats_count,
946 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
947 bitset_stats_copy, bitset_stats_disjoint_p,
948 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
949 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
950 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
951 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
952 bitset_stats_and_or_cmp, bitset_stats_andn_or,
953 bitset_stats_andn_or_cmp, bitset_stats_or_and,
954 bitset_stats_or_and_cmp): Likewise.
955 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
956 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
957 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
958 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
959
960 * lib/abitset.h: Include bitset.h, not bbitset.h.
961 * lib/ebitset.h: Likewise.
962 * lib/lbitset.h: Likewise.
963
964 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
965 All instances of parameters of type enum bitset_opts are now of
966 type enum_bitset_opts, to conform to the C Standard, and similarly
967 for enum_bitset_type.
968 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
969 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
970
971 Do not use "struct bitset_struct" to mean different things in
972 different modules. Not only is this confusing, it violates
973 the C Standard, which requires that structure types in different
974 modules must be compatible if one is to be passed to the other.
975 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
976 All instances of "struct bitset_struct *" replaced with "bitset".
977 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
978 (union bitset_union, struct abitset_struct, struct ebitset_struct,
979 struct lbitset_struct, struct bitset_stats_struct): New types.
980 All uses of struct bitset_struct changed to union bitset_union,
981 etc.
982 * lib/abitset.c (struct abitset_struct, abitset,
983 struct bitset_struct): Remove.
984 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
985 struct bitset_struct): Remove.
986 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
987 bitset_struct): Remove.
988 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
989 Likewise.
990
991 Do not call a function of type T using a call that assumes the
992 function is of a different type U. Standard C requires that a
993 function must be called with a type that is compatible with its
994 definition.
995 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
996 New decls.
997 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
998 New functions.
999 * lib/ebitset.c (PFV): Remove.
1000 * lib/lbitset.c (PFV): Likewise.
1001 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
1002 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
1003 decls.
1004 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
1005 (ebitset_vtable): Use them.
1006 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
1007 lbitset_xor): New functions.
1008 (lbitset_vtable): Use them.
1009
1010 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
1011 Declare.
1012
1013 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
1014 GCC warning.
1015 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
1016 Use offsetof, for simplicity.
1017
1018 2002-10-06 Paul Eggert <eggert@twinsun.com>
1019
1020 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
1021 the same width as int. This reapplies a hunk of the 2002-08-12 patch
1022 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
1023 which was inadvertently undone by the 2002-09-30 patch.
1024 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
1025 the same width as int.
1026
1027 2002-10-04 Paul Eggert <eggert@twinsun.com>
1028
1029 Version 1.50.
1030
1031 * configure.ac (AC_INIT), NEWS: Increment version number.
1032
1033 * doc/bison.texinfo: Minor spelling, grammar, and white space
1034 fixes.
1035 (Symbols): Mention that any negative value returned from yylex
1036 signifies end-of-input. Warn about negative chars. Mention
1037 the portable Standard C character set.
1038
1039 The GNU coding standard says CFLAGS and YFLAGS are reserved
1040 for the installer to set.
1041 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
1042 * src/Makefile.am (AM_CFLAGS): Likewise.
1043 (AM_YFLAGS): Renamed from YFLAGS.
1044
1045 Fix some MAX and MIN problems.
1046 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
1047 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
1048 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
1049 * src/reader.c (reader): Use it.
1050
1051 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
1052 POSIX 1003.1-2001 has removed fgrep.
1053
1054 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
1055
1056 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
1057 interpreted as signed.
1058 * lib/ebitset.c (ebitset_list): Fix bug.
1059
1060 2002-10-01 Paul Eggert <eggert@twinsun.com>
1061
1062 More fixes for 64-bit hosts and large bitsets.
1063
1064 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
1065 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
1066 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
1067 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
1068 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
1069 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
1070 bitset_count_): Likewise.
1071 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
1072 bitset_first, bitset_last): Likewise.
1073 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
1074 bitset_stats_list_reverse, bitset_stats_size,
1075 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
1076 Likewise.
1077 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
1078 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1079 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1080 bitsetv_reflexive_transitive_closure): Likewise.
1081 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
1082 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
1083 Likewise.
1084 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
1085 Likewise.
1086
1087 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
1088 Use size_t, not unsigned int, to count bytes.
1089 * lib/abitset.h (abitset_bytes): Likewise.
1090 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
1091 Likewise.
1092 * lib/bitset.h (bitset_bytes): Likewise.
1093 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
1094 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
1095 * lib/bitsetv.c (bitsetv_alloc): Likewise.
1096 * lib/ebitset.c (ebitset_bytes): Likewise.
1097 * lib/ebitset.h (ebitset_bytes): Likewise.
1098 * lib/lbitset.c (lbitset_bytes): Likewise.
1099 * lib/lbitset.h (lbitset_bytes): Likewise.
1100
1101 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
1102 abitset_subset_p, abitset_disjoint_p, abitset_and,
1103 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
1104 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
1105 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
1106 abitset_or_and, abitset_or_and_cmp):
1107 Use bitset_windex instead of unsigned int.
1108 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
1109 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
1110 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
1111 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
1112 Likewise.
1113 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
1114
1115 * lib/bitset.c (bitset_print):
1116 Use proper printf formats for widths of integer types.
1117 * lib/bitset_stats.c (bitset_percent_histogram_print,
1118 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
1119 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
1120 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
1121 * lib/lbitset.c (lbitset_bytes): Likewise.
1122
1123 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
1124 BITSET_SIZE_MAX): New macros.
1125 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
1126 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
1127 to BITSET_WINDEX_MAX.
1128
1129 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
1130 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
1131 since we now return the bitset_bindex type (not int).
1132
1133 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
1134 when computing sizes.
1135 * lib/ebitset.c (ebitset_elts_grow): Likewise.
1136
1137 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
1138 and avoid cast to unsigned.
1139
1140 2002-09-30 Akim Demaille <akim@epita.fr>
1141
1142 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
1143 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
1144 Updates from Michael Hayes.
1145
1146 2002-09-30 Art Haas <ahaas@neosoft.com>
1147
1148 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
1149 invocations.
1150 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
1151 defined.
1152
1153 2002-09-27 Akim Demaille <akim@epita.fr>
1154
1155 Version 1.49c.
1156
1157 2002-09-27 Akim Demaille <akim@epita.fr>
1158
1159 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
1160 (Because of AC_LIBSOURCE).
1161
1162 2002-09-27 Akim Demaille <akim@epita.fr>
1163
1164 Playing with Autoscan.
1165
1166 * configure.ac: Remove the old LIBOBJ tweaks.
1167 (AC_REPLACE_FUNCS): Add strrchr and strtol.
1168 * lib/strrchr.c: New.
1169 * lib/strtol.c: New, from the Coreutils 4.5.1.
1170
1171 2002-09-27 Akim Demaille <akim@epita.fr>
1172
1173 Playing with Autoscan.
1174
1175 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
1176 * lib/Makefile.am (libbison_a_SOURCES): No longer include
1177 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
1178 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
1179 Coreutils 4.5.1.
1180
1181 2002-09-24 Akim Demaille <akim@epita.fr>
1182
1183 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
1184 (Frequently Asked Questions, Parser Stack Overflow): New.
1185
1186 2002-09-13 Akim Demaille <akim@epita.fr>
1187
1188 Playing with autoscan.
1189
1190 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
1191 * src/files.c (skeleton_find): Remove, unused.
1192 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
1193 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
1194
1195 2002-09-13 Akim Demaille <akim@epita.fr>
1196
1197 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
1198 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
1199
1200 2002-09-13 Akim Demaille <akim@epita.fr>
1201
1202 * configure.ac: Require 2.54.
1203 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
1204 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
1205 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
1206 Remove, provided by Autoconf macros.
1207
1208 2002-09-12 Akim Demaille <akim@epita.fr>
1209
1210 * m4/prereq.m4: Update, from Coreutils 4.5.1.
1211
1212 2002-09-12 Akim Demaille <akim@epita.fr>
1213
1214 * m4/prereq.m4: Update, from Fileutils 4.1.5.
1215 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
1216 Reported by Martin Mokrejs.
1217
1218 2002-09-10 Akim Demaille <akim@epita.fr>
1219
1220 * src/parse-gram.y: Associate a human readable string to each
1221 token type.
1222 * tests/regression.at (Invalid inputs): Adjust.
1223
1224 2002-09-10 Gary V. Vaughan <gary@gnu.org>
1225
1226 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
1227 with an Autoconf-2.5x style configure.ac.
1228
1229 2002-09-06 Paul Eggert <eggert@twinsun.com>
1230
1231 * doc/bison.texinfo (Conditions): Make explicit that the GPL
1232 exception applies only to yacc.c. This is a modification of a
1233 patch originally suggested by Akim Demaille.
1234
1235 2002-09-06 Akim Demaille <akim@epita.fr>
1236
1237 * data/c.m4 (b4_copyright): Move the GPL exception comment from
1238 here to...
1239 * data/yacc.c: here.
1240
1241 * data/lalr1.cc (struct yyltype): Don't define it, since we use
1242 LocationType.
1243 (b4_ltype): Default to yy::Location from location.hh.
1244
1245 2002-09-04 Jim Meyering <jim@meyering.net>
1246
1247 * data/yacc.c: Guard the declaration of yytoknum also with
1248 `#ifdef YYPRINT', so it is declared only when used.
1249
1250 2002-09-04 Akim Demaille <akim@epita.fr>
1251
1252 * configure.in: Rename as...
1253 * configure.ac: this.
1254 Bump to 1.49c.
1255
1256 2002-09-04 Akim Demaille <akim@epita.fr>
1257
1258 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
1259 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
1260 translate maintainer only messages.
1261
1262 2002-08-12 Paul Eggert <eggert@twinsun.com>
1263
1264 Version 1.49b.
1265
1266 * Makefile.am (SUBDIRS): Remove intl.
1267 (DISTCLEANFILES): Remove.
1268 * NEWS: Mention that GNU M4 is now required. Clarify what is
1269 meant by "larger grammars". Mention the pt_BR translation.
1270 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
1271 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
1272 Bump version from 0.11.2 to 0.11.5.
1273 (BISON_PREREQ_STAGE): Remove.
1274 (AM_GNU_GETTEXT): Use external gettext.
1275 (AC_OUTPUT): Remove intl/Makefile.
1276
1277 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
1278
1279 * data/glr.c: Include string.h, for strlen.
1280 (yyreportParseError): Use size_t for yysize.
1281 (yy_yypstack): No longer nested inside yypstates, as nested
1282 functions are not portable. Do not assume size_t is the
1283 same width as int.
1284 (yypstates): Do not assume that ptrdiff_t is the same width
1285 as int, and similarly for yyposn and YYINDEX.
1286
1287 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
1288
1289 * lib/Makefile.am (INCLUDES): Do not include from the intl
1290 directory, which has been removed.
1291 * src/Makefile.am (INCLUDES): Likewise.
1292
1293 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
1294 (bitsets_sources, additional_bitsets_sources, timevars_sources):
1295 New vars.
1296
1297 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
1298 * tests/Makefile.am (EXTRA_DIST): Likewise.
1299
1300 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
1301 Do not assume that bitset_windex is the same width as unsigned.
1302
1303 * lib/abitset.c (abitset_unused_clear): Do not assume that
1304 bitset_word is the same width as int.
1305 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
1306 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
1307 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
1308 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
1309 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
1310
1311 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
1312 portability to one's complement hosts!).
1313 * lib/ebitset.c (ebitset_op1): Likewise.
1314 * lib/lbitset.c (lbitset_op1): Likewise.
1315
1316 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
1317 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
1318 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
1319 Sync with fileutils.
1320 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
1321 lib/gettext.h: Sync with diffutils.
1322
1323 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
1324 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
1325
1326 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
1327 PROTOTYPES to check for prototypes, and "defined __STDC__" to
1328 check for void *.
1329
1330 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
1331 size_t; the old version tried to do this but casted improperly.
1332 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
1333 (bitset_test): Now returns int, not unsigned long.
1334
1335 * lib/bitset_stats.c: Include "gettext.h".
1336 (_): New macro.
1337 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
1338 name locals "index", as it generates unnecessary warnings on some
1339 hosts that have an "index" function.
1340
1341 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
1342 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
1343 they need translation.
1344 * src/LR0.c (state_list_append, new_itemsets, get_state,
1345 append_states, generate_states): Likewise.
1346 * src/assoc.c (assoc_to_string): Likewise.
1347 * src/closure.c (print_closure, set_firsts, closure): Likewise.
1348 * src/gram.c (grammar_dump): Likewise.
1349 * src/injections.c (injections_compute): Likewise.
1350 * src/lalr.c (lookaheads_print): Likewise.
1351 * src/relation.c (relation_transpose): Likewise.
1352 * src/scan-gram.l: Likewise.
1353 * src/tables.c (table_grow, pack_vector): Likewise.
1354
1355 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
1356 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
1357 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
1358 * m4/mbstate_t.m4: Sync with fileutils.
1359 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
1360
1361 * po/LINGUAS: Add pt_BR.
1362 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
1363 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
1364 lib/timevar.c.
1365 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
1366 manual recommends.
1367 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
1368
1369 * src/complain.c (strerror_r): Remove decl; not needed.
1370 (strerror): Use same pattern as ../lib/error.c.
1371
1372 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
1373
1374 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
1375
1376 * src/main.c (main): Cast result of bindtextdomain and textdomain
1377 to void, to avoid a GCC warning when --disable-nls is in effect.
1378
1379 * src/scan-gram.l: Use strings rather than escapes when possible,
1380 to minimize the number of warnings from xgettext.
1381 (handle_action_dollar, handle_action_at): Don't use isdigit,
1382 as it mishandles negative chars and it may not work as expected
1383 outside the C locale.
1384
1385 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
1386 this is a GCC extension and is not portable to other compilers.
1387
1388 * src/system.h (alloca): Use same pattern as ../lib/error.c.
1389 Do not include <ctype.h>; no longer needed.
1390 Do not include <malloc.h>; no longer needed (and generates
1391 warnings on OpenBSD 3.0).
1392
1393 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
1394 it's not portable.
1395
1396 * tests/regression.at: Do not use 'cc -c input.c -o input';
1397 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
1398
1399 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
1400 exit status as failure, not just exit status 1. Sun C exits
1401 with status 2 sometimes.
1402
1403 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
1404 Use it for the two large tests.
1405
1406 2002-08-02 Akim Demaille <akim@epita.fr>
1407
1408 * src/conflicts.c (conflicts_output): Don't output rules never
1409 reduced here, since anyway that computation doesn't work.
1410 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
1411 (rule_useless_p, rule_never_reduced_p): New.
1412 (grammar_rules_partial_print): Use a filter instead of a range.
1413 Display the title only if needed.
1414 (grammar_rules_print): Adjust.
1415 (grammar_rules_never_reduced_report): New.
1416 * src/tables.c (action_row): Move the computation of rules never
1417 reduced to...
1418 (token_actions): here.
1419 * src/main.c (main): Make the parser before making the report, so
1420 that rules never reduced are computed.
1421 Call grammar_rules_never_reduced_report.
1422 * src/print.c (print_results): Report rules never reduced.
1423 * tests/conflicts.at, tests/reduce.at: Adjust.
1424
1425 2002-08-01 Akim Demaille <akim@epita.fr>
1426
1427 Instead of attaching lookaheads and duplicating the rules being
1428 reduced by a state, attach the lookaheads to the reductions.
1429
1430 * src/state.h (state_t): Remove the `lookaheads',
1431 `lookaheads_rule' member.
1432 (reductions_t): Add a `lookaheads' member.
1433 Use a regular array for the `rules'.
1434 * src/state.c (reductions_new): Initialize the lookaheads member
1435 to 0.
1436 (state_rule_lookaheads_print): Adjust.
1437 * src/state.h, src/state.c (state_reductions_find): New.
1438 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
1439 (count_rr_conflicts): Adjust.
1440 * src/lalr.c (LArule): Remove.
1441 (add_lookback_edge): Adjust.
1442 (state_lookaheads_count): New.
1443 (states_lookaheads_initialize): Merge into...
1444 (initialize_LA): this.
1445 (lalr_free): Adjust.
1446 * src/main.c (main): Don't free nullable and derives too early: it
1447 is used by --verbose.
1448 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
1449
1450 2002-08-01 Akim Demaille <akim@epita.fr>
1451
1452 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
1453 `rule_number_t**'.
1454 (set_derives, free_derives): Rename as...
1455 (derives_compute, derives_free): this.
1456 Adjust all dependencies.
1457 * src/nullable.c (set_nullable, free_nullable): Rename as...
1458 (nullable_compute, nullable_free): these.
1459 (rule_list_t): Store rule_t *, not rule_number_t.
1460 * src/state.c (state_rule_lookaheads_print): Directly compare rule
1461 pointers, instead of their numbers.
1462 * src/main.c (main): Call nullable_free, and derives_free earlier,
1463 as they were lo longer used.
1464
1465 2002-08-01 Akim Demaille <akim@epita.fr>
1466
1467 * lib/timevar.c (get_time): Include children time.
1468 * src/lalr.h (LA, LArule): Don't export them: used with the
1469 state_t.
1470 * src/lalr.c (LA, LArule): Static.
1471 * src/lalr.h, src/lalr.c (lalr_free): New.
1472 * src/main.c (main): Call it.
1473 * src/tables.c (pack_vector): Check whether loc is >= to the
1474 table_size, not >.
1475 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
1476 (tables_generate): do it, since that's also it which allocates
1477 them.
1478 Don't free LA and LArule, main does.
1479
1480 2002-07-31 Akim Demaille <akim@epita.fr>
1481
1482 Separate parser tables computation and output.
1483
1484 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
1485 (conflict_list, conflict_list_cnt, table, check, table_ninf)
1486 (yydefgoto, yydefact, high): Move to...
1487 * src/tables.h, src/tables.c: here.
1488 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1489 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1490 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
1491 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
1492 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
1493 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
1494 (action_row, save_row, token_actions, save_column, default_goto)
1495 (goto_actions, sort_actions, matching_state, pack_vector)
1496 (table_ninf_remap, pack_table, prepare_actions): Move to...
1497 * src/tables.c: here.
1498 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
1499 * src/output.c (token_actions, output_base, output_conflicts)
1500 (output_check): Merge into...
1501 (prepare_actions): this.
1502 (actions_output): Rename as...
1503 (user_actions_output): this.
1504 * src/main.c (main): Call tables_generate and tables_free.
1505
1506 2002-07-31 Akim Demaille <akim@epita.fr>
1507
1508 Steal GCC's --time-report support.
1509
1510 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
1511 stolen/adjusted from GCC.
1512 * m4/stage.m4: Remove time related checks.
1513 * m4/timevar.m4: New.
1514 * configure.in: Adjust.
1515 * src/system.h: Adjust to using timevar.h.
1516 * src/getargs.h, src/getargs.c: Support trace_time for
1517 --trace=time.
1518 * src/main.c (stage): Remove.
1519 (main): Replace `stage' invocations with timevar calls.
1520 * src/output.c: Insert pertinent timevar calls.
1521
1522 2002-07-31 Akim Demaille <akim@epita.fr>
1523
1524 Let --trace have arguments.
1525
1526 * src/getargs.h (enum trace_e): New.
1527 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
1528 (long_options, short_options): --trace/-T takes an optional
1529 argument.
1530 Change all the uses of trace_flag to reflect the new flags.
1531 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
1532
1533 Strengthen `stage' portability.
1534
1535 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
1536 * configure.in: Use it.
1537 Don't check for malloc.h and sys/times.h.
1538 * src/system.h: Include them when appropriate.
1539 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
1540 times and struct tms are available.
1541
1542 2002-07-30 Akim Demaille <akim@epita.fr>
1543
1544 In verbose parse error message, don't report `error' as an
1545 expected token.
1546 * tests/actions.at (Printers and Destructors): Adjust.
1547 * tests/calc.at (Calculator $1): Adjust.
1548 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
1549 error message, do not report the parser accepts the error token in
1550 that state.
1551
1552 2002-07-30 Akim Demaille <akim@epita.fr>
1553
1554 Normalize conflict related messages.
1555
1556 * src/complain.h, src/complain.c (warn, complain): New.
1557 * src/conflicts.c (conflicts_print): Use them.
1558 (conflict_report_yacc): New, extracted from...
1559 (conflicts_print): here.
1560 * tests/conflicts.at, tests/existing.at: Adjust.
1561
1562 2002-07-30 Akim Demaille <akim@epita.fr>
1563
1564 Report rules which are never reduced by the parser: those hidden
1565 by conflicts.
1566
1567 * src/LR0.c (save_reductions): Don't make the final state too
1568 different: save its reduction (accept) instead of having a state
1569 without any action (no shift or goto, no reduce).
1570 Note: the final state is now a ``regular'' state, i.e., the
1571 parsers now contain `reduce 0' as default reduction.
1572 Nevertheless, since they decide to `accept' when yystate =
1573 final_state, they still will not reduce rule 0.
1574 * src/print.c (print_actions, print_reduction): Adjust.
1575 * src/output.c (action_row): Track reduced rules.
1576 (token_actions): Report rules never reduced.
1577 * tests/conflicts.at, tests/regression.at: Adjust.
1578
1579 2002-07-30 Akim Demaille <akim@epita.fr>
1580
1581 `stage' was accidently included in a previous patch.
1582 Initiate its autoconfiscation.
1583
1584 * configure.in: Look for malloc.h and sys/times.h.
1585 * src/main.c (stage): Adjust.
1586 Report only when trace_flag.
1587
1588 2002-07-29 Akim Demaille <akim@epita.fr>
1589
1590 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
1591 state_number_t.
1592 (errs_t): symbol_t*, not symbol_number_t.
1593 (reductions_t): rule_t*, not rule_number_t.
1594 (FOR_EACH_SHIFT): New.
1595 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
1596 * src/print.c, src/print_graph.c: Adjust.
1597
1598 2002-07-29 Akim Demaille <akim@epita.fr>
1599
1600 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
1601
1602 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
1603 (endtoken, accept): these.
1604 * src/reader.c (reader): Set endtoken's default tag to "$end".
1605 Set undeftoken's tag to "$undefined" instead of "$undefined.".
1606 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
1607 Adjust.
1608
1609 2002-07-29 Akim Demaille <akim@epita.fr>
1610
1611 * src/reduce.c (reduce_grammar): When the language is empty,
1612 complain about the start symbol, not the axiom.
1613 Use its location.
1614 * tests/reduce.at (Empty Language): New.
1615
1616 2002-07-26 Akim Demaille <akim@epita.fr>
1617
1618 * src/reader.h, src/reader.c (gram_error): ... can't get
1619 yycontrol without making too strong assumptions on the parser
1620 itself.
1621 * src/output.c (prepare_tokens): Use the real 0th value of
1622 token_translations instead of `0'.
1623 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
1624 visible here.
1625 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
1626 for the time being: %locations ought to provide it to yyerror.
1627
1628 2002-07-25 Akim Demaille <akim@epita.fr>
1629
1630 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
1631 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
1632 * tests/regression.at (Web2c Actions): Adjust.
1633
1634 2002-07-25 Akim Demaille <akim@epita.fr>
1635
1636 Stop storing rules from 1 to nrules + 1.
1637
1638 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
1639 * src/nullable.c, src/output.c, src/print.c, src/reader.c
1640 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
1641 Iterate from 0 to nrules.
1642 Use rule_number_as_item_number and item_number_as_rule_number.
1643 Adjust to `derive' now containing possibly 0.
1644 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
1645 Handle the `- 1' part in rule numbers from/to item numbers.
1646 * src/conflicts.c (log_resolution): Fix the message which reversed
1647 shift and reduce.
1648 * src/output.c (action_row): Initialize default_rule to -1.
1649 (token_actions): Adjust.
1650 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
1651 expected output.
1652 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
1653
1654 2002-07-25 Akim Demaille <akim@epita.fr>
1655
1656 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
1657 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
1658 (b4_c_knr_arg_decl): New.
1659 * data/yacc.c: Use it to define yysymprint, yydestruct, and
1660 yyreport_parse_error.
1661
1662 2002-07-25 Akim Demaille <akim@epita.fr>
1663
1664 * data/yacc.c (yyreport_parse_error): New, extracted from...
1665 (yyparse): here.
1666 (yydestruct, yysymprint): Move above yyparse.
1667 Be K&R compliant.
1668
1669 2002-07-25 Akim Demaille <akim@epita.fr>
1670
1671 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
1672 replace...
1673 (b4_sint_type, b4_uint_type): these.
1674 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
1675 * tests/regression.at (Web2c Actions): Adjust.
1676
1677 2002-07-25 Akim Demaille <akim@epita.fr>
1678
1679 * src/gram.h (TIEM_NUMBER_MAX): New.
1680 (item_number_of_rule_number, rule_number_of_item_number): Rename
1681 as...
1682 (rule_number_as_item_number, item_number_as_rule_number): these.
1683 Adjust dependencies.
1684 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1685 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1686 (symbol_number_to_vector_number): New.
1687 (order): Of vector_number_t* type.
1688 (base_t, BASE_MAX, BASE_MIN): New.
1689 (froms, tos, width, pos, check): Of base_t type.
1690 (action_number_t, ACTION_MIN, ACTION_MAX): New.
1691 (actrow): Of action_number_t type.
1692 (conflrow): Of unsigned int type.
1693 (table_ninf, base_ninf): New.
1694 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
1695 (muscle_insert_int_table, muscle_insert_base_table)
1696 (muscle_insert_rule_number_table): New.
1697 (prepare_tokens): Output `toknum' as int_table.
1698 (action_row): Returns a rule_number_t.
1699 Use ACTION_MIN, not SHRT_MIN.
1700 (token_actions): yydefact is rule_number_t*.
1701 (table_ninf_remap): New.
1702 (pack_table): Use it for `base' and `table'.
1703 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
1704 replaced with...
1705 (YYPACT_NINF, YYTABLE_NINF): these.
1706 (yypact, yytable): Compute their types instead of hard-coded
1707 `short'.
1708 * tests/regression.at (Web2c Actions): Adjust.
1709
1710 2002-07-19 Akim Demaille <akim@epita.fr>
1711
1712 * src/scan-gram.l (id): Can start with an underscore.
1713
1714 2002-07-16 Akim Demaille <akim@epita.fr>
1715
1716 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
1717 Adjust all former `associativity' dependencies.
1718 * src/symtab.c (symbol_new): Default associativity is `undef', not
1719 `right'.
1720 (symbol_check_alias_consistence): Adjust.
1721
1722 2002-07-09 Akim Demaille <akim@epita.fr>
1723
1724 * doc/bison.texinfo: Properly set the ``header'' part.
1725 Use @dircategory ``GNU programming tools'' as per Texinfo's
1726 documentation.
1727 Use @copying.
1728
1729 2002-07-09 Akim Demaille <akim@epita.fr>
1730
1731 * lib/quotearg.h: Protect against multiple inclusions.
1732 * src/location.h (location_t): Add a `file' member.
1733 (LOCATION_RESET, LOCATION_PRINT): Adjust.
1734 * src/complain.c (warn_at, complain_at, fatal_at): Drop
1735 `error_one_per_line' support.
1736
1737 2002-07-09 Akim Demaille <akim@epita.fr>
1738
1739 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
1740 * src/reader.c (lineno): Remove.
1741 Adjust all dependencies.
1742 (get_merge_function): Take a location and use complain_at.
1743 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
1744 * tests/regression.at (Invalid inputs, Mixing %token styles):
1745 Adjust.
1746
1747 2002-07-09 Akim Demaille <akim@epita.fr>
1748
1749 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
1750 recovery rule, and forbid extensions when --yacc.
1751 (gram_error): Use complain_at.
1752 * src/reader.c (reader): Exit if there were parse errors.
1753
1754 2002-07-09 Akim Demaille <akim@epita.fr>
1755
1756 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
1757 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
1758 Reported by R Blake <blakers@mac.com>.
1759
1760 2002-07-09 Akim Demaille <akim@epita.fr>
1761
1762 * data/yacc.c: Output the copyright notive in the header.
1763
1764 2002-07-03 Akim Demaille <akim@epita.fr>
1765
1766 * src/output.c (froms, tos): Are state_number_t.
1767 (save_column): sp, sp1, and sp2 are state_number_t.
1768 (prepare): Rename `final' as `final_state_number', `nnts' as
1769 `nterms_number', `nrules' as `rules_number', `nstates' as
1770 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
1771 unused.
1772 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
1773 * data/lalr1.cc (nsym_): Remove, unused.
1774
1775 2002-07-03 Akim Demaille <akim@epita.fr>
1776
1777 * src/lalr.h, src/lalr.c (goto_number_t): New.
1778 * src/lalr.c (goto_list_t): New.
1779 Propagate them.
1780 * src/nullable.c (rule_list_t): New.
1781 Propagate.
1782 * src/types.h: Remove.
1783
1784 2002-07-03 Akim Demaille <akim@epita.fr>
1785
1786 * src/closure.c (print_fderives): Use rule_rhs_print.
1787 * src/derives.c (print_derives): Use rule_rhs_print.
1788 (rule_list_t): New, replaces `shorts'.
1789 (set_derives): Add comments.
1790 * tests/sets.at (Nullable, Firsts): Adjust.
1791
1792 2002-07-03 Akim Demaille <akim@epita.fr>
1793
1794 * src/output.c (prepare_actions): Free `tally' and `width'.
1795 (prepare_actions): Allocate and free `order'.
1796 * src/symtab.c (symbols_free): Free `symbols'.
1797 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
1798 * src/output.c (m4_invoke): Move to...
1799 * src/scan-skel.l: here.
1800 (<<EOF>>): Close yyout, and free its name.
1801
1802 2002-07-03 Akim Demaille <akim@epita.fr>
1803
1804 Fix some memory leaks, and fix a bug: state 0 was examined twice.
1805
1806 * src/LR0.c (new_state): Merge into...
1807 (state_list_append): this.
1808 (new_states): Merge into...
1809 (generate_states): here.
1810 (set_states): Don't ensure a proper `errs' state member here, do it...
1811 * src/conflicts.c (conflicts_solve): here.
1812 * src/state.h, src/state.c: Comment changes.
1813 (state_t): Rename member `shifts' as `transitions'.
1814 Adjust all dependencies.
1815 (errs_new): For consistency, also take the values as argument.
1816 (errs_dup): Remove.
1817 (state_errs_set): New.
1818 (state_reductions_set, state_transitions_set): Assert that no
1819 previous value was assigned.
1820 (state_free): New.
1821 (states_free): Use it.
1822 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
1823 temporary storage: use `errs' and `nerrs' as elsewhere.
1824 (set_conflicts): Allocate and free this `errs'.
1825
1826 2002-07-02 Akim Demaille <akim@epita.fr>
1827
1828 * lib/libiberty.h: New.
1829 * lib: Update the bitset implementation from upstream.
1830 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
1831 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
1832 * src/main.c: Adjust bitset stats calls.
1833
1834 2002-07-01 Paul Eggert <eggert@twinsun.com>
1835
1836 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
1837 char, so that negative chars don't collide with $.
1838
1839 2002-06-30 Akim Demaille <akim@epita.fr>
1840
1841 Have the GLR tests be `warning' checked, and fix the warnings.
1842
1843 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
1844 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
1845 (yyremoveDeletes): `yyi' and `yyj' are size_t.
1846 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
1847 (yyaddDeferredAction): static.
1848 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
1849 (yyreportParseError): yyprefix is const.
1850 yytokenp is used only when verbose.
1851 (yy__GNUC__): Replace with __GNUC__.
1852 (yypdumpstack): yyi is size_t.
1853 (yypreference): Un-yy local variables and arguments, to avoid
1854 clashes with `yyr1'. Anyway, we are not in the user name space.
1855 (yytname_size): be an int, as is compared with ints.
1856 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
1857 Use them.
1858 * tests/cxx-gram.at: Use quotation to protect $1.
1859 Use AT_COMPILE to enable warnings hunts.
1860 Prototype yylex and yyerror.
1861 `Use' argc.
1862 Include `string.h', not `strings.h'.
1863 Produce and prototype stmtMerge only when used.
1864 yylex takes a location.
1865
1866 2002-06-30 Akim Demaille <akim@epita.fr>
1867
1868 We spend a lot of time in quotearg, in particular when --verbose.
1869
1870 * src/symtab.c (symbol_get): Store a quoted version of the key.
1871 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
1872 Adjust all callers.
1873
1874 2002-06-30 Akim Demaille <akim@epita.fr>
1875
1876 * src/state.h (reductions_t): Rename member `nreds' as num.
1877 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
1878 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
1879
1880 2002-06-30 Akim Demaille <akim@epita.fr>
1881
1882 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
1883 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
1884 (shifts_to): Rename as...
1885 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
1886 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
1887 (TRANSITION_IS_DISABLED, transitions_to): these.
1888
1889 2002-06-30 Akim Demaille <akim@epita.fr>
1890
1891 * src/print.c (print_shifts, print_gotos): Merge into...
1892 (print_transitions): this.
1893 (print_transitions, print_errs, print_reductions): Align the
1894 lookaheads columns.
1895 (print_core, print_transitions, print_errs, print_state,
1896 print_grammar): Output empty lines separator before, not after.
1897 (state_default_rule_compute): Rename as...
1898 (state_default_rule): this.
1899 * tests/conflicts.at (Defaulted Conflicted Reduction),
1900 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
1901 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
1902
1903 2002-06-30 Akim Demaille <akim@epita.fr>
1904
1905 Display items as we display rules.
1906
1907 * src/gram.h, src/gram.c (rule_lhs_print): New.
1908 * src/gram.c (grammar_rules_partial_print): Use it.
1909 * src/print.c (print_core): Likewise.
1910 * tests/conflicts.at (Defaulted Conflicted Reduction),
1911 (Unresolved SR Conflicts): Adjust.
1912 (Unresolved SR Conflicts): Adjust and rename as...
1913 (Resolved SR Conflicts): this, as was meant.
1914 * tests/regression.at (Web2c Report): Adjust.
1915
1916 2002-06-30 Akim Demaille <akim@epita.fr>
1917
1918 * src/print.c (state_default_rule_compute): New, extracted from...
1919 (print_reductions): here.
1920 Pessimize, but clarify the code.
1921 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
1922
1923 2002-06-30 Akim Demaille <akim@epita.fr>
1924
1925 * src/output.c (action_row): Let default_rule be always a rule
1926 number.
1927
1928 2002-06-30 Akim Demaille <akim@epita.fr>
1929
1930 * src/closure.c (print_firsts, print_fderives, closure):
1931 Use BITSET_EXECUTE.
1932 * src/lalr.c (lookaheads_print): Likewise.
1933 * src/state.c (state_rule_lookaheads_print): Likewise.
1934 * src/print_graph.c (print_core): Likewise.
1935 * src/print.c (print_reductions): Likewise.
1936 * src/output.c (action_row): Likewise.
1937 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
1938
1939 2002-06-30 Akim Demaille <akim@epita.fr>
1940
1941 * src/print_graph.c: Use report_flag.
1942
1943 2002-06-30 Akim Demaille <akim@epita.fr>
1944
1945 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
1946 to...
1947 * src/relation.h, src/relation.c (traverse, relation_digraph)
1948 (relation_print, relation_transpose): New.
1949
1950 2002-06-30 Akim Demaille <akim@epita.fr>
1951
1952 * src/state.h, src/state.c (shifts_to): New.
1953 * src/lalr.c (build_relations): Use it.
1954
1955 2002-06-30 Akim Demaille <akim@epita.fr>
1956
1957 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
1958 (item_number_of_rule_number, rule_number_of_item_number): New.
1959 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
1960 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
1961 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
1962 Propagate their use.
1963 Much remains to be done, in particular wrt `shorts' from types.h.
1964
1965 2002-06-30 Akim Demaille <akim@epita.fr>
1966
1967 * src/symtab.c (symbol_new): Initialize the `printer' member.
1968
1969 2002-06-30 Akim Demaille <akim@epita.fr>
1970
1971 * src/LR0.c (save_reductions): Remove, replaced by...
1972 * src/state.h, src/state.c (state_reductions_set): New.
1973 (reductions, errs): Rename as...
1974 (reductions_t, errs_t): these.
1975 Adjust all dependencies.
1976
1977 2002-06-30 Akim Demaille <akim@epita.fr>
1978
1979 * src/LR0.c (state_list_t, state_list_append): New.
1980 (first_state, last_state): Now symbol_list_t.
1981 (this_state): Remove.
1982 (new_itemsets, append_states, save_reductions): Take a state_t as
1983 argument.
1984 (set_states, generate_states): Adjust.
1985 (save_shifts): Remove, replaced by...
1986 * src/state.h, src/state.c (state_shifts_set): New.
1987 (shifts): Rename as...
1988 (shifts_t): this.
1989 Adjust all dependencies.
1990 * src/state.h (state_t): Remove the `next' member.
1991
1992 2002-06-30 Akim Demaille <akim@epita.fr>
1993
1994 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
1995 escaped in slot 0.
1996
1997 2002-06-30 Akim Demaille <akim@epita.fr>
1998
1999 Use hash.h for the state hash table.
2000
2001 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
2002 (allocate_storage): Use state_hash_new.
2003 (free_storage): Use state_hash_free.
2004 (new_state, get_state): Adjust.
2005 * src/lalr.h, src/lalr.c (states): Move to...
2006 * src/states.h (state_t): Remove the `link' member, no longer
2007 used.
2008 * src/states.h, src/states.c: here.
2009 (state_hash_new, state_hash_free, state_hash_lookup)
2010 (state_hash_insert, states_free): New.
2011 * src/states.c (state_table, state_compare, state_hash): New.
2012 * src/output.c (output_actions): Do not free states now, since we
2013 still need to know the final_state number in `prepare', called
2014 afterwards. Do it...
2015 * src/main.c (main): here: call states_free after `output'.
2016
2017 2002-06-30 Akim Demaille <akim@epita.fr>
2018
2019 * src/state.h, src/state.c (state_new): New, extracted from...
2020 * src/LR0.c (new_state): here.
2021 * src/state.h (STATE_ALLOC): Move to...
2022 * src/state.c: here.
2023 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
2024 * src/state.h, src/state.c: here.
2025
2026 2002-06-30 Akim Demaille <akim@epita.fr>
2027
2028 * src/reader.c (gensym): Rename as...
2029 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
2030 (getsym): Rename as...
2031 (symbol_get): this.
2032
2033 2002-06-30 Akim Demaille <akim@epita.fr>
2034
2035 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
2036 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
2037 * src/output.c, src/print.c, src/print_graph.c: Propagate.
2038 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
2039
2040 2002-06-30 Akim Demaille <akim@epita.fr>
2041
2042 Make the test suite pass with warnings checked.
2043
2044 * tests/actions.at (Printers and Destructors): Improve.
2045 Avoid unsigned vs. signed issues.
2046 * tests/calc.at: Don't exercise the scanner here, do it...
2047 * tests/input.at (Torturing the Scanner): here.
2048
2049 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2050
2051 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
2052 reorganize first lines parallel to yacc.c.
2053
2054 2002-06-28 Akim Demaille <akim@epita.fr>
2055
2056 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
2057 (b4_token_enum, b4_token_defines): New, factored from...
2058 * data/lalr1.cc, data/yacc.c, glr.c: here.
2059
2060 2002-06-28 Akim Demaille <akim@epita.fr>
2061
2062 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
2063 unused variables.
2064 * src/output.c (merger_output): static.
2065
2066 2002-06-28 Akim Demaille <akim@epita.fr>
2067
2068 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
2069 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
2070 pacify GCC.
2071 * src/output.c (save_row): Initialize all the variables to pacify GCC.
2072
2073 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2074
2075 Accumulated changelog for new GLR parsing features.
2076
2077 * src/conflicts.c (count_total_conflicts): Change name to
2078 conflicts_total_count.
2079 * src/conflicts.h: Ditto.
2080 * src/output.c (token_actions): Use the new name.
2081 (output_conflicts): Change conflp => conflict_list_heads, and
2082 confl => conflict_list for better readability.
2083 * data/glr.c: Use the new names.
2084 * NEWS: Add self to GLR announcement.
2085
2086 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
2087
2088 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
2089 Akim Demaille.
2090
2091 * data/bison.glr: Change name to glr.c
2092 * data/glr.c: Renamed from bison.glr.
2093 * data/Makefile.am: Add glr.c
2094
2095 * src/getargs.c:
2096
2097 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
2098 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
2099
2100 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2101
2102 * data/bison.glr: Be sure to restore the
2103 current #line when returning to the skeleton contents after having
2104 exposed the input file's #line.
2105
2106 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2107
2108 * data/bison.glr: Bring up to date with changes to bison.simple.
2109
2110 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2111
2112 * data/bison.glr: Correct definitions that use b4_prefix.
2113 Various reformatting.
2114 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
2115 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
2116 yytokenp argument; now part of stack.
2117 (yychar): Define to behave as documented.
2118 (yyclearin): Ditto.
2119
2120 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2121
2122 * src/reader.h: Add declaration for free_merger_functions.
2123
2124 * src/reader.c (merge_functions): New variable.
2125 (get_merge_function): New function.
2126 (free_merger_functions): New function.
2127 (readgram): Check for %prec that is not followed by a symbol.
2128 Handle %dprec and %merge declarations.
2129 (packgram): Initialize dprec and merger fields in rules array.
2130
2131 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
2132 conflict_list_cnt, conflict_list_free): New variables.
2133 (table_grow): Also grow conflict_table.
2134 (prepare_rules): Output dprec and merger tables.
2135 (conflict_row): New function.
2136 (action_row): Output conflict lists for GLR parser. Don't use
2137 default reduction in conflicted states for GLR parser so that there
2138 are spaces for the conflict lists.
2139 (save_row): Also save conflict information.
2140 (token_actions): Allocate conflict list.
2141 (merger_output): New function.
2142 (pack_vector): Pack conflict table, too.
2143 (output_conflicts): New function to output yyconflp and yyconfl.
2144 (output_check): Allocate conflict_tos.
2145 (output_actions): Output conflict tables, also.
2146 (output_skeleton): Output b4_mergers definition.
2147 (prepare): Output b4_max_rhs_length definition.
2148 Use 'bison.glr' as default skeleton for GLR parsers.
2149
2150 * src/gram.c (glr_parser): New flag.
2151 (grammar_free): Call free_merger_functions.
2152
2153 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
2154 all pairs of conflicting reductions, rather than just all tokens
2155 causing conflicts. Needed to size conflict tables.
2156 (conflicts_output): Modify call to count_rr_conflicts for new
2157 interface.
2158 (conflicts_print): Ditto.
2159 (count_total_conflicts): New function.
2160
2161 * src/reader.h (merger_list): New type.
2162 (merge_functions): New variable.
2163
2164 * src/lex.h (tok_dprec, tok_merge): New token types.
2165
2166 * src/gram.h (rule_s): Add dprec and merger fields.
2167 (glr_parser): New flag.
2168
2169 * src/conflicts.h (count_total_conflicts): New function.
2170
2171 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
2172
2173 * doc/bison.texinfo (Generalized LR Parsing): New section.
2174 (GLR Parsers): New section.
2175 (Language and Grammar): Mention GLR parsing.
2176 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
2177 Correct typo ("tge" -> "the").
2178
2179 * data/bison.glr: New skeleton for GLR parsing.
2180
2181 * tests/cxx-gram.at: New tests for GLR parsing.
2182
2183 * tests/testsuite.at: Include cxx-gram.at.
2184
2185 * tests/Makefile.am: Add cxx-gram.at.
2186
2187 * src/parse-gram.y:
2188
2189 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
2190
2191 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
2192
2193 2002-06-27 Akim Demaille <akim@epita.fr>
2194
2195 * src/options.h, src/options.c: Remove.
2196 * src/getargs.c (short_options, long_options): New.
2197
2198 2002-06-27 Akim Demaille <akim@epita.fr>
2199
2200 * data/bison.simple, data/bison.c++: Rename as...
2201 * data/yacc.c, data/lalr1.cc: these.
2202 * doc/bison.texinfo (Environment Variables): Remove.
2203
2204 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
2205
2206 * src/getargs.c (report_argmatch): Initialize strtok().
2207
2208 2002-06-20 Akim Demaille <akim@epita.fr>
2209
2210 * data/bison.simple (b4_symbol_actions): New, replaces...
2211 (b4_symbol_destructor, b4_symbol_printer): these.
2212 (yysymprint): Be sure to call YYPRINT only for tokens, and using
2213 user token numbers.
2214
2215 2002-06-20 Akim Demaille <akim@epita.fr>
2216
2217 * data/bison.simple (yydestructor): Rename as...
2218 (yydestruct): this.
2219
2220 2002-06-20 Akim Demaille <akim@epita.fr>
2221
2222 * src/symtab.h, src/symtab.c (symbol_type_set)
2223 (symbol_destructor_set, symbol_precedence_set): The location is
2224 the last argument.
2225 Adjust all callers.
2226
2227 2002-06-20 Akim Demaille <akim@epita.fr>
2228
2229 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
2230 internals.
2231 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
2232 Takes a location.
2233 * src/symtab.h, src/symtab.c (symbol_class_set)
2234 (symbol_user_token_number_set): Likewise.
2235 Adjust all callers.
2236 Promote complain_at.
2237 * tests/input.at (Type Clashes): Adjust.
2238
2239 2002-06-20 Akim Demaille <akim@epita.fr>
2240
2241 * data/bison.simple (YYLEX): Fix the declaration when
2242 %pure-parser.
2243
2244 2002-06-20 Akim Demaille <akim@epita.fr>
2245
2246 * data/bison.simple (yysymprint): Don't print the token number,
2247 just its name.
2248 * tests/actions.at (Destructors): Rename as...
2249 (Printers and Destructors): this.
2250 Also exercise %printer.
2251
2252 2002-06-20 Akim Demaille <akim@epita.fr>
2253
2254 * data/bison.simple (YYDSYMPRINT): New.
2255 Use it to remove many of the #if YYDEBUG/if (yydebug).
2256
2257 2002-06-20 Akim Demaille <akim@epita.fr>
2258
2259 * src/symtab.h, src/symtab.c (symbol_t): printer and
2260 printer_location are new members.
2261 (symbol_printer_set): New.
2262 * src/parse-gram.y (PERCENT_PRINTER): New token.
2263 Handle its associated rule.
2264 * src/scan-gram.l: Adjust.
2265 (handle_destructor_at, handle_destructor_dollar): Rename as...
2266 (handle_symbol_code_at, handle_symbol_code_dollar): these.
2267 * src/output.c (symbol_printers_output): New.
2268 (output_skeleton): Call it.
2269 * data/bison.simple (yysymprint): New. Cannot be named yyprint
2270 since there are already many grammar files with a user `yyprint'.
2271 Replace the calls to YYPRINT to calls to yysymprint.
2272 * tests/calc.at: Adjust.
2273 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
2274 taking advantage of parser very internal details (stack size!).
2275
2276 2002-06-20 Akim Demaille <akim@epita.fr>
2277
2278 * src/scan-gram.l: Complete the scanner with the missing patterns
2279 to pacify Flex.
2280 Use `quote' and `symbol_tag_get' where appropriate.
2281
2282 2002-06-19 Akim Demaille <akim@epita.fr>
2283
2284 * tests/actions.at (Destructors): Augment to test locations.
2285 * data/bison.simple (yydestructor): Pass it the current location
2286 if locations are enabled.
2287 Prototype only when __STDC__ or C++.
2288 Change the argument names to move into the yy name space: there is
2289 user code here.
2290
2291 2002-06-19 Akim Demaille <akim@epita.fr>
2292
2293 * data/bison.simple (b4_pure_if): New.
2294 Use it instead of #ifdef YYPURE.
2295
2296 2002-06-19 Akim Demaille <akim@epita.fr>
2297
2298 * data/bison.simple (b4_location_if): New.
2299 Use it instead of #ifdef YYLSP_NEEDED.
2300
2301 2002-06-19 Akim Demaille <akim@epita.fr>
2302
2303 Prepare @$ in %destructor, but currently don't bind it in the
2304 skeleton, as %location use is not cleaned up yet.
2305
2306 * src/scan-gram.l (handle_dollar, handle_destructor_at)
2307 (handle_action_at): New.
2308 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
2309 a braced_code_t and a location as additional arguments.
2310 (handle_destructor_dollar): Instead of requiring `b4_eval', just
2311 unquote one when outputting `b4_dollar_dollar'.
2312 Adjust callers.
2313 * data/bison.simple (b4_eval): Remove.
2314 (b4_symbol_destructor): Adjust.
2315 * tests/input.at (Invalid @n): Adjust.
2316
2317 2002-06-19 Zack Weinberg <zack@codesourcery.com>
2318
2319 * doc/bison.texinfo: Document ability to have multiple
2320 prologue sections.
2321
2322 2002-06-18 Akim Demaille <akim@epita.fr>
2323
2324 * src/files.c (compute_base_names): When computing the output file
2325 names from the input file name, strip the directory part.
2326
2327 2002-06-18 Akim Demaille <akim@epita.fr>
2328
2329 * data/bison.simple.new: Comment changes.
2330 Reported by Andreas Schwab.
2331
2332 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
2333
2334 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
2335 there are no `label `yyoverflowlab' defined but not used' warnings
2336 when yyoverflow is defined.
2337
2338 2002-06-18 Akim Demaille <akim@epita.fr>
2339
2340 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
2341 new member.
2342 (symbol_destructor_set): Adjust.
2343 * src/output.c (symbol_destructors_output): Output the destructor
2344 locations.
2345 Output the symbol name.
2346 * data/bison.simple (b4_symbol_destructor): Adjust.
2347
2348 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
2349 and Akim Demaille <akim@epita.fr>
2350
2351 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
2352 what's left on the stack when the error recovery hits EOF.
2353 * tests/actions.at (Destructors): Complete to exercise this case.
2354
2355 2002-06-17 Akim Demaille <akim@epita.fr>
2356
2357 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
2358 arguments is really empty, not only equal to `[]'.
2359 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
2360 member.
2361 (symbol_destructor_set): New.
2362 * src/output.c (symbol_destructors_output): New.
2363 * src/reader.h (brace_code_t, current_braced_code): New.
2364 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
2365 (handle_dollar): Rename as...
2366 (handle_action_dollar): this.
2367 (handle_destructor_dollar): New.
2368 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
2369 (grammar_declaration): Use it.
2370 * data/bison.simple (yystos): Is always defined.
2371 (yydestructor): New.
2372 * tests/actions.at (Destructors): New.
2373 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
2374
2375 2002-06-17 Akim Demaille <akim@epita.fr>
2376
2377 * src/symlist.h, src/symlist.c (symbol_list_length): New.
2378 * src/scan-gram.l (handle_dollar, handle_at): Compute the
2379 rule_length only when needed.
2380 * src/output.c (actions_output, token_definitions_output): Output
2381 the full M4 block.
2382 * src/symtab.c: Don't access directly to the symbol tag, use
2383 symbol_tag_get.
2384 * src/parse-gram.y: Use symbol_list_free.
2385
2386 2002-06-17 Akim Demaille <akim@epita.fr>
2387
2388 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
2389 (symbol_list_prepend, get_type_name): Move to...
2390 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
2391 (symbol_list_prepend, symbol_list_n_type_name_get): here.
2392 Adjust all callers.
2393 (symbol_list_free): New.
2394 * src/scan-gram.l (handle_dollar): Takes a location.
2395 * tests/input.at (Invalid $n): Adjust.
2396
2397 2002-06-17 Akim Demaille <akim@epita.fr>
2398
2399 * src/reader.h, src/reader.c (symbol_list_new): Export it.
2400 (symbol_list_prepend): New.
2401 * src/parse-gram.y (%union): `list' is a new member.
2402 (symbols.1): New, replaces...
2403 (terms_to_prec.1, nterms_to_type.1): these.
2404 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
2405 Take a location as additional argument.
2406 Adjust all callers.
2407
2408 2002-06-15 Akim Demaille <akim@epita.fr>
2409
2410 * src/parse-gram.y: Move %token in the declaration section so that
2411 we don't depend upon CVS Bison.
2412
2413 2002-06-15 Akim Demaille <akim@epita.fr>
2414
2415 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
2416 * src/print.c (print_core): Use it.
2417
2418 2002-06-15 Akim Demaille <akim@epita.fr>
2419
2420 * src/conflicts.c (log_resolution): Accept the rule involved in
2421 the sr conflicts instead of the lookahead number that points to
2422 that rule.
2423 (flush_reduce): Accept the current lookahead vector as argument,
2424 instead of the index in LA.
2425 (resolve_sr_conflict): Accept the current number of lookahead
2426 bitset to consider for the STATE, instead of the index in LA.
2427 (set_conflicts): Adjust.
2428 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
2429
2430 2002-06-15 Akim Demaille <akim@epita.fr>
2431
2432 * src/state.h (state_t): Replace the `lookaheadsp' member, a
2433 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
2434 Adjust all dependencies.
2435 * src/lalr.c (initialize_lookaheads): Split into...
2436 (states_lookaheads_count, states_lookaheads_initialize): these.
2437 (lalr): Adjust.
2438
2439 2002-06-15 Akim Demaille <akim@epita.fr>
2440
2441 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
2442 out of...
2443 (grammar_rules_print): here.
2444 * src/reduce.c (reduce_output): Use it.
2445 * tests/reduce.at (Useless Rules, Reduced Automaton)
2446 (Underivable Rules): Adjust.
2447
2448 2002-06-15 Akim Demaille <akim@epita.fr>
2449
2450 Copy BYacc's nice way to report the grammar.
2451
2452 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
2453 New.
2454 Don't print the rules' location, it is confusing and useless.
2455 (rule_print): Use grammar_rhs_print.
2456 * src/print.c (print_grammar): Use grammar_rules_print.
2457
2458 2002-06-15 Akim Demaille <akim@epita.fr>
2459
2460 Complete and rationalize `useless thing' warnings.
2461
2462 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
2463 (symbol_tag_print): New.
2464 Use them everywhere in place of accessing directly the tag member.
2465 * src/gram.h, src/gram.c (rule_print): New.
2466 Use it where a rule used to be printed `by hand'.
2467 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
2468 (reduce_grammar_tables): Report the useless rules.
2469 (reduce_print): Useless things are a warning, not an error.
2470 Report it as such.
2471 * tests/reduce.at (Useless Nonterminals, Useless Rules):
2472 (Reduced Automaton, Underivable Rules): Adjust.
2473 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
2474 * tests/conflicts.at (Unresolved SR Conflicts)
2475 (Solved SR Conflicts): Adjust.
2476
2477 2002-06-15 Akim Demaille <akim@epita.fr>
2478
2479 Let symbols have a location.
2480
2481 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
2482 (getsym): Adjust.
2483 Adjust all callers.
2484 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
2485 Use location_t, not int.
2486 * src/symtab.c (symbol_check_defined): Take advantage of the
2487 location.
2488 * tests/regression.at (Invalid inputs): Adjust.
2489
2490 2002-06-15 Akim Demaille <akim@epita.fr>
2491
2492 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
2493 (input): Don't try to initialize yylloc here, do it in the
2494 scanner.
2495 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
2496 * src/gram.h (rule_t): Change line and action_line into location
2497 and action_location, of location_t type.
2498 Adjust all dependencies.
2499 * src/location.h, src/location.c (empty_location): New.
2500 * src/reader.h, src/reader.c (grammar_start_symbol_set)
2501 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
2502 (grammar_current_rule_symbol_append)
2503 (grammar_current_rule_action_append): Expect a location as argument.
2504 * src/reader.c (grammar_midrule_action): Adjust to attach an
2505 action's location as dummy symbol location.
2506 * src/symtab.h, src/symtab.c (startsymbol_location): New.
2507 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
2508 the line numbers.
2509
2510 2002-06-14 Akim Demaille <akim@epita.fr>
2511
2512 Grammar declarations may be found in the grammar section.
2513
2514 * src/parse-gram.y (rules_or_grammar_declaration): New.
2515 (declarations): Each declaration may end with a semicolon, not
2516 just...
2517 (grammar_declaration): `"%union"'.
2518 (grammar): Branch to rules_or_grammar_declaration.
2519
2520 2002-06-14 Akim Demaille <akim@epita.fr>
2521
2522 * src/main.c (main): Invoke scanner_free.
2523
2524 2002-06-14 Akim Demaille <akim@epita.fr>
2525
2526 * src/output.c (m4_invoke): Extracted from...
2527 (output_skeleton): here.
2528 Free tempfile.
2529
2530 2002-06-14 Akim Demaille <akim@epita.fr>
2531
2532 * src/parse-gram.y (directives, directive, gram)
2533 (grammar_directives, precedence_directives, precedence_directive):
2534 Rename as...
2535 (declarations, declaration, grammar, grammar_declaration)
2536 (precedence_declaration, precedence_declarator): these.
2537 (symbol_declaration): New.
2538
2539 2002-06-14 Akim Demaille <akim@epita.fr>
2540
2541 * src/files.c (action_obstack): Remove, unused.
2542 (output_obstack): Remove it, and all its dependencies, as it is no
2543 longer needed.
2544 * src/reader.c (epilogue_set): Build the epilogue in the
2545 muscle_obstack.
2546 * src/output.h, src/output.c (muscle_obstack): Move to...
2547 * src/muscle_tab.h, src/muscle_tab.h: here.
2548 (muscle_init): Initialize muscle_obstack.
2549 (muscle_free): New.
2550 * src/main.c (main): Call it.
2551
2552 2002-06-14 Akim Demaille <akim@epita.fr>
2553
2554 * src/location.h: New, extracted from...
2555 * src/reader.h: here.
2556 * src/Makefile.am (noinst_HEADERS): Merge into
2557 (bison_SOURCES): this.
2558 Add location.h.
2559 * src/parse-gram.y: Use location_t instead of Bison's.
2560 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
2561 Use location_t instead of ints.
2562
2563 2002-06-14 Akim Demaille <akim@epita.fr>
2564
2565 * data/bison.simple, data/bison.c++: Be sure to restore the
2566 current #line when returning to the skeleton contents after having
2567 exposed the input file's #line.
2568
2569 2002-06-12 Akim Demaille <akim@epita.fr>
2570
2571 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
2572 eager.
2573 * tests/actions.at (Exotic Dollars): New.
2574
2575 2002-06-12 Akim Demaille <akim@epita.fr>
2576
2577 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
2578 ['"/] too eagerly.
2579 * tests/input.at (Torturing the Scanner): New.
2580
2581 2002-06-11 Akim Demaille <akim@epita.fr>
2582
2583 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
2584 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
2585 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
2586 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
2587 * src/reader.c (reader): Use it.
2588
2589 2002-06-11 Akim Demaille <akim@epita.fr>
2590
2591 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
2592 Adjust all callers.
2593 (scanner_last_string_free): New.
2594
2595 2002-06-11 Akim Demaille <akim@epita.fr>
2596
2597 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
2598 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
2599 (last_string, YY_OBS_FREE): New.
2600 Use them when returning an ID.
2601
2602 2002-06-11 Akim Demaille <akim@epita.fr>
2603
2604 Have Bison grammars parsed by a Bison grammar.
2605
2606 * src/reader.c, src/reader.h (prologue_augment): New.
2607 * src/reader.c (copy_definition): Remove.
2608
2609 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
2610 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
2611 (grammar_current_rule_prec_set, grammar_current_rule_check)
2612 (grammar_current_rule_symbol_append)
2613 (grammar_current_rule_action_append): Export.
2614 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
2615 (symbol_list_action_append): Remove.
2616 Hook the routines from reader.
2617 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
2618 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
2619
2620 * src/reader.c (read_declarations): Remove, unused.
2621
2622 * src/parse-gram.y: Handle the epilogue.
2623 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
2624 (grammar_start_symbol_set): this.
2625 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
2626 * src/reader.c (readgram): Remove, unused.
2627 (reader): Adjust to insert eoftoken and axiom where appropriate.
2628
2629 * src/reader.c (copy_dollar): Replace with...
2630 * src/scan-gram.h (handle_dollar): this.
2631 * src/parse-gram.y: Remove `%thong'.
2632
2633 * src/reader.c (copy_at): Replace with...
2634 * src/scan-gram.h (handle_at): this.
2635
2636 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
2637 New.
2638
2639 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
2640 time being.
2641
2642 * src/reader.h, src/reader.c (grammar_rule_end): New.
2643
2644 * src/parse.y (current_type, current_class): New.
2645 Implement `%nterm', `%token' support.
2646 Merge `%term' into `%token'.
2647 (string_as_id): New.
2648 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
2649 type name.
2650
2651 * src/parse-gram.y: Be sure to handle properly the beginning of
2652 rules.
2653
2654 * src/parse-gram.y: Handle %type.
2655 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
2656
2657 * src/parse-gram.y: More directives support.
2658 * src/options.c: No longer handle source directives.
2659
2660 * src/parse-gram.y: Fix %output.
2661
2662 * src/parse-gram.y: Handle %union.
2663 Use the prologue locations.
2664 * src/reader.c (parse_union_decl): Remove.
2665
2666 * src/reader.h, src/reader.c (epilogue_set): New.
2667 * src/parse-gram.y: Use it.
2668
2669 * data/bison.simple, data/bison.c++: b4_stype is now either not
2670 defined, then default to int, or to the contents of %union,
2671 without `union' itself.
2672 Adjust.
2673 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
2674
2675 * src/output.c (actions_output): Don't output braces, as they are
2676 already handled by the scanner.
2677
2678 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
2679 characters to themselves.
2680
2681 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
2682 that the epilogue has a proper #line.
2683
2684 * src/parse-gram.y: Handle precedence/associativity.
2685
2686 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
2687 a terminal.
2688 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
2689 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
2690 at all to define terminals that cannot be emitted.
2691
2692 * src/scan-gram.l: Escape M4 characters.
2693
2694 * src/scan-gram.l: Working properly with escapes in user
2695 strings/characters.
2696
2697 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
2698 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
2699 grammar.
2700 Use more modest sizes, as for the time being the parser does not
2701 release memory, and therefore the process swallows a huge amount
2702 of memory.
2703
2704 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
2705 stricter %token grammar.
2706
2707 * src/symtab.h (associativity): Add `undef_assoc'.
2708 (symbol_precedence_set): Do nothing when passed an undef_assoc.
2709 * src/symtab.c (symbol_check_alias_consistence): Adjust.
2710
2711 * tests/regression.at (Invalid %directive): Remove, as it is now
2712 meaningless.
2713 (Invalid inputs): Adjust to the new error messages.
2714 (Token definitions): The new grammar doesn't allow too many
2715 eccentricities.
2716
2717 * src/lex.h, src/lex.c: Remove.
2718 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
2719 (copy_character, copy_string2, copy_string, copy_identifier)
2720 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
2721 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
2722 (parse_action): Remove.
2723 * po/POTFILES.in: Adjust.
2724
2725 2002-06-11 Akim Demaille <akim@epita.fr>
2726
2727 * src/reader.c (parse_action): Don't store directly into the
2728 rule's action member: return the action as a string.
2729 Don't require `rule_length' as an argument: compute it.
2730 (grammar_current_rule_symbol_append)
2731 (grammar_current_rule_action_append): New, eved out from
2732 (readgram): here.
2733 Remove `action_flag', `rulelength', unused now.
2734
2735 2002-06-11 Akim Demaille <akim@epita.fr>
2736
2737 * src/reader.c (grammar_current_rule_prec_set).
2738 (grammar_current_rule_check): New, eved out from...
2739 (readgram): here.
2740 Remove `xaction', `first_rhs': useless.
2741 * tests/input.at (Type clashes): New.
2742 * tests/existing.at (GNU Cim Grammar): Adjust.
2743
2744 2002-06-11 Akim Demaille <akim@epita.fr>
2745
2746 * src/reader.c (grammar_midrule_action): New, Eved out from
2747 (readgram): here.
2748
2749 2002-06-11 Akim Demaille <akim@epita.fr>
2750
2751 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
2752 New.
2753 (readgram): Use them as replacement of inlined code, crule and
2754 crule1.
2755
2756 2002-06-11 Akim Demaille <akim@epita.fr>
2757
2758 * src/reader.c (grammar_end, grammar_symbol_append): New.
2759 (readgram): Use them.
2760 Make the use of `p' as local as possible.
2761
2762 2002-06-10 Akim Demaille <akim@epita.fr>
2763
2764 GCJ's parser requires the tokens to be defined before the prologue.
2765
2766 * data/bison.simple: Output the token definition before the user's
2767 prologue.
2768 * tests/regression.at (Braces parsing, Duplicate string)
2769 (Mixing %token styles): Check the output from bison.
2770 (Early token definitions): New.
2771
2772 2002-06-10 Akim Demaille <akim@epita.fr>
2773
2774 * src/symtab.c (symbol_user_token_number_set): Don't complain when
2775 assigning twice the same user number to a token, so that we can
2776 use it in...
2777 * src/lex.c (lex): here.
2778 Also use `symbol_class_set' instead of hand written code.
2779 * src/reader.c (parse_assoc_decl): Likewise.
2780
2781 2002-06-10 Akim Demaille <akim@epita.fr>
2782
2783 * src/symtab.c, src/symtab.c (symbol_class_set)
2784 (symbol_user_token_number_set): New.
2785 * src/reader.c (parse_token_decl): Use them.
2786 Use a switch instead of ifs.
2787 Use a single argument.
2788
2789 2002-06-10 Akim Demaille <akim@epita.fr>
2790
2791 Remove `%thong' support as it is undocumented, unused, duplicates
2792 `%token's job, and creates useless e-mail traffic with people who
2793 want to know what it is, why it is undocumented, unused, and
2794 duplicates `%token's job.
2795
2796 * src/reader.c (parse_thong_decl): Remove.
2797 * src/options.c (option_table): Remove "thong".
2798 * src/lex.h (tok_thong): Remove.
2799
2800 2002-06-10 Akim Demaille <akim@epita.fr>
2801
2802 * src/symtab.c, src/symtab.c (symbol_type_set)
2803 (symbol_precedence_set): New.
2804 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
2805 (value_components_used): Remove, unused.
2806
2807 2002-06-09 Akim Demaille <akim@epita.fr>
2808
2809 Move symbols handling code out of the reader.
2810
2811 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
2812 (axiom): Move to...
2813 * src/symtab.h, src/symtab.c: here.
2814
2815 * src/gram.c (start_symbol): Remove: use startsymbol->number.
2816 * src/reader.c (startval): Rename as...
2817 * src/symtab.h, src/symtab.c (startsymbol): this.
2818 * src/reader.c: Adjust.
2819
2820 * src/reader.c (symbol_check_defined, symbol_make_alias)
2821 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
2822 (token_translations_init)
2823 Move to...
2824 * src/symtab.c: here.
2825 * src/reader.c (packsymbols): Move to...
2826 * src/symtab.h, src/symtab.c (symbols_pack): here.
2827 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
2828 argument.
2829
2830 2002-06-03 Akim Demaille <akim@epita.fr>
2831
2832 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
2833 then statements.
2834
2835 2002-06-03 Akim Demaille <akim@epita.fr>
2836
2837 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
2838 structs with non literals.
2839 * src/scan-skel.l: never-interactive.
2840 * src/conflicts.c (enum conflict_resolution_e): No trailing
2841 comma.
2842 * src/getargs.c (usage): Split long literal strings.
2843 Reported by Hans Aberg.
2844
2845 2002-05-28 Akim Demaille <akim@epita.fr>
2846
2847 * data/bison.c++: Use C++ ostreams.
2848 (cdebug_): New member.
2849
2850 2002-05-28 Akim Demaille <akim@epita.fr>
2851
2852 * src/output.c (output_skeleton): Be sure to allocate enough room
2853 for `/' _and_ for `\0' in full_skeleton.
2854
2855 2002-05-28 Akim Demaille <akim@epita.fr>
2856
2857 * data/bison.c++: Catch up with bison.simple:
2858 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2859 and Paul Eggert <eggert@twinsun.com>: `error' handing.
2860 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
2861 and popping traces.
2862
2863 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2864
2865 * src/output.c (output_skeleton): Put an explicit path in front of
2866 the skeleton file name, rather than relying on the -I directory,
2867 to partially alleviate effects of having a skeleton file lying around
2868 in the current directory.
2869
2870 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2871
2872 * src/conflicts.c (log_resolution): Correct typo:
2873 obstack_printf should be obstack_fgrow1.
2874
2875 2002-05-26 Akim Demaille <akim@epita.fr>
2876
2877 * src/state.h (state_t): `solved_conflicts' is a new member.
2878 * src/LR0.c (new_state): Set it to 0.
2879 * src/conflicts.h, src/conflicts.c (print_conflicts)
2880 (free_conflicts, solve_conflicts): Rename as...
2881 (conflicts_print, conflicts_free, conflicts_solve): these.
2882 Adjust callers.
2883 * src/conflicts.c (enum conflict_resolution_e)
2884 (solved_conflicts_obstack): New, used by...
2885 (log_resolution): this.
2886 Adjust to attach the conflict resolution to each state.
2887 Complete the description with the precedence/associativity
2888 information.
2889 (resolve_sr_conflict): Adjust.
2890 * src/print.c (print_state): Output its solved_conflicts.
2891 * tests/conflicts.at (Unresolved SR Conflicts)
2892 (Solved SR Conflicts): Exercise --report=all.
2893
2894 2002-05-26 Akim Demaille <akim@epita.fr>
2895
2896 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
2897 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
2898 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
2899 (token_number_t, item_number_as_token_number)
2900 (token_number_as_item_number, muscle_insert_token_number_table):
2901 Rename as...
2902 (symbol_number_t, item_number_as_symbol_number)
2903 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
2904 these, since it is more appropriate.
2905
2906 2002-05-26 Akim Demaille <akim@epita.fr>
2907
2908 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
2909 `Error:' lines.
2910 * data/bison.simple (yystos) [YYDEBUG]: New.
2911 (yyparse) [YYDEBUG]: Display the symbols which are popped during
2912 error recovery.
2913 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
2914
2915 2002-05-25 Akim Demaille <akim@epita.fr>
2916
2917 * doc/bison.texinfo (Debugging): Split into...
2918 (Tracing): this new section, its former contents, and...
2919 (Understanding): this new section.
2920 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
2921 by...
2922 (report_flag): this.
2923 Adjust all dependencies.
2924 (report_args, report_types, report_argmatch): New.
2925 (usage, getargs): Report/support -r, --report.
2926 * src/options.h
2927 (struct option_table_struct): Rename as..,
2928 (struct option_table_s): this.
2929 Rename the `set_flag' member to `flag' to match with getopt_long's
2930 struct.
2931 * src/options.c (option_table): Split verbose into an entry for
2932 %verbose, and another for --verbose.
2933 Support --report/-r, so remove -r from the obsolete --raw.
2934 * src/print.c: Attach full item sets and lookaheads reports to
2935 report_flag instead of trace_flag.
2936 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
2937
2938 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2939 and Paul Eggert <eggert@twinsun.com>
2940
2941 * data/bison.simple (yyparse): Correct error handling to conform to
2942 POSIX and yacc. Specifically, after syntax error is discovered,
2943 do not reduce further before shifting the error token.
2944 Clean up the code a bit by removing the labels yyerrdefault,
2945 yyerrhandle, yyerrpop.
2946 * NEWS: Document the above.
2947
2948 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2949
2950 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
2951 type; it isn't always big enough, since it doesn't necessarily
2952 include non-terminals.
2953 (yytranslate): Expand definition of yy_token_number_type, so that
2954 the latter can be removed.
2955 (yy_token_number_type): Remove, only one use.
2956 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
2957 don't use TokenNumberType as element type.
2958
2959 * tests/regression.at: Modify expected output to agree with change
2960 to yyr1 and yytranslate.
2961
2962 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
2963
2964 * src/reader.c (parse_action): Use copy_character instead of
2965 obstack_1grow.
2966
2967 2002-05-13 Akim Demaille <akim@epita.fr>
2968
2969 * tests/regression.at (Token definitions): Prototype yylex and
2970 yyerror.
2971
2972 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2973
2974 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
2975 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
2976 32-bit arithmetic.
2977 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
2978
2979 2002-05-07 Akim Demaille <akim@epita.fr>
2980
2981 * tests/synclines.at: Be sure to prototype yylex and yyerror to
2982 avoid GCC warnings.
2983
2984 2002-05-07 Akim Demaille <akim@epita.fr>
2985
2986 Kill GCC warnings.
2987
2988 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
2989 over the RHS of each rule.
2990 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
2991 * src/state.h (state_t): Member `nitems' is unsigned short.
2992 * src/LR0.c (get_state): Adjust.
2993 * src/reader.c (packgram): Likewise.
2994 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
2995 `Type'.
2996 (muscle_insert_int_table): Remove, unused.
2997 (prepare_rules): Remove `max'.
2998
2999 2002-05-06 Akim Demaille <akim@epita.fr>
3000
3001 * src/closure.c (print_firsts): Display of the symbol tags.
3002 (bitmatrix_print): Move to...
3003 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
3004 here.
3005 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
3006
3007 2002-05-06 Akim Demaille <akim@epita.fr>
3008
3009 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
3010 hash_do_for_each.
3011
3012 2002-05-06 Akim Demaille <akim@epita.fr>
3013
3014 * src/LR0.c (new_state, get_state): Instead of using the global
3015 `kernel_size' and `kernel_base', have two new arguments:
3016 `core_size' and `core'.
3017 Adjust callers.
3018
3019 2002-05-06 Akim Demaille <akim@epita.fr>
3020
3021 * src/reader.c (packgram): No longer end `ritem' with a 0
3022 sentinel: it is not used.
3023
3024 2002-05-05 Akim Demaille <akim@epita.fr>
3025
3026 New experimental feature: display the lookaheads in the report and
3027 graph.
3028
3029 * src/print (print_core): When --trace-flag, display the rules
3030 lookaheads.
3031 * src/print_graph.c (print_core): Likewise.
3032 Swap the arguments.
3033 Adjust caller.
3034
3035 2002-05-05 Akim Demaille <akim@epita.fr>
3036
3037 * tests/torture.at (Many lookaheads): New test.
3038
3039 2002-05-05 Akim Demaille <akim@epita.fr>
3040
3041 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
3042 (GENERATE_MUSCLE_INSERT_TABLE): this.
3043 (output_int_table, output_unsigned_int_table, output_short_table)
3044 (output_token_number_table, output_item_number_table): Replace with...
3045 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
3046 (muscle_insert_short_table, muscle_insert_token_number_table)
3047 (muscle_insert_item_number_table): these.
3048 Adjust all callers.
3049 (prepare_tokens): Don't free `translations', since...
3050 * src/reader.h, src/reader.c (grammar_free): do it.
3051 Move to...
3052 * src/gram.h, src/gram.c (grammar_free): here.
3053 * data/bison.simple, data/bison.c++: b4_token_number_max is now
3054 b4_translate_max.
3055
3056 2002-05-05 Akim Demaille <akim@epita.fr>
3057
3058 * src/output.c (output_unsigned_int_table): New.
3059 (prepare_rules): `i' is unsigned.
3060 `prhs', `rline', `r2' are unsigned int.
3061 Rename muscle `rhs_number_max' as `rhs_max'.
3062 Output muscles `prhs_max', `rline_max', and `r2_max'.
3063 Free rline and r1.
3064 * data/bison.simple, data/bison.c++: Adjust to use these muscles
3065 to compute types instead of constant types.
3066 * tests/regression.at (Web2c Actions): Adjust.
3067
3068 2002-05-04 Akim Demaille <akim@epita.fr>
3069
3070 * src/symtab.h (SALIAS, SUNDEF): Rename as...
3071 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
3072 Adjust dependencies.
3073 * src/output.c (token_definitions_output): Be sure not to output a
3074 `#define 'a'' when fed with `%token 'a' "a"'.
3075 * tests/regression.at (Token definitions): New.
3076
3077 2002-05-03 Paul Eggert <eggert@twinsun.com>
3078
3079 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
3080 for K&R C.
3081
3082 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
3083
3084 * Makefile.am (SUBDIRS): Remove intl.
3085 (EXTRA_DIST): Add config/config.rpath.
3086
3087 2002-05-03 Akim Demaille <akim@epita.fr>
3088
3089 * data/bison.simple (m4_if): Don't output empty enums.
3090 And actually, output valid enum definitions :(.
3091
3092 2002-05-03 Akim Demaille <akim@epita.fr>
3093
3094 * configure.bat: Remove, completely obsolete.
3095 * Makefile.am (EXTRA_DIST): Adjust.
3096 Don't distribute config.rpath...
3097 * config/Makefile.am (EXTRA_DIST): Do it.
3098
3099 2002-05-03 Akim Demaille <akim@epita.fr>
3100
3101 * configure.in (GETTEXT_VERSION): New.
3102 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
3103
3104 2002-05-03 Akim Demaille <akim@epita.fr>
3105
3106 * data/bison.simple (b4_token_enum): New.
3107 (b4_token_defines): Use it to output tokens both as #define and
3108 enums.
3109 Suggested by Paul Eggert.
3110 * src/output.c (token_definitions_output): Don't output spurious
3111 white spaces.
3112
3113 2002-05-03 Akim Demaille <akim@epita.fr>
3114
3115 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
3116
3117 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
3118
3119 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
3120 Update the stack class, give a try to deque as the default container.
3121
3122 2002-05-02 Akim Demaille <akim@epita.fr>
3123
3124 * data/bison.simple (yyparse): Do not implement @$ = @1.
3125 (YYLLOC_DEFAULT): Adjust to do it.
3126 * doc/bison.texinfo (Location Default Action): Fix.
3127
3128 2002-05-02 Akim Demaille <akim@epita.fr>
3129
3130 * src/reader.c (parse_braces): Merge into...
3131 (parse_action): this.
3132
3133 2002-05-02 Akim Demaille <akim@epita.fr>
3134
3135 * configure.in (ALL_LINGUAS): Remove.
3136 * po/LINGUAS, hr.po: New.
3137
3138 2002-05-02 Akim Demaille <akim@epita.fr>
3139
3140 Remove the so called hairy (semantic) parsers.
3141
3142 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
3143 * src/gram.h, src/gram.c (semantic_parser): Remove.
3144 (rule_t): Remove the guard and guard_line members.
3145 * src/lex.h (token_t): remove tok_guard.
3146 * src/options.c (option_table): Remove %guard and %semantic_parser
3147 support.
3148 * src/output.c, src/output.h (guards_output): Remove.
3149 (prepare): Adjust.
3150 (token_definitions_output): Don't output the `T'
3151 tokens (???).
3152 (output_skeleton): Don't output the guards.
3153 * src/files.c, src/files.c (attrsfile): Remove.
3154 * src/reader.c (symbol_list): Remove the guard and guard_line
3155 members.
3156 Adjust dependencies.
3157 (parse_guard): Remove.
3158 * data/bison.hairy: Remove.
3159 * doc/bison.texinfo (Environment Variables): Remove occurrences of
3160 BISON_HAIRY.
3161
3162 2002-05-02 Akim Demaille <akim@epita.fr>
3163
3164 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
3165 (parse_guard): Rename the formal argument `stack_offset' as
3166 `rule_length', which is more readable.
3167 Adjust callers.
3168 (copy_at, copy_dollar): Instead of outputting the hard coded
3169 values of $$, $n and so forth, output invocation to b4_lhs_value,
3170 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
3171 Note: this patch partially drops `semantic-parser' support: it
3172 always does `rule_length - n', where semantic parsers ought to
3173 always use `-n'.
3174 * data/bison.simple, data/bison.c++ (b4_lhs_value)
3175 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
3176
3177 2002-05-02 Akim Demaille <akim@epita.fr>
3178
3179 * configure.in (AC_INIT): Bump to 1.49b.
3180 (AM_INIT_AUTOMAKE): Short invocation.
3181
3182 2002-05-02 Akim Demaille <akim@epita.fr>
3183
3184 Version 1.49a.
3185
3186 2002-05-01 Akim Demaille <akim@epita.fr>
3187
3188 * src/skeleton.h: Remove.
3189
3190 2002-05-01 Akim Demaille <akim@epita.fr>
3191
3192 * src/skeleton.h: Fix the #endif.
3193 Reported by Magnus Fromreide.
3194
3195 2002-04-26 Paul Eggert <eggert@twinsun.com>
3196
3197 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
3198 Define if we define YYSTYPE and YYLTYPE, respectively.
3199 (YYCOPY): Fix [] quoting problem in the non-GCC case.
3200
3201 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
3202
3203 * src/scan-skel.l: Postprocess quadrigraphs.
3204
3205 * src/reader.c (copy_character): New function, used to output
3206 single characters while replacing `[' and `]' with quadrigraphs, to
3207 avoid troubles with M4 quotes.
3208 (copy_comment): Output characters with copy_character.
3209 (read_additionnal_code): Likewise.
3210 (copy_string2): Likewise.
3211 (copy_definition): Likewise.
3212
3213 * tests/calc.at: Exercise M4 quoting.
3214
3215 2002-04-25 Akim Demaille <akim@epita.fr>
3216
3217 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
3218 between `!' and the command.
3219 Reported by Paul Eggert.
3220
3221 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
3222
3223 * tests/calc.at: Exercise prologue splitting.
3224
3225 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
3226 `b4_post_prologue' instead of `b4_prologue'.
3227
3228 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
3229 muscles.
3230 (output): Free pre_prologue_obstack and post_prologue_obstack.
3231 * src/files.h, src/files.c (attrs_obstack): Remove.
3232 (pre_prologue_obstack, post_prologue_obstack): New.
3233 * src/reader.c (copy_definition): Add a parameter to specify the
3234 obstack to fill, instead of using attrs_obstack unconditionally.
3235 (read_declarations): Pass pre_prologue_obstack to copy_definition if
3236 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
3237
3238 2002-04-23 Paul Eggert <eggert@twinsun.com>
3239
3240 * data/bison.simple: Remove unnecessary commentary and white
3241 space differences from 1_29-branch.
3242 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
3243
3244 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
3245 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
3246 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
3247 constructors or destructors.
3248
3249 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
3250
3251 2002-04-23 Akim Demaille <akim@epita.fr>
3252
3253 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
3254 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
3255 location with columns.
3256 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
3257 All reported by Paul Eggert.
3258
3259 2002-04-22 Akim Demaille <akim@epita.fr>
3260
3261 * src/reduce.c (dump_grammar): Move to...
3262 * src/gram.h, src/gram.c (grammar_dump): here.
3263 Be sure to separate long item numbers.
3264 Don't read the members of a rule's prec if its nil.
3265
3266 2002-04-22 Akim Demaille <akim@epita.fr>
3267
3268 * src/output.c (table_size, table_grow): New.
3269 (MAXTABLE): Remove, replace uses with table_size.
3270 (pack_vector): Instead of dying when the table is too big, grow it.
3271
3272 2002-04-22 Akim Demaille <akim@epita.fr>
3273
3274 * data/bison.simple (yyr1): Its type is that of a token number.
3275 * data/bison.c++ (r1_): Likewise.
3276 * tests/regression.at (Web2c Actions): Adjust.
3277
3278 2002-04-22 Akim Demaille <akim@epita.fr>
3279
3280 * src/reader.c (token_translations_init): 256 is now the default
3281 value for the error token, i.e., it will be assigned another
3282 number if the user assigned 256 to one of her tokens.
3283 (reader): Don't force 256 to error.
3284 * doc/bison.texinfo (Symbols): Adjust.
3285 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
3286 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
3287 etc. instead of 10, 20, 30 (which was used to `jump' over error
3288 (256) and undefined (2)).
3289
3290 2002-04-22 Akim Demaille <akim@epita.fr>
3291
3292 Propagate more token_number_t.
3293
3294 * src/gram.h (token_number_as_item_number)
3295 (item_number_as_token_number): New.
3296 * src/output.c (GENERATE_OUTPUT_TABLE): New.
3297 Use it to create output_item_number_table and
3298 output_token_number_table.
3299 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
3300 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
3301 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
3302 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
3303
3304 2002-04-22 Akim Demaille <akim@epita.fr>
3305
3306 * src/output.h, src/output.c (get_lines_number): Remove.
3307
3308 2002-04-19 Akim Demaille <akim@epita.fr>
3309
3310 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
3311 as Lex/Flex'.
3312 (Debugging): More details about enabling the debugging features.
3313 (Table of Symbols): Describe $$, $n, @$, and @n.
3314 Suggested by Tim Josling.
3315
3316 2002-04-19 Akim Demaille <akim@epita.fr>
3317
3318 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
3319
3320 2002-04-10 Akim Demaille <akim@epita.fr>
3321
3322 * src/system.h: Rely on HAVE_LIMITS_H.
3323 Suggested by Paul Eggert.
3324
3325 2002-04-09 Akim Demaille <akim@epita.fr>
3326
3327 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
3328 full stderr, and strip it according to the bison options, instead
3329 of composing the error message from different bits.
3330 This makes it easier to check for several error messages.
3331 Adjust all the invocations.
3332 Add an invocation exercising the error token.
3333 Add an invocation demonstrating a stupid error message.
3334 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
3335 Adjust the tests.
3336 Error message are for stderr, not stdout.
3337
3338 2002-04-09 Akim Demaille <akim@epita.fr>
3339
3340 * src/gram.h, src/gram.c (error_token_number): Remove, use
3341 errtoken->number.
3342 * src/reader.c (reader): Don't specify the user token number (2)
3343 for $undefined, as it uselessly prevents using it.
3344 * src/gram.h (token_number_t): Move to...
3345 * src/symtab.h: here.
3346 (state_t.number): Is a token_number_t.
3347 * src/print.c, src/reader.c: Use undeftoken->number instead of
3348 hard coded 2.
3349 (Even though this 2 is not the same as above: the number of the
3350 undeftoken remains being 2, it is its user token number which
3351 might not be 2).
3352 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
3353 `user_token_number_max'.
3354 Output `undef_token_number'.
3355 * data/bison.simple, data/bison.c++: Use them.
3356 Be sure to map invalid yylex return values to
3357 `undef_token_number'. This saves us from gratuitous SEGV.
3358
3359 * tests/conflicts.at (Solved SR Conflicts)
3360 (Unresolved SR Conflicts): Adjust.
3361 * tests/regression.at (Web2c Actions): Adjust.
3362
3363 2002-04-08 Akim Demaille <akim@epita.fr>
3364
3365 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
3366 Adding #line.
3367 Remove the duplicate `typedefs'.
3368 (RhsNumberType): Fix the declaration and various other typos.
3369 Use __ofile__.
3370 * data/bison.simple: Use __ofile__.
3371 * src/scan-skel.l: Handle __ofile__.
3372
3373 2002-04-08 Akim Demaille <akim@epita.fr>
3374
3375 * src/gram.h (item_number_t): New, the type of item numbers in
3376 RITEM. Note that it must be able to code symbol numbers as
3377 positive number, and the negation of rule numbers as negative
3378 numbers.
3379 Adjust all dependencies (pretty many).
3380 * src/reduce.c (rule): Remove this `short *' pointer: use
3381 item_number_t.
3382 * src/system.h (MINSHORT, MAXSHORT): Remove.
3383 Include `limits.h'.
3384 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
3385 (shortcpy): Remove.
3386 (MAXTABLE): Move to...
3387 * src/output.c (MAXTABLE): here.
3388 (prepare_rules): Use output_int_table to output rhs.
3389 * data/bison.simple, data/bison.c++: Adjust.
3390 * tests/torture.at (Big triangle): Move the limit from 254 to
3391 500.
3392 * tests/regression.at (Web2c Actions): Ajust.
3393
3394 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
3395 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
3396 passes, but produces negative #line number, once fixed, GCC is
3397 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
3398 C), it passes.
3399 * src/state.h (state_h): Code input lines on ints, not shorts.
3400
3401 2002-04-08 Akim Demaille <akim@epita.fr>
3402
3403 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
3404 and then the grammar.
3405
3406 2002-04-08 Akim Demaille <akim@epita.fr>
3407
3408 * src/system.h: No longer using strndup.
3409
3410 2002-04-07 Akim Demaille <akim@epita.fr>
3411
3412 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
3413 * src/output.c (output_table_data): Return the longest number.
3414 (prepare_tokens): Output `token_number_max').
3415 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
3416 New.
3417 Use them to define yy_token_number_type/TokenNumberType.
3418 Use this type for yytranslate.
3419 * tests/torture.at (Big triangle): Push the limit from 124 to
3420 253.
3421 * tests/regression.at (Web2c Actions): Adjust.
3422
3423 2002-04-07 Akim Demaille <akim@epita.fr>
3424
3425 * tests/torture.at (Big triangle): New.
3426 (GNU AWK Grammar, GNU Cim Grammar): Move to...
3427 * tests/existing.at: here.
3428
3429 2002-04-07 Akim Demaille <akim@epita.fr>
3430
3431 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
3432 nritems.
3433 Adjust dependencies.
3434
3435 2002-04-07 Akim Demaille <akim@epita.fr>
3436
3437 * src/reader.c: Normalize increments to prefix form.
3438
3439 2002-04-07 Akim Demaille <akim@epita.fr>
3440
3441 * src/reader.c, symtab.c: Remove debugging code.
3442
3443 2002-04-07 Akim Demaille <akim@epita.fr>
3444
3445 Rename all the `bucket's as `symbol_t'.
3446
3447 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
3448 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
3449 * src/symtab.c, src/symtab.h (bucket): Rename as...
3450 (symbol_t): this.
3451 (symbol_list_new, bucket_check_defined, bucket_make_alias)
3452 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
3453 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3454 (buckets_new, buckets_free, buckets_do): Rename as...
3455 (symbol_list_new, symbol_check_defined, symbol_make_alias)
3456 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
3457 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
3458 (symbols_new, symbols_free, symbols_do): these.
3459
3460 2002-04-07 Akim Demaille <akim@epita.fr>
3461
3462 Use lib/hash for the symbol table.
3463
3464 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
3465 EOF.
3466 * src/lex.c (lex): Set the `number' member of new terminals.
3467 * src/reader.c (bucket_check_defined, bucket_make_alias)
3468 (bucket_check_alias_consistence, bucket_translation): New.
3469 (reader, grammar_free, readgram, token_translations_init)
3470 (packsymbols): Adjust.
3471 (reader): Number the predefined tokens.
3472 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
3473 for predefined tokens.
3474 * src/symtab.h (bucket): Remove all the hash table related
3475 members.
3476 * src/symtab.c (symtab): Replace by...
3477 (bucket_table): this.
3478 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3479 (buckets_new, buckets_do): New.
3480
3481 2002-04-07 Akim Demaille <akim@epita.fr>
3482
3483 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
3484 (start_symbol, max_user_token_number, semantic_parser)
3485 (error_token_number): Initialize.
3486 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
3487 Initialize.
3488 (reader): Don't.
3489 (errtoken, eoftoken, undeftoken, axiom): Extern.
3490
3491 2002-04-07 Akim Demaille <akim@epita.fr>
3492
3493 * src/gram.h (rule_s): prec and precsym are now pointers
3494 to the bucket giving the priority/associativity.
3495 Member `associativity' removed: useless.
3496 * src/reduce.c, src/conflicts.c: Adjust.
3497
3498 2002-04-07 Akim Demaille <akim@epita.fr>
3499
3500 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
3501 Properly escape the symbols' TAG when outputting them.
3502
3503 2002-04-07 Akim Demaille <akim@epita.fr>
3504
3505 * src/lalr.h (LA): Is a bitsetv, not bitset*.
3506
3507 2002-04-07 Akim Demaille <akim@epita.fr>
3508
3509 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
3510 (LArule): this, which is an array to rule_t*.
3511 * src/print.c, src/conflicts.c: Adjust.
3512
3513 2002-04-07 Akim Demaille <akim@epita.fr>
3514
3515 * src/gram.h (rule_t): Rename `number' as `user_number'.
3516 `number' is a new member.
3517 Adjust dependencies.
3518 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
3519
3520 2002-04-07 Akim Demaille <akim@epita.fr>
3521
3522 As a result of the previous patch, it is no longer needed
3523 to reorder ritem itself.
3524
3525 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
3526
3527 2002-04-07 Akim Demaille <akim@epita.fr>
3528
3529 Be sure never to walk through RITEMS, but use only data related to
3530 the rules themselves. RITEMS should be banished.
3531
3532 * src/output.c (output_token_translations): Rename as...
3533 (prepare_tokens): this.
3534 In addition to `translate', prepare the muscles `tname' and
3535 `toknum', which were handled by...
3536 (output_rule_data): this.
3537 Remove, and move the remainder of its outputs into...
3538 (prepare_rules): this new routines, which also merges content from
3539 (output_gram): this.
3540 (prepare_rules): Be sure never to walk through RITEMS.
3541 (output_stos): Rename as...
3542 (prepare_stos): this.
3543 (output): Always invoke prepare_states, after all, just don't use it
3544 in the output if you don't need it.
3545
3546 2002-04-07 Akim Demaille <akim@epita.fr>
3547
3548 * src/LR0.c (new_state): Display `nstates' as the name of the
3549 newly created state.
3550 Adjust to initialize first_state and last_state if needed.
3551 Be sure to distinguish the initial from the final state.
3552 (new_states): Create the itemset of the initial state, and use
3553 new_state.
3554 * src/closure.c (closure): Now that the initial state has its
3555 items properly set, there is no need for a special case when
3556 creating `ruleset'.
3557
3558 As a result, now the rule 0, reducing to $axiom, is visible in the
3559 outputs. Adjust the test suite.
3560
3561 * tests/conflicts.at (Solved SR Conflicts)
3562 (Unresolved SR Conflicts): Adjust.
3563 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
3564 * tests/conflicts.at (S/R in initial): New.
3565
3566 2002-04-07 Akim Demaille <akim@epita.fr>
3567
3568 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
3569 the RHS of the rules.
3570 * src/output.c (output_gram): Likewise.
3571
3572 2002-04-07 Akim Demaille <akim@epita.fr>
3573
3574 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
3575 bucket.
3576 Adjust all dependencies.
3577 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
3578 `number' of the buckets too.
3579 * src/gram.h: Include `symtab.h'.
3580 (associativity): Move to...
3581 * src/symtab.h: here.
3582 No longer include `gram.h'.
3583
3584 2002-04-07 Akim Demaille <akim@epita.fr>
3585
3586 * src/gram.h, src/gram.c (rules_rhs_length): New.
3587 (ritem_longest_rhs): Use it.
3588 * src/gram.h (rule_t): `number' is a new member.
3589 * src/reader.c (packgram): Set it.
3590 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
3591 the end of `rules', and count them out of `nrules'.
3592 (reduce_output, dump_grammar): Adjust.
3593 * src/print.c (print_grammar): It is no longer needed to check for
3594 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
3595 * tests/reduce.at (Reduced Automaton): New test.
3596
3597 2002-04-07 Akim Demaille <akim@epita.fr>
3598
3599 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
3600 lacking `+ 1' to nrules, Bison reported as useless a token if it
3601 was used solely to set the precedence of the last rule...
3602
3603 2002-04-07 Akim Demaille <akim@epita.fr>
3604
3605 * data/bison.c++, data/bison.simple: Don't output the current file
3606 name in #line, to avoid useless diffs between two identical
3607 outputs under different names.
3608
3609 2002-04-07 Akim Demaille <akim@epita.fr>
3610
3611 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
3612 Normalize loops to using `< nrules + 1', not `<= nrules'.
3613
3614 2002-04-07 Akim Demaille <akim@epita.fr>
3615
3616 * TODO: Update.
3617
3618 2002-04-07 Akim Demaille <akim@epita.fr>
3619
3620 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
3621 bucket.value as bucket.number.
3622
3623 2002-04-07 Akim Demaille <akim@epita.fr>
3624
3625 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
3626 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
3627 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
3628 RHS, instead of being an index in RITEMS.
3629
3630 2002-04-04 Paul Eggert <eggert@twinsun.com>
3631
3632 * doc/bison.texinfo: Update copyright date.
3633 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
3634 (Symbols): Warn about running Bison in one character set,
3635 but compiling and/or running in an incompatible one.
3636 Warn about character code 256, too.
3637
3638 2002-04-03 Paul Eggert <eggert@twinsun.com>
3639
3640 * src/bison.data (YYSTACK_ALLOC): Depend on whether
3641 YYERROR_VERBOSE is nonzero, not whether it is defined.
3642
3643 Merge changes from bison-1_29-branch.
3644
3645 2002-03-20 Paul Eggert <eggert@twinsun.com>
3646
3647 Merge fixes from Debian bison_1.34-1.diff.
3648
3649 * configure.in (AC_PREREQ): 2.53.
3650
3651 2002-03-20 Akim Demaille <akim@epita.fr>
3652
3653 * src/conflicts.c (log_resolution): Argument `resolution' is const.
3654
3655 2002-03-19 Paul Eggert <eggert@twinsun.com>
3656
3657 * src/bison.simple (YYCOPY): New macro.
3658 (YYSTACK_RELOCATE): Use it.
3659 Remove Type arg; no longer needed. All callers changed.
3660 (yymemcpy): Remove; no longer needed.
3661
3662 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
3663 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3664
3665 2002-03-19 Akim Demaille <akim@epita.fr>
3666
3667 Test and fix the #line outputs.
3668
3669 * tests/atlocal.at (GCC): New.
3670 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
3671 (Prologue synch line, ,%union synch line, Postprologue synch line)
3672 (Action synch line, Epilogue synch line): New tests.
3673 * src/reader.c (parse_union_decl): Define the muscle stype_line.
3674 * data/bison.simple, data/bison.c++: Use it.
3675
3676 2002-03-19 Akim Demaille <akim@epita.fr>
3677
3678 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
3679 (Solved SR Conflicts, %expect not enough, %expect right)
3680 (%expect too much): Move to...
3681 * tests/conflicts.at: this new file.
3682
3683 2002-03-19 Akim Demaille <akim@epita.fr>
3684
3685 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
3686 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
3687 that we can move to enums for instance.
3688 * src/output.c (token_definitions_output): Output a list of
3689 `token-name, token-number' instead of the #define.
3690 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
3691
3692 2002-03-14 Akim Demaille <akim@epita.fr>
3693
3694 Use Gettext 0.11.1.
3695
3696 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
3697
3698 * data/bison.c++: Make the user able to add members to the generated
3699 parser by subclassing.
3700
3701 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
3702
3703 * src/reader.c (read_additionnal_code): `c' should be an integer, not
3704 a character.
3705 Reported by Nicolas Tisserand and Nicolas Burrus.
3706
3707 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3708
3709 * src/reader.c: Warn about lacking semi-colons, do not complain.
3710
3711 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3712
3713 * data/bison.c++: Remove a debug line.
3714
3715 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3716
3717 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
3718 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
3719 provide a default implementation.
3720
3721 2002-03-04 Akim Demaille <akim@epita.fr>
3722
3723 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
3724 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
3725 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
3726 * tests/semantic.at (Parsing Guards): Similarly.
3727 * src/reader.at (readgram): Complain if the last rule is not ended
3728 with a semi-colon.
3729
3730 2002-03-04 Akim Demaille <akim@epita.fr>
3731
3732 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
3733 * src/closure.c: here.
3734 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
3735 RTC.
3736 * src/warshall.h, src/warshall.c: Remove.
3737 * tests/sets.at (Broken Closure): Adjust.
3738
3739 2002-03-04 Akim Demaille <akim@epita.fr>
3740
3741 * src/output.c (output_skeleton): tempdir is const.
3742 bytes_read is unused.
3743
3744 2002-03-04 Akim Demaille <akim@epita.fr>
3745
3746 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3747 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
3748 Update.
3749 From Michael Hayes.
3750
3751 2002-03-04 Akim Demaille <akim@epita.fr>
3752
3753 * src/closure.c (closure): `r' is unused.
3754
3755 2002-03-04 Akim Demaille <akim@epita.fr>
3756
3757 * tests/sets.at (Broken Closure): Add the ending `;'.
3758 * src/reader.at (readgram): Complain if a rule is not ended with a
3759 semi-colon.
3760
3761 2002-03-04 Akim Demaille <akim@epita.fr>
3762
3763 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
3764 (count_sr_conflicts): Use bitset_count.
3765 * src/reduce.c (inaccessable_symbols): Ditto.
3766 (bits_size): Remove.
3767 * src/warshall.h, src/warshall.c: Convert to bitsetv.
3768
3769 2002-03-04 Akim Demaille <akim@epita.fr>
3770
3771 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
3772 * src/reduce.c: Remove the `bitset_zero's following the
3773 `bitset_create's, as now it is performed by the latter.
3774
3775 2002-03-04 Akim Demaille <akim@epita.fr>
3776
3777 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
3778 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
3779 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
3780 latest sources from Michael.
3781
3782 2002-03-04 Akim Demaille <akim@epita.fr>
3783
3784 * src/output.c (output): Don't free the grammar.
3785 * src/reader.c (grammar_free): New.
3786 * src/main.c (main): Call it and don't free symtab here.
3787
3788 2002-03-04 Akim Demaille <akim@epita.fr>
3789
3790 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
3791 before returning.
3792 Reported by Benoit Perrot.
3793
3794 2002-03-04 Akim Demaille <akim@epita.fr>
3795
3796 Use bitset operations when possible, not loops over bits.
3797
3798 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
3799 bitset_or.
3800 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
3801 * src/reduce.c (useless_nonterminals): Formatting changes.
3802 * src/warshall.c (TC): Use bitset_or.
3803
3804 2002-03-04 Akim Demaille <akim@epita.fr>
3805
3806 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
3807 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
3808 Ditto.
3809
3810 2002-03-04 Akim Demaille <akim@epita.fr>
3811
3812 * src/lalr.c (F): Now a bitset*.
3813 Adjust all dependencies.
3814
3815 2002-03-04 Akim Demaille <akim@epita.fr>
3816
3817 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
3818 Adjust all dependencies.
3819
3820 2002-03-04 Akim Demaille <akim@epita.fr>
3821
3822 * src/L0.c, src/LR0.h (nstates): Be size_t.
3823 Adjust comparisons (signed vs unsigned).
3824 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
3825 bitset*.
3826 Adjust all dependencies.
3827
3828 2002-03-04 Akim Demaille <akim@epita.fr>
3829
3830 * src/closure.c (firsts): Now, also a bitset.
3831 Adjust all dependencies.
3832 (varsetsize): Remove, now unused.
3833 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
3834
3835 2002-03-04 Akim Demaille <akim@epita.fr>
3836
3837 * src/print.c: Convert to use bitset.h, not hand coded iterations
3838 over ints.
3839
3840 2002-03-04 Akim Demaille <akim@epita.fr>
3841
3842 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
3843
3844 2002-03-04 Akim Demaille <akim@epita.fr>
3845
3846 * src/closure.c (ruleset): Be a bitset.
3847 (rulesetsize): Remove.
3848
3849 2002-03-04 Akim Demaille <akim@epita.fr>
3850
3851 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3852 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
3853 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
3854 * src/closure.c (fderives): Be an array of bitsets.
3855
3856 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
3857
3858 * data/bison.c++: Merge the two generated headers. Insert a copyright
3859 notice in each output file.
3860
3861 2002-02-28 Akim Demaille <akim@epita.fr>
3862
3863 * data/bison.c++: Copy the prologue of bison.simple to fetch
3864 useful M4 definitions, such as b4_header_guard.
3865
3866 2002-02-25 Akim Demaille <akim@epita.fr>
3867
3868 * src/getargs.c (version): Give the name of the authors, and use a
3869 translator friendly scheme for the bgr
3870 copyright notice.
3871
3872 2002-02-25 Akim Demaille <akim@epita.fr>
3873
3874 * src/output.c (header_output): Remove, now handled completely via
3875 M4.
3876
3877 2002-02-25 Akim Demaille <akim@epita.fr>
3878
3879 * m4/m4.m4: New, from CVS Autoconf.
3880 * configure.in: Invoke it.
3881 * src/output.c (output_skeleton): Use its result instead of the
3882 hard coded name.
3883
3884 2002-02-25 Akim Demaille <akim@epita.fr>
3885
3886 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
3887 Fileutils 4.1.5.
3888 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
3889 * src/output.c (output_skeleton): Use mkstemp to create a real
3890 temporary file.
3891 Move the filling of `skeleton' and its muscle to...
3892 (prepare): here.
3893 (output): Move the definition of the prologue muscle to...
3894 (prepare): here.
3895 * src/system.h (DEFAULT_TMPDIR): New.
3896
3897 2002-02-14 Paul Eggert <eggert@twinsun.com>
3898
3899 Remove the support for C++ namespace cleanliness; it was
3900 causing more problems than it was curing, since it didn't work
3901 properly on some nonstandard C++ compilers. This can wait
3902 for a proper C++ parser.
3903
3904 * NEWS: Document this.
3905 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
3906 of C++, as it's treated like C now.
3907 * src/bison.simple (YYSTD): Remove.
3908 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
3909 Treat C++ just like Standard C instead of trying to support
3910 namespace cleanliness.
3911
3912 2002-02-14 Akim Demaille <akim@epita.fr>
3913
3914 * tests/regression.at (else): Adjust to Andreas' change.
3915
3916 2002-02-14 Akim Demaille <akim@epita.fr>
3917
3918 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
3919
3920 2002-02-13 Andreas Schwab <schwab@suse.de>
3921
3922 * src/output.c (output_rule_data): Don't output NULL, it might
3923 not be defined yet.
3924
3925 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
3926
3927 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
3928 (Copyright notice): Update.
3929
3930 2002-02-11 Akim Demaille <akim@epita.fr>
3931
3932 * tests/regression.at (%nonassoc and eof): Don't include
3933 nonportable headers.
3934
3935 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
3936
3937 * data/bison.c++: Correct error recovery. Make the user able to
3938 initialize the starting location.
3939
3940 2002-02-07 Akim Demaille <akim@epita.fr>
3941
3942 * tests/input.at: New.
3943
3944 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3945
3946 * data/bison.c++: Replace some direct m4 expansions by constants. Be
3947 more consistent when naming methods and variables. Put preprocessor
3948 directives around tables only needed for debugging.
3949
3950 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3951
3952 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
3953 C++ parsers.
3954 (yy::b4_name::parse): Use print_.
3955
3956 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3957
3958 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
3959
3960 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3961
3962 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
3963 C++ parsers.
3964 (yy::b4_name::parse): Build verbose error messages, and use error_.
3965
3966 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
3967
3968 * data/bison.c++: Fix m4 quoting in comments.
3969
3970 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
3971
3972 * data/bison.c++: Adjust the parser code. Fix some muscles that were
3973 not expanded by m4.
3974
3975 2002-02-05 Akim Demaille <akim@epita.fr>
3976
3977 * data/bison.c++: Adjust to the M4 back end.
3978 More is certainly needed.
3979
3980 2002-02-05 Akim Demaille <akim@epita.fr>
3981
3982 Give a try to M4 as a back end.
3983
3984 * lib/readpipe.c: New, from wdiff.
3985 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
3986 BISON_HAIRY.
3987 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
3988 specific values. Now it is m4 that performs the lookup.
3989 * src/parse-skel.y: Remove.
3990 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
3991 * src/output.c (actions_output, guards_output)
3992 (token_definitions_output): No longer keeps track of the output
3993 line number, hence remove the second argument.
3994 (guards_output): Check against the guard member of a rule, not the
3995 action member.
3996 Adjust callers.
3997 (output_skeleton): Don't look for the skeleton location, let m4 do
3998 that.
3999 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
4000 file will be used.
4001 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
4002 (prepare): Given that for the time being changesyntax is not
4003 usable in M4, rename the muscles using `-' to `_'.
4004 Define `defines_flag', `output_parser_name' and `output_header_name'.
4005 * src/output.h (actions_output, guards_output)
4006 (token_definitions_output): Adjust prototypes.
4007 * src/scan-skel.l: Instead of scanning the skeletons, it now
4008 processes the output of m4: `__oline__' and `#output'.
4009 * data/bison.simple: Adjust to be used by M4(sugar).
4010 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
4011 to date.
4012 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
4013 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
4014 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
4015 shamelessly stolen from CVS Autoconf.
4016
4017 2002-02-05 Akim Demaille <akim@epita.fr>
4018
4019 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
4020 * configure.in: Check for the declarations of free and malloc.
4021 * src/muscle_tab.c: Adjust.
4022
4023 2002-02-05 Akim Demaille <akim@epita.fr>
4024
4025 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
4026 which have no values.
4027
4028 2002-02-05 Akim Demaille <akim@epita.fr>
4029
4030 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
4031 * data/: here.
4032
4033 2002-01-29 Paul Eggert <eggert@twinsun.com>
4034
4035 * src/bison.simple (YYSIZE_T): Do not define merely because
4036 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
4037 On some platforms, <alloca.h> does not declare YYSTD (size_t).
4038
4039 2002-01-27 Akim Demaille <akim@epita.fr>
4040
4041 Fix `%nonassoc and eof'.
4042
4043 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
4044 which were not properly copied! Replace
4045 memcpy (res->errs, src->errs, src->nerrs);
4046 with
4047 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
4048 !!!
4049 * tests/regression.at (%nonassoc and eof): Adjust to newest
4050 Autotest: `.' is not in the PATH.
4051
4052 2002-01-27 Akim Demaille <akim@epita.fr>
4053
4054 * tests/sets.at (AT_EXTRACT_SETS): New.
4055 (Nullable): Use it.
4056 (Firsts): New.
4057
4058 2002-01-26 Akim Demaille <akim@epita.fr>
4059
4060 * tests/actions.at, tests/calc.at, tests/headers.at,
4061 * tests/torture.at: Adjust to the newest Autotest which no longer
4062 forces `.' in the PATH.
4063
4064 2002-01-25 Akim Demaille <akim@epita.fr>
4065
4066 * tests/regression.at (%nonassoc and eof): New.
4067 Suggested by Robert Anisko.
4068
4069 2002-01-24 Akim Demaille <akim@epita.fr>
4070
4071 Bison dumps core when trying to complain about broken input files.
4072 Reported by Cris van Pelt.
4073
4074 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
4075 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
4076 into...
4077 (Invalid inputs): Strengthen: exercise parse_percent_token.
4078
4079 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
4080
4081 * src/Makefile.am: Add bison.c++.
4082 * src/bison.c++: New skeleton.
4083
4084 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
4085
4086 * po/it.po: New.
4087
4088 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
4089
4090 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
4091
4092 2002-01-20 Marc Autret <marc@gnu.org>
4093
4094 * src/files.c (compute_output_file_names): Fix
4095
4096 2002-01-20 Marc Autret <marc@gnu.org>
4097
4098 * tests/output.at: New test.
4099 * src/files.c (compute_base_names): Don't map extensions when
4100 the YACC flag is set, use defaults.
4101 Reported by Evgeny Stambulchik.
4102
4103 2002-01-20 Marc Autret <marc@gnu.org>
4104
4105 * src/system.h: Need to define __attribute__ away for non-GCC
4106 compilers as well (i.e. the vendor C compiler).
4107 Suggested by Albert Chin-A-Young.
4108
4109 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
4110
4111 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
4112 canonical definition.
4113 * src/system.h: Use the canonical definition for PARAMS (avoids
4114 a conflict with the macro from lib/hash.h).
4115
4116 2002-01-11 Akim Demaille <akim@epita.fr>
4117
4118 * configure.in: Use AC_FUNC_STRNLEN.
4119 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
4120
4121 2002-01-09 Akim Demaille <akim@epita.fr>
4122
4123 * src/files.c, src/files.h (output_infix): New.
4124 (tab_extension): Remove.
4125 (compute_base_names): Compute the former, drop the latter.
4126 * src/output.c (prepare): Insert the muscles `output-infix', and
4127 `output-suffix'.
4128 * src/parse-skel.y (string, string.1): New.
4129 (section.header): Use it.
4130 (section.yacc): Remove.
4131 (prefix): Remove too.
4132 * src/scan-skel.l: Adjust.
4133 * src/bison.simple, src/bison.hairy: Adjust.
4134
4135 2002-01-09 Akim Demaille <akim@epita.fr>
4136
4137 * configure.in (WERROR_CFLAGS): Compute it.
4138 * src/Makefile.am (CFLAGS): Pass it.
4139 * tests/atlocal.in (CFLAGS): Idem.
4140 * src/files.c: Fix a few warnings.
4141 (get_extension_index): Remove, unused.
4142
4143 2002-01-08 Akim Demaille <akim@epita.fr>
4144
4145 * src/getargs.c (AS_FILE_NAME): New.
4146 (getargs): Use it to convert DOSish file names.
4147 * src/files.c (base_name): Rename as full_base_name to avoid
4148 clashes with `base_name ()'.
4149 (filename_split): New.
4150 (compute_base_names): N-th rewrite, using filename_split.
4151
4152 2002-01-08 Akim Demaille <akim@epita.fr>
4153
4154 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
4155 New, stolen from the Fileutils 4.1.
4156 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
4157 * configure.in: Check for the presence of memrchr, and of its
4158 prototype.
4159
4160 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
4161
4162 * lib/hash.h (__P): Added definition for this macro.
4163 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
4164 BUILT_SOURCES, to ensure they are generated first.
4165 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
4166 %error-verbose to allow bootstrapping with bison 1.30x.
4167
4168 2002-01-06 Akim Demaille <akim@epita.fr>
4169
4170 * src/reader.c (parse_braces): Don't fetch the next char, the
4171 convention is to fetch on entry.
4172 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
4173 'switch' without a following semicolon.
4174 * tests/regression.at (braces parsing): New.
4175
4176 2002-01-06 Akim Demaille <akim@epita.fr>
4177
4178 Bison is dead wrong in its RR conflict reports.
4179
4180 * tests/torture.at (GNU Cim Grammar): New.
4181 * src/conflicts.c (count_rr_conflicts): Fix.
4182
4183 2002-01-06 Akim Demaille <akim@epita.fr>
4184
4185 Creating package.m4 from configure.ac causes too many problems.
4186
4187 * tests/Makefile.am (package.m4): Create it by hand,
4188 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
4189
4190 2002-01-06 Akim Demaille <akim@epita.fr>
4191
4192 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
4193 skeleton.h.
4194
4195 2002-01-04 Paul Eggert <eggert@twinsun.com>
4196
4197 * doc/bison.texinfo (Debugging):
4198 Remove YYSTDERR; it's no longer defined or used.
4199 Also, s/cstdio.h/cstdio/.
4200
4201 2002-01-03 Akim Demaille <akim@epita.fr>
4202
4203 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
4204
4205 2002-01-03 Akim Demaille <akim@epita.fr>
4206
4207 * src/parse-skel.y (process_skeleton): Don't bind the parser's
4208 tracing code to --trace, wait for a better --trace option, with
4209 args.
4210
4211 2002-01-03 Akim Demaille <akim@epita.fr>
4212
4213 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
4214 The ISO C++ standard is extremely clear about it: stderr is
4215 considered a macro, not a regular symbol (see table 94 `Header
4216 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
4217 Therefore std:: does not apply to it. It still does with fprintf.
4218 Also, s/cstdio.h/cstdio/.
4219
4220 2002-01-03 Akim Demaille <akim@epita.fr>
4221
4222 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
4223 for non system headers.
4224
4225 2002-01-02 Akim Demaille <akim@epita.fr>
4226
4227 Equip the skeleton chain with location tracking, runtime trace,
4228 pure parser and scanner.
4229
4230 * src/parse-skel.y: Request a pure parser, locations, and prefix
4231 renaming.
4232 (%union): Having several members with the same type does not help
4233 type mismatches, simplify.
4234 (YYPRINT, yyprint): New.
4235 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
4236 (skel_error): this.
4237 Handle locations.
4238 * src/scan-skel.l: Adjust to these changes.
4239 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
4240 (LOCATION_PRINT, skel_control_t): New.
4241
4242 2001-12-30 Akim Demaille <akim@epita.fr>
4243
4244 * src/parse-skel.y: Get rid of the shift/reduce conflict:
4245 replace `gb' with BLANKS.
4246 * src/scan-skel.l: Adjust.
4247
4248 2001-12-30 Akim Demaille <akim@epita.fr>
4249
4250 * src/system.h: We don't need nor want bcopy.
4251 Throw away MS-DOS crap: we don't need getpid.
4252 * configure.in: We don't need strndup. It was even causing
4253 problems: because Flex includes the headers *before* us,
4254 _GNU_SOURCE is not defined by config.h, and therefore strndup was
4255 not visible.
4256 * lib/xstrndup.c: New.
4257 * src/scan-skel.l: Use it.
4258 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
4259 * src/parse-skel.y: Use %directives instead of #defines.
4260
4261 2001-12-30 Akim Demaille <akim@epita.fr>
4262
4263 * src/skeleton.h: New.
4264 * src/output.c (output_parser, output_master_parser): Remove, dead
4265 code.
4266 * src/output.h (get_lines_number, actions_output, guards_output)
4267 (token_definitions_output): Prototype them.
4268 * src/parse-skel.y: Add the license notice.
4269 Include output.h and skeleton.h.
4270 (process_skeleton): Returns void, and takes a single parameter.
4271 * src/scan-skel.l: Add the license notice.
4272 Include skeleton.h.
4273 Don't use %option yylineno: it seems that then Flex imagines
4274 REJECT has been used, and therefore it won't reallocate its
4275 buffers (which makes no other sense to me than a bug). It results
4276 in warnings for `unused: yy_flex_realloc'.
4277
4278 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
4279
4280 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4281 (MUSCLE_INSERT_PREFIX): ...to there.
4282 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4283 (MUSCLE_INSERT_PREFIX): Move from here...
4284
4285 * src/bison.hairy: Add a section directive. Put braces around muscle
4286 names. This parser skeleton is still broken, but Bison should not
4287 choke on a bad muscle 'syntax'.
4288 * src/bison.simple: Add a section directive. Put braces around muscle
4289 names.
4290
4291 * src/files.h (strsuffix, stringappend): Add declarations.
4292 (tab_extension): Add declaration.
4293 (short_base_name): Add declaration.
4294
4295 * src/files.c (strsuffix, stringappend): No longer static. These
4296 functions are used in the skeleton parser.
4297 (tab_extension): New.
4298 (compute_base_names): Use the computations done in this function
4299 to guess if the generated parsers should have '.tab' in their
4300 names.
4301 (short_base_name): No longer static.
4302
4303 * src/output.c (output_skeleton): New.
4304 (output): Disable call to output_master_parser, and give a try to
4305 a new skeleton handling system.
4306 (guards_output, actions_output): No longer static.
4307 (token_definitions_output, get_lines_number): No longer static.
4308
4309 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
4310
4311 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
4312 parse-skel.y.
4313
4314 * src/parse-skel.y: New file.
4315 * src/scan-skel.l: New file.
4316
4317 2001-12-29 Akim Demaille <akim@epita.fr>
4318
4319 %name-prefix is broken.
4320
4321 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
4322 Adjust all dependencies.
4323 * tests/headers.at (export YYLTYPE): Strengthen this test: use
4324 %name-prefix.
4325
4326 Renaming yylval but not yylloc is not consistent. Now we do.
4327
4328 * src/bison.simple: Prefix yylloc if used.
4329 * doc/bison.texinfo (Decl Summary): Document that.
4330
4331 2001-12-29 Akim Demaille <akim@epita.fr>
4332
4333 * doc/bison.texinfo: Promote `%long-directive' over
4334 `%long_directive'.
4335 Remove all references to fixed-output-files, yacc is enough.
4336
4337 2001-12-29 Akim Demaille <akim@epita.fr>
4338
4339 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
4340 user prologue. These are defaults.
4341 * tests/actions.at (Mid-rule actions): Make sure the user can
4342 define YYDEBUG and YYERROR_VERBOSE.
4343
4344 2001-12-29 Akim Demaille <akim@epita.fr>
4345
4346 * src/output.c (header_output): Don't forget to export YYLTYPE and
4347 yylloc.
4348 * tests/headers.at (export YYLTYPE): New, make sure it does.
4349 * tests/regression.at (%union and --defines, Invalid CPP headers):
4350 Move to...
4351 * tests/headers.at: here.
4352
4353 2001-12-29 Akim Demaille <akim@epita.fr>
4354
4355 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
4356
4357 2001-12-29 Akim Demaille <akim@epita.fr>
4358
4359 * tests/actions.at (Mid-rule actions): Output on a single line
4360 instead of several.
4361
4362 2001-12-29 Akim Demaille <akim@epita.fr>
4363
4364 * doc/bison.texinfo: Formatting changes.
4365
4366 2001-12-29 Akim Demaille <akim@epita.fr>
4367
4368 Don't store the token defs in a muscle, just be ready to output it
4369 on command. Now possible via `symbols'. Fixes a memory leak.
4370
4371 * src/output.c (token_definitions_output): New.
4372 (output_parser, header_output): Use it.
4373 * src/reader.c (symbols_save): Remove.
4374
4375 2001-12-29 Akim Demaille <akim@epita.fr>
4376
4377 * src/bison.simple: Do not provide a default for YYSTYPE and
4378 YYLTYPE before the user's prologue. Otherwise it's hardly... a
4379 default.
4380
4381 2001-12-29 Akim Demaille <akim@epita.fr>
4382
4383 Mid-rule actions are simply... ignored!
4384
4385 * src/reader.c (readgram): Be sure to attach mid-rule actions to
4386 the empty-rule associated to the dummy symbol, not to the host
4387 rule.
4388 * tests/actions.at (Mid-rule actions): New.
4389
4390 2001-12-29 Akim Demaille <akim@epita.fr>
4391
4392 Memory leak.
4393
4394 * src/reader.c (reader): Free grammar.
4395
4396 2001-12-29 Akim Demaille <akim@epita.fr>
4397
4398 Memory leak.
4399
4400 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
4401 since it allocates it for each state, although only one is needed.
4402 (allocate_storage): Do it here.
4403
4404 2001-12-29 Akim Demaille <akim@epita.fr>
4405
4406 * src/options.h, src/options.c (create_long_option_table): Rename
4407 as...
4408 (long_option_table_new): this, with a clearer prototype.
4409 (percent_table): Remove, unused,
4410 * src/getargs.c (getargs): Adjust.
4411
4412 2001-12-29 Akim Demaille <akim@epita.fr>
4413
4414 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
4415 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
4416 as states.
4417
4418 2001-12-29 Akim Demaille <akim@epita.fr>
4419
4420 * src/lalr.c (build_relations): Rename `states' as `states1'.
4421 Sorry, I don't understand exactly what it is, no better name...
4422
4423 2001-12-29 Akim Demaille <akim@epita.fr>
4424
4425 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
4426 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
4427 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
4428 as rules.
4429
4430 2001-12-29 Akim Demaille <akim@epita.fr>
4431
4432 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
4433 ago.
4434
4435 2001-12-29 Akim Demaille <akim@epita.fr>
4436
4437 * src/reader.c, src/reader.h (user_toknums): Remove.
4438 Adjust all users to use symbols[i]->user_token_number.
4439
4440 2001-12-29 Akim Demaille <akim@epita.fr>
4441
4442 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
4443 Adjust all users to use symbols[i]->prec or ->assoc.
4444
4445 2001-12-29 Akim Demaille <akim@epita.fr>
4446
4447 * src/reader.c, src/reader.h (tags): Remove.
4448 Adjust all users to use symbols[i]->tag.
4449
4450 2001-12-29 Akim Demaille <akim@epita.fr>
4451
4452 * src/gram.h, src/gram.c (symbols): New, similar to state_table
4453 and rule_table.
4454 * src/reader.c (packsymbols): Fill this table.
4455 Drop sprec.
4456 * src/conflicts.c (resolve_sr_conflict): Adjust.
4457 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
4458 single table.
4459 Use symbols[i]->tag instead of tags[i].
4460
4461 2001-12-29 Akim Demaille <akim@epita.fr>
4462
4463 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
4464 In addition, put a comment in there, to replace...
4465 * tests/regression.at (%union and C comments): Remove.
4466
4467 2001-12-29 Akim Demaille <akim@epita.fr>
4468
4469 * tests/regression.at (Web2c Actions): Blindly move the actual
4470 output as expected output. The contents *seem* right to me, but I
4471 can't pretend reading perfectly parser tables... Nonetheless, all
4472 the other tests pass correctly, the table look OK, even though the
4473 presence of `$axiom' is to be noted: AFAICS it is useless (but
4474 harmless).
4475
4476 2001-12-29 Akim Demaille <akim@epita.fr>
4477
4478 * src/reader.c (readgram): Don't add the rule 0 if there were no
4479 rules read. In other words, add it _after_ having performed
4480 grammar sanity checks.
4481 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
4482
4483 2001-12-29 Akim Demaille <akim@epita.fr>
4484
4485 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
4486 visible, and some states have now a different number.
4487
4488 2001-12-29 Akim Demaille <akim@epita.fr>
4489
4490 * src/reader.c (readgram): Bind the initial rule's lineno to that
4491 of the first rule.
4492 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
4493 (Solved SR Conflicts): Adjust rule 0's line number.
4494
4495 2001-12-29 Akim Demaille <akim@epita.fr>
4496
4497 Fix the `GAWK Grammar' failure.
4498
4499 * src/LR0.c (final_state): Initialize to -1 so that we do compute
4500 the reductions of the first state which was mistakenly confused
4501 with the final state because precisely final_state was initialized
4502 to 0.
4503 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
4504 now noticed by Bison.
4505 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
4506 have a reduction on $default.
4507
4508 2001-12-29 Akim Demaille <akim@epita.fr>
4509
4510 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
4511 rule line numbers.
4512 * src/closure.c (print_closure): Likewise.
4513 * src/derives.c (print_derives): Likewise.
4514 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
4515 now.
4516
4517 2001-12-29 Akim Demaille <akim@epita.fr>
4518
4519 * src/lalr.c (lookaheads_print): New.
4520 (lalr): Call it when --trace-flag.
4521 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
4522 are dumped.
4523
4524 2001-12-29 Akim Demaille <akim@epita.fr>
4525
4526 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
4527 when walking through ritem, even via rule->rhs.
4528 * src/reduce.c (dump_grammar, useful_production, reduce_output)
4529 (useful_production, useless_nonterminals): Likewise.
4530 (reduce_grammar_tables): Likewise, plus update nritems.
4531 * src/nullable.c (set_nullable): Likewise.
4532 * src/lalr.c (build_relations): Likewise.
4533 * tests/sets.at (Nullable): Adjust.
4534 Fortunately, now, the $axiom is no longer nullable.
4535
4536 2001-12-29 Akim Demaille <akim@epita.fr>
4537
4538 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
4539 the 0-sentinel.
4540 * src/gram.c (ritem_longest_rhs): Likewise.
4541 * src/reduce.c (nonterminals_reduce): Likewise.
4542 * src/print_graph.c (print_graph): Likewise.
4543 * src/output.c (output_rule_data): Likewise.
4544 * src/nullable.c (set_nullable): Likewise.
4545
4546 2001-12-29 Akim Demaille <akim@epita.fr>
4547
4548 * src/output.c: Comment changes.
4549
4550 2001-12-27 Paul Eggert <eggert@twinsun.com>
4551
4552 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
4553 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
4554 Sparc, as they were causing more porting problems than the
4555 (minor) performance improvement was worth.
4556
4557 Also, catch up with 1.31's YYSTD.
4558
4559 2001-12-27 Akim Demaille <akim@epita.fr>
4560
4561 * src/output.c (output_gram): Rely on nritems, not the
4562 0-sentinel. See below.
4563 Use -1 as separator, not 0.
4564 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
4565 Rely on -1 as separator in yyrhs, instead of 0.
4566 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
4567 twice `Now at end of input', therefore there are two lines less to
4568 expect.
4569
4570 2001-12-27 Akim Demaille <akim@epita.fr>
4571
4572 * tests/regression.at (Unresolved SR Conflicts):
4573 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
4574 below.
4575
4576 2001-12-27 Akim Demaille <akim@epita.fr>
4577
4578 * src/LR0.c (new_state): Recognize the final state by the fact it
4579 is reached by eoftoken.
4580 (insert_start_shifting_state, insert_eof_shifting_state)
4581 (insert_accepting_state, augment_automaton): Remove, since now
4582 these states are automatically computed from the initial state.
4583 (generate_states): Adjust.
4584 * src/print.c: When reporting a rule number to the user, substract
4585 1, so that the axiom rule is rule 0, and the first user rule is 1.
4586 * src/reduce.c: Likewise.
4587 * src/print_graph.c (print_core): For the time being, just as for
4588 the report, depend upon --trace-flags to dump the full set of
4589 items.
4590 * src/reader.c (readgram): Once the grammar read, insert the rule
4591 0: `$axiom: START-SYMBOL $'.
4592 * tests/set.at: Adjust: rule 0 is now displayed, and since the
4593 number of the states has changed (the final state is no longer
4594 necessarily the last), catch up.
4595
4596 2001-12-27 Akim Demaille <akim@epita.fr>
4597
4598 Try to make the use of the eoftoken valid. Given that its value
4599 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
4600 is used instead of > 0 where appropriate, (ii), depend upon nritems
4601 instead of the 0-sentinel.
4602
4603 * src/gram.h, src/gram.c (nritems): New.
4604 Expected to be duplication of nitems, but for the time being...
4605 * src/reader.c (packgram): Assert nritems and nitems are equal.
4606 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
4607 * src/closure.c (print_closure, print_fderives): Likewise.
4608 * src/gram.c (ritem_print): Likewise.
4609 * src/print.c (print_core, print_grammar): Likewise.
4610 * src/print_graph.c: Likewise.
4611
4612 2001-12-27 Akim Demaille <akim@epita.fr>
4613
4614 * src/main.c (main): If there are complains after grammar
4615 reductions, then output the report anyway if requested, then die.
4616 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
4617 * src/reader.c (eoftoken): New.
4618 (parse_token_decl): If the token being defined has value `0', it
4619 is the eoftoken.
4620 (packsymbols): No longer hack `tags' to insert `$' by hand.
4621 Be sure to preserve the value of the eoftoken.
4622 (reader): Make sure eoftoken is defined.
4623 Initialize nsyms to 0: now eoftoken is created just like the others.
4624 * src/print.c (print_grammar): Don't special case the eof token.
4625 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
4626 lie anyway, albeit pleasant.
4627 * tests/calc.at: Exercise error messages with eoftoken.
4628 Change the grammar so that empty input is invalid.
4629 Adjust expectations.
4630 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
4631
4632 2001-12-27 Akim Demaille <akim@epita.fr>
4633
4634 * configure.in: Check the protos of strchr ans strspn.
4635 Replace strchr if needed.
4636 * src/system.h: Provide the protos of strchr, strspn and memchr if
4637 missing.
4638 * lib/strchr.c: New.
4639 * src/reader.c (symbols_save): Use strchr.
4640
4641 2001-12-27 Akim Demaille <akim@epita.fr>
4642
4643 * src/print.c, src/print_graph.c (escape): New.
4644 Use it to quote the TAGS outputs.
4645 * src/print_graph.c (print_state): Now errors are in red, and
4646 reductions in green.
4647 Prefer high to wide: output the state number on a line of its own.
4648
4649 2001-12-27 Akim Demaille <akim@epita.fr>
4650
4651 * src/state.h, src/state.c (reductions_new): New.
4652 * src/LR0.c (set_state_table): Let all the states have a
4653 `reductions', even if reduced to 0.
4654 (save_reductions): Adjust.
4655 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
4656 * src/print.c (print_reductions, print_actions): Adjust.
4657 * src/output.c (action_row): Adjust.
4658
4659 2001-12-27 Akim Demaille <akim@epita.fr>
4660
4661 * src/state.h, src/state.c (errs_new, errs_dup): New.
4662 * src/LR0.c (set_state_table): Let all the states have an errs,
4663 even if reduced to 0.
4664 * src/print.c (print_errs, print_reductions): Adjust.
4665 * src/output.c (output_actions, action_row): Adjust.
4666 * src/conflicts.c (resolve_sr_conflict): Adjust.
4667
4668 2001-12-27 Akim Demaille <akim@epita.fr>
4669
4670 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
4671
4672 2001-12-27 Akim Demaille <akim@epita.fr>
4673
4674 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
4675 * src/print.c: here.
4676 (lookaheadset, shiftset): New, used as additional storage by
4677 print_reductions.
4678 (print_results): Adjust.
4679 (print_shifts, print_gotos, print_errs): New, extracted from...
4680 (print_actions): here.
4681 * src/print_graph.c (print_actions): Remove dead code.
4682
4683 2001-12-27 Akim Demaille <akim@epita.fr>
4684
4685 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
4686 `$n' and `@n'.
4687
4688 2001-12-27 Akim Demaille <akim@epita.fr>
4689
4690 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
4691 (build_relations): Adjust.
4692
4693 2001-12-27 Akim Demaille <akim@epita.fr>
4694
4695 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
4696 duplication.
4697
4698 2001-12-27 Akim Demaille <akim@epita.fr>
4699
4700 * src/reader.c (packgram): Catch nitems overflows.
4701
4702 2001-12-27 Akim Demaille <akim@epita.fr>
4703
4704 * src/files.c, src/files.h (guard_obstack): Remove.
4705 * src/output.c (output): Adjust.
4706 * src/reader.c (parse_braces): New, factoring...
4707 (copy_action, copy_guard): these two which are renamed as...
4708 (parse_action, parse_guard): these.
4709 As a voluntary consequence, using braces around guards is now
4710 mandatory.
4711
4712 2001-12-27 Akim Demaille <akim@epita.fr>
4713
4714 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
4715 * src/reader.c (symbol_list): `guard' and `guard_line' are new
4716 members.
4717 (symbol_list_new): Adjust.
4718 (copy_action): action_line is the first line, not the last.
4719 (copy_guard): Just as for actions, store the `action' only, not
4720 the switch/case/break flesh.
4721 Don't parse the user action that might follow the guard, let...
4722 (readgram): do it, i.e., now, there can be an action after a
4723 guard.
4724 In other words the guard is just explicitly optional.
4725 (packgram): Adjust.
4726 * src/output.c (guards_output): New.
4727 (output_parser): Call it when needed.
4728 (output): Also free the guard and attrs obstacks.
4729 * src/files.c, src/files.h (obstack_save): Remove.
4730 (output_files): Remove.
4731 As a result, if one needs the former `.act' file, using an
4732 appropriate skeleton which requires actions and guards is now
4733 required.
4734 * src/main.c (main): Adjust.
4735 * tests/semantic.at: New.
4736 * tests/regression.at: Use `input.y' as input file name.
4737 Avoid 8+3 problems by requiring input.c when the test needs the
4738 parser.
4739
4740 2001-12-27 Akim Demaille <akim@epita.fr>
4741
4742 * src/reader.c (symbol_list_new): Be sure to initialize all the
4743 fields.
4744
4745 2001-12-27 Akim Demaille <akim@epita.fr>
4746
4747 All the hacks using a final pseudo state are now useless.
4748
4749 * src/LR0.c (set_state_table): state_table holds exactly nstates.
4750 * src/lalr.c (nLA): New.
4751 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
4752 instead of lookaheadsp from the pseudo state (nstate + 1).
4753
4754 2001-12-27 Akim Demaille <akim@epita.fr>
4755
4756 * src/output.c (action_row, token_actions): Use a state_t instead
4757 of a integer, and nlookaheads instead of the following state's
4758 lookaheadsp.
4759
4760 2001-12-27 Akim Demaille <akim@epita.fr>
4761
4762 * src/conflicts.c (log_resolution, flush_shift)
4763 (resolve_sr_conflict, set_conflicts, solve_conflicts)
4764 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
4765 (conflicts_print, print_reductions): Use a state_t instead of an
4766 integer when referring to a state.
4767 As much as possible, depend upon nlookaheads, instead of the
4768 `lookaheadsp' member of the following state (since lookaheads of
4769 successive states are successive, the difference between state n + 1
4770 and n served as the number of lookaheads for state n).
4771 * src/lalr.c (add_lookback_edge): Likewise.
4772 * src/print.c (print_core, print_actions, print_state)
4773 (print_results): Likewise.
4774 * src/print_graph.c (print_core, print_actions, print_state)
4775 (print_graph): Likewise.
4776 * src/conflicts.h: Adjust.
4777
4778 2001-12-27 Akim Demaille <akim@epita.fr>
4779
4780 * src/bison.hairy: Formatting/comment changes.
4781 ANSIfy.
4782 Remove `register' indications.
4783 Add plenty of `static'.
4784
4785 2001-12-27 Akim Demaille <akim@epita.fr>
4786
4787 * src/output.c (prepare): Drop the muscle `ntbase' which
4788 duplicates ntokens.
4789 * src/bison.simple: Formatting/comment changes.
4790 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
4791 is an undocumented synonym.
4792
4793 2001-12-22 Akim Demaille <akim@epita.fr>
4794
4795 * src/output.c (output_table_data): Change the prototype to use
4796 `int' for array ranges: some invocations do pass an int, not a
4797 short.
4798 Reported by Wayne Green.
4799
4800 2001-12-22 Akim Demaille <akim@epita.fr>
4801
4802 Some actions of web2c.y are improperly triggered.
4803 Reported by Mike Castle.
4804
4805 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
4806 * tests/regression.at (Web2c): Rename as...
4807 (Web2c Report): this.
4808 (Web2c Actions): New.
4809
4810 2001-12-22 Akim Demaille <akim@epita.fr>
4811
4812 Reductions in web2c.y are improperly reported.
4813 Reported by Mike Castle.
4814
4815 * src/conflicts.c (print_reductions): Fix.
4816 * tests/regression.at (Web2c): New.
4817
4818 2001-12-18 Akim Demaille <akim@epita.fr>
4819
4820 Some host fail on `assert (!"foo")', which expands to
4821 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
4822 Reported by Nelson Beebee.
4823
4824 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
4825 `#define it_succeeded 0' and `assert (it_succeeded)'.
4826
4827 2001-12-17 Marc Autret <autret_m@epita.fr>
4828
4829 * src/bison.simple: Don't hard code the skeleton line and filename.
4830 * src/output.c (output_parser): Rename 'line' as 'output_line'.
4831 New line counter 'skeleton_line' (skeleton-line muscle).
4832
4833 2001-12-17 Paul Eggert <eggert@twinsun.com>
4834
4835 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
4836 YYDEBUG must be defined to a nonzero value.
4837
4838 * src/bison.simple (yytname): Do not assume that the user defines
4839 YYDEBUG to a properly parenthesized expression.
4840
4841 2001-12-17 Akim Demaille <akim@epita.fr>
4842
4843 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
4844 nlookaheads is a new member.
4845 Adjust all users.
4846 * src/lalr.h (nlookaheads): Remove this orphan declaration.
4847 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
4848 state.
4849
4850 2001-12-17 Akim Demaille <akim@epita.fr>
4851
4852 * src/files.h, src/files.c (open_files, close_files): Remove.
4853 * src/main.c (main): Don't open/close files, nor invoke lex_free,
4854 let...
4855 * src/reader.c (reader): Do it.
4856
4857 2001-12-17 Akim Demaille <akim@epita.fr>
4858
4859 * src/conflicts.c (print_reductions): Formatting changes.
4860
4861 2001-12-17 Akim Demaille <akim@epita.fr>
4862
4863 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
4864 (flush_reduce): New.
4865 (resolve_sr_conflict): Adjust.
4866
4867 2001-12-17 Akim Demaille <akim@epita.fr>
4868
4869 * src/output.c (output_obstack): Be static and rename as...
4870 (format_obstack): this, to avoid any confusion with files.c's
4871 output_obstack.
4872 * src/reader.h (muscle_obstack): Move to...
4873 * src/output.h: here, since it's defined in output.c.
4874
4875 2001-12-17 Akim Demaille <akim@epita.fr>
4876
4877 * src/output.c (action_row, save_column, default_goto)
4878 (sort_actions, matching_state, pack_vector): Better variable
4879 locality.
4880
4881 2001-12-17 Akim Demaille <akim@epita.fr>
4882
4883 * src/output.c: Various formatting changes.
4884
4885 2001-12-17 Akim Demaille <akim@epita.fr>
4886
4887 * src/files.c (output_files): Free the output_obstack.
4888 * src/main.c (main): Call print and print_graph conditionally.
4889 * src/print.c (print): Work unconditionally.
4890 * src/print_graph.c (print_graph): Work unconditionally.
4891 * src/conflicts.c (log_resolution): Output only if verbose_flag.
4892
4893 2001-12-16 Marc Autret <autret_m@epita.fr>
4894
4895 * src/output.c (actions_output): Fix. When we use %no-lines,
4896 there is one less line per action.
4897
4898 2001-12-16 Marc Autret <autret_m@epita.fr>
4899
4900 * src/bison.simple: Remove a useless #line directive.
4901 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
4902 * src/output.c (get_lines_number): New.
4903 (output_parser): Adjust, now takes care about the lines of a
4904 output muscles.
4905 Fix line numbering.
4906 (actions_output): Computes the number of lines taken by actions.
4907 (output_master_parser): Insert new skeleton which is the name of
4908 the output parser file name.
4909
4910 2001-12-15 Marc Autret <autret_m@epita.fr>
4911
4912 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
4913
4914 2001-12-15 Marc Autret <autret_m@epita.fr>
4915
4916 * src/output.c (output_gram): Keep track of the hairy one.
4917
4918 2001-12-15 Akim Demaille <akim@epita.fr>
4919
4920 Make `make distcheck' work.
4921
4922 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
4923 system.h which uses libgettext.h.
4924
4925 2001-12-15 Akim Demaille <akim@epita.fr>
4926
4927 * src/nullable.c (set_nullable): Useless rules must be skipped,
4928 otherwise, since we range over their symbols, we might look at a
4929 nonterminal which no longer ``exists'', i.e., it is not counted in
4930 `nvars', hence we overflow our arrays.
4931
4932 2001-12-15 Akim Demaille <akim@epita.fr>
4933
4934 The header can also be produced directly, without any obstack!
4935 Yahoo!
4936
4937 * src/files.c, src/files.h (defines_obstack): Remove.
4938 (compute_header_macro): Global.
4939 (defines_obstack_save): Remove.
4940 * src/reader.c (parse_union_decl): No longer output to
4941 defines_obstack: its content can be found in the `stype' muscle
4942 anyway.
4943 (output_token_translations): Merge into...
4944 (symbols_output): this.
4945 Rename as...
4946 (symbols_save): this.
4947 (reader): Adjust.
4948 * src/output.c (header_output): New.
4949 (output): Call it.
4950
4951 2001-12-15 Akim Demaille <akim@epita.fr>
4952
4953 * src/reader.c (parse_union_decl): Instead of handling two obstack
4954 simultaneously, use one to define the `stype' muscle, and use the
4955 value of the latter to fill defines_obstack.
4956 (copy_comment): Remove.
4957 (copy_comment2): Work for a single obstack.
4958 Rename as...
4959 (copy_comment): this.
4960
4961 2001-12-15 Akim Demaille <akim@epita.fr>
4962
4963 * src/lex.c, src/lex.h (xgetc): No longer static.
4964 * src/reader.c (parse_union_decl): Revamp.
4965
4966 2001-12-15 Akim Demaille <akim@epita.fr>
4967
4968 Still making progress in separating Bison into (i) input, (ii)
4969 process, (iii) output: now we can directly output the parser file
4970 without using table_obstack at all.
4971
4972 * src/files.c, src/files.h (table_obstack): Bye bye.
4973 (parser_file_name): New.
4974 * src/files.c (compute_output_file_names): Compute it.
4975 * src/output.c (actions_output, output_parser)
4976 (output_master_parser): To a file instead of an obstack.
4977
4978 2001-12-15 Akim Demaille <akim@epita.fr>
4979
4980 Attach actions to rules, instead of pre-outputting them to
4981 actions_obstack.
4982
4983 * src/gram.h (rule_t): action and action_line are new members.
4984 * src/reader.c (symbol_list): Likewise.
4985 (copy_action): Save the actions within the rule.
4986 (packgram): Save them in rule_table.
4987 * src/output.c (actions_output): New.
4988 (output_parser): Use it on `%%actions'.
4989 (output_rule_data): Don't free rule_table.
4990 (output): Do it.
4991 (prepare): Don't save the `action' muscle.
4992 * src/bison.simple: s/%%action/%%actions/.
4993
4994 2001-12-15 Akim Demaille <akim@epita.fr>
4995
4996 * src/reader.c (copy_action): When --yacc, don't append a `;'
4997 to the user action: let it fail if lacking.
4998 Suggested by Arnold Robbins and Tom Tromey.
4999
5000 2001-12-14 Akim Demaille <akim@epita.fr>
5001
5002 * src/lex.c (literalchar): Simply return the char you decoded, non
5003 longer mess around with obstacks and int pointers.
5004 Adjust all callers.
5005
5006 2001-12-14 Akim Demaille <akim@epita.fr>
5007
5008 * src/lex.c (literalchar): Don't escape the special characters,
5009 just decode them, and keep them as char (before, eol was output as
5010 the 2 char string `\n' etc.).
5011 * src/output.c (output_rule_data): Use quotearg to output the
5012 token strings.
5013
5014 2001-12-13 Paul Eggert <eggert@twinsun.com>
5015
5016 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
5017 Do not infringe on the global user namespace when using C++.
5018 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
5019 All uses of `fprintf' and `stderr' changed.
5020
5021 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
5022
5023 2001-12-13 Akim Demaille <akim@epita.fr>
5024
5025 The computation of nullable is broken: it doesn't handle empty
5026 RHS's properly.
5027
5028 * tests/torture.at (GNU AWK Grammar): New.
5029 * tests/sets.at (Nullable): New.
5030 * src/nullable.c (set_nullable): Instead of blindly looping over
5031 `ritems', loop over the rules, and then over their rhs's.
5032
5033 Work around Autotest bugs.
5034
5035 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
5036 frame, because Autotest understand lines starting with a `+' as
5037 traces from the shell. Then, they are not processed properly.
5038 Admittedly an Autotest bug, but we don't have time to wait for
5039 Autotest to catch up.
5040 * tests/regression.at (Broken Closure): Adjust to the new table
5041 frames.
5042 Move to...
5043 * tests/sets.at: here.
5044
5045 2001-12-13 Akim Demaille <akim@epita.fr>
5046
5047 * src/closure.c (closure): Use nrules instead of playing tricks
5048 with BITS_PER_WORD.
5049
5050 2001-12-13 Akim Demaille <akim@epita.fr>
5051
5052 * src/print.c (print_actions): Output the handling of `$' as the
5053 traces do: shifting the token EOF. Before EOF was treated as a
5054 nonterminal.
5055 * tests/regression.at: Adjust some tests.
5056 * src/print_graph.c (print_core): Complete the set of items via
5057 closure. The next-to-final and final states are still unsatisfying,
5058 but that's to be addressed elsewhere.
5059 No longer output the rule numbers, but do output the state number.
5060 A single loop for the shifts + gotos is enough, but picked a
5061 distinct color for each.
5062 (print_graph): Initialize and finalize closure.
5063
5064 2001-12-13 Akim Demaille <akim@epita.fr>
5065
5066 * src/reader.c (readgram): Remove dead code, an strip useless
5067 braces.
5068 (get_type): Remove, unused.
5069
5070 2001-12-12 Akim Demaille <akim@epita.fr>
5071
5072 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
5073 on that of lib/error.c.
5074
5075 2001-12-12 Akim Demaille <akim@epita.fr>
5076
5077 Some hosts don't like `/' in includes.
5078
5079 * src/system.h: Include libgettext.h without qualifying the path.
5080 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
5081 $(top_srcdir).
5082
5083 2001-12-11 Marc Autret <autret_m@epita.fr>
5084
5085 * src/output.c (output_parser): Remove useless muscle.
5086
5087 2001-12-11 Marc Autret <autret_m@epita.fr>
5088
5089 * src/bison.simple: Remove #line just before %%epilogue. It
5090 is now handled in ...
5091 * src/reader.c (read_additionnal_code): Add the output of a
5092 #line for the epilogue.
5093
5094 2001-12-10 Marc Autret <autret_m@epita.fr>
5095
5096 * src/reader.c (copy_definition): Re-use CPP-outed code which
5097 replace precedent remove.
5098 * src/bison.simple: Remove #line before %%prologue because
5099 %%input-line is wrong at this time.
5100
5101 2001-12-10 Marc Autret <autret_m@epita.fr>
5102
5103 * src/reader.c (symbols_output): Clean up.
5104 * src/output.c (output_gram, output): Clean up.
5105
5106 2001-12-10 Akim Demaille <akim@epita.fr>
5107
5108 * src/lalr.c (initialize_lookaheads): New. Extracted from...
5109 * src/LR0.c (set_state_table): here.
5110 * src/lalr.c (lalr): Call it.
5111
5112 2001-12-10 Akim Demaille <akim@epita.fr>
5113
5114 * src/state.h (shifts): Remove the `number' member: shifts are
5115 attached to state, hence no longer need to be labelled with a
5116 state number.
5117
5118 2001-12-10 Akim Demaille <akim@epita.fr>
5119
5120 Now that states have a complete set of members, the linked list of
5121 shifts is useless: just fill directly the state's shifts member.
5122
5123 * src/state.h (shifts): Remove the `next' member.
5124 * src/LR0.c (first_state, last_state): Remove.
5125 Adjust the callers.
5126 (augment_automaton): Don't look for the shifts that must be added
5127 a shift on EOF: it is those of the state we looked for! But now,
5128 since shifts are attached, it is no longer needed to looking
5129 merely by its id: its number.
5130
5131 2001-12-10 Akim Demaille <akim@epita.fr>
5132
5133 * src/LR0.c (augment_automaton): Better variable locality.
5134 Remove an impossible branch: if there is a state corresponding to
5135 the start symbol being shifted, then there is shift for the start
5136 symbol from the initial state.
5137
5138 2001-12-10 Akim Demaille <akim@epita.fr>
5139
5140 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
5141 only when appropriate: when insert_start_shifting_state' is not
5142 invoked.
5143 * tests/regression.at (Rule Line Numbers): Adjust.
5144
5145 2001-12-10 Akim Demaille <akim@epita.fr>
5146
5147 * src/LR0.c (augment_automaton): Now that all states have shifts,
5148 merge the two cases addition shifts to the initial state.
5149
5150 2001-12-10 Akim Demaille <akim@epita.fr>
5151
5152 * src/lalr.c (set_state_table): Move to...
5153 * src/LR0.c: here.
5154 * src/lalr.c (lalr): Don't call it...
5155 * src/LR0.c (generate_states): do it.
5156 * src/LR0.h (first_state): Remove, only the table is used.
5157
5158 2001-12-10 Akim Demaille <akim@epita.fr>
5159
5160 * src/LR0.h (first_shift, first_reduction): Remove.
5161 * src/lalr.c: Don't use first_shift: find shifts through the
5162 states.
5163
5164 2001-12-10 Akim Demaille <akim@epita.fr>
5165
5166 * src/LR0.c: Attach shifts to states as soon as they are
5167 computed.
5168 * src/lalr.c (set_state_table): Instead of assigning shifts to
5169 state, just assert that the mapping was properly done.
5170
5171 2001-12-10 Akim Demaille <akim@epita.fr>
5172
5173 * src/LR0.c (insert_start_shift): Rename as...
5174 (insert_start_shifting_state): this.
5175 (insert_eof_shifting_state, insert_accepting_state): New.
5176 (augment_automaton): Adjust.
5177 Better locality of the variables.
5178 When looking if the start_symbol is shifted from the initial
5179 state, using `while (... symbol != start_symbol ...)' sounds
5180 better than `while (... symbol < start_symbol ...)': If fail
5181 to see how the order between symbols could be relevant!
5182
5183 2001-12-10 Akim Demaille <akim@epita.fr>
5184
5185 * src/getargs.h: Don't declare `spec_name_prefix' and
5186 `spec_file_prefix', declared by src/files.h.
5187 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
5188 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
5189 * src/output.c (prepare): Adjust.
5190 * src/reader.c (symbols_output): Likewise.
5191 * src/vmsgetargs.c: Vaguely adjust, but who cares?
5192
5193 2001-12-10 Akim Demaille <akim@epita.fr>
5194
5195 * src/muscle_tab.c (muscle_init): NULL is a better default than
5196 `"0"'.
5197
5198 2001-12-10 Akim Demaille <akim@epita.fr>
5199
5200 * src/reader.c (reader): Calling symbols_output once is enough.
5201
5202 2001-12-10 Akim Demaille <akim@epita.fr>
5203
5204 Now that states have a complete set of members, the linked list of
5205 reductions is useless: just fill directly the state's reductions
5206 member.
5207
5208 * src/state.h (struct reductions): Remove member `number' and
5209 `next'.
5210 * src/LR0.c (first_reduction, last_reduction): Remove.
5211 (save_reductions): Don't link the new reductions, store them in
5212 this_state.
5213 * src/lalr.c (set_state_table): No need to attach reductions to
5214 states, it's already done.
5215 * src/output.c (output_actions): No longer free the shifts, then
5216 the reductions, then the states: free all the states and their
5217 members.
5218
5219 2001-12-10 Akim Demaille <akim@epita.fr>
5220
5221 * src/options.c (OPTN, DRTV, BOTH): New.
5222 (option_table): Use them.
5223
5224 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
5225 the job of system.h.
5226 * src/options.c: Don't include stdio.h and xalloc.h for the same
5227 reasons.
5228
5229 2001-12-10 Akim Demaille <akim@epita.fr>
5230
5231 * src/output.c (output, prepare): Make sure the values of the
5232 muscles `action' and `prologue' are 0-terminated.
5233
5234 2001-12-10 Akim Demaille <akim@epita.fr>
5235
5236 Clean up GCC warnings.
5237
5238 * src/reader.c (copy_action): `buf' is not used.
5239 (parse_skel_decl): Be static.
5240 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
5241 * src/options.h (create_long_option_table): Have a real prototype.
5242 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
5243 (hash_delete_at): Return const void *.
5244 Adjust casts to preserve the const.
5245
5246 2001-12-10 Akim Demaille <akim@epita.fr>
5247
5248 * configure.in: Require 2.52g.
5249 M4 is not needed, but AUTOM4TE is.
5250 * m4/m4.m4: Remove.
5251 * tests/Makefile.am: Adjust.
5252
5253 2001-12-10 Akim Demaille <akim@epita.fr>
5254
5255 One structure for states is enough, even though theoretically
5256 there are LR(0) states and LALR(1) states.
5257
5258 * src/lalr.h (state_t): Remove.
5259 (state_table): Be state_t **, not state_t *.
5260 * src/state.h (core, CORE_ALLOC): Rename as...
5261 (state_t, STATE_ALLOC): this.
5262 Add the LALR(1) members: shifts, reductions, errs.
5263 * src/LR0.c (state_table): Rename as...
5264 (state_hash): this, to avoid name clashes with the global
5265 `state_table'.
5266 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
5267 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
5268
5269 2001-12-10 Akim Demaille <akim@epita.fr>
5270
5271 Bison dumps core on bash.y.
5272 Reported by Pascal Bart.
5273
5274 * src/warshall.c (bitmatrix_print): New.
5275 (TC): Use it.
5276 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
5277 j must be the outer loop.
5278 * tests/regression.at (Broken Closure): New.
5279
5280 2001-12-05 Akim Demaille <akim@epita.fr>
5281
5282 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
5283 its argument.
5284 Reported by Peter Hámorský.
5285
5286 2001-12-05 Akim Demaille <akim@epita.fr>
5287
5288 * src/conflicts.c (err_table): Remove.
5289 (resolve_sr_conflict): Adjust.
5290 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
5291 Rename as...
5292 (state_t.reductions, state_t.shifts): this.
5293
5294 2001-12-05 Akim Demaille <akim@epita.fr>
5295
5296 * src/reduce.c (reduce_grammar_tables): No longer disable the
5297 removal of useless rules via CPP but via `if (0)', so that the
5298 compiler still check the code is valid.
5299 For instance, it should have noticed `rline' no longer exists: use
5300 the `line' member of rule_t.
5301 * src/gram.c (dummy, rline): Remove, unused.
5302
5303 2001-12-05 Akim Demaille <akim@epita.fr>
5304
5305 * src/output.c (pack_vector): Use assert, not berror.
5306 * src/main.c (berror): Remove, unused.
5307
5308 2001-12-05 Akim Demaille <akim@epita.fr>
5309
5310 New experimental feature: if --verbose --trace output all the
5311 items of a state, not only its kernel.
5312
5313 * src/print.c (print_core): If `trace_flag', then invoke closure
5314 before outputting the items of the state (print_core is no longer
5315 a correct name them).
5316 (print_results): Invoke new_closure/free_closure if needed.
5317
5318 2001-12-05 Akim Demaille <akim@epita.fr>
5319
5320 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
5321 * src/closure.c, src/closure.h (itemsetsize): Rename as...
5322 (nitemset): for consistency with the rest of the project.
5323
5324 2001-12-05 Akim Demaille <akim@epita.fr>
5325
5326 * src/closure.c (print_closure): Improve.
5327 (closure): Use it for printing input and output.
5328
5329 2001-12-05 Akim Demaille <akim@epita.fr>
5330
5331 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
5332 indexed by nonterminals.
5333
5334 2001-12-05 Akim Demaille <akim@epita.fr>
5335
5336 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
5337 what it was!).
5338 * src/warshall.h: Remove accidental duplication of the content.
5339
5340 2001-12-05 Akim Demaille <akim@epita.fr>
5341
5342 * src/closure.c (set_fderives): De-obfuscate.
5343
5344 2001-12-05 Akim Demaille <akim@epita.fr>
5345
5346 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
5347
5348 2001-12-05 Akim Demaille <akim@epita.fr>
5349
5350 * src/closure.c (set_firsts): De-obfuscate.
5351
5352 2001-12-05 Akim Demaille <akim@epita.fr>
5353
5354 * src/output.c (action_row): De-obfuscate
5355 using the good o' techniques: arrays not pointers, variable
5356 locality, BITISSET, RESETBIT etc.
5357
5358 2001-12-05 Akim Demaille <akim@epita.fr>
5359
5360 Pessimize the code to simplify it: from now on, all the states
5361 have a valid SHIFTS, which NSHIFTS is possibly 0.
5362
5363 * src/LR0.c (shifts_new): Be global and move to..
5364 * src/state.c, src/state.h: here.
5365 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
5366 * src/print_graph: Adjust.
5367
5368 2001-12-05 Akim Demaille <akim@epita.fr>
5369
5370 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
5371 * src/conflicts.c: Use it.
5372 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
5373 incorrectly ``simplified''.
5374
5375 2001-12-05 Akim Demaille <akim@epita.fr>
5376
5377 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
5378 using the good o' techniques: arrays not pointers, variable
5379 locality, BITISSET, RESETBIT etc.
5380
5381 2001-12-05 Akim Demaille <akim@epita.fr>
5382
5383 * src/state.h (SHIFT_SYMBOL): New.
5384 * src/conflicts.c: Use it to deobfuscate.
5385
5386 2001-12-05 Akim Demaille <akim@epita.fr>
5387
5388 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
5389 (print_reductions): De-obfuscate using the good o' techniques:
5390 arrays not pointers, variable locality, BITISSET.
5391
5392 2001-12-05 Akim Demaille <akim@epita.fr>
5393
5394 * src/conflicts.c (print_reductions): Arrays, not pointers.
5395 Use BITISSET.
5396
5397 2001-12-05 Akim Demaille <akim@epita.fr>
5398
5399 * src/conflicts.c (print_reductions): Pessimize, but clarify.
5400
5401 2001-12-05 Akim Demaille <akim@epita.fr>
5402
5403 * src/conflicts.c (print_reductions): Improve variable locality.
5404
5405 2001-12-05 Akim Demaille <akim@epita.fr>
5406
5407 * src/conflicts.c (print_reductions): Pessimize, but clarify.
5408
5409 2001-12-05 Akim Demaille <akim@epita.fr>
5410
5411 * src/conflicts.c (print_reductions): Improve variable locality.
5412
5413 2001-12-05 Akim Demaille <akim@epita.fr>
5414
5415 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
5416 * src/lalr.c: Use them.
5417
5418 2001-12-05 Akim Demaille <akim@epita.fr>
5419
5420 * src/LR0.c (augment_automaton): Formatting changes.
5421 Better variable locality.
5422
5423 2001-12-05 Akim Demaille <akim@epita.fr>
5424
5425 * src/lalr.c (matrix_print): New.
5426 (transpose): Use it.
5427 Use arrays instead of pointers.
5428
5429 2001-12-05 Akim Demaille <akim@epita.fr>
5430
5431 * src/lalr.c (maxrhs): Move to...
5432 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
5433 * src/lalr.c (build_relations): Adjust.
5434
5435 2001-12-05 Akim Demaille <akim@epita.fr>
5436
5437 * src/lalr.c (transpose): Free the memory allocated to the
5438 argument, as it is replaced by the results by the unique caller.
5439 (build_relations): Merely invoke transpose: it handles the memory
5440 deallocation.
5441 Improve variable locality.
5442 Avoid variables used as mere abbreviations.
5443 (compute_lookaheads): Use arrays instead of pointers.
5444
5445 2001-12-05 Akim Demaille <akim@epita.fr>
5446
5447 * src/lalr.c (initialize_F): Improve variable locality.
5448 Avoid variables used as mere abbreviations.
5449
5450 2001-12-05 Akim Demaille <akim@epita.fr>
5451
5452 * src/derives.c (print_derives): Display the ruleno.
5453 * src/lalr.c (initialize_F, transpose): Better variable locality
5454 to improve readability.
5455 Avoid variables used as mere abbreviations.
5456
5457 2001-12-05 Akim Demaille <akim@epita.fr>
5458
5459 * src/lalr.c (traverse): Use arrays instead of pointers.
5460
5461 2001-12-05 Akim Demaille <akim@epita.fr>
5462
5463 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
5464 the handling of squeue.
5465 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
5466
5467 2001-12-05 Akim Demaille <akim@epita.fr>
5468
5469 Because useless nonterminals are now kept alive (instead of being
5470 `destroyed'), we now sometimes examine them, and store information
5471 related to them. Hence we need to know their number, and adjust
5472 memory allocations.
5473
5474 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
5475 static.
5476 * src/LR0.c (allocate_itemsets): The memory allocated to
5477 `symbol_count' was used for two different purpose: once to count
5478 the number of occurrences of each symbol, and later reassigned to
5479 `shift_symbol', containing the symbol that can be shifted from a
5480 given state.
5481 Deobfuscate, i.e., allocate, use and free `symbol_count' here
5482 only, and...
5483 (new_itemsets): Allocate `shift_symbol' here.
5484 (allocate_itemsets): symbol_count includes useless nonterminals.
5485 Make room for them.
5486 (free_storage): Use `free', not `XFREE', for pointers that cannot
5487 be null.
5488
5489 2001-12-05 Akim Demaille <akim@epita.fr>
5490
5491 * src/nullable.c (set_nullable): Deobfuscate the handling of
5492 ritem.
5493 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
5494
5495 2001-12-05 Akim Demaille <akim@epita.fr>
5496
5497 * src/gram.c, src/gram.h (ritem_print): New.
5498 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
5499 (This useless function was defined only to work around VMS linkers
5500 that can't handle compilation units with variables only).
5501 * src/reduce.c (dump_grammar): Use it to trace the construction of
5502 ritem.
5503
5504 2001-12-04 Paul Eggert <eggert@twinsun.com>
5505
5506 * src/bison.simple (union yyalloc): Change member names
5507 to be the same as the stack names.
5508 (yyparse): yyptr is now union yyalloc *, not char *.
5509 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
5510 and may generate better code on some machines.
5511 (yystpcpy): Use prototype if __STDC__ is defined, not just
5512 if __cplusplus is defined.
5513
5514 2001-11-30 Akim Demaille <akim@epita.fr>
5515
5516 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
5517 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
5518 Gettext doesn't compile cleanly, and dies with -Werror.
5519 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
5520 Include WARNING_CFLAGS here.
5521 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
5522 before being defined.
5523
5524 2001-11-27 Paul Eggert <eggert@twinsun.com>
5525
5526 * lib/quotearg.h (quotearg_n, quotearg_n_style):
5527 First arg is int, not unsigned.
5528 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
5529 (SIZE_MAX, UINT_MAX): New macros.
5530 (quotearg_n_options): Abort if N is negative.
5531 Avoid overflow check on hosts where size_t is 64 bits and int
5532 is 32 bits, as overflow is impossible there.
5533 Fix off-by-one typo that caused unnecessary reallocation.
5534
5535 2001-11-29 Paul Eggert <eggert@twinsun.com>
5536
5537 Name space cleanup in generated parser.
5538
5539 * doc/bison.texinfo (Bison Parser): Discuss system headers
5540 and their effect on the user name space.
5541
5542 * src/bison.simple:
5543 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
5544 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
5545 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
5546
5547 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
5548 on user names when possible.
5549
5550 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
5551 Simplify test for whather <alloca.h> exists.
5552
5553 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
5554
5555 (<stdio.h>): Include if YYDEBUG.
5556
5557 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
5558 ! defined (yyoverflow) && ! defined (yymemcpy).
5559
5560 (yymemcpy, yyparse): Rename local variables as needed so that
5561 they all begin with 'yy'.
5562
5563 (yystrlen, yystpcpy): New functions.
5564
5565 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
5566 All uses changed.
5567
5568 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
5569 instead of relying on string.h functions. Use YYSTACK_ALLOC
5570 and YYSTACK_FREE instead of malloc and free.
5571
5572 2001-11-30 Akim Demaille <akim@epita.fr>
5573
5574 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
5575 before their first uses.
5576 (YYBISON, YYPURE): Move to the top of the output.
5577
5578 2001-11-30 Akim Demaille <akim@epita.fr>
5579
5580 * tests/reduce.at (Useless Nonterminals): Fix.
5581
5582 2001-11-30 Akim Demaille <akim@epita.fr>
5583
5584 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
5585 if body instead of `;' to pacify GCC's warnings.
5586
5587 2001-11-30 Akim Demaille <akim@epita.fr>
5588
5589 Instead of mapping the LHS of unused rules to -1, keep the LHS
5590 valid, but flag the rules as invalid.
5591
5592 * src/gram.h (rule_t): `useful' is a new member.
5593 * src/print.c (print_grammar): Adjust.
5594 * src/derives.c (set_derives): Likewise.
5595 * src/reader.c (packgram, reduce_output): Likewise.
5596 * src/reduce.c (reduce_grammar_tables): Likewise.
5597 * tests/reduce.at (Underivable Rules, Useless Rules): New.
5598
5599 2001-11-30 Akim Demaille <akim@epita.fr>
5600
5601 * src/reduce.c (reduce_output): Formatting changes.
5602 * src/print.c (print_results, print_grammar): Likewise.
5603 * tests/regression.at (Rule Line Numbers)
5604 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
5605
5606 2001-11-30 Akim Demaille <akim@epita.fr>
5607
5608 * src/reduce.c (nonterminals_reduce): Instead of throwing away
5609 useless nonterminals, move them at the end of the symbol arrays.
5610 (reduce_output): Adjust.
5611 * tests/reduce.at (Useless Nonterminals): Adjust.
5612
5613 2001-11-30 Akim Demaille <akim@epita.fr>
5614
5615 * src/reduce.c: Various comment/formatting changes.
5616 (nonterminals_reduce): New, extracted from...
5617 (reduce_grammar_tables): here.
5618 (reduce_grammar): Call nonterminals_reduce.
5619
5620 2001-11-29 Paul Eggert <eggert@twinsun.com>
5621
5622 * src/bison.simple (YYSTACK_REALLOC): Remove.
5623 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
5624 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
5625 New macros.
5626 (union yyalloc): New type.
5627 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
5628 an arbitrary restriction on hosts where size_t is wider than int.
5629
5630 (yyparse): Don't dump core if alloca or malloc fails; instead, report
5631 a parser stack overflow. Allocate just one block of memory for all
5632 three stacks, instead of allocating three blocks; this typically is
5633 faster and reduces fragmentation.
5634
5635 Do not limit the number of items in the stack to a value that fits
5636 in 'int', as this is an arbitrary limit on hosts with 64-bit
5637 size_t and 32-bit int.
5638
5639 2001-11-29 Marc Autret <autret_m@epita.fr>
5640
5641 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
5642 of defining YYERROR_VERBOSE.
5643 [AT_DATA]: $4 is now out of C declarations in the prologue.
5644
5645 2001-11-28 Marc Autret <autret_m@epita.fr>
5646
5647 * src/reader.c (parse_dquoted_param): New.
5648 (parse_skel_decl): Use it.
5649 * src/lex.h: Add its prototype.
5650 * src/lex.c (literalchar): Become not static.
5651
5652 2001-11-28 Marc Autret <autret_m@epita.fr>
5653
5654 * src/output.h: And put its extern declaration here.
5655 * src/output.c (error_verbose): Define here.
5656 (prepare): Echo name modification.
5657 * src/getargs.h: Clean its extern declaration.
5658 * src/getargs.c (error_verbose_flag): Remove.
5659 (getargs): Remove case 'e'.
5660 * src/options.c (option_table): 'error-verbose' is now seen as simple
5661 percent option.
5662 Include output.h.
5663
5664 * src/reader.c (read_declarations): Remove case tok_include.
5665 (parse_include_decl): Remove.
5666 * src/lex.h (token_t): Remove tok_include.
5667 * src/options.c (option_table): 'include' is now a simple command line
5668 option.
5669
5670 2001-11-28 Marc Autret <autret_m@epita.fr>
5671
5672 * src/bison.simple: Adjust muscle names.
5673 * src/muscle_tab.c (muscle_init): Also rename the muscles.
5674 * src/output.c (prepare): s/_/-/ for the muscles names.
5675 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
5676
5677 2001-11-28 Marc Autret <autret_m@epita.fr>
5678
5679 * src/bison.simple: Fix debug.
5680 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
5681
5682 2001-11-28 Akim Demaille <akim@epita.fr>
5683
5684 * src/LR0.c (shifts_new): New.
5685 (save_shifts, insert_start_shift, augment_automaton): Use it.
5686
5687 2001-11-28 Akim Demaille <akim@epita.fr>
5688
5689 * src/closure.c (closure): `b' and `ruleno' denote the same value:
5690 keep ruleno only.
5691
5692 2001-11-28 Akim Demaille <akim@epita.fr>
5693
5694 * src/closure.c (closure): Instead of looping over word in array
5695 then bits in words, loop over bits in array.
5696
5697 2001-11-28 Akim Demaille <akim@epita.fr>
5698
5699 * src/closure.c (closure): No longer optimize the special case
5700 where all the bits of `ruleset[r]' are set to 0, to make the code
5701 clearer.
5702
5703 2001-11-28 Akim Demaille <akim@epita.fr>
5704
5705 * src/closure.c (closure): `r' and `c' are new variables, used to
5706 de-obfuscate accesses to RULESET and CORE.
5707
5708 2001-11-28 Akim Demaille <akim@epita.fr>
5709
5710 * src/reduce.c (reduce_print): Use ngettext.
5711 (dump_grammar): Improve the trace accuracy.
5712
5713 2001-11-28 Akim Demaille <akim@epita.fr>
5714
5715 * src/reduce.c (dump_grammar): Don't translate trace messages.
5716
5717 2001-11-28 Akim Demaille <akim@epita.fr>
5718
5719 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
5720 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
5721 as all tags are free'ed afterwards.
5722 From Enrico Scholz.
5723
5724 2001-11-27 Paul Eggert <eggert@twinsun.com>
5725
5726 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
5727 use alloca when we didn't want to, and vice versa.
5728
5729 2001-11-27 Marc Autret <autret_m@epita.fr>
5730
5731 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
5732 initialization.
5733 * src/output.c (prepare): Remove its update.
5734
5735 2001-11-27 Marc Autret <autret_m@epita.fr>
5736
5737 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
5738 Use %error-verbose.
5739
5740 2001-11-27 Marc Autret <autret_m@epita.fr>
5741
5742 * src/bison.simple: Remove YYERROR_VERBOSE using.
5743 Use %%error_verbose.
5744 (yyparse): Likewise.
5745 * src/output.c (prepare): Give its final value.
5746 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
5747 * src/getargs.h: Add its extern declaration.
5748 * src/getargs.c (error_verbose_flag): New int.
5749 (getargs): Update to catch new case.
5750 * src/options.c (option_table): 'error-verbose' is a new option.
5751 (shortopts): Update.
5752
5753 2001-11-27 Akim Demaille <akim@epita.fr>
5754
5755 * src/system.h: Use intl/libgettext.h.
5756 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
5757
5758 2001-11-27 Akim Demaille <akim@epita.fr>
5759
5760 * tests/torture.at (Exploding the Stack Size with Malloc):
5761 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
5762
5763 2001-11-27 Akim Demaille <akim@epita.fr>
5764
5765 * src/files.c: Include error.h.
5766 Reported by Hans Aberg.
5767
5768 2001-11-26 Marc Autret <autret_m@epita.fr>
5769
5770 * src/reader.c (parse_include_decl): New, not yet implemented.
5771 (read_declarations): Add case tok_include.
5772 * src/getargs.h (include): Add its extern definition.
5773 * src/getargs.c (include): New const char *.
5774 (getargs): Add case '-I'.
5775 * src/options.c (option_table): Add include as command line and
5776 percent option.
5777 * src/lex.h (token_t): Add tok_include.
5778
5779 2001-11-26 Akim Demaille <akim@epita.fr>
5780
5781 * src/reader.c (readgram): Make sure rules for mid-rule actions
5782 have a lineno equal to that of their host rule.
5783 Reported by Hans Aberg.
5784 * tests/regression.at (Rule Line Numbers): New.
5785
5786 2001-11-26 Akim Demaille <akim@epita.fr>
5787
5788 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
5789 size_ts.
5790
5791 2001-11-26 Akim Demaille <akim@epita.fr>
5792
5793 * src/complain.c, src/complain.h (error): Remove, provided by
5794 lib/error.[ch].
5795
5796 2001-11-26 Akim Demaille <akim@epita.fr>
5797
5798 * src/reader.c (read_declarations): Don't abort on tok_illegal,
5799 issue an error message.
5800 * tests/regression.at (Invalid %directive): New.
5801 Reported by Hans Aberg.
5802
5803 2001-11-26 Akim Demaille <akim@epita.fr>
5804
5805 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
5806 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5807
5808 2001-11-26 Akim Demaille <akim@epita.fr>
5809
5810 * src/conflicts.c (conflicts_print): Don't complain at all when
5811 there are no reduce/reduce conflicts, and as many shift/reduce
5812 conflicts as expected.
5813 * tests/regression.at (%expect right): Adjust.
5814
5815 2001-11-23 Akim Demaille <akim@epita.fr>
5816
5817 * lib/alloca.c: Update, from fileutils.
5818
5819 2001-11-23 Akim Demaille <akim@epita.fr>
5820
5821 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
5822
5823 2001-11-23 Akim Demaille <akim@epita.fr>
5824
5825 * src/system.h: Include alloca.h.
5826 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
5827
5828 2001-11-23 Akim Demaille <akim@epita.fr>
5829
5830 * src/print_graph.c (print_actions): Remove `rule', unused.
5831 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
5832 pacify GCC's signed < unsigned warnings.
5833 * src/closure.c (itemsetsize): Likewise.
5834 * src/reader.c (symbol_list_new): Static.
5835
5836 2001-11-23 Akim Demaille <akim@epita.fr>
5837
5838 Attaching lineno to buckets is stupid, since only one copy of each
5839 symbol is kept, only the line of the first occurrence is kept too.
5840
5841 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
5842 * src/reader.c (rline_allocated): Remove, unused.
5843 (symbol_list): Have a `line' member.
5844 (symbol_list_new): New.
5845 (readgram): Use it.
5846 * src/print.c (print_grammar): Output the rule line numbers.
5847 * tests/regression.at (Solved SR Conflicts)
5848 (Unresolved SR Conflicts): Adjust.
5849 Reported by Hans Aberg.
5850
5851 2001-11-22 Marc Autret <autret_m@epita.fr>
5852
5853 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
5854
5855 2001-11-22 Marc Autret <autret_m@epita.fr>
5856
5857 * src/muscle_tab.c (muscle_init): Remove initialization of
5858 skeleton muscle.
5859 * src/output.c (output_master_parser): Do it here.
5860
5861 2001-11-20 Akim Demaille <akim@epita.fr>
5862
5863 * po/sv.po: New.
5864 * configure.in (ALL_LINGUAS): Adjust.
5865 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
5866 longer contains strings to translate.
5867
5868 2001-11-19 Akim Demaille <akim@epita.fr>
5869
5870 * src/conflicts.c (conflicts_print): Add a missing \n.
5871
5872 2001-11-19 Akim Demaille <akim@epita.fr>
5873
5874 * src/nullable.c (nullable_print): New.
5875 (set_nullable): Call it when tracing.
5876 Better locality of variables.
5877
5878 2001-11-19 Akim Demaille <akim@epita.fr>
5879
5880 * src/print.c (print_actions): Better locality of variables.
5881
5882 2001-11-19 Akim Demaille <akim@epita.fr>
5883
5884 * src/derives.c (print_derives): Fix and enrich.
5885 * src/closure.c (print_fderives): Likewise.
5886
5887 2001-11-19 Akim Demaille <akim@epita.fr>
5888
5889 * src/closure.c (itemsetend): Remove, replaced with...
5890 (itemsetsize): new.
5891
5892 2001-11-19 Akim Demaille <akim@epita.fr>
5893
5894 * src/LR0.c (kernel_end): Remove, replaced with...
5895 (kernel_size): new.
5896
5897 2001-11-19 Akim Demaille <akim@epita.fr>
5898
5899 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
5900 to clarify.
5901
5902 2001-11-19 Akim Demaille <akim@epita.fr>
5903
5904 * src/closure.c (closure): Use arrays instead of pointers to clarify.
5905
5906 2001-11-19 Akim Demaille <akim@epita.fr>
5907
5908 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
5909 trace messages.
5910 * src/LR0.c: Likewise.
5911 (allocate_itemsets): Use arrays instead of pointers to clarify.
5912
5913 2001-11-19 Akim Demaille <akim@epita.fr>
5914
5915 * src/getargs.c (statistics_flag): Replace with...
5916 (trace_flag): New.
5917 (longopts): Accept --trace instead of --statistics.
5918 * src/getargs.h, src/options.c: Adjust.
5919 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
5920 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
5921
5922 2001-11-19 Akim Demaille <akim@epita.fr>
5923
5924 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
5925 pointers to clarify the code.
5926 (save_reductions, save_shifts): Factor common parts of alternatives.
5927
5928 2001-11-19 Akim Demaille <akim@epita.fr>
5929
5930 * src/LR0.c (new_state, get_state): Complete TRACE code.
5931 * src/closure.c: Include `reader.h' to get `tags', needed by the
5932 trace code.
5933 Rename the conditional DEBUG as TRACE.
5934 Output consistently TRACEs to stderr, not stdout.
5935 * src/derives.c: Likewise.
5936 * src/reduce.c: (inaccessable_symbols): Using if is better style
5937 than goto.
5938 Use `#if TRACE' instead of `#if 0' for tracing code.
5939
5940 2001-11-19 Akim Demaille <akim@epita.fr>
5941
5942 * src/system.h (LIST_FREE, shortcpy): New.
5943 * src/LR0.c: Use them.
5944 * src/output.c (free_itemsets, free_reductions, free_shifts):
5945 Remove, replaced by LIST_FREE.
5946
5947 2001-11-19 Akim Demaille <akim@epita.fr>
5948
5949 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
5950 (REDUCTIONS_ALLOC): New.
5951 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
5952 allocation.
5953
5954 2001-11-19 Akim Demaille <akim@epita.fr>
5955
5956 * src/LR0.c (new_state): Complete trace code.
5957 * src/nullable.c (set_nullable): Don't translate traces.
5958
5959 2001-11-19 Akim Demaille <akim@epita.fr>
5960
5961 * src/print_graph.c (print_core): Better locality of variables.
5962 * src/print.c (print_core): Likewise.
5963
5964 2001-11-19 Akim Demaille <akim@epita.fr>
5965
5966 * src/vcg.c: You do the output, so you are responsible of the
5967 handling of VCG syntax, in particular: use quotearg.
5968 * src/print_graph.c: Don't.
5969 (print_actions): Don't output the actions as part of the nodes,
5970 since that's the job of the edges.
5971 (print_state): Don't output by hand: fill the node description,
5972 and ask for its output.
5973
5974 2001-11-19 Akim Demaille <akim@epita.fr>
5975
5976 * src/bison.simple (yyparse): When verbosely reporting an error,
5977 no longer put additional quotes around token names.
5978 * tests/calc.at: Adjust.
5979
5980 2001-11-19 Akim Demaille <akim@epita.fr>
5981
5982 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
5983 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
5984 * src/output.c: Adjust.
5985
5986 2001-11-19 Akim Demaille <akim@epita.fr>
5987
5988 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
5989 (rule_t): this.
5990 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
5991
5992 2001-11-19 Akim Demaille <akim@epita.fr>
5993
5994 * src/gram.h (rule_t): New.
5995 (rule_table): New.
5996 (rrhs, rlhs): Remove, part of state_t.
5997 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
5998 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
5999 * src/reader.c, src/reduce.c: Adjust.
6000
6001 2001-11-19 Akim Demaille <akim@epita.fr>
6002
6003 * src/reader.c (symbols_output): New, extracted from...
6004 (packsymbols): Here.
6005 (reader): Call it.
6006
6007 2001-11-19 Akim Demaille <akim@epita.fr>
6008
6009 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
6010 (maxrhs): this new function.
6011
6012 2001-11-19 Akim Demaille <akim@epita.fr>
6013
6014 * src/lalr.c (F): New macro to access the variable F.
6015 Adjust.
6016
6017 2001-11-19 Akim Demaille <akim@epita.fr>
6018
6019 * src/lalr.h (LA): New macro to access the variable LA.
6020 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
6021 * src/lalr.c: Adjust.
6022
6023 2001-11-19 Akim Demaille <akim@epita.fr>
6024
6025 * src/lalr.c (initialize_LA): Only initialize LA. Let...
6026 (set_state_table): handle the `lookaheads' members.
6027
6028 2001-11-19 Akim Demaille <akim@epita.fr>
6029
6030 * src/lalr.h (lookaheads): Removed array, whose contents is now
6031 a member of...
6032 (state_t): this structure.
6033 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
6034 Adjust.
6035
6036 2001-11-19 Akim Demaille <akim@epita.fr>
6037
6038 * src/lalr.h (consistent): Removed array, whose contents is now
6039 a member of...
6040 (state_t): this structure.
6041 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
6042 Adjust.
6043
6044 2001-11-19 Akim Demaille <akim@epita.fr>
6045
6046 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
6047 contents are now members of...
6048 (state_t): this structure.
6049 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
6050 Adjust.
6051
6052 2001-11-19 Akim Demaille <akim@epita.fr>
6053
6054 * src/lalr.h (state_t): New.
6055 (state_table): Be a state_t * instead of a core **.
6056 (accessing_symbol): Remove, part of state_t.
6057 * src/lalr.c: Adjust.
6058 (set_accessing_symbol): Merge into...
6059 (set_state_table): this.
6060 * src/print_graph.c, src/conflicts.c: Adjust.
6061
6062 2001-11-14 Akim Demaille <akim@epita.fr>
6063
6064 * tests/calc.at, tests/output.at, tests/regression.at,
6065 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
6066 now the tests are run in private dirs, therefore AC_CLEANUP and
6067 family can be simplified to 0-ary.
6068 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
6069 use abs. path to find config.h.
6070 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
6071 stderr, there can be way too much random noise.
6072 Instead pass -Werror to GCC and rely on the exit status.
6073 Reported by Wolfram Wagner.
6074
6075 2001-11-14 Akim Demaille <akim@epita.fr>
6076
6077 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
6078 defined only if yyoverflow is defined, to avoid `warning: unused
6079 variable `yyvs1''.
6080 Reported by The Test Suite.
6081
6082 2001-11-14 Akim Demaille <akim@epita.fr>
6083
6084 * src/print.c: Include reduce.h.
6085 Reported by Hans Aberg.
6086
6087 2001-11-14 Akim Demaille <akim@epita.fr>
6088
6089 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
6090 Revert a previous patch: these are really const.
6091 * src/conflicts.c (conflict_report): Additional useless pair of
6092 braces to pacify GCC's warnings for `if () if () {} else {}'.
6093 * src/lex.c (parse_percent_token): Replace equal_offset with
6094 arg_offset.
6095 arg is const.
6096 Be sure to strdup `arg' when used, since there is no reason for
6097 token_buffer not to change.
6098
6099 2001-11-14 Akim Demaille <akim@epita.fr>
6100
6101 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
6102 definition.
6103 * src/main.c (main): Use them.
6104 Suggested by Hans Aberg.
6105
6106 2001-11-12 Akim Demaille <akim@epita.fr>
6107
6108 * src/system.h (ngettext): Now that we use ngettext, be sure to
6109 provide a default definition when NLS are not used.
6110
6111 2001-11-12 Akim Demaille <akim@epita.fr>
6112
6113 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
6114 Use @kbd to denote user input.
6115 (Language and Grammar): ANSIfy the example.
6116 Adjust its layout for info/notinfo.
6117 (Location Tracking Calc): Output error messages to stderr.
6118 Output locations in a more GNUtically correct way.
6119 Fix a couple of Englishos.
6120 Adjust @group/@end group pairs.
6121
6122 2001-11-12 Akim Demaille <akim@epita.fr>
6123
6124 %expext was not functioning at all.
6125
6126 * src/conflicts.c (expected_conflicts): Set to -1.
6127 (conflict_report): Use ngettext.
6128 (conflicts_print): Check %expect and make its violation an error.
6129 * doc/bison.texinfo (Expect Decl): Adjust.
6130 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
6131 * tests/regression.at (%expect not enough, %expect right)
6132 (%expect too much): New.
6133
6134 2001-11-12 Akim Demaille <akim@epita.fr>
6135
6136 * tests/regression.at (Conflicts): Rename as...
6137 (Unresolved SR Conflicts): this.
6138 (Solved SR Conflicts): New.
6139
6140 2001-11-12 Akim Demaille <akim@epita.fr>
6141
6142 * src/reduce.c (print_results): Rename as...
6143 (reduce_output): This.
6144 Output to OUT, passed as argument, instead of output_obstack.
6145 (dump_grammar): Likewise.
6146 (reduce_free): New.
6147 Also free V1.
6148 (reduce_grammar): No longer call reduce_output, since...
6149 * src/print.c (print_results): do it.
6150 * src/main.c (main): Call reduce_free;
6151
6152 2001-11-12 Akim Demaille <akim@epita.fr>
6153
6154 * src/conflicts.c (print_reductions): Accept OUT as argument.
6155 Output to it, not to output_obstack.
6156 * src/print.c (print_actions): Adjust.
6157
6158 2001-11-12 Akim Demaille <akim@epita.fr>
6159
6160 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
6161 the result instead of using...
6162 (src_total, rrc_total, src_count, rrc_count): Remove.
6163 (any_conflicts): Remove.
6164 (print_conflicts): Split into...
6165 (conflicts_print, conflicts_output): New.
6166 * src/conflicts.h: Adjust.
6167 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
6168 * src/print.c (print_grammar): Issue `\n' between two rules.
6169 * tests/regression.at (Conflicts): New.
6170 Reported by Tom Lane.
6171
6172 2001-11-12 Akim Demaille <akim@epita.fr>
6173
6174 * tests/regression.at (Invalid input): Remove, duplicate with
6175 ``Invalid input: 1''.
6176
6177 2001-11-12 Akim Demaille <akim@epita.fr>
6178
6179 * tests/torture.at (AT_DATA_STACK_TORTURE)
6180 (Exploding the Stack Size with Alloca)
6181 (Exploding the Stack Size with Malloc): New.
6182
6183 2001-11-12 Akim Demaille <akim@epita.fr>
6184
6185 * src/bison.simple (YYSTACK_REALLOC): New.
6186 (yyparse) [!yyoverflow]: Use it and free the old stack.
6187 Reported by Per Allansson.
6188
6189 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
6190
6191 * src/bison.simple: Define type yystype instead of YYSTYPE, and
6192 define CPP macro, which substitute YYSTYPE by yystype.
6193 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
6194 with yyltype/YYLTYPE. This allows inclusion of the generated
6195 header within the parser if the compiler, such as GGC, accepts
6196 multiple equivalent #defines.
6197 From Akim.
6198
6199 2001-11-05 Akim Demaille <akim@epita.fr>
6200
6201 * src/reader.c (symbols_output): New, extracted from...
6202 (packsymbols): here.
6203 (reader): Adjust.
6204
6205 2001-11-05 Akim Demaille <akim@epita.fr>
6206
6207 * src/lex.c (parse_percent_token): s/quotearg/quote/.
6208
6209 2001-11-05 Akim Demaille <akim@epita.fr>
6210
6211 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
6212 pattern.
6213
6214 2001-11-05 Akim Demaille <akim@epita.fr>
6215
6216 * src/options.h (struct option_table_struct): set_flags is void*.
6217 * src/options.c (longopts): Support `--output' and `%output'.
6218 (usage): Adjust.
6219 * src/lex.h (tok_setopt): Remove, replaced with...
6220 (tok_intopt, tok_stropt): these new guys.
6221 * src/lex.c (getopt.h): Not needed.
6222 (token_buffer, unlexed_token_buffer): Not const.
6223 (percent_table): Promote `-' over `_' in directive names.
6224 Active `%name-prefix', `file-prefix', and `output'.
6225 (parse_percent_token): Accept possible arguments to directives.
6226 Promote `-' over `_' in directive names.
6227
6228 2001-11-04 Akim Demaille <akim@epita.fr>
6229
6230 * doc/bison.texinfo (Decl Summary): Split the list into
6231 `directives for grammars' and `directives for bison'.
6232 Sort'em.
6233 Add description of `%name-prefix', `file-prefix', and `output'.
6234 Promote `-' over `_' in directive names.
6235 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
6236 Simplify the description of `--name-prefix'.
6237 Promote `-' over `_' in directive names.
6238 Promote `--output' over `--output-file'.
6239 Fix the description of `--defines'.
6240 * tests/output.at: Exercise %file-prefix and %output.
6241
6242 2001-11-02 Akim Demaille <akim@epita.fr>
6243
6244 * doc/refcard.tex: Update.
6245
6246 2001-11-02 Akim Demaille <akim@epita.fr>
6247
6248 * src/symtab.h (SUNDEF): New.
6249 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
6250 stand for `uninitialized', instead of 0.
6251 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
6252 * src/lex.c (lex): Adjust.
6253
6254 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
6255 Number it 0.
6256 Let yylex return it instead of a plain 0.
6257 Reported by Dick Streefland.
6258
6259 2001-11-02 Akim Demaille <akim@epita.fr>
6260
6261 * tests/regression.at (Mixing %token styles): New test.
6262
6263 2001-11-02 Akim Demaille <akim@epita.fr>
6264
6265 * src/reader.c (parse_thong_decl): Formatting changes.
6266 (token_translations_init): New, extracted from...
6267 (packsymbols): Here.
6268 Adjust.
6269
6270 2001-11-01 Akim Demaille <akim@epita.fr>
6271
6272 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
6273 Check that `9foo.y' produces correct cpp guards.
6274 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
6275 guards.
6276 Reported by Wwp.
6277
6278 2001-11-01 Akim Demaille <akim@epita.fr>
6279
6280 * tests/regression.at (Invalid input: 2): New.
6281 * src/lex.c (unlexed_token_buffer): New.
6282 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
6283 too.
6284 Reported by Wwp.
6285
6286 2001-11-01 Akim Demaille <akim@epita.fr>
6287
6288 * tests/calc.at: Catch up with 1.30.
6289 * configure.in: Bump to 1.49a.
6290 Adjust to newer Autotest.
6291
6292 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
6293
6294 * src/conflicts.c: Move global variables rrc_total and src_total ...
6295 (print_conflicts): here.
6296 * src/output.c (output): Free global variable user_toknums.
6297 * src/lex.c (token_obstack): Become static.
6298
6299 2001-10-18 Akim Demaille <akim@epita.fr>
6300
6301 * tests/atlocal.in (GCC): Add.
6302 * tests/calc.at: s/m4_match/m4_bmatch/.
6303 s/m4_patsubst/m4_bpatsubst/.
6304 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
6305 * configure.in: AC_SUBST(GCC).
6306
6307 2001-10-14 Marc Autret <autret_m@epita.fr>
6308
6309 * src/options.c (create_long_option_table): Fix.
6310
6311 2001-10-10 Akim Demaille <akim@epita.fr>
6312
6313 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
6314
6315 2001-10-04 Akim Demaille <akim@epita.fr>
6316
6317 * src/reader.c (parse_union_decl): Push the caracters in
6318 union_obstack, not attrs_obstack.
6319
6320 2001-10-04 Akim Demaille <akim@epita.fr>
6321
6322 Merge in the branch 1.29.
6323
6324 * src/reader.c (packsymbols): Use a temporary obstack for
6325 `%%tokendef', since output_stack is already used elsewhere.
6326
6327 2001-10-02 Akim Demaille <akim@epita.fr>
6328
6329 Bump 1.29d.
6330
6331 2001-10-02 Akim Demaille <akim@epita.fr>
6332
6333 Version 1.29c.
6334
6335 2001-10-02 Akim Demaille <akim@epita.fr>
6336
6337 * tests/regression.at (Invalid CPP headers): New.
6338 From Alexander Belopolsky.
6339 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
6340
6341 2001-10-02 Akim Demaille <akim@epita.fr>
6342
6343 * tests/regression.at (Invalid input): New.
6344 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
6345 Reported by Shura.
6346
6347 2001-10-02 Akim Demaille <akim@epita.fr>
6348
6349 * tests/calc.at: Now that --debug works, the tests must be adjusted.
6350
6351 2001-10-02 Akim Demaille <akim@epita.fr>
6352
6353 * src/output.c (output_parser): Assert `skeleton'.
6354 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
6355 systems.
6356 From Shura.
6357
6358 2001-10-01 Marc Autret <autret_m@epita.fr>
6359
6360 * src/lex.h: Echo modifications.
6361 * src/lex.c (unlex): Parameter is now token_t.
6362 From Hans Aberg.
6363
6364 2001-10-01 Marc Autret <autret_m@epita.fr>
6365
6366 * src/main.c: Include lex.h.
6367 From Hans Aberg.
6368
6369 2001-09-29 Akim Demaille <akim@epita.fr>
6370
6371 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
6372
6373 2001-09-28 Akim Demaille <akim@epita.fr>
6374
6375 * tests/testsuite.at: Update to newer Autotest.
6376 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
6377
6378 2001-09-27 Akim Demaille <akim@epita.fr>
6379
6380 Position independent wrapper.
6381
6382 * tests/bison: Remove.
6383 * tests/bison.in: New.
6384 * configure.in: Adjust.
6385
6386 2001-09-27 Paul Eggert <eggert@twinsun.com>
6387
6388 Port quotearg fixes from tar 1.13.24.
6389
6390 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
6391 tm to be declared.
6392 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
6393 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
6394
6395 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
6396 * m4/mbrtowc.m4: New file.
6397 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
6398 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
6399
6400 2001-09-27 Akim Demaille <akim@epita.fr>
6401
6402 Bump to 1.29c.
6403
6404 2001-09-27 Akim Demaille <akim@epita.fr>
6405
6406 Version 1.29b.
6407
6408 2001-09-25 Akim Demaille <akim@epita.fr>
6409
6410 * src/system.h: Include `xalloc.h'.
6411 Remove it from the C files.
6412 * src/files.c (output_files): Free the obstacks.
6413 * src/lex.c (init_lex): Rename as...
6414 (lex_init): this.
6415 (lex_free): New.
6416 * src/main.c (main): Use it.
6417
6418 2001-09-24 Marc Autret <autret_m@epita.fr>
6419
6420 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
6421 to output informations in fout (FILE*).
6422 (open_graph, close_graph): Likewise.
6423 (output_graph, output_edge, output_node): Likewise.
6424 * src/vcg.h: Update function prototypes.
6425 * src/print_graph.c (print_graph): Open output graph file.
6426 (print_actions): Adjust.
6427 * src/files.h: Remove extern declaration.
6428 * src/files.c: Remove graph_obstack declaration.
6429 (open_files): Remove graph_obstack initialization.
6430 (output_files): Remove graph_obstack saving.
6431
6432 2001-09-24 Marc Autret <autret_m@epita.fr>
6433
6434 * src/files.c (compute_output_file_names): Fix.
6435
6436 2001-09-24 Marc Autret <autret_m@epita.fr>,
6437 Akim Demaille <akim@epita.fr>
6438
6439 * src/reader.c (reader): Remove call to free_symtab ().
6440 * src/main.c (main): Call it here.
6441 Include symtab.h.
6442 * src/conflicts.c (initialize_conflicts): Rename as...
6443 (solve_conflicts): this.
6444 * src/print.c (print_core, print_actions, print_state)
6445 (print_grammar): Dump to a file instead a `output_obstack'.
6446 (print_results): Dump `output_obstack', and then proceed with the
6447 FILE *.
6448 * src/files.c (compute_output_file_names, close_files): New.
6449 (output_files): Adjust.
6450 * src/main.c (main): Adjust.
6451
6452 2001-09-23 Marc Autret <autret_m@epita.fr>
6453
6454 * src/files.c (compute_header_macro): Computes header macro name
6455 from spec_defines_file when given.
6456
6457 2001-09-23 Marc Autret <autret_m@epita.fr>
6458
6459 * src/files.c (output_files): Add default extensions.
6460
6461 2001-09-22 Akim Demaille <akim@epita.fr>
6462
6463 * src/conflicts.c (finalize_conflicts): Rename as...
6464 (free_conflicts): this.
6465
6466 2001-09-22 Akim Demaille <akim@epita.fr>
6467
6468 * src/gram.c (gram_free): Rename back as...
6469 (dummy): this.
6470 (output_token_translations): Free `token_translations'.
6471 * src/symtab.c (free_symtab): Free the tag field.
6472
6473 2001-09-22 Akim Demaille <akim@epita.fr>
6474
6475 Remove `translations' as it is always set to true.
6476
6477 * src/gram.h: Adjust.
6478 * src/reader.c (packsymbols, parse_token_decl): Adjust
6479 * src/print.c (print_grammar): Adjust.
6480 * src/output.c (output_token_translations): Adjust.
6481 * src/lex.c (lex): Adjust.
6482 * src/gram.c: Be sure the set pointers to NULL.
6483 (dummy): Rename as...
6484 (gram_free): this.
6485
6486 2001-09-22 Akim Demaille <akim@epita.fr>
6487
6488 * configure.in: Invoke AM_LIB_DMALLOC.
6489 * src/system.h: Use dmalloc.
6490 * src/LR0.c: Be sure to have pointers initialized to NULL.
6491 (allocate_itemsets): Allocate kernel_items only if needed.
6492
6493 2001-09-22 Akim Demaille <akim@epita.fr>
6494
6495 * configure.in: Bump to 1.29b.
6496 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
6497 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
6498 need xmalloc.c in calc.y.
6499 From Pascal Bart.
6500
6501 2001-09-21 Akim Demaille <akim@epita.fr>
6502
6503 Version 1.29a.
6504 * Makefile.maint, config/config.guess, config/config.sub,
6505 * config/missing: Update from masters.
6506 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
6507 upon package.m4.
6508 * configure.in (ALL_LINGUAS): Add `tr'.
6509
6510 2001-09-21 Akim Demaille <akim@epita.fr>
6511
6512 * tests/Makefile.am (package.m4): Move to...
6513 ($(srcdir)/$(TESTSUITE)): here.
6514
6515 2001-09-20 Akim Demaille <akim@epita.fr>
6516
6517 * src/complain.c: No longer try to be standalone: use system.h.
6518 Don't assume __STDC__ is defined to 1. Just test if it is defined.
6519 * src/complain.h: Likewise.
6520 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
6521 Remove the unused variable `n'.
6522 From Albert Chin-A-Young.
6523
6524 2001-09-18 Marc Autret <autret_m@epita.fr>
6525
6526 * doc/bison.1: Update.
6527 * doc/bison.texinfo (Bison Options): Update --defines and --graph
6528 descriptions.
6529 (Option Cross Key): Update.
6530 Add --graph.
6531
6532 2001-09-18 Marc Autret <autret_m@epita.fr>
6533
6534 * tests/regression.at: New test (comment in %union).
6535
6536 2001-09-18 Marc Autret <autret_m@epita.fr>
6537
6538 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
6539 do that.
6540 Reported by Keith Browne.
6541
6542 2001-09-18 Marc Autret <autret_m@epita.fr>
6543
6544 * tests/output.at: Add tests for --defines and --graph.
6545
6546 2001-09-18 Marc Autret <autret_m@epita.fr>
6547
6548 * tests/output.at: Removes tests of %{header,src}_extension features.
6549
6550 2001-09-18 Akim Demaille <akim@epita.fr>
6551
6552 * tests/Makefile.am (package.m4): New.
6553 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
6554 (_AT_CHECK_CALC_ERROR): Likewise.
6555 Factor the `, ' part of verbose error messages.
6556
6557 2001-09-18 Marc Autret <autret_m@epita.fr>
6558
6559 * src/getargs.c (longopts): Declare --defines and --graph as options
6560 with optional arguments.
6561 * src/files.h: Add extern declarations.
6562 * src/files.c (spec_graph_file, spec_defines_file): New.
6563 (output_files): Update.
6564 Remove CPP-outed code.
6565
6566 2001-09-18 Marc Autret <autret_m@epita.fr>
6567
6568 Turn off %{source,header}_extension feature.
6569
6570 * src/files.c (compute_exts_from_gf): Update.
6571 (compute_exts_from_src): Update.
6572 (output_files): CPP-out useless code.
6573 * src/files.h: Remove {header,source}_extension extern declarations.
6574 * src/reader.c (parse_dquoted_param): CPP-out.
6575 (parse_header_extension_decl): Remove.
6576 (parse_source_extension_decl): Remove.
6577 (read_declarations): Remove cases tok_{hdrext,srcext}.
6578 * src/lex.c (percent_table): Remove {header,source}_extension entries.
6579 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
6580
6581 2001-09-10 Akim Demaille <akim@epita.fr>
6582
6583 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
6584 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
6585 (AT_CHECK_OUTPUT): this.
6586 Merely check ls' exit status, its output is useless.
6587
6588 2001-09-10 Akim Demaille <akim@epita.fr>
6589
6590 * tests/calc.at: Use m4_match.
6591 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
6592
6593 2001-09-10 Marc Autret <autret_m@epita.fr>,
6594 Akim Demaille <akim@epita.fr>
6595
6596 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
6597 enum color_e.
6598 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
6599 to `normal'.
6600 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
6601 * src/lex.h: Adjust prototype.
6602 (token_t): Add `tok_undef'.
6603 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
6604 (parse_percent_token): Now returns token_t.
6605 Add default statement in switch.
6606 (lex): Separate `c' as an input variable, from the token_t result
6607 part.
6608 (unlexed): Is a token_t.
6609
6610 2001-09-10 Akim Demaille <akim@epita.fr>
6611
6612 * configure.in: Bump to 1.29a.
6613
6614 2001-09-07 Akim Demaille <akim@epita.fr>
6615
6616 Version 1.29.
6617
6618 2001-08-30 Akim Demaille <akim@epita.fr>
6619
6620 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
6621 * m4/atconfig.m4: Remove.
6622 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
6623 * tests/bison: New.
6624 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
6625 m4_if, m4_patsubst, and m4_regexp.
6626 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
6627 `input' file instead of echo.
6628
6629 2001-08-29 Akim Demaille <akim@epita.fr>
6630
6631 Bump to 1.28e.
6632
6633 2001-08-29 Akim Demaille <akim@epita.fr>
6634
6635 Version 1.28d.
6636
6637 2001-08-29 Paul Eggert <eggert@twinsun.com>
6638
6639 * src/bison.simple (yyparse): Don't take the address of an
6640 item before the start of an array, as that doesn't conform to
6641 the C Standard.
6642
6643 2001-08-29 Robert Anisko <anisko_r@epita.fr>
6644
6645 * doc/bison.texinfo (Location Tracking Calc): New node.
6646
6647 2001-08-29 Paul Eggert <eggert@twinsun.com>
6648
6649 * src/output.c (output): Do not define const, as this now
6650 causes more problems than it cures.
6651
6652 2001-08-29 Akim Demaille <akim@epita.fr>
6653
6654 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
6655 the nodes.
6656 Be sure to tag the `detailmenu'.
6657
6658 2001-08-29 Akim Demaille <akim@epita.fr>
6659
6660 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
6661 download in a tmp dir.
6662
6663 2001-08-28 Marc Autret <autret_m@epita.fr>
6664
6665 * config/depcomp: New file.
6666
6667 2001-08-28 Marc Autret <autret_m@epita.fr>
6668
6669 * doc/bison.1 (mandoc): Adjust.
6670 From Juan Manuel Guerrero.
6671
6672 2001-08-28 Marc Autret <autret_m@epita.fr>
6673
6674 * src/print_graph.c (print_state): Fix.
6675
6676 2001-08-27 Marc Autret <autret_m@epita.fr>
6677
6678 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
6679 char * members.
6680 Echo modifications to the functions prototypes.
6681 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
6682
6683 2001-08-27 Marc Autret <autret_m@epita.fr>
6684
6685 * src/vcg.c: Include `xalloc.h'.
6686 (add_colorentry): New.
6687 (add_classname): New.
6688 (add_infoname): New.
6689 * src/vcg.h: Add new prototypes.
6690
6691 2001-08-27 Akim Demaille <akim@epita.fr>
6692
6693 * Makefile.maint: Sync. again with CVS Autoconf.
6694
6695 2001-08-27 Akim Demaille <akim@epita.fr>
6696
6697 * Makefile.maint: Formatting changes.
6698 (po-update, cvs-update, update): New targets.
6699 (AMTAR): Remove.
6700
6701 2001-08-27 Akim Demaille <akim@epita.fr>
6702
6703 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
6704 * Makefile.maint: Sync. with CVS Autoconf.
6705
6706 2001-08-27 Marc Autret <autret_m@epita.fr>
6707
6708 * src/vcg.h (struct infoname_s): New.
6709 (struct colorentry_s): New.
6710 (graph_s): New fields {vertical,horizontal}_order in structure.
6711 Add `infoname' field.
6712 Add `colorentry' field;
6713 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
6714 (G_HORIZONTAL_ORDER): New.
6715 (G_INFONAME): New.
6716 (G_COLORENTRY): New.
6717 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
6718 Add output of `infoname'.
6719 Add output of `colorentry'.
6720
6721 2001-08-27 Marc Autret <autret_m@epita.fr>
6722
6723 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
6724 This one shadowed a global parameter.
6725
6726 2001-08-24 Marc Autret <autret_m@epita.fr>
6727
6728 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
6729 instead of `unsigned'.
6730 (print_state): Do not call obstack_object_size () in obstack_grow ()
6731 to avoid macro variables shadowing.
6732
6733 2001-08-23 Marc Autret <autret_m@epita.fr>
6734
6735 * src/lex.c (percent_table): Typo: s/naem/name/.
6736 Add graph option.
6737 Normalize new options declarations.
6738
6739 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
6740
6741 * tests/suite.at: Exercise %header_extension and %source_extension.
6742
6743 2001-08-16 Marc Autret <autret_m@epita.fr>
6744
6745 * src/reader.c (parse_dquoted_param): New.
6746 (parse_header_extension_decl): Use it.
6747 (parse_source_extension_decl): Likewise.
6748
6749 2001-08-16 Marc Autret <autret_m@epita.fr>
6750
6751 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
6752 (get_xxxx_str): Use assert () instead of complain ().
6753 Remove return invokations in default cases.
6754 (get_decision_str): Modify default behaviour. Remove second argument.
6755 Echo modifications on calls.
6756 (output_graph): Fix.
6757
6758 2001-08-16 Marc Autret <autret_m@epita.fr>
6759
6760 * src/getargs.c (usage): Update with ``-g, --graph''.
6761
6762 2001-08-16 Marc Autret <autret_m@epita.fr>
6763
6764 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
6765 (Option Cross Key): Likewise.
6766 * doc/bison.1: Update.
6767
6768 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
6769
6770 * src/output.c (output_master_parser): Don't finish action_obstack.
6771 (output_parser): Don't care about the muscle action, here.
6772 (prepare): Copy the action_obstack in the action muscle.
6773 (output): Free action_obstack.
6774
6775 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
6776
6777 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
6778 will contain `%union' declaration.
6779 (parse_union_decl): Delete #line directive output.
6780 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
6781 informations about %union.
6782 (parse_union_decl): Copy the union_obstack in the muscle stype.
6783 * src/bison.simple: Add new #line directive.
6784 Add typdef %%stype YYSTYPE.
6785
6786 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
6787
6788 * src/bison.simple: Add new `#line' directive.
6789
6790 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
6791
6792 * src/bison.simple: New `#line' directive.
6793 * src/output.c (output_parser): Support new dynamic muscle input_line.
6794
6795 2001-09-22 Marc Autret <autret_m@epita.fr>
6796
6797 * src/output.c (output_master_parser): New.
6798 (output_parser): Be more re-entrant.
6799
6800 2001-09-21 Marc Autret <autret_m@epita.fr>
6801
6802 * src/reader.c (copy_definition, parse_union_decl): Update and use
6803 `linef' muscle.
6804 (copy_action): Likewise.
6805 Use obstack_1grow ().
6806 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
6807
6808 2001-09-21 Marc Autret <autret_m@epita.fr>
6809
6810 * src/options.c (option_table): Adjust.
6811 * src/lex.c (parse_percent_token): Fix.
6812
6813 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
6814
6815 * src/options.c (symtab.h): Include it, need by lex.h.
6816
6817 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
6818
6819 * src/lex.c (parse_percent_token): Change type of variable `tx', which
6820 is now an option_table_struct*.
6821 (option_strcmp): New function option_strcmp.
6822 (parse_percent_token): Call option_strcmp.
6823 * src/getargs.c (xalloc.h, options.h): Include it.
6824 (getargs): Call create_long_option_table.
6825 (getargs): Free longopts at the end of the function.
6826 (shortopts): Move in options.c.
6827 * src/options.c (create_long_option_table): New function. Convert
6828 information from option_table to option structure.
6829 * src/reader.c (options.h): Include it.
6830
6831 * src/Makefile.am: Adjust.
6832 * src/options.c (option_table): Create from longopts and percent_table.
6833 * src/getargs.c (longopts): Delete.
6834 * src/lex.c (struct percent_table_struct): Delete.
6835 (percent_table): Delete.
6836 (options.h): Include it.
6837 * src/options.c: Create.
6838 * src/options.h: Create.
6839 Declare enum opt_access_e.
6840 Define struct option_table_struct.
6841
6842 2001-09-20 Marc Autret <autret_m@epita.fr>
6843
6844 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
6845 sections of Bison.
6846
6847 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
6848
6849 * src/bison.simple: s/%%filename/%%skeleton.
6850 * src/muscle_tab.c (getargs.h): Include it.
6851 (muscle_init): Insert new muscle skeleton.
6852
6853 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
6854
6855 * src/output.c (output_parser): Delete unused variable actions_dumped.
6856
6857 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
6858
6859 * src/output.c (output): Delete call to reader_output_yylsp.
6860 * src/reader.c (reader): Likewise.
6861 * src/reader.h: Delete declaration of reader_output_yylsp.
6862
6863 2001-09-02 Marc Autret <autret_m@epita.fr>
6864
6865 * src/reader.c: Include muscle_tab.h.
6866 (parse_union_decl): Update.
6867 (parse_macro_decl): Rename parse_muscle_decl.
6868 Update to use renamed functions and variable.
6869 (read_declarations, copy_action, read_additionnal_code, : Updated
6870 with correct variables and functions names.
6871 (packsymbols, reader): Likewise.
6872
6873 * src/reader.h (muscle_obstack): Extern declaration update.
6874
6875 * src/output.c: Include muscle_tab.h
6876 In all functions using macro_insert, change by using muscle_insert ().
6877 (macro_obstack): Rename muscle_obstack.
6878 Echo modifications in the whole file.
6879 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
6880 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
6881 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
6882
6883 * src/muscle_tab.h: Update double inclusion macros.
6884 (macro_entry_s): Rename muscle_entry_s.
6885 Update prototypes.
6886
6887 * src/muscle_tab.c: Include muscle_tab.h.
6888 Rename macro_tabble to muscle_table.
6889 (mhash1, mhash2, mcmp): Use muscle_entry.
6890 (macro_init): Rename muscle_init. Update.
6891 (macro_insert): Rename muscle_insert. Update.
6892 (macro_find): Rename muscle_find. Update.
6893
6894 * src/main.c: Include muscle_tab.h.
6895 (main): Call muscle_init ().
6896 * src/Makefile.am (bison_SOURCES): Echo modifications.
6897
6898 2001-09-02 Marc Autret <autret_m@epita.fr>
6899
6900 Now the files macro_tab.[ch] are named muscle_tab.[ch].
6901
6902 * src/muscle_tab.c, src/muscle_tab.h: Add files.
6903
6904 2001-09-02 Marc Autret <autret_m@epita.fr>
6905
6906 * src/macrotab.c, src/macrotab.h: Remove.
6907
6908 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
6909
6910 * src/reader.c (copy_guard): Use muscle to specify the `#line'
6911 filename.
6912
6913 2001-09-01 Marc Autret <autret_m@epita.fr>
6914
6915 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
6916 to an explicit value to activate the feature. We do it here.
6917
6918 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6919
6920 * src/output.c (prepare): Delete the `filename' muscule insertion.
6921 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
6922 (parse_union_decl): Likewise.
6923 * src/macrotab.c (macro_init): Initialize filename by infile.
6924
6925 2001-08-31 Marc Autret <autret_m@epita.fr>
6926
6927 * src/bison.simple (YYLSP_NEEDED): New definition.
6928 * src/output.c (prepare): Add macro insertion of `locations_flag'
6929
6930 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6931
6932 * src/output.c (prepare): Delete insertion of previous muscles,
6933 and insert the `prefix' muscles.
6934 * src/macrotab.c (macro_init): Likewise.
6935 (macro_init): Initialization prefix directive by `yy'.
6936 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
6937 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
6938 yylval, yydebug, yyerror, yynerrs and yyparse.
6939 New directive `#define' to substitute yydebug, ... with option
6940 name_prefix.
6941
6942 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6943
6944 * src/main.c (main): Standardize.
6945 * src/output.c (output_table_data, output_parser): Likewise.
6946 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
6947
6948 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
6949
6950 * src/reader.c (read_additionnal_code): Rename %%user_code to
6951 %%epilogue.
6952 * src/output.c (output): Rename %%declarations to %%prologue.
6953 * src/bison.simple: Echo modifications.
6954
6955 2001-08-31 Marc Autret <autret_m@epita.fr>
6956
6957 * src/reader.c (readgram): CleanUp.
6958 (output_token_defines): Likewise.
6959 (packsymbols): Likewise.
6960 (reader): Likewise.
6961 * src/output.c (output): CPP-out useless code.
6962
6963 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6964
6965 * src/reader.c (reader): Delete obsolete call to function
6966 output_trailers and output_headers.
6967 * src/output.h: Remove obsolete functions prototypes of output_headers
6968 and output_trailers.
6969
6970 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
6971
6972 * src/main.c: Include macrotab.h.
6973 * src/macrotab.h (macro_entry_s): Constify fields.
6974 Adjust functions prototypes.
6975 * src/macrotab.c (macro_insert): Constify key and value.
6976 (macro_find): Constify key.
6977 (macro_insert): Include 'xalloc.h'
6978 (macro_insert): Use XMALLOC.
6979 (macro_find): Constify return value.
6980 * src/output.c (output_table_data): Rename table to table_data.
6981 (output_parser): Constify macro_key, macro_value.
6982
6983 2001-08-30 Marc Autret <autret_m@epita.fr>
6984
6985 * src/reader.c (parse_skel_decl): New.
6986 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
6987 * src/lex.h (token_t): New token `tok_skel'.
6988 * src/lex.c (percent_table): Add skeleton option entry.
6989 Standardize.
6990
6991 2001-08-29 Marc Autret <autret_m@epita.fr>
6992
6993 * src/bison.simple: Add %%user_code directive at the end.
6994 * src/reader.c (read_additionnal_code): New.
6995 (reader): Use it.
6996 * src/output.c (output_program): Remove.
6997 (output): Update.
6998
6999 2001-08-28 Marc Autret <autret_m@epita.fr>
7000
7001 * src/output.c (output_actions): Clean up.
7002 (output_gram): CPP-out useless code.
7003 * src/reader.c (reader): Clean up, CPP-out useless code.
7004
7005 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
7006
7007 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
7008 directive.
7009 * src/bison.simple: Add `%%definitions'.
7010
7011 2001-08-28 Marc Autret <autret_m@epita.fr>
7012
7013 * config/depcomp: New file.
7014
7015 2001-08-27 Paul Eggert <eggert@twinsun.com>
7016
7017 * src/bison.simple (yyparse): Don't take the address of an
7018 item before the start of an array, as that doesn't conform to
7019 the C Standard.
7020
7021 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
7022
7023 * src/output.c (output): Remove the initialization of the macro
7024 obstack. It was done too late here.
7025
7026 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
7027 completely wrong.
7028 (reader): Initialize the macro obstack here, since we need it to grow
7029 '%define' directives.
7030
7031 * src/reader.h: Declare the macro obstack as extern.
7032
7033 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
7034
7035 * src/output.c (output_parser): Fix. Store single '%' characters in
7036 the output obstack instead of throwing them away.
7037
7038 2001-08-27 Akim Demaille <akim@epita.fr>
7039
7040 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
7041
7042 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7043
7044 * lib/Makefile.am: Adjust.
7045
7046 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7047
7048 * src/bison.simple: Update and add '%%' directives.
7049
7050 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7051
7052 * src/reader.c (reader): Remove calls to 'output_headers' and
7053 'output_trailers'. Remove some C output.
7054 (readgram): Disable a piece of code that was writing a default
7055 definition for 'YYSTYPE'.
7056 (reader_output_yylsp): Remove.
7057 (packsymbols): Output token defintions to a macro.
7058 (copy_definition): Disable C output.
7059
7060 * src/reader.c (parse_macro_decl): New function used to parse macro
7061 declarations.
7062 (copy_string2): Put the body of copy_string into this new function.
7063 Add a parameter to let the caller choose whether he wants to copy the
7064 string delimiters or not.
7065 (copy_string): Be a simple call to copy_string2 with the last argument
7066 bound to true.
7067 (read_declarations): Add case for macro definition.
7068 (copy_identifier): New.
7069 (parse_macro_decl): Read macro identifiers using copy_identifier
7070 rather than lex.
7071
7072 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7073
7074 * src/output.c (prepare): Add prefixed names.
7075 (output_parser): Output semantic actions.
7076 (output_parser): Fix bug on '%%line' directives.
7077
7078 * src/output.c (output_headers): Remove. The C code printed by this
7079 function should now be in the skeletons.
7080 (output_trailers): Remove.
7081 (output): Disable call to 'reader_output_yylsp'.
7082 (output_rule_data): Do not output tables to the table obstack.
7083
7084 * src/output.c: Remove some C dedicated output.
7085 Improve the use of macro and output obstacks.
7086 (output_defines): Remove.
7087
7088 * src/output.c (output_token_translations): Associate 'translate'
7089 table with a macro. No output to the table obstack.
7090 (output_gram): Same for 'rhs' and 'prhs'.
7091 (output_stos): Same for 'stos'.
7092 (output_rule_data): Same for 'r1' and 'r2'.
7093 (token_actions): Same for 'defact'.
7094 (goto_actions): Same for 'defgoto'.
7095 (output_base): Same for 'pact' and 'pgoto'.
7096 (output_table): Same for 'table'.
7097 (output_check): Same for 'check'.
7098
7099 * src/output.c (output_table_data): New function.
7100 (output_short_table): Remove.
7101 (output_short_or_char_table): Remove.
7102
7103 * src/output.c (output_parser): Replace most of the skeleton copy code
7104 with something new. Skeletons are now processed character by character
7105 rather than line by line, and Bison looks for '%%' macros. This is the
7106 first step in making Bison's output process (a lot) more flexible.
7107 (output_parser): Use the macro table.
7108
7109 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7110
7111 * src/main.c (main): Initialize the macro table.
7112
7113 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7114
7115 * src/lex.c (percent_table): Add tok_define.
7116 * src/lex.h: Add tok_define.
7117
7118 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7119
7120 * src/macrotab.c: New file.
7121 * src/macrotab.h: New file.
7122 * src/Makefile.am: Update.
7123
7124 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
7125
7126 * lib/hash.c: New file.
7127 * lib/hash.h: New file.
7128 * lib/Makefile.am: Update.
7129
7130 2001-08-15 Akim Demaille <akim@epita.fr>
7131
7132 Version 1.28c.
7133
7134 2001-08-15 Marc Autret <autret_m@epita.fr>
7135
7136 * src/reader.c (readgram): Indent output macro YYSTYPE.
7137 (packsymbols): Likewise.
7138 (output_token_defines): Likewise.
7139 * src/files.c: Standardize.
7140 (compute_header_macro): New.
7141 (defines_obstack_save): New. Use compute_header_macro.
7142 (output_files): Update. Use defines_obstack_save.
7143
7144 2001-08-15 Akim Demaille <akim@epita.fr>
7145
7146 * doc/bison.texinfo (Table of Symbols): Document
7147 YYSTACK_USE_ALLOCA.
7148
7149 2001-08-15 Akim Demaille <akim@epita.fr>
7150
7151 * missing: Update from CVS Automake.
7152 * config/config.guess, config/config.sub, config/texinfo.tex:
7153 Update from gnu.org.
7154
7155 2001-08-15 Akim Demaille <akim@epita.fr>
7156
7157 * Makefile.maint: Sync with CVS Autoconf.
7158
7159 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
7160
7161 * doc/bison.texinfo: Include GNU Free Documentation License from
7162 `fdl.texi'.
7163 * doc/fdl.texi: Add to package.
7164
7165 2001-08-14 Marc Autret <autret_m@epita.fr>
7166
7167 Turn on %{source,header}_extension features.
7168
7169 * src/lex.c (percent_table): Un-CPP out header_extension and
7170 source_extension.
7171 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
7172 (compute_exts_from_src): Remove conditions. It restores priorities
7173 between options.
7174
7175 2001-08-14 Marc Autret <autret_m@epita.fr>
7176
7177 * src/files.c (compute_base_names): Add extensions computing when
7178 `--file-prefix' used.
7179 Standardize function calls.
7180
7181 2001-08-13 Marc Autret <autret_m@epita.fr>
7182
7183 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
7184 defining it (defined but null disables alloca).
7185
7186 2001-08-13 Marc Autret <autret_m@epita.fr>
7187
7188 * src/bison.simple (_yy_memcpy): CPP reformat.
7189
7190 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
7191
7192 * tests/atconfig.in (CPPFLAGS): Fix.
7193
7194 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
7195
7196 * doc/bison.texinfo: Include GNU General Public License from
7197 `gpl.texi'.
7198 * doc/gpl.texi: Add to package.
7199
7200 2001-08-10 Marc Autret <autret_m@epita.fr>
7201
7202 * src/print_graph.h: Fix.
7203 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
7204
7205 2001-08-10 Akim Demaille <akim@epita.fr>
7206
7207 * src/system.h: Provide default declarations for stpcpy, strndup,
7208 and strnlen.
7209
7210 2001-08-10 Robert Anisko <anisko_r@epita.fr>
7211
7212 * doc/bison.texinfo (Locations): Update @$ stuff.
7213
7214 2001-08-09 Robert Anisko <anisko_r@epita.fr>
7215
7216 * src/bison.simple (YYLLOC_DEFAULT): Update.
7217 (yyparse): Adjust.
7218
7219 2001-08-08 Marc Autret <autret_m@epita.fr>
7220
7221 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
7222 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
7223 Reported by Fabrice Bauzac.
7224
7225 2001-08-08 Marc Autret <autret_m@epita.fr>
7226
7227 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
7228 * src/vcg.c (output_node): Fix.
7229 * src/vcg.h: Cleanup.
7230 * src/print_graph.c: Add comments.
7231 (node_output_size): New global variable. Simplify the formatting of
7232 the VCG graph output.
7233 (print_actions): Unused code is now used. It notifies the final state
7234 and no action states in the VCG graph. It also give the reduce actions.
7235 The `shift and goto' edges are red and the `go to state' edges are
7236 blue.
7237 Get the current node name and node_obstack by argument.
7238 (node_obstack): New variable.
7239 (print_state): Manage node_obstack.
7240 (print_core): Use node_obstack given by argument.
7241 A node is not only computed here but in print_actions also.
7242 (print_graph): CPP out useless code instead of commenting it.
7243
7244 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
7245
7246 * tests/atconfig.in (CPPFLAGS): Fix.
7247
7248 2001-08-07 Akim Demaille <akim@epita.fr>
7249
7250 * src/print_graph.c (quote): New.
7251 (print_core): Use it.
7252
7253 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
7254
7255 * src/vcg.c (complain.h): Include it.
7256 Unepitaize `return' invocations.
7257 [NDEBUG] (main): Remove.
7258 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
7259 * src/files.c (open_files): Initialize graph_obstack.
7260 * src/print_graph.c (print_actions): CPP out useless code.
7261 (print_core): Don't output the last `\n' in labels.
7262 Use `quote'.
7263 * src/files.c (output_files): Output the VCG file.
7264 * src/main.c (main): Invoke print_graph ();
7265
7266 2001-08-06 Marc Autret <autret_m@epita.fr>
7267
7268 Automaton VCG graph output.
7269 Using option ``-g'' or long option ``--graph'', you can generate
7270 a gram_filename.vcg file containing a VCG description of the LALR (1)
7271 automaton of your grammar.
7272
7273 * src/main.c: Call to print_graph() function.
7274 * src/getargs.h: Update.
7275 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
7276 (graph_flag): New flag.
7277 (longopts): Update.
7278 (getargs): Add case `g'.
7279 * src/files.c (graph_obstack): New obstack struct.
7280 (open_files): Initialize new obstack.
7281 (output_files): Saves graph_obstack if required.
7282 * src/files.h (graph_obstack): New extern declaration.
7283 * src/Makefile.am: Add new source files.
7284
7285 2001-08-06 Marc Autret <autret_m@epita.fr>
7286
7287 * src/print_graph.c, src/print_graph.h (graph): New.
7288 * src/vcg.h: New file.
7289 * src/vcg.c: New file, VCG graph handling.
7290
7291 2001-08-06 Marc Autret <autret_m@epita.fr>
7292
7293 Add of %source_extension and %header_extension which specify
7294 the source or/and the header output file extension.
7295
7296 * src/files.c (compute_base_names): Remove initialisation of
7297 src_extension and header_extension.
7298 (compute_exts_from_gf): Update.
7299 (compute_exts_from_src): Update.
7300 (output_files): Update.
7301 * src/reader.c (parse_header_extension_decl): New.
7302 (parse_source_extension_decl): New.
7303 (read_declarations): New case statements for the new tokens.
7304 * src/lex.c (percent_table): Add entries for %source_extension
7305 and %header_extension.
7306 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
7307
7308 2001-08-06 Marc Autret <autret_m@epita.fr>
7309
7310 * configure.in: Bump to 1.28c.
7311 * doc/bison.texinfo: Texinfo thingies.
7312
7313 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
7314
7315 * tests/atconfig.in (CPPFLAGS): Add.
7316 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
7317
7318 2001-08-03 Akim Demaille <akim@epita.fr>
7319
7320 Version 1.28b.
7321
7322 2001-08-03 Akim Demaille <akim@epita.fr>
7323
7324 * tests/Makefile.am (check-local): Ship testsuite.
7325 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
7326 Include `string.h'.
7327
7328 2001-08-03 Akim Demaille <akim@epita.fr>
7329
7330 * configure.in: Try using -Wformat when compiling.
7331
7332 2001-08-03 Akim Demaille <akim@epita.fr>
7333
7334 * configure.in: Bump to 1.28b.
7335
7336 2001-08-03 Akim Demaille <akim@epita.fr>
7337
7338 * src/complain.c: Adjust strerror_r portability issues.
7339
7340 2001-08-03 Akim Demaille <akim@epita.fr>
7341
7342 Version 1.28a.
7343
7344 2001-08-03 Akim Demaille <akim@epita.fr>
7345
7346 * src/getargs.c, src/getarg.h (skeleton)): Constify.
7347 * src/lex.c (literalchar): Avoid name clashes on `buf'.
7348 * src/getargs.c: Include complain.h.
7349 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
7350 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
7351
7352 2001-08-03 Akim Demaille <akim@epita.fr>
7353
7354 * src/reader.c (readgram): Display hidden chars in error messages.
7355
7356 2001-08-03 Akim Demaille <akim@epita.fr>
7357
7358 Update to gettext 0.10.39.
7359
7360 2001-08-03 Akim Demaille <akim@epita.fr>
7361
7362 * lib/strspn.c: New.
7363
7364 2001-08-01 Marc Autret <autret_m@epita.fr>
7365
7366 * doc/bison.texinfo: Update.
7367 * doc/bison.1 (mandoc): Update.
7368 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
7369 * src/files.c: Support output files extensions computing.
7370 (src_extension): New static variable.
7371 (header_extension): New static variable.
7372 (tr): New function.
7373 (get_extension_index): New function, gets the index of an extension
7374 filename in a string.
7375 (compute_exts_from_gf): New function, computes extensions from the
7376 grammar file extension.
7377 (compute_exts_from_src): New functions, computes extensions from the
7378 C source file extension, file given by ``-o'' option.
7379 (compute_base_names): Update.
7380 (output_files): Update.
7381
7382 2001-08-01 Robert Anisko <anisko_r@epita.fr>
7383
7384 * doc/bison.texi: Document @$.
7385 (Locations): New section.
7386
7387 2001-07-18 Akim Demaille <akim@epita.fr>
7388
7389 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
7390 * config/prev-version.txt, config/move-if-change: New.
7391 * Makefile.am: Adjust.
7392
7393 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
7394
7395 * src/bison.simple (yyparse): Suppress warning `comparaison
7396 between signed and unsigned'.
7397
7398 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
7399
7400 * src/getargs.h (raw_flag): Remove.
7401 * src/getargs.c: Die on `-r'/`--raw'.
7402 * src/lex.c (parse_percent_token): Die on `%raw'.
7403 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
7404 * tests/calc.at: Suppress test with option `--raw'.
7405
7406 2001-07-14 Akim Demaille <akim@epita.fr>
7407
7408 * config/: New.
7409 * configure.in: Require Autoconf 2.50.
7410 Update to gettext 0.10.38.
7411
7412 2001-03-16 Akim Demaille <akim@epita.fr>
7413
7414 * doc/bison.texinfo: ANSIfy the examples.
7415
7416 2001-03-16 Akim Demaille <akim@epita.fr>
7417
7418 * getargs.c (skeleton): New variable.
7419 (longopts): --skeleton is a new option.
7420 (shortopts, getargs): -S is a new option.
7421 * getargs.h: Declare skeleton.
7422 * output.c (output_parser): Use it.
7423
7424 2001-03-16 Akim Demaille <akim@epita.fr>
7425
7426 * m4/strerror_r.m4: New.
7427 * m4/error.m4: Run AC_FUNC_STRERROR_R.
7428 * lib/error.h, lib/error.c: Update.
7429
7430 2001-03-16 Akim Demaille <akim@epita.fr>
7431
7432 * src/getargs.c (longopts): Clean up.
7433
7434 2001-02-21 Akim Demaille <akim@epita.fr>
7435
7436 * src/reader.c (gensym): `gensym_count' is your own.
7437 Use a static buf to create the symbol name, as token_buffer is no
7438 longer a buffer.
7439
7440 2001-02-08 Akim Demaille <akim@epita.fr>
7441
7442 * src/conflicts.c (conflict_report): Be sure not to append to res
7443 between two calls, which could happen if both first sprintf were
7444 skipped, but not the first cp += strlen.
7445
7446 2001-02-08 Akim Demaille <akim@epita.fr>
7447
7448 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
7449 New, from fileutils 4.0.37.
7450 * configure.in: Require Autoconf 2.49c. I took some time before
7451 making this decision. This is the only way out for portability
7452 issues in Bison, it would mean way too much duplicate effort to
7453 import in Bison features implemented in 2.49c since 2.13.
7454 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
7455
7456 2001-02-02 Akim Demaille <akim@epita.fr>
7457
7458 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
7459 * lib/xalloc.h, lib/xmalloc.c: Update.
7460
7461 2001-01-19 Akim Demaille <akim@epita.fr>
7462
7463 Get rid of the ad hoc handling of token_buffer in the scanner: use
7464 the obstacks.
7465
7466 * src/lex.c (token_obstack): New.
7467 (init_lex): Initialize it. No longer call...
7468 (grow_token_buffer): this. Remove it.
7469 Adjust all the places which used it to use the obstack.
7470
7471 2001-01-19 Akim Demaille <akim@epita.fr>
7472
7473 * src/lex.h: Rename all the tokens:
7474 s/\bENDFILE\b/tok_eof/g;
7475 s/\bIDENTIFIER\b/tok_identifier/g;
7476 etc.
7477 Let them be enums, not #define, to ease debugging.
7478 Adjust all the code.
7479
7480 2001-01-18 Akim Demaille <akim@epita.fr>
7481
7482 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
7483 * src/lex.c (maxtoken, grow_token_buffer): Static.
7484
7485 2001-01-18 Akim Demaille <akim@epita.fr>
7486
7487 Since we now use obstacks, more % directives can be enabled.
7488
7489 * src/lex.c (percent_table): Also accept `%yacc',
7490 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
7491 `%debug'.
7492 Handle the actions for `%semantic_parser' and `%pure_parser' here,
7493 instead of returning a token.
7494 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
7495 * src/reader.c (read_declarations): Adjust.
7496 * src/files.c (open_files): Don't call `compute_base_names', don't
7497 compute `attrsfile' since they depend upon data which might be
7498 *in* the input file now.
7499 (output_files): Do it here.
7500 * src/output.c (output_headers): Document the fact that this patch
7501 introduces a guaranteed SEGV for semantic parsers.
7502 * doc/bison.texinfo: Document them.
7503 * tests/suite.at: Exercise these %options.
7504
7505 2000-12-20 Akim Demaille <akim@epita.fr>
7506
7507 Also handle the output file (--verbose) with obstacks.
7508
7509 * files.c (foutput): Remove.
7510 (output_obstack): New.
7511 Adjust all dependencies.
7512 * src/conflicts.c: Return a string.
7513 * src/system.h (obstack_grow_string): Rename as...
7514 (obstack_sgrow): this. Be ready to work with non literals.
7515 (obstack_fgrow4): New.
7516
7517 2000-12-20 Akim Demaille <akim@epita.fr>
7518
7519 * src/files.c (open_files): Fix the computation of short_base_name
7520 in the case of `-o foo.tab.c'.
7521
7522 2000-12-20 Akim Demaille <akim@epita.fr>
7523
7524 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
7525 (copy_dollar): Now that everything uses obstacks, get rid of the
7526 FILE * parameters.
7527
7528 2000-12-20 Akim Demaille <akim@epita.fr>
7529
7530 * src/files.c (open_files): Actually the `.output' file is based
7531 on the short_base_name, not base_name.
7532 * tests/suite.at (Checking output file names): Adjust.
7533
7534 2000-12-20 Akim Demaille <akim@epita.fr>
7535
7536 * src/bison.s1: Remove, we now use directly...
7537 * src/bison.simple: this.
7538 * src/Makefile.am: Use pkgdata instead of data.
7539
7540 2000-12-20 Akim Demaille <akim@epita.fr>
7541
7542 * src/files.c (guard_obstack): New.
7543 (open_files): Initialize it.
7544 (output_files): Dump it...
7545 * src/files.h: Export it.
7546 * src/reader.c (copy_guard): Use it.
7547
7548 2000-12-19 Akim Demaille <akim@epita.fr>
7549
7550 * src/files.c (outfile, defsfile, actfile): Removed as global
7551 vars.
7552 (open_files): Don't compute them.
7553 (output_files): Adjust.
7554 (base_name, short_base_name): Be global.
7555 Adjust dependencies.
7556
7557 2000-12-19 Akim Demaille <akim@epita.fr>
7558
7559 * src/files.c (strsuffix): New.
7560 (stringappend): Be just like strcat but allocate.
7561 (base_names): Eve out from open_files.
7562 Try to simplify the rather hairy computation of base_name and
7563 short_base_name.
7564 (open_files): Use it.
7565 * tests/suite.at (Checking output file names): New test.
7566
7567 2000-12-19 Akim Demaille <akim@epita.fr>
7568
7569 * src/system.h (obstack_grow_literal_string): Rename as...
7570 (obstack_grow_string): this.
7571 * src/output.c (output_parser): Recognize `%% actions' instead of
7572 `$'.
7573 * src/bison.s1: s/$/%% actions/.
7574 * src/bison.hairy: Likewise.
7575
7576 2000-12-19 Akim Demaille <akim@epita.fr>
7577
7578 * src/output.c (output_parser): Compute the `#line' lines when
7579 there are.
7580 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
7581 Suggested by Hans Aberg.
7582
7583 2000-12-19 Akim Demaille <akim@epita.fr>
7584
7585 Let the handling of the skeleton files be local to the procedures
7586 that use it.
7587
7588 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
7589 longer static.
7590 (fparser, open_extra_files): Remove.
7591 (open_files, output_files): Don't take care of fparser.
7592 * src/files.h: Adjust.
7593 * src/output.c (output_parser): Open and close the file to the
7594 skeleton.
7595 * src/reader.c (read_declarations): When %semantic_parser, open
7596 fguard.
7597
7598 2000-12-19 Akim Demaille <akim@epita.fr>
7599
7600 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
7601 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
7602
7603 2000-12-19 Akim Demaille <akim@epita.fr>
7604
7605 * src/files.c (open_files): Yipee! We no longer need all the code
7606 looking for `/tmp' since we have no tmp file.
7607
7608 2000-12-19 Akim Demaille <akim@epita.fr>
7609
7610 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
7611 New macros.
7612 * src/files.c (open_files): Less dependency on MSDOS etc.
7613
7614 2000-12-14 Akim Demaille <akim@epita.fr>
7615
7616 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
7617 Provide a default definition.
7618 Use it when executing the default @ action.
7619 * src/reader.c (reader_output_yylsp): No longer include
7620 `timestamp' and `text' in the default YYLTYPE.
7621
7622 2000-12-12 Akim Demaille <akim@epita.fr>
7623
7624 * src/reader.c (copy_definition, parse_union_decl, copy_action)
7625 (copy_guard): Quote the file names.
7626 Reported by Laurent Mascherpa.
7627
7628 2000-12-12 Akim Demaille <akim@epita.fr>
7629
7630 * src/output.c (output_headers, output_program, output): Be sure
7631 to escape special characters when outputting filenames.
7632 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
7633 (output_headers): Don't depend on them, Use ACTSTR.
7634
7635 2000-11-17 Akim Demaille <akim@epita.fr>
7636
7637 * lib/obstack.h: Formatting changes.
7638 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
7639 prevents type checking.
7640 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
7641 cast the value to (void *): assigning a `foo *' to a `void *'
7642 variable is valid.
7643 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
7644 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
7645 append characters.
7646
7647 2000-11-17 Akim Demaille <akim@epita.fr>
7648
7649 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
7650 as...
7651 (suite.m4, regression.m4, calc.m4): these.
7652 * tests/atgeneral.m4: Update from CVS Autoconf.
7653
7654 2000-11-17 Akim Demaille <akim@epita.fr>
7655
7656 * tests/regression.m4 (%union and --defines): New test,
7657 demonstrating a current bug in the obstack implementation.
7658
7659 2000-11-17 Akim Demaille <akim@epita.fr>
7660
7661 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
7662 macros.
7663 Use them to declare the variables which are global or local to
7664 `yyparse'.
7665
7666 2000-11-17 Akim Demaille <akim@epita.fr>
7667
7668 * acconfig.h: Remove, no longer used.
7669
7670 2000-11-07 Akim Demaille <akim@epita.fr>
7671
7672 * src: s/Copyright (C)/Copyright/g.
7673
7674 2000-11-07 Akim Demaille <akim@epita.fr>
7675
7676 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
7677 defining.
7678 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
7679
7680 2000-11-07 Akim Demaille <akim@epita.fr>
7681
7682 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
7683 Merge in a single CPP if/else.
7684
7685 2000-11-07 Akim Demaille <akim@epita.fr>
7686
7687 * src/output.c (output): Remove useless variables.
7688 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
7689 argument `data' for consistency with the prototypes.
7690 Qualify it `const'.
7691 (obstack_copy, obstack_copy0): Rename the second argument as
7692 `address' for consistency. Qualify it `const'.
7693 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
7694 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
7695 `const' their input argument (`data' or `address').
7696 Adjust the corresponding macros to include `const' in casts.
7697
7698 2000-11-03 Akim Demaille <akim@epita.fr>
7699
7700 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
7701 s/PFILE1/BISON_HAIRY/.
7702 Adjust dependencies.
7703
7704 2000-11-03 Akim Demaille <akim@epita.fr>
7705
7706 For some reason, this was not applied.
7707
7708 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
7709 `unlink': it's no longer used.
7710
7711 2000-11-03 Akim Demaille <akim@epita.fr>
7712
7713 * src/files.c (skeleton_find): New function, eved out of...
7714 (open_files, open_extra_files): here.
7715
7716 2000-11-03 Akim Demaille <akim@epita.fr>
7717
7718 Don't use `atexit'.
7719
7720 * src/files.c (obstack_save): New function.
7721 (done): Rename as...
7722 (output_files): this.
7723 Use `obstack_save'.
7724 * src/main.c (main): Don't use `atexit' to register `done', since
7725 it no longer has to remove tmp files, just call `output_files'
7726 when there are no errors.
7727
7728 2000-11-02 Akim Demaille <akim@epita.fr>
7729
7730 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
7731 `unlink': it's no longer used.
7732 * src/files.h: Formatting changes.
7733
7734 2000-11-02 Akim Demaille <akim@epita.fr>
7735
7736 Remove the last uses of mktemp and unlink/delete.
7737
7738 * src/files.c (fdefines, ftable): Removed.
7739 (defines_ostack, table_obstack): New.
7740 Adjust dependencies of the former into uses of the latter.
7741 * src/output.c (output_short_or_char_table, output_short_table):
7742 Convert to using obstacks.
7743 * src/reader.c (copy_comment2): Accept one FILE * and two
7744 obstacks.
7745 (output_token_defines, reader_output_yylsp): Use obstacks.
7746 * src/system.h (obstack_fgrow3): New.
7747
7748 2000-11-01 Akim Demaille <akim@epita.fr>
7749
7750 Change each use of `fattrs' into a use of `attrs_obstack'.
7751
7752 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
7753 * src/files.c (fattrs): Remove.
7754 (attrs_obstack): New.
7755 Adjust all dependencies.
7756 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
7757
7758 2000-11-01 Akim Demaille <akim@epita.fr>
7759
7760 Introduce obstacks.
7761 Change each use of `faction' into a use of `action_obstack'.
7762
7763 * lib/obstack.h, lib/obstack.c: New files.
7764 * src/files.c (faction): Remove.
7765 (action_obstack): New.
7766 Adjust all dependencies.
7767
7768 2000-10-20 Akim Demaille <akim@epita.fr>
7769
7770 * lib/quote.h (PARAMS): New macro. Use it.
7771
7772 2000-10-16 Akim Demaille <akim@epita.fr>
7773
7774 * src/output.c (output_short_or_char_table): New function.
7775 (output_short_table, output_token_translations): Use it.
7776 (goto_actions): Use output_short_table.
7777
7778 2000-10-16 Akim Demaille <akim@epita.fr>
7779
7780 * src/symtab.c (bucket_new): New function.
7781 (getsym): Use it.
7782
7783 * src/output.c (output_short_table): New argument to display the
7784 comment associated with the table.
7785 Adjust dependencies.
7786 (output_gram): Use it.
7787 (output_rule_data): Nicer output layout for YYTNAME.
7788
7789 2000-10-16 Akim Demaille <akim@epita.fr>
7790
7791 * src/lex.c (read_typename): New function.
7792 (lex): Use it.
7793 * src/reader.c (copy_dollar): Likewise.
7794
7795 2000-10-16 Akim Demaille <akim@epita.fr>
7796
7797 * src/reader.c (copy_comment2): Expect the input stream to be on
7798 the `/' which is suspected to open a comment, instead of being
7799 called after `//' or `/*' was read.
7800 (copy_comment, copy_definition, parse_union_decl, copy_action)
7801 (copy_guard): Adjust.
7802
7803 2000-10-16 Akim Demaille <akim@epita.fr>
7804
7805 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
7806 `read_signed_integer'.
7807
7808 2000-10-16 Akim Demaille <akim@epita.fr>
7809
7810 * src/reader.c (copy_dollar): New function.
7811 (copy_guard, copy_action): Use it.
7812
7813 2000-10-16 Akim Demaille <akim@epita.fr>
7814
7815 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
7816 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
7817 New files, from Fileutils 4.0.27.
7818 * src/main.c (printable_version): Remove.
7819 * src/lex.c, src/reader.c: Use `quote'.
7820
7821 2000-10-04 Akim Demaille <akim@epita.fr>
7822
7823 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
7824
7825 2000-10-04 Akim Demaille <akim@epita.fr>
7826
7827 * doc/bison.texinfo: Various typos spotted by Neil Booth.
7828
7829 2000-10-04 Akim Demaille <akim@epita.fr>
7830
7831 When a literal string is used to define two different tokens,
7832 `bison -v' segfaults.
7833 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
7834
7835 * tests/regression.m4: New file.
7836 Include the core of the sample provided by Piotr Gackiewicz.
7837 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
7838 properly.
7839
7840 2000-10-04 Akim Demaille <akim@epita.fr>
7841
7842 * src/reader.c (parse_expect_decl): Keep `count' within the size
7843 of `buffer'.
7844 From Neil Booth.
7845
7846 2000-10-02 Paul Eggert <eggert@twinsun.com>
7847
7848 * bison.s1 (yyparse): Assign the default value
7849 unconditionally, to avoid a GCC warning and make the parser a
7850 tad smaller.
7851
7852 2000-10-02 Akim Demaille <akim@epita.fr>
7853
7854 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
7855 options.
7856
7857 2000-10-02 Akim Demaille <akim@epita.fr>
7858
7859 * src/derives.c, src/print.c, src/reduce.c: To ease the
7860 translation, move some `\n' out of the translated strings.
7861
7862 2000-10-02 Akim Demaille <akim@epita.fr>
7863
7864 The location tracking mechanism is precious for parse error
7865 messages. Nevertheless, it is enabled only when `@n' is used in
7866 the grammar, which is a different issue (you can use it in error
7867 message, but not in the grammar per se). Therefore, there should
7868 be another means to enable it.
7869
7870 * src/getargs.c (getargs): Support `--locations'.
7871 (usage): Report it.
7872 * src/getargs.h (locationsflag): Export it.
7873 * src/lex.c (percent_table): Support `%locations'.
7874 * src/reader.c (yylsp_needed): Remove this variable, now replaced
7875 with `locationsflag'.
7876 * doc/bison.texinfo: Document `--locations' and `%locations'.
7877 Sort the options.
7878 * tests/calc.m4: Test it.
7879
7880 For regularity of the names, replace each
7881 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
7882 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
7883 In addition replace each `flag' with `_flag'.
7884
7885 2000-10-02 Akim Demaille <akim@epita.fr>
7886
7887 Also test parse error messages, including with YYERROR_VERBOSE.
7888
7889 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
7890 associative).
7891 Use it to check the computations.
7892 Use it to check `nonassoc' is honored.
7893 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
7894 `--yyerror-verbose'.
7895 (_AT_CHECK_CALC): Adjust to this option.
7896 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
7897
7898 2000-10-02 Akim Demaille <akim@epita.fr>
7899
7900 Test also `--verbose', `--defines' and `--name-prefix'. Testing
7901 the latter demonstrates a flaw in the handling of non debugging
7902 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
7903 was used in order to simplify:
7904
7905 #if YYDEBUG
7906 if (yydebug)
7907 {
7908 ...
7909 }
7910 #endif
7911
7912 into
7913
7914 if (yydebug)
7915 {
7916 ...
7917 }
7918
7919 unfortunately this leads to a CPP conflict when
7920 `--name-prefix=foo' is used since it produces `#define yydebug
7921 foodebug'.
7922
7923 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
7924 (YYDPRINTF): New macro.
7925 Spread its use.
7926 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
7927 the bison options.
7928 Also test `--verbose', `--defines' and `--name-prefix'.
7929
7930 2000-10-02 Akim Demaille <akim@epita.fr>
7931
7932 Improve the readability of the produced parsers.
7933
7934 * src/bison.s1: Formatting changes.
7935 Improve the comment related to the `$' mark.
7936 (yydefault): Don't fall through to `yyresume': `goto' there.
7937 * src/output.c (output_parser): When the `$' is met, skip the end
7938 of its line.
7939 New variable, `number_of_dollar_signs', to check there's exactly
7940 one `$' in the parser skeleton.
7941
7942 2000-10-02 Akim Demaille <akim@epita.fr>
7943
7944 * lib/xstrdup.c: New file, from the fileutils.
7945 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
7946 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
7947 instead of strlen + xmalloc + strcpy.
7948 * src/symtab.c (copys): Remove, use xstrdup instead.
7949
7950 2000-10-02 Akim Demaille <akim@epita.fr>
7951
7952 * src/gram.h (associativity): New enum type which replaces the
7953 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
7954 `right_assoc', `left_assoc' and `non_assoc'.
7955 Adjust all dependencies.
7956 * src/reader.c: Formatting changes.
7957 (LTYPESTR): Don't define it, use it as a literal in
7958 `reader_output_yylsp'.
7959 * src/symtab.h (symbol_class): New enum type which replaces the
7960 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
7961 `sunknown', `stoken and `snterm'.
7962
7963 2000-10-02 Akim Demaille <akim@epita.fr>
7964
7965 * src/getargs.c (fixed_outfiles): Rename as...
7966 (yaccflag): for consistency and accuracy.
7967 Adjust dependencies.
7968
7969 2000-10-02 Akim Demaille <akim@epita.fr>
7970
7971 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
7972 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
7973 difficult and introduced a lot of core dump. It turns out that
7974 Bison used an implementation of `xmalloc' based on `calloc', and
7975 at various places it does depend upon the initialization to 0. I
7976 have not tried to isolate the pertinent places, and all the former
7977 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
7978 someone should address this issue.
7979
7980 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
7981 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
7982 files.
7983 Adjust dependencies.
7984 * src/warshall.h: New file.
7985 Propagate.
7986
7987 2000-10-02 Akim Demaille <akim@epita.fr>
7988
7989 Various anti-`extern in *.c' changes.
7990
7991 * src/system.h: Include `assert.h'.
7992
7993 2000-10-02 Akim Demaille <akim@epita.fr>
7994
7995 * src/state.h (nstates, final_state, first_state, first_shift)
7996 (first_reduction): Move their exportation from here...
7997 * src/LR0.h: to here.
7998 Adjust dependencies.
7999 * src/getargs.c (statisticsflag): New variable.
8000 Add support for `--statistics'.
8001 Adjust dependencies.
8002
8003 Remove a lot of now useless `extern' statements in most files.
8004
8005 2000-10-02 Akim Demaille <akim@epita.fr>
8006
8007 * src/LR0.h: New file.
8008 Propagate its use.
8009
8010 2000-10-02 Akim Demaille <akim@epita.fr>
8011
8012 * src/print.h: New file.
8013 Propagate its use.
8014 * src/print.c: Formatting and ordering changes.
8015 (verbose, terse): Replace with...
8016 (print_results): this new function.
8017 Adjust dependencies.
8018
8019 2000-10-02 Akim Demaille <akim@epita.fr>
8020
8021 * src/conflicts.c (conflict_report): New function.
8022 (conflict_log, verbose_conflict_log): Replace with...
8023 (print_conflicts): this function.
8024 Adjust dependencies.
8025 * src/conflicts.h: New file.
8026 Propagate its inclusion.
8027
8028 2000-10-02 Akim Demaille <akim@epita.fr>
8029
8030 * src/nullable.h: New file.
8031 Propagate its inclusion.
8032 * src/nullable.c: Formatting changes.
8033
8034 2000-10-02 Akim Demaille <akim@epita.fr>
8035
8036 * src/reduce.h: New file.
8037 Propagate its inclusion.
8038 * src/reduce.c: Topological sort and other formatting changes.
8039 (bool, TRUE, FALSE): Move their definition to...
8040 * src/system.h: here.
8041
8042 2000-10-02 Akim Demaille <akim@epita.fr>
8043
8044 * src/files.c: Formatting changes.
8045 (tryopen, tryclose, openfiles): Rename as...
8046 (xfopen, xfclose, open_files): this.
8047 (stringappend): static.
8048 * src/files.h: Complete the list of exported symbols.
8049 Propagate its use.
8050
8051 2000-10-02 Akim Demaille <akim@epita.fr>
8052
8053 * src/reader.h: New file.
8054 Propagate its use instead of tedious list of `extern' and
8055 prototypes.
8056 * src/reader.c: Formatting changes, topological sort,
8057 s/register//.
8058
8059 2000-10-02 Akim Demaille <akim@epita.fr>
8060
8061 * src/lex.h: Prototype `lex.c' exported functions.
8062 * src/reader.c: Adjust.
8063 * src/lex.c: Formatting changes.
8064 (safegetc): Rename as...
8065 (xgetc): this.
8066
8067 2000-10-02 Akim Demaille <akim@epita.fr>
8068
8069 * src/lalr.h: New file.
8070 Propagate its inclusion instead of prototypes and `extern'.
8071 * src/lalr.c: Formatting changes, topological sorting etc.
8072
8073 2000-10-02 Akim Demaille <akim@epita.fr>
8074
8075 * src/output.c (token_actions): Introduce a temporary array,
8076 YYDEFACT, that makes it possible for this function to use
8077 output_short_table.
8078
8079 2000-10-02 Akim Demaille <akim@epita.fr>
8080
8081 `user_toknums' is output as a `short[]' in `output.c', while it is
8082 defined as a `int[]' in `reader.c'. For consistency with the
8083 other output tables, `user_toknums' is now defined as a table of
8084 shorts.
8085
8086 * src/reader.c (user_toknums): Be a short table instead of an int
8087 table.
8088 Adjust dependencies.
8089
8090 Factor the short table outputs.
8091
8092 * src/output.c (output_short_table): New function.
8093 * src/output.c (output_gram, output_stos, output_rule_data)
8094 (output_base, output_table, output_check): Use it.
8095
8096 2000-10-02 Akim Demaille <akim@epita.fr>
8097
8098 * src/output.c (output): Topological sort of the functions, in
8099 order to get rid of the `static' prototypes.
8100 No longer use `register'.
8101 * src/output.h: New file.
8102 Propagate its inclusion in files explicitly prototyping functions
8103 from output.c.
8104
8105 2000-09-21 Akim Demaille <akim@epita.fr>
8106
8107 * src/atgeneral.m4: Update from Autoconf.
8108
8109 2000-09-21 Akim Demaille <akim@epita.fr>
8110
8111 * src/closure.h: New file.
8112 * src/closure.c: Formatting changes, topological sort over the
8113 functions, use of closure.h.
8114 (initialize_closure, finalize_closure): Rename as...
8115 (new_closure, free_closure): these. Adjust dependencies.
8116 * src/LR0.c: Formatting changes, topological sort, use of
8117 cloture.h.
8118 (initialize_states): Rename as...
8119 (new_states): this.
8120 * src/Makefile.am (noinst_HEADERS): Adjust.
8121
8122 2000-09-20 Akim Demaille <akim@epita.fr>
8123
8124 * src/acconfig.h: Don't protect config.h against multiple
8125 inclusion.
8126 Don't define PARAMS.
8127 * src/system.h: Define PARAMS.
8128 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
8129 purpose of config.h. system.h must not try to fix wrong
8130 definitions in config.h.
8131
8132 2000-09-20 Akim Demaille <akim@epita.fr>
8133
8134 * src/derives.h: New file.
8135 * src/main.c, src/derives.h: Use it.
8136 Formatting changes.
8137 * src/Makefile.am (noinst_HEADERS): Adjust.
8138
8139 2000-09-20 Akim Demaille <akim@epita.fr>
8140
8141 * tests/atgeneral.m4: Update from Autoconf.
8142 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
8143 (AT_CHECK_CALC): New macros.
8144 Use these macros to test bison with options `', `--raw',
8145 `--debug', `--yacc', `--yacc --debug'.
8146
8147 2000-09-19 Akim Demaille <akim@epita.fr>
8148
8149 * src/output.c: Formatting changes.
8150 * src/machine.h: Remove, leaving its contents in...
8151 * src/system.h: here.
8152 Include stdio.h.
8153 Adjust all dependencies on stdio.h and machine.h.
8154 * src/getargs.h: New file.
8155 Let all `extern' declarations about getargs.c be replaced with
8156 inclusion of `getargs.h'.
8157 * src/Makefile.am (noinst_HEADERS): Adjust.
8158
8159 * tests/calc.m4 (yyin): Be initialized in main, not on the global
8160 scope.
8161 (yyerror): Returns void, not int.
8162 * doc/bison.texinfo: Formatting changes.
8163
8164 2000-09-19 Akim Demaille <akim@epita.fr>
8165
8166 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
8167 portable.
8168
8169 2000-09-18 Akim Demaille <akim@epita.fr>
8170
8171 * configure.in: Append WARNING_CFLAGS to CFLAGS.
8172 * src/Makefile.am (INCLUDES): Don't.
8173 Be ready to fetch headers in lib/.
8174
8175 2000-09-18 Akim Demaille <akim@epita.fr>
8176
8177 * doc/bison.texinfo: Update the copyright.
8178 ANSIfy and GNUify the examples.
8179 Remove the old menu.
8180
8181 2000-09-18 Akim Demaille <akim@epita.fr>
8182
8183 First set of tests: use the `calc' example from the documentation.
8184
8185 * src/bison.s1 (yyparse): Condition the code using `yytname' which
8186 is defined only when YYDEBUG is.
8187 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
8188 * src/files.c (tryopen, tryclose): Formatting changes.
8189 Move to the top and be static.
8190 * src/reader.c (read_signed_integer): Likewise.
8191 * tests/calc.m4: New file.
8192 * Makefile.am, suite.m4: Adjust.
8193 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
8194
8195 2000-09-18 Akim Demaille <akim@epita.fr>
8196
8197 Add support for an Autotest test suite for Bison.
8198
8199 * m4/m4.m4, m4/atconfig.m4: New files.
8200 * m4/Makefile.am (EXTRA_DIST): Adjust.
8201 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
8202 files.
8203 * src/getargs.c: Display a more standard --version message.
8204 * src/reader.c (reader): Formatting changes.
8205 No longer depend upon VERSION_STRING.
8206 * configure.in: No longer use `dnl'.
8207 Set up the test suite and the new directory `tests/.
8208 (VERSION_STRING): Remove.
8209
8210 2000-04-14 Akim Demaille <akim@epita.fr>
8211
8212 * src/reader.c (copy_comment2): New function, same as former
8213 `copy_comment', but outputs into two FILE *.
8214 (copy_comment): Use it.
8215 (parse_union_decl): Use it.
8216 (get_type, parse_start_decl): Use the same `invalid' message.
8217 (parse_start_decl, parse_union_decl): Use the same `multiple'
8218 message.
8219 (parse_union_decl, copy_guard, copy_action): Use the same
8220 `unmatched' message.
8221 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
8222
8223 2000-03-31 Akim Demaille <akim@epita.fr>
8224
8225 * src/files.c (tryopen, tryclose): Move to the top.
8226 Be static.
8227
8228 2000-03-31 Akim Demaille <akim@epita.fr>
8229
8230 * src/main.c (main): Don't call `done', exit does it.
8231
8232 2000-03-31 Akim Demaille <akim@epita.fr>
8233
8234 * allocate.c: s/return (foo)/return foo/.
8235 * lalr.c: Likewise.
8236 * LR0.c: Likewise.
8237 * output.c: Likewise.
8238 * reader.c: Likewise.
8239 * symtab.c: Likewise.
8240 * vmsgetargs.c: Likewise.
8241
8242 2000-03-31 Akim Demaille <akim@epita.fr>
8243
8244 Clean up the error reporting functions.
8245
8246 * src/report.c: New file.
8247 * src/report.h: Likewise.
8248 * src/Makefile.am: Adjust.
8249 * m4/error.m4: New file.
8250 * m4/Makefile.am: Adjust.
8251 * configure.in (jm_PREREQ_ERROR): Call it.
8252 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
8253 Remove.
8254 (fatal, fatals): Remove. All callers use complain.c::fatal.
8255 (warn, warni, warns, warnss, warnss): Remove. All callers use
8256 complain.c::complain.
8257 (toomany): Remove, use fatal instead.
8258 * src/files.c (done): No argument, use complain_message_count.
8259 * src/main.c (main): Register `done' to `atexit'.
8260
8261 * src/getargs.c (usage): More `fputs', less `fprintf'.
8262
8263 2000-03-28 Akim Demaille <akim@epita.fr>
8264
8265 * lib/: New directory.
8266 * Makefile.am (SUBDIRS): Adjust.
8267 * configure.in: Adjust.
8268 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
8269 useless.
8270 * src/alloca.c: Moved to lib/.
8271 * src/getopt.c: Likewise.
8272 * src/getopt1.c: Likewise.
8273 * src/getopt.h: Likewise.
8274 * src/ansi2knr.c: Likewise.
8275 * src/ansi2knr.1: Likewise.
8276 * src/Makefile.am: Adjust.
8277 * lib/Makefile.am: New file.
8278
8279 2000-03-28 Akim Demaille <akim@epita.fr>
8280
8281 * src/getargs.c (usage): Refresh the help message.
8282
8283 2000-03-17 Akim Demaille <akim@epita.fr>
8284
8285 * src/getopt1.c: Updated from textutils 2.0e
8286 * src/getopt.c: Likewise.
8287 * src/getopt.h: Likewise.
8288
8289 2000-03-17 Akim Demaille <akim@epita.fr>
8290
8291 * src/Makefile.am (bison.simple): Fix the awk program: quote only
8292 the file name, not the whole `#line LINE FILE'.
8293
8294 2000-03-17 Akim Demaille <akim@epita.fr>
8295
8296 On syntax errors, report the token on which we choked.
8297
8298 * src/bison.s1 (yyparse): In the label yyerrlab, when
8299 YYERROR_VERBOSE, add yychar in msg.
8300
8301 2000-03-17 Akim Demaille <akim@epita.fr>
8302
8303 * src/reader.c (copy_at): New function.
8304 (copy_guard): Use it.
8305 (copy_action): Use it.
8306
8307 2000-03-17 Akim Demaille <akim@epita.fr>
8308
8309 Be kind to translators, save some useless translations.
8310
8311 * src/main.c (banner): New function.
8312 (fatal_banner): Use it.
8313 (warn_banner): Use it.
8314
8315 2000-03-17 Akim Demaille <akim@epita.fr>
8316
8317 * src/reader.c (copy_definition): Use copy_string and
8318 copy_comment. Removed now unused `match', `ended',
8319 `cplus_comment'.
8320 (copy_comment, copy_string): Moved, to be visible from
8321 copy_definition.
8322
8323 2000-03-17 Akim Demaille <akim@epita.fr>
8324
8325 * src/reader.c (copy_string): Declare `static inline'. No
8326 problems with inline, since it is checked by configure.
8327 (copy_comment): Likewise.
8328
8329 2000-03-17 Akim Demaille <akim@epita.fr>
8330
8331 * src/reader.c (packsymbols): Formatting changes.
8332
8333 2000-03-17 Akim Demaille <akim@epita.fr>
8334
8335 * src/reader.c (copy_comment): New function, factored out from:
8336 (copy_action): Use it. Removed now unused `match', `ended',
8337 `cplus_comment'.
8338 (copy_guard): Likewise.
8339
8340 2000-03-17 Akim Demaille <akim@epita.fr>
8341
8342 * src/reader.c (copy_string): New function, factored out from:
8343 (copy_action): Use it.
8344 (copy_guard): Likewise.
8345
8346 2000-03-17 Akim Demaille <akim@epita.fr>
8347
8348 Change the handling of @s so that they behave exactly like $s.
8349 There is now a pseudo variable @$ (readble and writable), location
8350 of the lhs of the rule (by default ranging from the location of
8351 the first symbol of the rhs, to the location of the last symbol,
8352 or, if the rhs is empty, YYLLOC).
8353
8354 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
8355 yyval.
8356 (yyparse): When providing a default semantic action, provide a
8357 default location action.
8358 (after the $): No longer change `*YYLSP', just stack YYLOC the
8359 same way you stack YYVAL.
8360 * src/reader.c (read_declarations): Use warns.
8361 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
8362 (copy_action, case '@'): Likewise.
8363 Use a standard error message, to save useless work from
8364 translators.
8365
8366 2000-03-17 Akim Demaille <akim@epita.fr>
8367
8368 * src/bison.s1: Formatting and cosmetics changes.
8369 * src/reader.c: Likewise.
8370 Update the Copyright notice.
8371
8372 2000-03-17 Akim Demaille <akim@epita.fr>
8373
8374 * src/bison.s1 (#line): All set to `#line' only, since the
8375 Makefile now handles them.
8376
8377 2000-03-16 Akim Demaille <akim@epita.fr>
8378
8379 * src/output.c (output_rule_data): Output the documentation of
8380 some of the tables.
8381 (Copyright notice): Update.
8382 Formatting changes.
8383
8384 2000-03-16 Akim Demaille <akim@epita.fr>
8385
8386 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
8387 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
8388 One `#if YYDEBUG' remains, since it uses variables which are
8389 defined only if `YYDEBUG != 0'.
8390
8391 2000-03-16 Akim Demaille <akim@epita.fr>
8392
8393 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
8394 and related variables so that the similarities are highlighted.
8395
8396 2000-03-16 Akim Demaille <akim@epita.fr>
8397
8398 * src/bison.s1: Properly indent CPP directives.
8399
8400 2000-03-16 Akim Demaille <akim@epita.fr>
8401
8402 * src/bison.s1: Properly indent the `alloca' CPP section.
8403
8404 2000-03-16 Akim Demaille <akim@epita.fr>
8405
8406 Do not hard code values of directories in `configure.in'.
8407 Update the `configure' tool chain.
8408
8409 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
8410 src/makefile.am.
8411 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
8412 (AC_OUTPUT): Add m4/Makefile.
8413 Bump to bison 1.28a, 1.29 has never been released.
8414 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
8415 handled via src/Makefile.am.
8416 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
8417 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
8418 autoheader.
8419 * Makefile.am (SUBDIRS): Add m4.
8420 (ACLOCAL_AM_FLAGS): New variable.
8421 (AUTOMAKE_OPTIONS): Add check-news.
8422 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
8423 the proper line number and file name.
8424 (DEFS): Propagate the location of bison library files and of the
8425 locale files.
8426 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
8427 builddir.
8428 * acinclude.m4: Remove, replaced by the directory m4.
8429 * m4/Makefile.am (EXTRA_DIST): New variable.
8430 * m4/gettext.m4: New file, from the fileutils.
8431 * m4/lcmessage.m4: Likewise
8432 * m4/progtest.m4: Likewise.
8433 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
8434
8435 2000-03-10 Akim Demaille <akim@epita.fr>
8436
8437 * src/closure.c:
8438 Formatting changes of various comments.
8439 Respect the GNU coding standards at various places.
8440 Don't use `_()' when no translation is needed.
8441
8442 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8443
8444 * src/files.c:
8445 OS/2 honors TMPDIR environment variable.
8446
8447 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8448
8449 * doc/bison.texinfo: Tweaked spelling and grammar.
8450 Updated ISBN.
8451 Removed reference to price of printed copy.
8452 Mention BISON_SIMPLE and BISON_HAIRY.
8453
8454 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8455
8456 * configure.in, NEWS:
8457 Bison 1.29 released.
8458
8459 1999-10-27 Jesse Thilo <jthilo@gnu.org>
8460
8461 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
8462 Added reference card.
8463
8464 1999-07-26 Jesse Thilo <jthilo@gnu.org>
8465
8466 * po/ru.po: Added Russian translation.
8467
8468 1999-07-26 Jesse Thilo <jthilo@gnu.org>
8469
8470 * configure.in: Added Russian translation.
8471
8472 1999-07-06 Jesse Thilo <jthilo@gnu.org>
8473
8474 * configure.in, NEWS, README:
8475 Released version 1.28.
8476
8477 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8478
8479 * src/system.h:
8480 Squashed redefinition warning on some systems.
8481
8482 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
8483 Have configure build version string instead of relying on ANSI string
8484 concatentation.
8485
8486 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8487
8488 * po/POTFILES.in: Got rid of version.c.
8489
8490 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8491
8492 * acconfig.h, configure.in:
8493 Have configure build version string instead of relying on ANSI string
8494 concatentation.
8495
8496 1999-06-08 Jesse Thilo <jthilo@gnu.org>
8497
8498 * doc/bison.1:
8499 Dropped mention of `+' for long-named options.
8500
8501 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8502
8503 * src/files.c: Added <unistd.h> for unlink().
8504
8505 * src/Makefile.am, src/system.h:
8506 I18n fixes.
8507
8508 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8509
8510 * README: Added a FAQ list.
8511
8512 * configure.in, acconfig.h:
8513 I18n fixes.
8514
8515 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8516
8517 * doc/FAQ, doc/Makefile.am:
8518 Added a FAQ list.
8519
8520 1999-05-19 Jesse Thilo <jthilo@gnu.org>
8521
8522 * src/alloc.h, src/symtab.h, src/version.c:
8523 Protected inclusion of "config.h" with HAVE_CONFIG_H.
8524
8525 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8526
8527 * src/.cvsignore, src/Makefile.am:
8528 Reorganized: sources in `src', documentation in `doc'.
8529
8530 * src/lex.c (literalchar):
8531 fixed the code for escaping double quotes (thanks
8532 Jonathan Czisny.)
8533
8534 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8535
8536 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
8537 Adjusted paths to reflect directory reorganization.
8538
8539 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8540
8541 * doc/.cvsignore, doc/Makefile.am:
8542 Reorganized: sources in `src', documentation in `doc'.
8543
8544 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8545
8546 * configure.in:
8547 Updated AC_INIT file to reflect directory reorganization.
8548
8549 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
8550 Reorganized: sources in `src', documentation in `doc'.
8551
8552 1999-04-13 Jesse Thilo <jthilo@gnu.org>
8553
8554 * src/allocate.c:
8555 Don't declare calloc() and realloc() if not necessary.
8556
8557 1999-04-13 Jesse Thilo <jthilo@gnu.org>
8558
8559 * configure.in, acconfig.h, acinclude.m4:
8560 Don't declare calloc() and realloc() if not necessary.
8561
8562 1999-03-23 Jesse Thilo <jthilo@gnu.org>
8563
8564 * po/.cvsignore: Added i18n support.
8565
8566 1999-03-23 Jesse Thilo <jthilo@gnu.org>
8567
8568 * acconfig.h, configure.in, Makefile.am:
8569 Added i18n support.
8570
8571 1999-03-22 Jesse Thilo <jthilo@gnu.org>
8572
8573 * src/bison.s1: Fixed #line numbers.
8574
8575 1999-03-15 Jesse Thilo <jthilo@gnu.org>
8576
8577 * po/es.po, po/fr.po, po/nl.po, po/de.po:
8578 Added PO files from Translation Project.
8579
8580 1999-03-03 Jesse Thilo <jthilo@gnu.org>
8581
8582 * Makefile.am:
8583 Added support for non-ANSI compilers (ansi2knr).
8584
8585 1999-02-16 Jesse Thilo <jthilo@gnu.org>
8586
8587 * configure.in: Bumped version number to 1.27.
8588
8589 * Makefile.am:
8590 Added `bison.simple' to list of files removed by `make distclean'.
8591
8592 1999-02-12 Jesse Thilo <jthilo@gnu.org>
8593
8594 * src/files.c, src/files.h:
8595 Defined locations of parser files in config.h instead of Makefile.
8596
8597 1999-02-12 Jesse Thilo <jthilo@gnu.org>
8598
8599 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
8600 Defined locations of parser files in config.h instead of Makefile.
8601
8602 1999-02-09 Jesse Thilo <jthilo@gnu.org>
8603
8604 * Makefile.am:
8605 Removed inappropriate use of $< macro.
8606
8607 1999-02-05 Jesse Thilo <jthilo@gnu.org>
8608
8609 * po/Makefile.in.in, po/POTFILES.in:
8610 Add `po' directory skeleton.
8611
8612 1999-01-27 Jesse Thilo <jthilo@gnu.org>
8613
8614 * README: Document help-bison list.
8615
8616 * configure.in: Add check for mkstemp().
8617
8618 1999-01-20 Jesse Thilo <jthilo@gnu.org>
8619
8620 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
8621 Hush a few compiler warnings.
8622
8623 * src/files.c:
8624 Add tryclose(), which verifies that fclose was successful.
8625 Hush a couple of compiler warnings.
8626
8627 1999-01-20 Jesse Thilo <jthilo@gnu.org>
8628
8629 * Makefile.am, OChangeLog:
8630 ChangeLog is now automatically generated. Include the old version as
8631 OChangeLog.
8632
8633 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8634
8635 * 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:
8636 Update FSF address.
8637
8638 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8639
8640 * doc/bison.texinfo: Fix formatting glitch.
8641
8642 * doc/bison.texinfo: Update FSF address.
8643
8644 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8645
8646 * acconfig.h: Update FSF address.
8647
8648 1999-01-08 Jesse Thilo <jthilo@gnu.org>
8649
8650 * src/system.h:
8651 Don't define PACKAGE here, since config.h defines it.
8652
8653 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8654
8655 * src/reader.c: Update copyright date.
8656
8657 * src/main.c:
8658 Ditch sprintf to statically-sized buffers in fatal/warn functions in
8659 favor of output directly to stderr (avoids buffer overruns).
8660
8661 * src/reader.c: Some checks for premature EOF.
8662
8663 * 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:
8664 Use prototypes if the compiler understands them.
8665
8666 * src/files.c: Honor TMPDIR on Unix hosts.
8667 Use prototypes if the compiler understands them.
8668
8669 * src/reader.c:
8670 Fix a couple of buffer overrun bugs.
8671 Use prototypes if the compiler understands them.
8672
8673 * src/system.h: Include unistd.h and ctype.h.
8674 Use #ifdef instead of #if for NLS symbols.
8675
8676 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8677
8678 * doc/bison.texinfo:
8679 Delete comment "consider using @set for edition number, etc..." since
8680 we now are doing so.
8681
8682 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8683
8684 * configure.in:
8685 Use prototypes if the compiler understands them.
8686
8687 * NEWS: Document 1.26 highlights.
8688
8689 * Makefile.am: Require Automake 1.3 or later.
8690
8691 * acconfig.h:
8692 Use prototypes if the compiler understands them.
8693
8694 1998-12-29 Jesse Thilo <jthilo@gnu.org>
8695
8696 * src/version.c:
8697 Use VERSION symbol from automake for version number.
8698
8699 1998-12-29 Jesse Thilo <jthilo@gnu.org>
8700
8701 * acconfig.h, configure.in, version.cin:
8702 Use VERSION symbol from automake for version number.
8703
8704 1998-11-28 Jesse Thilo <jthilo@gnu.org>
8705
8706 * Makefile.am:
8707 Distribute original version of simple parser (bison.s1), not built
8708 version (bison.simple).
8709
8710 1998-11-28 Jesse Thilo <jthilo@gnu.org>
8711
8712 * doc/bison.texinfo: Add info dir entry.
8713
8714 * doc/bison.texinfo:
8715 Let automake put version number into documentation.
8716
8717 1998-11-26 Jesse Thilo <jthilo@gnu.org>
8718
8719 * src/bison.cld, src/build.com, src/vmshlp.mar:
8720 Add non-RCS files from /gd/gnu/bison.
8721
8722 1998-11-26 Jesse Thilo <jthilo@gnu.org>
8723
8724 * doc/bison.1:
8725 Document the BISON_HAIRY and BISON_SIMPLE variables.
8726
8727 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8728
8729 * src/version.c: Build version.c automatically.
8730
8731 * src/reader.c:
8732 Fix token numbering (used to start at 258, not 257).
8733
8734 * src/system.h: Include config.h.
8735
8736 * src/getargs.c: Update bug report address.
8737
8738 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
8739 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
8740
8741 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8742
8743 * Makefile.am:
8744 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
8745
8746 * configure.in, version.cin:
8747 Build version.c automatically.
8748
8749 * AUTHORS: Add AUTHORS file.
8750
8751 * README: Update bug report address.
8752
8753 * bison.simple:
8754 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
8755
8756 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
8757 Add automake stuff.
8758
8759 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8760
8761 * doc/bison.texinfo: Clean up some formatting.
8762
8763 1998-05-05 Richard Stallman <rms@gnu.org>
8764
8765 * doc/bison.texinfo:
8766 Explain better why to make a pure parser.
8767
8768 1998-01-05 Richard Stallman <rms@gnu.org>
8769
8770 * src/files.c (openfiles):
8771 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
8772 find a temporary directory, if possible. Do not unlink files while
8773 they are open.
8774
8775 1997-08-25 Richard Stallman <rms@gnu.org>
8776
8777 * src/reader.c (stack_offset;):
8778 Change some warni to warns.
8779
8780 * src/lex.c (literalchar): Use warns, not warni.
8781
8782 1997-06-28 Richard Stallman <rms@gnu.org>
8783
8784 * src/bison.s1: Add a Bison version comment.
8785
8786 * src/main.c (fatal, warn, berror):
8787 Use program_name.
8788
8789 1997-06-28 Richard Stallman <rms@gnu.org>
8790
8791 * Makefile.in (bison_version): New variable.
8792 (dist): Use that variable.
8793 (bison.s1): Substitute the Bison version into bison.simple.
8794
8795 * bison.simple: Add a Bison version comment.
8796
8797 1997-06-18 Richard Stallman <rms@gnu.org>
8798
8799 * src/main.c (fatal, warn, berror):
8800 Make error messages standard.
8801 (toomany): Improve error message text.
8802
8803 * 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:
8804 new.h renamed to alloc.h.
8805
8806 1997-06-18 Richard Stallman <rms@gnu.org>
8807
8808 * Makefile.in: new.h renamed to alloc.h.
8809
8810 1997-05-24 Richard Stallman <rms@gnu.org>
8811
8812 * src/lex.c (literalchar):
8813 Fix the code for escaping \, " and '.
8814
8815 (lex): Avoid trouble when there are many chars
8816 to discard in a char literal with just several chars in it.
8817
8818 1997-05-17 Richard Stallman <rms@gnu.org>
8819
8820 * src/bison.s1:
8821 Use malloc, if using alloca is troublesome.
8822 (YYSTACK_USE_ALLOCA): New flag macro.
8823 Define it for some systems and compilers.
8824 (YYSTACK_ALLOC): New macro.
8825 (yyparse): Use YYSTACK_ALLOC to allocate stack.
8826 If it was malloc'd, free it.
8827
8828 1997-05-17 Richard Stallman <rms@gnu.org>
8829
8830 * bison.simple:
8831 Use malloc, if using alloca is troublesome.
8832 (YYSTACK_USE_ALLOCA): New flag macro.
8833 Define it for some systems and compilers.
8834 (YYSTACK_ALLOC): New macro.
8835 (yyparse): Use YYSTACK_ALLOC to allocate stack.
8836 If it was malloc'd, free it.
8837
8838 1997-04-23 Richard Stallman <rms@gnu.org>
8839
8840 * src/bison.s1:
8841 (alloca) [__hpux]: Always define as __builtin_alloca.
8842
8843 1997-04-23 Richard Stallman <rms@gnu.org>
8844
8845 * bison.simple:
8846 (alloca) [__hpux]: Always define as __builtin_alloca.
8847
8848 1997-04-22 Richard Stallman <rms@gnu.org>
8849
8850 * src/bison.s1:
8851 [__hpux]: Include alloca.h (right for HPUX 10)
8852 instead of declaring alloca (right for HPUX 9).
8853
8854 * src/bison.s1 (__yy_memcpy):
8855 Declare arg `count' as unsigned int.
8856 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
8857
8858 1997-04-22 Richard Stallman <rms@gnu.org>
8859
8860 * bison.simple:
8861 [__hpux]: Include alloca.h (right for HPUX 10)
8862 instead of declaring alloca (right for HPUX 9).
8863
8864 * bison.simple (__yy_memcpy):
8865 Declare arg `count' as unsigned int.
8866 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
8867
8868 1997-01-03 Richard Stallman <rms@gnu.org>
8869
8870 * src/allocate.c: [__STDC__ or _MSC_VER]:
8871 Declare calloc and realloc to return void *.
8872
8873 1997-01-02 Richard Stallman <rms@gnu.org>
8874
8875 * src/system.h:
8876 [_MSC_VER]: Include stdlib.h and process.h.
8877 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
8878
8879 * src/main.c (main): Return FAILURE as a value.
8880 (printable_version): Declare arg as int, not char.
8881
8882 1997-01-02 Richard Stallman <rms@gnu.org>
8883
8884 * Makefile.in (dist):
8885 Explicitly check for symlinks, and copy them.
8886
8887 1996-12-19 Richard Stallman <rms@gnu.org>
8888
8889 * src/files.c:
8890 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
8891
8892 1996-12-18 Paul Eggert <eggert@gnu.org>
8893
8894 * src/bison.s1 (yyparse):
8895 If __GNUC__ and YYPARSE_PARAM are both defined,
8896 declare yyparse to have a void * argument.
8897
8898 1996-12-18 Paul Eggert <eggert@gnu.org>
8899
8900 * bison.simple (yyparse):
8901 If __GNUC__ and YYPARSE_PARAM are both defined,
8902 declare yyparse to have a void * argument.
8903
8904 1996-12-17 Richard Stallman <rms@gnu.org>
8905
8906 * src/reduce.c (nbits): Add some casts.
8907
8908 1996-08-12 Richard Stallman <rms@gnu.org>
8909
8910 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
8911
8912 1996-08-12 Richard Stallman <rms@gnu.org>
8913
8914 * bison.simple: Test _MSDOS as well as _MSDOS_.
8915
8916 1996-07-31 Richard Stallman <rms@gnu.org>
8917
8918 * src/bison.s1:
8919 [__sun && __i386]: Include alloca.h.
8920
8921 1996-07-31 Richard Stallman <rms@gnu.org>
8922
8923 * bison.simple:
8924 [__sun && __i386]: Include alloca.h.
8925
8926 1996-07-30 Richard Stallman <rms@gnu.org>
8927
8928 * src/bison.s1: Comment change.
8929
8930 * src/bison.s1: Test _MSDOS_, not MSDOS.
8931
8932 1996-07-30 Richard Stallman <rms@gnu.org>
8933
8934 * bison.simple: Comment change.
8935
8936 * bison.simple: Test _MSDOS_, not MSDOS.
8937
8938 1996-06-01 Richard Stallman <rms@gnu.org>
8939
8940 * 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:
8941 Insert `_' macro around many string constants.
8942
8943 * src/main.c:
8944 Insert `_' macro around many string constants.
8945
8946 (main): Call setlocale, bindtextdomain and textdomain.
8947
8948 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
8949 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
8950 [ENABLE_NLS]: Include libintl.h.
8951 [ENABLE_NLS] (gettext): Define.
8952 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
8953 (N_, PACKAGE, LOCALEDIR): New macros.
8954
8955 1996-06-01 Richard Stallman <rms@gnu.org>
8956
8957 * POTFILES.in: New file.
8958
8959 * Makefile.in (allocate.o):
8960 Define target explicitly.
8961
8962 * Makefile.in (CFLAGS): Set to @CFLAGS@.
8963 (LDFLAGS): Set to @LDFLAGS@.
8964 (configure): Run autoconf only if preceding `cd' succeeds.
8965 (bison.s1): Redirect output to temporary file then move the
8966 temporary to the target, rather than redirecting directly to bison.s1.
8967 (clean): Remove config.status and config.log.
8968 (distclean): Don't remove config.status here.
8969
8970 1996-05-12 Richard Stallman <rms@gnu.org>
8971
8972 * src/bison.s1:
8973 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
8974
8975 1996-05-12 Richard Stallman <rms@gnu.org>
8976
8977 * bison.simple:
8978 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
8979
8980 1996-05-11 Richard Stallman <rms@gnu.org>
8981
8982 * src/bison.s1 (__yy_memcpy):
8983 Really reorder the args, as was supposedly done on Feb 14 1995.
8984 (yyparse): Calls changed accordingly.
8985
8986 1996-05-11 Richard Stallman <rms@gnu.org>
8987
8988 * Makefile.in (dist): Don't use $(srcdir).
8989
8990 * bison.simple (__yy_memcpy):
8991 Really reorder the args, as was supposedly done on Feb 14 1995.
8992 (yyparse): Calls changed accordingly.
8993
8994 1996-01-27 Richard Stallman <rms@gnu.org>
8995
8996 * src/output.c (output_rule_data):
8997 Test YYERROR_VERBOSE in the conditional
8998 around the definition of ttyname.
8999
9000 1995-12-29 Richard Stallman <rms@gnu.org>
9001
9002 * src/bison.s1:
9003 Fix line numbers in #line commands.
9004
9005 1995-12-29 Richard Stallman <rms@gnu.org>
9006
9007 * bison.simple:
9008 Fix line numbers in #line commands.
9009
9010 1995-12-27 Richard Stallman <rms@gnu.org>
9011
9012 * src/bison.s1 (YYPARSE_PARAM_DECL):
9013 In C++, make it always null.
9014 (YYPARSE_PARAM_ARG): New macro.
9015 (yyparse): Use YYPARSE_PARAM_ARG.
9016
9017 1995-12-27 Richard Stallman <rms@gnu.org>
9018
9019 * bison.simple (YYPARSE_PARAM_DECL):
9020 In C++, make it always null.
9021 (YYPARSE_PARAM_ARG): New macro.
9022 (yyparse): Use YYPARSE_PARAM_ARG.
9023
9024 1995-11-29 Richard Stallman <rms@gnu.org>
9025
9026 * doc/bison.texinfo:
9027 Describe literal string tokens, %raw, %no_lines, %token_table.
9028
9029 1995-11-29 Daniel Hagerty <hag@gnu.org>
9030
9031 * doc/bison.texinfo: Fixed update date
9032
9033 1995-10-16 Richard Stallman <rms@gnu.org>
9034
9035 * src/version.c: Version 1.25.
9036
9037 1995-10-16 Richard Stallman <rms@gnu.org>
9038
9039 * NEWS: *** empty log message ***
9040
9041 1995-10-16 Richard Stallman <rms@gnu.org>
9042
9043 * doc/bison.1, doc/bison.rnh:
9044 Add new options.
9045
9046 1995-10-15 Richard Stallman <rms@gnu.org>
9047
9048 * src/vmsgetargs.c, src/getargs.c:
9049 Added -n, -k, and -raw switches.
9050 (noparserflag, toknumflag, rawtoknumflag): New variables.
9051
9052 * src/symtab.h (SALIAS):
9053 New #define for adding aliases to %token.
9054 (struct bucket): Added `alias' field.
9055
9056 * src/reduce.c (reduce_grammar):
9057 Revise error message.
9058 (print_notices): Remove final `.' from error message.
9059
9060 * src/reader.c (reader_output_yylsp):
9061 New function.
9062 (readgram): Use `#if 0' around code that accepted %command
9063 inside grammar rules: The documentation doesn't allow it,
9064 and it will fail since the %command processors scan for the next %.
9065 (parse_token_decl): Extended the %token
9066 declaration to allow a multi-character symbol as an alias.
9067 (parse_thong_decl): New function.
9068 (read_declarations): Added %thong declarations.
9069 (read_declarations): Handle NOOP to deal with allowing
9070 % declarations as another means to specify the flags.
9071 (readgram): Allow %prec prior to semantics embedded in a rule.
9072 (skip_to_char, read_declarations, copy_definition)
9073 (parse_token_decl, parse_start_decl, parse_type_decl)
9074 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
9075 (get_type_name, copy_guard, copy_action, readgram)
9076 (get_type, packsymbols): Revised most error messages.
9077 Changed `fatal' to `warnxxx' to avoid aborting for error.
9078 Revised and use multiple warnxxx functions to avoid using VARARGS1.
9079 (read_declarations): Improve the error message for
9080 an invalid character. Do not abort.
9081 (read_declarations, copy_guard, copy_action): Use
9082 printable_version to avoid unprintable characters in printed output.
9083 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
9084 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
9085 Allow the type of a non-terminal can be given
9086 more than once, as long as all specifications give the same type.
9087
9088 * src/output.c:
9089 (output_headers, output_trailers, output, output_gram)
9090 (output_rule_data): Implement noparserflag variable.
9091 Implement toknumflag variable.
9092 (output): Call reader_output_yylsp to output LTYPESTR.
9093
9094 * src/main.c (main):
9095 If reader sees an error, don't process the grammar.
9096 (fatals): Updated to not use VARARGS1.
9097 (printable_version, int_to_string, warn, warni, warns, warnss)
9098 (warnsss): New error reporting functions. Avoid abort for error.
9099
9100 * src/lex.h:
9101 Added THONG and NOOP for alias processing.
9102 Added SETOPT for the new code that allows setting options with %flags.
9103
9104 * src/lex.c:
9105 Include getopt.h. Add some extern decls.
9106 (safegetc): New function to deal with EOF gracefully.
9107 (literalchar); new function to deal with reading \ escapes.
9108 (lex): Use literalchar.
9109 (lex): Implemented "..." tokens.
9110 (literalchar, lex, parse_percent_token): Made tokenbuffer
9111 always contain the token. This includes growing the token
9112 buffer while reading an integer.
9113 (parse_percent_token): Replaced if-else statement with percent_table.
9114 (parse_percent_token): Added % declarations as another
9115 way to specify the flags -n, -l, and -r. Also added hooks for
9116 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
9117 major changes to files.c.
9118 (lex) Retain in the incoming stream a character following
9119 an incorrect '/'.
9120 (skip_white_space, lex): Revised most error messages
9121 and changed fatal to warn to avoid aborting.
9122 (percent_table): Added %thong declarations.
9123
9124 * src/gram.h: Comment changes.
9125
9126 * src/files.c (openfiles, open_extra_files, done):
9127 Add faction flag
9128 and actfile file. Handle noparserflag. Both for -n switch.
9129
9130 * src/conflicts.c (resolve_sr_conflict):
9131 Remove use of alloca.
9132
9133 1995-06-01 Jim Meyering <meyering@gnu.org>
9134
9135 * doc/bison.texinfo: *** empty log message ***
9136
9137 1995-05-06 Richard Stallman <rms@gnu.org>
9138
9139 * src/bison.s1: Comment change.
9140
9141 1995-05-06 Richard Stallman <rms@gnu.org>
9142
9143 * bison.simple: Comment change.
9144
9145 1995-05-03 Richard Stallman <rms@gnu.org>
9146
9147 * src/version.c: Version now 1.24.
9148
9149 * src/bison.s1: Change distribution terms.
9150
9151 * src/version.c: Version now 1.23.
9152
9153 1995-05-03 Richard Stallman <rms@gnu.org>
9154
9155 * doc/bison.texinfo:
9156 Rewrite "Conditions for Using Bison".
9157 Update version to 1.24.
9158
9159 1995-05-03 Richard Stallman <rms@gnu.org>
9160
9161 * bison.simple: Change distribution terms.
9162
9163 1995-02-23 Richard Stallman <rms@gnu.org>
9164
9165 * src/files.c: Test __VMS_POSIX as well as VMS.
9166
9167 1995-02-14 Jim Meyering <meyering@gnu.org>
9168
9169 * src/bison.s1 (__yy_memcpy):
9170 Renamed from __yy_bcopy to avoid
9171 confusion. Reverse FROM and TO arguments to be consistent with
9172 those of memcpy.
9173
9174 1995-02-14 Jim Meyering <meyering@gnu.org>
9175
9176 * bison.simple (__yy_memcpy):
9177 Renamed from __yy_bcopy to avoid
9178 confusion. Reverse FROM and TO arguments to be consistent with
9179 those of memcpy.
9180
9181 1994-11-10 David J. MacKenzie <djm@gnu.org>
9182
9183 * NEWS: reformat
9184
9185 * NEWS: New file.
9186
9187 * Makefile.in (DISTFILES): Include NEWS.
9188
9189 * Makefile.in (DISTFILES):
9190 Include install-sh, not install.sh.
9191
9192 * configure.in: Update to Autoconf v2 macro names.
9193
9194 1994-10-05 David J. MacKenzie <djm@gnu.org>
9195
9196 * Makefile.in: fix typo
9197
9198 * Makefile.in (prefix, exec_prefix):
9199 Let configure set them.
9200
9201 1994-09-28 David J. MacKenzie <djm@gnu.org>
9202
9203 * Makefile.in: Set datadir to $(prefix)/share.
9204
9205 1994-09-15 Richard Stallman <rms@gnu.org>
9206
9207 * src/bison.s1:
9208 Update copyright notice and GPL version.
9209
9210 1994-09-15 Richard Stallman <rms@gnu.org>
9211
9212 * bison.simple:
9213 Update copyright notice and GPL version.
9214
9215 1994-07-12 Richard Stallman <rms@gnu.org>
9216
9217 * src/reduce.c, src/reader.c:
9218 entered into RCS
9219
9220 1994-05-05 David J. MacKenzie <djm@gnu.org>
9221
9222 * Makefile.in: entered into RCS
9223
9224 1994-03-26 Richard Stallman <rms@gnu.org>
9225
9226 * src/bison.s1: entered into RCS
9227
9228 1994-03-26 Richard Stallman <rms@gnu.org>
9229
9230 * bison.simple: entered into RCS
9231
9232 1994-03-25 Richard Stallman <rms@gnu.org>
9233
9234 * src/main.c: entered into RCS
9235
9236 1994-03-24 Richard Stallman <rms@gnu.org>
9237
9238 * src/conflicts.c: entered into RCS
9239
9240 1994-01-02 Richard Stallman <rms@gnu.org>
9241
9242 * Makefile.in: *** empty log message ***
9243
9244 1993-11-21 Richard Stallman <rms@gnu.org>
9245
9246 * src/bison.s1: *** empty log message ***
9247
9248 1993-11-21 Richard Stallman <rms@gnu.org>
9249
9250 * doc/bison.texinfo: entered into RCS
9251
9252 * doc/bison.texinfo: *** empty log message ***
9253
9254 1993-11-21 Richard Stallman <rms@gnu.org>
9255
9256 * bison.simple: *** empty log message ***
9257
9258 1993-10-25 David J. MacKenzie <djm@gnu.org>
9259
9260 * doc/bison.texinfo: *** empty log message ***
9261
9262 1993-10-19 Richard Stallman <rms@gnu.org>
9263
9264 * src/bison.s1: *** empty log message ***
9265
9266 1993-10-19 Richard Stallman <rms@gnu.org>
9267
9268 * bison.simple: *** empty log message ***
9269
9270 1993-10-14 Richard Stallman <rms@gnu.org>
9271
9272 * src/bison.s1: *** empty log message ***
9273
9274 1993-10-14 Richard Stallman <rms@gnu.org>
9275
9276 * bison.simple: *** empty log message ***
9277
9278 1993-09-14 David J. MacKenzie <djm@gnu.org>
9279
9280 * doc/bison.texinfo: *** empty log message ***
9281
9282 1993-09-13 Noah Friedman <friedman@gnu.org>
9283
9284 * Makefile.in: *** empty log message ***
9285
9286 1993-09-10 Richard Stallman <rms@gnu.org>
9287
9288 * src/conflicts.c: *** empty log message ***
9289
9290 * src/system.h: entered into RCS
9291
9292 1993-09-10 Richard Stallman <rms@gnu.org>
9293
9294 * doc/bison.1: entered into RCS
9295
9296 1993-09-06 Noah Friedman <friedman@gnu.org>
9297
9298 * src/version.c: entered into RCS
9299
9300 1993-09-06 Noah Friedman <friedman@gnu.org>
9301
9302 * Makefile.in: *** empty log message ***
9303
9304 1993-07-30 David J. MacKenzie <djm@gnu.org>
9305
9306 * Makefile.in: *** empty log message ***
9307
9308 1993-07-24 Richard Stallman <rms@gnu.org>
9309
9310 * src/bison.s1: *** empty log message ***
9311
9312 1993-07-24 Richard Stallman <rms@gnu.org>
9313
9314 * bison.simple: *** empty log message ***
9315
9316 1993-07-08 David J. MacKenzie <djm@gnu.org>
9317
9318 * Makefile.in: *** empty log message ***
9319
9320 1993-07-04 Richard Stallman <rms@gnu.org>
9321
9322 * src/bison.s1: *** empty log message ***
9323
9324 1993-07-04 Richard Stallman <rms@gnu.org>
9325
9326 * bison.simple: *** empty log message ***
9327
9328 1993-06-26 David J. MacKenzie <djm@gnu.org>
9329
9330 * src/getargs.c: entered into RCS
9331
9332 1993-06-26 David J. MacKenzie <djm@gnu.org>
9333
9334 * doc/bison.texinfo: *** empty log message ***
9335
9336 * doc/bison.1: New file.
9337
9338 1993-06-25 Richard Stallman <rms@gnu.org>
9339
9340 * src/getargs.c: New file.
9341
9342 1993-06-16 Richard Stallman <rms@gnu.org>
9343
9344 * src/bison.s1: *** empty log message ***
9345
9346 1993-06-16 Richard Stallman <rms@gnu.org>
9347
9348 * bison.simple: *** empty log message ***
9349
9350 1993-06-03 Richard Stallman <rms@gnu.org>
9351
9352 * src/bison.s1: New file.
9353
9354 1993-06-03 Richard Stallman <rms@gnu.org>
9355
9356 * doc/bison.texinfo: *** empty log message ***
9357
9358 1993-06-03 Richard Stallman <rms@gnu.org>
9359
9360 * bison.simple: New file.
9361
9362 1993-05-19 Richard Stallman <rms@gnu.org>
9363
9364 * doc/bison.texinfo: New file.
9365
9366 1993-05-07 Noah Friedman <friedman@gnu.org>
9367
9368 * Makefile.in: *** empty log message ***
9369
9370 1993-04-28 Noah Friedman <friedman@gnu.org>
9371
9372 * src/reader.c: *** empty log message ***
9373
9374 1993-04-23 Noah Friedman <friedman@gnu.org>
9375
9376 * src/alloc.h: entered into RCS
9377
9378 1993-04-20 David J. MacKenzie <djm@gnu.org>
9379
9380 * src/version.c: *** empty log message ***
9381
9382 * src/files.c, src/allocate.c:
9383 entered into RCS
9384
9385 * src/reader.c: *** empty log message ***
9386
9387 * src/lex.c: entered into RCS
9388
9389 * src/conflicts.c: New file.
9390
9391 * src/symtab.c: entered into RCS
9392
9393 * src/alloc.h: New file.
9394
9395 * src/LR0.c: entered into RCS
9396
9397 1993-04-18 Noah Friedman <friedman@gnu.org>
9398
9399 * src/reader.c: New file.
9400
9401 * src/version.c: *** empty log message ***
9402
9403 1993-04-18 Noah Friedman <friedman@gnu.org>
9404
9405 * Makefile.in: *** empty log message ***
9406
9407 1993-04-17 Noah Friedman <friedman@gnu.org>
9408
9409 * Makefile.in: *** empty log message ***
9410
9411 1993-04-15 Richard Stallman <rms@gnu.org>
9412
9413 * src/main.c, src/files.c:
9414 New file.
9415
9416 1993-04-15 Noah Friedman <friedman@gnu.org>
9417
9418 * configure.in: entered into RCS
9419
9420 * configure.in: *** empty log message ***
9421
9422 * configure.in: New file.
9423
9424 1993-04-14 Richard Stallman <rms@gnu.org>
9425
9426 * Makefile.in: New file.
9427
9428 1993-04-13 Richard Stallman <rms@gnu.org>
9429
9430 * src/version.c: New file.
9431
9432 1993-03-25 Richard Stallman <rms@gnu.org>
9433
9434 * src/output.c: entered into RCS
9435
9436 1992-09-25 Richard Stallman <rms@gnu.org>
9437
9438 * configure.bat: entered into RCS
9439
9440 1992-06-22 Richard Stallman <rms@gnu.org>
9441
9442 * src/vmsgetargs.c: entered into RCS
9443
9444 1992-06-22 Richard Stallman <rms@gnu.org>
9445
9446 * doc/bison.rnh: entered into RCS
9447
9448 1992-04-20 David J. MacKenzie <djm@gnu.org>
9449
9450 * README: entered into RCS
9451
9452 1992-01-22 Richard Stallman <rms@gnu.org>
9453
9454 * src/machine.h: entered into RCS
9455
9456 1991-12-21 Richard Stallman <rms@gnu.org>
9457
9458 * src/lalr.c, src/closure.c:
9459 entered into RCS
9460
9461 1991-12-20 Richard Stallman <rms@gnu.org>
9462
9463 * src/state.h: entered into RCS
9464
9465 1991-12-18 Richard Stallman <rms@gnu.org>
9466
9467 * src/print.c, src/nullable.c, src/derives.c:
9468 entered into RCS
9469
9470 1991-11-03 David J. MacKenzie <djm@gnu.org>
9471
9472 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
9473 entered into RCS
9474
9475 1988-09-09 Richard Stallman <rms@gnu.org>
9476
9477 * src/bison.hairy: entered into RCS
9478
9479 1987-12-16 Richard Stallman <rms@gnu.org>
9480
9481 * REFERENCES: entered into RCS
9482 -----
9483
9484 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
9485
9486 This file is part of GNU Bison.
9487
9488 GNU Bison is free software; you can redistribute it and/or modify
9489 it under the terms of the GNU General Public License as published by
9490 the Free Software Foundation; either version 2, or (at your option)
9491 any later version.
9492
9493 GNU Bison is distributed in the hope that it will be useful,
9494 but WITHOUT ANY WARRANTY; without even the implied warranty of
9495 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9496 GNU General Public License for more details.
9497
9498 You should have received a copy of the GNU General Public License
9499 along with GNU Bison; see the file COPYING. If not, write to
9500 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
9501 Boston, MA 02111-1307, USA.