]> git.saurik.com Git - bison.git/blob - ChangeLog
When yydebug, report semantic and location values for reductions.
[bison.git] / ChangeLog
1 2005-11-11 Akim <akim@epita.fr>
2
3 When yydebug, report semantic and location values for reductions.
4 * data/glr.c (yy_reduce_print): Report the semantic values and the
5 locations.
6 (YY_REDUCE_PRINT): Adjust.
7 (yyglrReduce): Use them.
8 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
11 traces.
12
13 2005-11-10 Akim Demaille <akim@epita.fr>
14
15 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
16 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
17 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
18
19 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
20
21 * m4/cxx.m4, examples/Makefile.am: Don't build
22 examples/calc++ if no C++ compiler is available. (trivial change)
23
24 2005-11-09 Akim Demaille <akim@epita.fr>
25
26 * src/scan-skel.l: Use a couple of asserts.
27
28 2005-11-03 Akim Demaille <akim@epita.fr>
29
30 In some (weird) cases, the final state number is incorrect.
31 Reported by Alexandre Duret-Lutz.
32 * src/LR0.c (state_list_append): Remove the computation of
33 final_state.
34 (save_reductions): Do it here.
35 (get_state): Alpha conversion.
36 (generate_states): Use a for loop.
37 * src/gram.h (item_number_is_rule_number)
38 (item_number_is_symbol_number): New.
39 * src/state.c: Use assert.
40 * src/system.h: Include assert.h.
41 * tests/sets.at (Accept): New.
42
43 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
44
45 * data/glr.c (yyfill): Adjust comment.
46 (yyresolveAction): Initialize default location properly
47 for empty right-hand sides.
48 (yydoAction): Ditto.
49 Add comment explaining apparently dead code.
50 * tests/glr-regression.at
51 (Incorrectly initialized location for empty right-hand side in GLR):
52 New test.
53
54 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
55
56 * bootstrap (cleanup_gnulib): New function. Use it to clean up
57 gnulib when interrupted. This fixes some race conditions and
58 works around some portability problems (one noted by Paul
59 Hilfinger).
60
61 2005-10-22 Akim <akim@epita.fr>
62
63 * Makefile.cfg: Adjust to config -> build-aux.
64 Reported by twledo.
65
66 2005-10-21 Akim Demaille <akim@epita.fr>
67
68 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
69 the %parse-params.
70 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
71 * data/yacc.c (b4_Pure_if): Rename as...
72 (b4_yacc_pure_if): this.
73 (YY_SYMBOL_PRINT, yyparse): Adjust.
74 * doc/bison.texinfo: Formatting changes.
75
76 2005-10-21 Akim Demaille <akim@epita.fr>
77
78 Finish the transition config -> build-aux.
79 * configure.ac, Makefile.am: Use build-aux.
80 * config/prev-version, config/announce-gen, config/Makefile.am:
81 Move to...
82 * build-aux/prev-version, build-aux/announce-gen,
83 * build-aux/Makefile.am: here.
84
85 2005-10-14 Akim Demaille <akim@epita.fr>
86
87 * examples/calc++/test: Use set -x only when VERBOSE.
88
89 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
90
91 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
92 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
93
94 2005-10-13 Akim Demaille <akim@epita.fr>
95
96 * src/scan-skel.l: Output the base name parts of the parser and
97 header file names.
98 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
99 additional checks.
100 Use this to exercise C++ outputs in subdirs.
101 Reported by Oleg Smolsky.
102
103 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
104
105 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
106 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
107 Problem reported by John P. Hartmann.
108 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
109 already defined it.
110
111 2005-10-12 Akim Demaille <akim@epita.fr>
112
113 * src/parse-gram.y (version_check): Exit 63 to please missing
114 (stands for "version mismatch).
115 * tests/input.at, doc/bison.texinfo: Adjust.
116
117 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
118
119 Work around portability problems with Visual Age C compiler
120 (xlc and xlC_r) reported by John P. Hartmann.
121 * data/location.cc (initial_column, initial_line): Remove.
122 All uses replaced by 0 and 1.
123 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
124 that xlc complains about.
125 * src/scan-skel.l (skel_wrap): Likewise.
126 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
127 as __STDC__.
128 * data/yacc.c (YYMODERN_C): New macro, which also looks at
129 __STDC_VERSION__. Use it everywhere instead of looking at
130 __STDC__ and __cplusplus.
131
132 2005-10-10 Akim Demaille <akim@epita.fr>
133
134 * examples/calc++/test: Be quiet unless VERBOSE.
135
136 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
137
138 * data/c.m4 (yydestruct, yysymprint):
139 Use YYUSE instead of casting to void.
140 * data/glr.c (YYUSE): New macro.
141 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
142 Use it instead of rolling our own.
143 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
144 (YYCHK1):
145 Use /*CONSTCOND*/ to suppress lint warnings.
146 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
147 (YY_STACK_PRINT): Use 'false' not '0'.
148 (YYUSE): New macro.
149 (yysymprint_, yydestruct_): Use it instead of rolling our own.
150 * data/yacc.c (YYUSE): New macro.
151 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
152 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
153 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
154
155
156 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
157 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
158
159 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
160
161 Undo the parts of the unlocked-I/O change that substituted
162 putc or puts for printf. This might hurt performance a bit,
163 but some people prefer the printf style.
164 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
165 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
166 All uses replaced by YYFPRINTF and YYDPRINTF.
167 * data/yacc.c: Likewise.
168 * lib/bitset.c (bitset_print): Likewise.
169 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
170 putc and puts.
171 * lib/lbitset.c (debug_lbitset): Likewise.
172 * src/closure.c (print_firsts, print_fderives): Likewise.
173 * src/gram.c (grammar_dump): Likewise.
174 * src/lalr.c (look_ahead_tokens_print): Likewise.
175 * src/output.c (escaped_output): Likewise.
176 (user_actions_output): Break apart two printfs.
177 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
178 * src/reduce.c (reduce_print): Likewise.
179 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
180 * src/system.h: Include unlocked-io.h rathe than stdio.h.
181
182 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
183 Use assignments rather than casts-to-void to suppress
184 unused-variable warnings. This pacifies 'lint'.
185 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
186 unused-variable warnings.
187
188 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
189
190 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
191
192 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
193
194 Use unlocked I/O for a minor performance improvement on hosts like
195 GNU/Linux and Solaris that support unlocked I/O. The basic idea
196 is to use the gnlib unlocked-io module, and to prefer putc and
197 puts to printf when either will work (since the latter doesn't
198 come in an unlocked flavor).
199 * bootstrap (gnulib_modules): Add unlocked-io.
200 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
201 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
202 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
203 and similarly for puts and putc and printf.
204 * data/yacc.c: Likewise.
205 * lib/bitset.c (bitset_print): Likewise.
206 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
207 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
208 to printf.
209 * lib/lbitset.c (debug_lbitset): Likewise.
210 * src/closure.c (print_firsts, print_fderives): Likewise.
211 * src/gram.c (grammar_dump): Likewise.
212 * src/lalr.c (look_ahead_tokens_print): Likewise.
213 * src/output.c (escaped_output): Likewise.
214 (user_actions_output): Coalesce two printfs.
215 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
216 * src/reduce.c (reduce_print): Likewise.
217 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
218 * src/system.h: Include unlocked-io.h rather than stdio.h.
219
220 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
221 this confuses xgettext.
222
223 2005-10-02 Akim Demaille <akim@epita.fr>
224
225 * bootstrap (gnulib_modules): Add strverscmp.
226 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
227 * m4/.cvsignore: Add strverscmp.m4.
228 * src/parse-gram.y (%require): New token, new rule.
229 (version_check): New.
230 * src/scan-gram.l (%require): Adjust.
231 * tests/input.at (AT_REQUIRE): New.
232 Use it.
233 * doc/bison.texinfo (Require Decl): New.
234 (Calc++ Parser): Use %require.
235
236 2005-10-02 Akim Demaille <akim@epita.fr>
237
238 * data/location.cc: New.
239
240 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
241 Akim Demaille <akim@epita.fr>
242
243 Make sure -odir/foo.cc creates dir/location.hh etc.
244 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
245 (spec_file_prefix, spec_verbose_file, spec_graph_file)
246 (spec_defines_file): Now const.
247 (dir_prefix): New.
248 (short_base_name): Remove.
249 * src/files.c: Adjust.
250 (dirname.h): Include.
251 (base_name): Don't prototype it.
252 (finput): Remove, duplicates gram_in.
253 (full_base_name, short_base_name): Replace by...
254 (all_but_ext, all_but_tab_ext): these.
255 (compute_base_names): Rename as...
256 (compute_file_name_parts): this.
257 Update to compute the new variables, including dir_prefix.
258 Adjust dependencies.
259 * src/output.c (prepare): Output them.
260 * src/reader.c: Adjust to use gram_in, not finput.
261 * src/scan-skel.l (@dir_prefix@): New.
262
263 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
264
265 * lib/subpipe.c: New function end_of_output_subpipe() added
266 to allow support for non-posix systems. This is a no-op function
267 for posix systems.
268
269 * lib/subpipe.h: New function end_of_output_subpipe() added
270 to allow support for non-posix systems. This is a no-op function
271 for posix systems.
272
273 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
274 handle the lack of pipe/fork functionality on non-posix systems.
275
276 * djgpp/Makefile.maint: DJGPP specific file.
277
278 * djgpp/README.in: DJGPP specific file.
279
280 * djgpp/config.bat: DJGPP specific configuration file.
281
282 * djgpp/config.sed: DJGPP specific configuration file.
283
284 * djgpp/config.site: DJGPP specific configuration file.
285
286 * djgpp/config_h.sed: DJGPP specific configuration file.
287
288 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
289
290 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
291
292 2005-10-02 Akim Demaille <akim@epita.fr>
293
294 * data/location.cc: New, extract from...
295 * data/lalr1.cc: here.
296 (location.hh): Include it after the user prologue, in case the
297 filename type is defined by the user.
298 Forward declation location and position before the pre-prologue.
299 (yyresult_): Rename as...
300 (yyresult): this, it's a local variable, not an attribute.
301 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
302
303 2005-10-01 Akim Demaille <akim@epita.fr>
304
305 * examples/extexi: Restore the #line generation.
306
307 2005-09-30 Akim Demaille <akim@epita.fr>,
308 Alexandre Duret-Lutz <adl@gnu.org>
309
310 Move the token type and YYSTYPE in the parser class.
311 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
312 (parser::token): New, from the moved free definition of tokens.
313 (parser::semantic_value): Now a full definition instead of an
314 indirection to YYSTYPE.
315 (b4_post_prologue): No longer included in the header file, but
316 in the implementation file.
317 * doc/bison.texi (C+ Language Interface): Update.
318 * src/parse-gram.y: Support unary %define.
319 * tests/actions.at: Define global_tokens_and_yystype for backward
320 compatibility until we update the tests.
321 * tests/calc.at: Idem.
322 (first_line, first_column, last_line, last_column): Define for lalr1.cc
323 to simplify the code.
324
325 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
326
327 Port to SunOS 4.1.4, which lacks strtoul and strerror.
328 Ah, the good old days! Problem reported by Peter Klein.
329 * bootstrap (gnulib_modules): Add strerror, strtoul.
330 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
331 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
332
333 2005-09-29 Akim Demaille <akim@epita.fr>
334
335 * data/c.m4 (b4_error_verbose_if): New.
336 * data/lalr1.cc: Use it.
337 (YYERROR_VERBOSE_IF): Remove.
338 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
339 parser members, replaced by...
340 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
341 local variables.
342 (yysyntax_error_): Takes the state number as argument.
343 (yyreduce_print_): Use the argument yyrule, not the former
344 attribute yyn_.
345
346 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
347
348 * bootstrap (gnulib_modules): Add verify.
349 * lib/.cvsignore: Add verify.h.
350 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
351 * src/system.h (verify): Remove.
352 Include verify.h instead.
353 * src/tables.c (tables_generate): Use new API for 'verify'.
354
355 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
356
357 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
358 local variables whose names begin with 'yy'.
359 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
360 Trivial changes from Joel E. Denny.
361
362 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
363 it itself.
364 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
365 don't use alloca any more.
366
367 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
368 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
369 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
370 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
371 to match yacc.c, to test more hosts.
372
373 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
374
375 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
376 doesn't affect behavior.
377 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
378 Solaris, AIX, MSC.
379 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
380 This works a bit better with glibc, if user code has already included
381 stdlib.h.
382 * doc/bison.texinfo (Bison Parser): Document that users can't
383 arbitrarily use malloc and free for other purposes. Document
384 that <alloca.h> and <malloc.h> might be included.
385 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
386 user must declare alloca.
387
388 * HACKING (release): Forwarn the Translation Project about
389 stable releses.
390
391 2005-09-20 Akim Demaille <akim@epita.fr>
392
393 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
394
395 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
396
397 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
398 (YYSTACK_ALLOC_MAXIMUM): Use it.
399 (yysyntax_error): New function.
400 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
401 multiple syntax errors are reported, and alloca is being used.
402 Instead, reallocate buffers twice as big each time, so that
403 we waste at most half the allocated memory. Start with a small
404 (128-byte) buffer that will suffice in most cases anyway.
405 Use yysyntax_error to do most of the work.
406
407 * doc/bison.texinfo (Error Reporting, Table of Symbols):
408 yynerrs is the number of errors reported, not the number of
409 errors encountered.
410
411 * tests/glr-regression.at (Duplicated user destructor for lookahead):
412 Mark it as expected to fail.
413 Cast result of malloc; problem reported by twlevo@xs4all.nl.
414 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
415 Don't start user-code symbols with "yy", to avoid name space problems.
416
417 2005-09-19 Akim Demaille <akim@epita.fr>
418
419 Remove the traits, failed experiment.
420 It never proved useful, and anyway because of the current
421 definition, it was not possible to have several specialization of
422 this traits, making it useless.
423 * data/lalr1.cc (yy:traits): Remove.
424 Inline its definitions in the parser class.
425
426 2005-09-19 Akim Demaille <akim@epita.fr>
427
428 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
429 least Mac OSX with a /usr/local install of gettext.
430
431 2005-09-19 Akim Demaille <akim@epita.fr>
432
433 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
434 and yytoken for similarity with the other skeletons.
435
436 2005-09-19 Akim Demaille <akim@epita.fr>
437
438 * NEWS, configure.ac: Bump to 2.1a.
439
440 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
441
442 * NEWS: Version 2.1.
443
444 * NEWS: Remove notice of yytname change, since it was never in an
445 official release.
446 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
447 diagnostic.
448 * src/output.c (prepare): Likewise.
449 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
450 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
451 is not defined. This is an awful hack, but it's enough for now.
452 All callers changed.
453 * tests/glr-regression-at (make_value): Args are const pointers now,
454 to avoid GCC warning.
455 (Duplicated user destructor for lookahead): New test. Currently
456 skipped. It fails on my host but I'm not sure it'll always fail.
457
458 2005-09-16 Akim Demaille <akim@epita.fr>
459
460 * src/symtab.h (struct symbol): Declare the printer and destructor
461 as const, to avoid accidental calls to free.
462 (symbol_destructor_set, symbol_printer_set): Adjust.
463 * src/symtab.c: Adjust.
464
465 2005-09-16 Akim Demaille <akim@epita.fr>
466
467 * data/c.m4 (b4_token_enums): New.
468 (b4_token_defines): Rename as...
469 (b4_token_enums_defines): this.
470 (b4_token_defines): New, output only the #defines.
471 * data/yacc.c, data/glr.c: Adjust.
472 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
473 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
474 as default values.
475
476 2005-09-16 Akim Demaille <akim@epita.fr>
477
478 * data/lalr1.cc (yylex_): Remove, inline its code.
479 (yyreport_syntax_error_): Remove, replaced by...
480 (yysyntax_error_): this which returns a string and leaves to the
481 caller the call to the users' error function.
482 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
483 Move from members of the parser object...
484 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
485 to local variables of the parse function.
486
487 2005-09-16 Akim Demaille <akim@epita.fr>
488
489 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
490 since it's in Bison's name space.
491
492 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
493
494 * data/glr.c (yyresolveValue): Add default case to pacify
495 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
496
497 * NEWS: Document when yyparse started to return 2.
498 * doc/bison.texinfo (Parser Function): Document when yyparse
499 returns 2.
500
501 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
502 (b4_filename_type): Renamed back from b4_file_name_type. All uses
503 changed.
504 (class position): file_name -> filename (reverting). All uses changed.
505
506 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
507
508 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
509 do anything if $@ exists. This reverts part of the 2005-07-07
510 patch.
511
512 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
513
514 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
515 contains obsolete information and isn't worth distributing as a
516 separate file anyway.
517 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
518 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
519 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
520 (yyparse): Abort if user code uses longjmp to throw an unexpected
521 value.
522
523 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
524
525 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
526 Suggested by twlevo@xs4all.nl.
527
528 * data/glr.c (YYCHK1): Do not assume YYE is in range.
529 This avoids a diagnostic from gcc -Wswitch-enum.
530 Problem reported by twlevo@xs4all.nl.
531
532 * doc/bison.texinfo: Don't use "filename", as per GNU coding
533 standards. Use "file name" or "file" or "name", depending on
534 the context.
535 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
536 not to hack/foo.tab.c.
537 (Calc++ Top Level): 2nd arg of main is not const.
538 * data/glr.c: b4_filename -> b4_file_name.
539 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
540 All uses changed.
541 (class position): filename -> file_name. All uses changed.
542 * data/yacc.c: b4_filename -> b4_file_name.
543 * lib/bitset.h: filename -> file_name in local vars.
544 * lib/bitset_stats.c: Likewise.
545 * src/files.c: Likewise.
546 * src/scan-skel.l ("@output ".*\n): Likewise.
547 * src/files.c (file_name_split): Renamed from filename_split.
548 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
549
550 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
551
552 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
553 to accommodate latest gnulib.
554
555 * tests/glr-regression.at (Duplicate representation of merged trees):
556 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
557
558 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
559 needed.
560
561 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
562
563 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
564 All uses changed. Invoke user destructor after an error during a
565 split parse (trivial change from Joel E. Denny).
566
567 * tests/glr-regression.at
568 (User destructor after an error during a split parse): New test case.
569 Problem reported by Joel E. Denny in:
570 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
571
572 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
573
574 * README-cvs: Give URLs for recommended tools.
575 Mention Gzip version problem, and bootstrapping issues.
576 Remove troubleshooting section, as it's somewhat obsolete.
577
578 * bootstrap (no_cache): New var, to accommodate different wget
579 variants. Use it instead of '-C off'. Problem reported by
580 twlevo@xs4all.nl.
581
582 * data/glr.c (yydestroyStackItem): New function.
583 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
584 debugging information. Problem reported by Joel E. Denny.
585
586 2005-08-25 Akim Demaille <akim@epita.fr>
587
588 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
589
590 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
591
592 * data/glr.c (yyrecoverSyntaxError, yyreturn):
593 Don't invoke destructor on unresolved entries.
594 * tests/glr-regression.at
595 (User destructor for unresolved GLR semantic value): New test case.
596 Problem reported by Joel E. Denny in:
597 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
598
599 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
600
601 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
602 Add strnlen.c.
603 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
604 lib-prefix.m4, po.m4.
605
606 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
607 in yydestruct diagnostic, since it might not be an error.
608 Problem reported by Joel Denny near end of
609 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
610 * data/lalr1.cc (yyerturn): Likewise.
611 * data/yacc.c (yyreturn): Likewise.
612 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
613
614 * src/files.c: Remove obsolete FIXME comment.
615
616 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
617 with the other templates, and to fix bogus run-on messages such
618 as the one reported at the end of
619 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
620 All callers changed to avoid the newline.
621 (yyprocessOneStack): Output two lines rather than one, to accommodate
622 the above change. This changes the debug output format slightly.
623
624 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
625 reported by Joel E. Denny in
626 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
627 (trivial change).
628 * tests/glr-regression.at (Duplicate representation of merged trees):
629 New test, from Joel E. Denny in:
630 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
631 * THANKS: Add Joel E. Denny.
632
633 * configure.ac (AC_INIT): Bump to 2.0c.
634
635 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
636
637 * NEWS: Version 2.0b.
638
639 * Makefile.am (SUBDIRS): Put examples before tests, so that
640 "make check" doesn't finish with "All 1 tests passed".
641
642 * tests/regression.at (Token definitions): Don't rely on
643 AT_PARSER_CHECK for data that contains backslashes. It currently
644 uses 'echo', and 'echo' isn't portable if its argument contains
645 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
646 that the byte '\0xff' is not printable in the C locale; it is,
647 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
648 not printable, so use '\0x81' to test.
649
650 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
651 version of GCC, since the macro is used with non-GCC compilers.
652
653 Fix core dump reported by Pablo De Napoli in
654 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
655 * tests/regression.at (Invalid inputs with {}): New test.
656 * src/parse-gram.y (token_name): Translate type before using
657 it as an index.
658
659 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
660 the user's name space. All uses changed to __attribute__
661 ((__unused__)).
662 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
663 Add __attribute__ ((__noreturn__)).
664
665 * etc/clcommit: Remove. We weren't using it, and it failed
666 "make maintainer-distcheck".
667 * Makefile.maint: Merge from coreutils.
668 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
669 (syntax-check-rules): Change list of rules as described below.
670 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
671 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
672 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
673 (sc_trailing_space): New rules.
674 (sc_xalloc_h_in_src): Remove.
675 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
676 (sc_space_tab, sc_error_exit_success, sc_changelog):
677 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
678 (makefile-check, po-check, author_mark_check):
679 (makefile_path_separator_check, copyright-check):
680 Use grep -n, to make it easier to find violations.
681 Use CVS_LIST and CVS_LIST_EXCEPT.
682 (header_regexp, h_re): Remove.
683 (dd_c): New macro.
684 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
685 (my-distcheck): Use more-modern GCC flags.
686 (signatures, %.asc): Remove.
687 (rel-files, announcement): Remove signatures.
688 Restore old updating code, even though we don't use it, so
689 that we're the same as coreutils.
690 (alpha, beta, major): Depend on news-date-check.
691 Make the upload commands.
692
693 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
694 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
695 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
696 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
697 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
698 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
699 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
700 * tests/sets.at: Likewise.
701
702 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
703 we comment out the Autoconf version number.
704 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
705 it's error-prone and "make maintainer-distcheck" rejects it.
706
707 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
708 Indent calls to "error" to pacify "make maintainer-distcheck",
709 when the calls are not intended to be translated.
710 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
711
712 * src/Makefile.am (DEFS): Use +=, to pacify
713 "make maintainer-distcheck".
714 (bison_SOURCES): Add scan-skel.h.
715 (sc_tight_scope): New rule, from coreutils.
716
717 * src/files.c (src_extension, header_extension):
718 Now static, not extern.
719 * src/getargs.c (short_options): Likewise.
720 * src/muscle_tab.c (muscle_table): Likewise.
721 * src/parse-gram.y (current_class, current_type, current_prec):
722 Likewise.
723 * src/reader.c (grammar_end, previous_rule_end): Likewise.
724 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
725 * src/main.c (main): Cast bindtextdomain and textdomain calls to
726 void, to avoid warning when NLS is disabled.
727 * src/output.c: Include scan-skel.h.
728 (scan_skel): Remove decl, since scan-skel.h does this.
729 (output_skeleton):
730 Indent calls to "error" to pacify "make maintainer-distcheck".
731 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
732 * src/reader.h (gram_end, gram_lineno): New decls to pacify
733 "make maintainer-distcheck".
734 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
735 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
736 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
737 (skel_lex_destroy, scan_skel): Move these decls to...
738 * src/scan-skel.h: New file.
739 * src/uniqstr.c (uniqstr_assert):
740 Indent calls to "error" to pacify "make maintainer-distcheck".
741
742 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
743 not @VAR@.
744
745 * tests/torture.at: Revamp to avoid misuse of atoi that
746 "make maintainer-distcheck" complained about.
747
748 * examples/extexi (message): Don't print a message more than once,
749 and omit line-number decoration that makes Emacs compile think
750 that informative messages are worth worrying about.
751
752 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
753
754 * configure.ac: Update version number.
755
756 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
757 accidentally.
758 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
759 autogenerated by the maintainer.
760 * examples/calc++/.cvsignore: Add *.yy.
761
762 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
763 * lib/bitset_stats.c (bitset_stats_init): Likewise.
764 * lib/bitsetv.c (bitsetv_alloc): Likewise.
765
766 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
767
768 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
769 from maintainer-distcheck about casting the argument of 'free'.
770
771 * NEWS: Mention recent yytname changes.
772 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
773
774 * bootstrap: For translations that have not yet been upgraded to
775 the new runtime-po domain, prime the pump by extracting the
776 relevant strings from the obsolete translations. This code can be
777 removed once the bison-runtime domain has been translated by each
778 team.
779
780 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
781 now that token names are already quoted.
782
783 Fix problem reported by Anthony Heading.
784 * data/glr.c (YYTOKEN_TABLE): New macro.
785 (yytname): Define if YYTOKEN_TABLE.
786 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
787 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
788 (YYERROR_VERBOSE): Define the same way the other skeletons do.
789 * src/output.c (prepare_symbols): Output token_table_flag.
790
791 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
792
793 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
794 again if the first call fails.
795
796 * data/glr.c (yytnamerr): New function.
797 (yyreportSyntaxError): Use it to dequote most string literals.
798 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
799 with other skeletons. All uses changed.
800 (yytnameerr_): New function.
801 (yyreport_syntax_error): Use it to dequote most string literals.
802 * data/yacc.c (yytnamerr): New function.
803 (yyerrlab): Use it to decode most string literals.
804 * doc/bison.texinfo (Decl Summary, Calling Convention):
805 Clarify quoting convention of yytname.
806 * src/output.c (prepare_symbols): Quote all names. This undoes
807 the 2005-04-17 change, which is now accomplished (mostly) via
808 changes in the parsers as described above.
809 * tests/regression.at (Token definitions, Web2c Actions):
810 Undo most 2005-04-17 change here, too.
811
812 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
813
814 Fix more problems reported by twlevo@xs4all.nl.
815 * tests/cxx-type.at: Don't pipe output of ./types through sed to
816 remove trailing spaces. This loses the exit status of ./types,
817 and isn't needed since ./types shouldn't be emitting trailing
818 spaces.
819 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
820 as the stack isn't valid in that case.
821
822 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
823 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
824 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
825 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
826 is used.
827 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
828 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
829 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
830 Likewise.
831
832 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
833 overly-picky compilers that reject 'char *foo = "bar";'.
834
835 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
836 to FILE * parameter, not to stderr. This fixes a typo introduced
837 in the 2005-07-12 change.
838
839 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
840 warnings from GCC 4.
841
842 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
843 (yyglrShiftDefer, yysplitStack):
844 Remove unused parameters b4_pure_formals. All uses changed.
845 (yyglrShift): Remove unused parameters b4_user_formals.
846 All uses changed.
847 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
848
849 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
850
851 Destructor cleanups and regularization among the three skeletons.
852 * NEWS: Document the behavior changes.
853 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
854 stack before failing, as the cleanup code will do it for us now.
855 * data/lalr1.cc (yyerrlab): Likewise.
856 * data/glr.c (yyparse): Pop everything off the stack before
857 freeing it, so that destructors get called properly.
858 * data/lalr1.cc (yyreturn): Likewise.
859 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
860 This is more consistent.
861 * doc/bison.texinfo (Destructor Decl): Mention more reasons
862 why destructors might be called. 1.875 -> 2.1.
863 (Destructor Decl, Decl Summary, Table of Symbols):
864 Some English-language cleanups for %destructor.
865 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
866 Add output line for destructor of start symbol.
867 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
868 because of that same extra output line.
869
870 * NEWS: Document minor wording changes in diagnostics of
871 Bison-generated parsers.
872 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
873 Remove unused formals. All uses changed.
874 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
875 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
876 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
877 Rename yyoverflowab to yyexhaustedlab.
878 When memory exhaustion occurs during syntax-error reporting,
879 report it separately rather than in a single diagnostic; this
880 eases translation.
881 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
882 (Memory Exhausted): Renamed from Parser Stack Overflow.
883 Revamp wording slightly to prefer "memory exhaustion".
884 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
885
886 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
887
888 Add i18n support to the GLR skeleton. Partially fix the C++
889 skeleton; a C++ expert needs to finish this. Remove debugging
890 msgids; there's little point to having them translated, since they
891 can be understood only by someone who can read the
892 (English-language) source code.
893
894 Generate runtime-po/bison-runtime.pot automatically, so that we
895 don't have to worry about garbage getting in that file. We'll
896 make sure after the next official release that old msgids don't
897 get lost. See
898 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
899
900 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
901 Now auto-generated.
902 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
903 Fix typos in explanations of the runtime file.
904 * bootstrap: Change gettext keyword from YYI18N to YY_.
905 Use standard Makefile.in.in in runtime-po, since we'll arrange
906 for backward-compatible bison-runtime.po files in a different way.
907 * data/glr.c (YY_): New macro, from yacc.c.
908 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
909 Translate messages intended for users.
910 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
911 the wording in the other skeletons. We don't know that the memory
912 is virtual.
913 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
914 Use same method that yacc.c uses.
915 Don't translate debugging messages.
916 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
917 it doesn't work (yet), and requires C++ expertise to fix.
918 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
919 Move defn to a more logical place, to be consistent with other
920 skeletons.
921 Don't translate debugging messages.
922 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
923 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
924 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
925 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
926
927 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
928 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
929 void, not int.
930 * tests/glr-regression.at (Badly Collapsed GLR States):
931 Likewise.
932 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
933 yylex should return 0 at EOF rather than aborting.
934
935 Improve tests for stack overflow in GLR parser.
936 Problem reported by twlevo@xs4all.nl.
937 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
938 All uses removed.
939 (yyStackOverflow): Just longjmp, but with value 2 so that caller
940 can handle the problem.
941 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
942 (yyparse): New local variable yyresult to record the result.
943 Use result of setjmp to set it, rather than storing itinto
944 struct.
945 (yyDone): Remove label.
946 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
947 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
948 if YYABORT is used).
949 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
950 yyparse status; put status > 1 into diagnostic.
951 Check that status==2 works.
952 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
953 Use exit status 3 for failure to open (which shouldn't happen).
954
955 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
956
957 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
958 1 on syntax error; just let yyparse do its thing.
959 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
960 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
961 (Exploding the Stack Size with Alloca):
962 (Exploding the Stack Size with Malloc):
963 Expect exit status 2, not 1, since the parser is supposed to blow
964 its stack. Problem reported by twlevo@xs4all.nl.
965
966 * data/glr.c (yyparse): Don't assume that the initial calls
967 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
968 Print a stack-overflow message and fail instead.
969 Initialize the line-number information before creating the stack,
970 so that the stack-overflow message can report line zero safely.
971
972 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
973
974 Fix problems reported by twlevo@xs4all.nl.
975 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
976 (yyuserMerge): Provide a default case if b4_mergers is empty.
977 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
978 * tests/glr-regression.at
979 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
980 Add casts to pacify C++ compilers.
981 * tests/glr-regression.at (Improper merging of GLR delayed action
982 sets): Declare yylex before using it.
983 * tests/Makefile.am (maintainer-check-g++): Fix a stray
984 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
985 test for valgrind; valgrind is independent of g++.
986 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
987 for compatibility with POSIX 1003.1-2001 (if running coreutils).
988 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
989 Use a destructor, so that we can expand the stack. Change
990 YYSTYPE to char * so that we can free it. Cast result of malloc.
991
992 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
993
994 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
995 a valgrind failure. Problem reported by twlevo@xs4all.nl.
996
997 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
998
999 * PACKAGING: New file, suggested by Bruno Haible and taken from
1000 similar wording in gettext's PACKAGING file.
1001 * NEWS: Mention PACKAGING.
1002 * Makefile.am (EXTRA_DIST): Add PACKAGING.
1003
1004 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
1005
1006 * NEWS: Document recent i18n improvements.
1007 * bootstrap: Get runtime translations into runtime-po.
1008 Create runtime-po files automatically, if possible.
1009 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
1010 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
1011 does not infringe on the user's name space.
1012 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
1013 * doc/bison.texinfo (Internationalization): Revamp the English
1014 and Texinfo syntax a bit, to try to make it clearer.
1015 (Bison Options, Option Cross Key): Mention --print-localedir.
1016 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
1017 YYENABLE_NLS. Quote a bit more.
1018 * runtime-po/.cvsignore: New file.
1019 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
1020 * runtime-po/Rules-quot: Remove; now created by bootstrap.
1021 * runtime-po/quot.sed: Likewise.
1022 * runtime-po/boldquot.sed: Likewise.
1023 * runtime-po/en@quot.header: Likewise.
1024 * runtime-po/en@boldquot.header: Likewise.
1025 * runtime-po/insert-header.sin: Likewise.
1026 * runtime-po/remove-potcdate.sin: Likewise.
1027 * runtime-po/Makevars: Likewise.
1028 * runtime-po/LINGUAS: Likewise.
1029 * runtime-po/de.po: Likewise; we will rely on the translation project
1030 to maintain this, so "bootstrap" should get it.
1031 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
1032 its value.
1033 * src/main.c (main): Bind the bison-runtime domain, too.
1034
1035 2005-07-12 Bruno Haible <bruno@clisp.org>
1036
1037 * data/yacc.c: Include <libintl.h> when NLS is enabled.
1038 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
1039 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
1040 * runtime-po: New directory.
1041 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
1042 $(DOMAIN).pot-update rule, so that old messages are never dropped.
1043 * runtime-po/Rules-quot: New file, copied from po/.
1044 * runtime-po/quot.sed: Likewise.
1045 * runtime-po/boldquot.sed: Likewise.
1046 * runtime-po/en@quot.header: Likewise.
1047 * runtime-po/en@boldquot.header: Likewise.
1048 * runtime-po/insert-header.sin: Likewise.
1049 * runtime-po/remove-potcdate.sin: Likewise.
1050 * runtime-po/Makevars: New file.
1051 * runtime-po/POTFILES.in: New file.
1052 * runtime-po/LINGUAS: New file.
1053 * runtime-po/bison-runtime.pot: New file.
1054 * runtime-po/de.po: New file.
1055 * m4/bison.m4: New file.
1056 * Makefile.am (SUBDIRS): Add runtime-po.
1057 (aclocaldir, aclocal_DATA): New variables.
1058 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
1059 Define aclocaldir.
1060 * src/getargs.c (usage): Document --print-localedir option.
1061 (PRINT_LOCALEDIR_OPTION): New enum item.
1062 (long_options): Add --print-localedir option.
1063 (getargs): Handle --print-localedir option.
1064 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
1065 (Internationalization): New section.
1066
1067 2005-07-12 Akim Demaille <akim@epita.fr>
1068
1069 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
1070 for consistency with the rest of the code.
1071 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
1072 Add separators.
1073
1074 2005-07-12 Akim Demaille <akim@epita.fr>
1075
1076 * src/parse-gram.y: Use %printer instead of YYPRINT.
1077
1078 2005-07-12 Akim Demaille <akim@epita.fr>
1079
1080 * src/symtab.h, src/symtab.c (symbol_print): New.
1081 * src/symlist.h, src/symlist.c (symbol_list_print): New.
1082 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
1083
1084 2005-07-12 Akim Demaille <akim@epita.fr>
1085
1086 * data/glr.c (b4_syncline): Fix (swap) the definitions of
1087 b4_at_dollar and b4_dollar_dollar.
1088
1089 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
1090
1091 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
1092 and Pennello's paper.
1093
1094 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
1095
1096 * data/yacc.c (yyparse): Undo previous patch. Instead,
1097 set yylsp[0] and yyvsp[0] only if the initial action
1098 sets yylloc and yylval, respectively.
1099
1100 * data/yacc.c (yyparse): In the initial action, set
1101 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
1102 This avoids the use of undefined variables if the initial
1103 action does not set yylloc and/or yylval.
1104
1105 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
1106
1107 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
1108 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
1109 Remove from CVS. These files are automatically generated.
1110 * examples/extexi: Clarify that this file is now part of Bison,
1111 not GNU M4, and that it works with any POSIX-compatible Awk.
1112 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
1113 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
1114 so that we also get calc++-parser.yy. Geneate it.
1115 Use $(AWK), not gawk, since any conforming Awk will do.
1116 Put comment before action, since older 'make' can't handle comment
1117 in action.
1118 $(BUILT_SOURCES): List all built sources, not just some of them.
1119 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
1120 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
1121 $($(calc_sources_generated)): Remove unnecessary test for existence
1122 of target. (This had a shell syntax error anyway; a stray "x".)
1123 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
1124 calc++-parser.yy.
1125 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
1126
1127 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
1128 implied by the other modules.
1129
1130 2005-07-06 Akim Demaille <akim@epita.fr>
1131
1132 Bind examples/calc++ to the package.
1133 * examples/calc++/Makefile: Remove, replaced by...
1134 * examples/calc++/Makefile.am: ... this new file.
1135 * examples/calc++/test: Remove input.
1136 * examples/calc++/compile: Remove.
1137 * examples/Makefile.am: New.
1138 * configure.ac, Makefile.am: Adjust.
1139 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
1140
1141 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
1142
1143 * data/glr.c (yyFail): Drastically simplify; since the format argument
1144 never had any % directives, we can simply pass it to yyerror.
1145 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
1146 be modified later, as that is the usual style in glr.c.
1147 Problems reported by Paul Hilfinger.
1148
1149 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
1150 and size overflow errors.
1151 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
1152 in case the user prolog sets feature-test macros like _GNU_SOURCE.
1153 (YYSIZEMAX): New macro.
1154 (yystpcpy): New function, taken from yacc.c.
1155 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
1156 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
1157 so that we don't have to maintain their signatures.
1158 (yyFail): Check for buffer overflow, by using vsnprintf rather
1159 than vsprintf. Allocate a bigger buffer if possible.
1160 Report an error if buffer allocation fails.
1161 (yyStackOverflow): New function.
1162 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
1163 the initialization was successful. It might fail if storage was
1164 exhausted.
1165 (yyexpandGLRStack): Add more checks for storage allocation failure.
1166 Use yyStackOverflow to report failures.
1167 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
1168 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
1169 Don't assume stack number fits in int.
1170 (yysplitStack): Check for storage allocation failure.
1171 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
1172 can print diagnostics on storage allocation failure. All callers
1173 changed.
1174 (yyresolveValue): Use yybool for boolean.
1175 (yyreportSyntaxError): Check for size-calculation overflow.
1176 This code is taken from yacc.c.
1177 (yyparse): Check for storage allocation errors when allocating
1178 the initial stack.
1179
1180 2005-07-05 Akim Demaille <akim@epita.fr>
1181
1182 Extract calc++ from the documentation.
1183 * doc/bison.texinfo (Calc++): Add the extraction marks.
1184 * examples/extexi: New, from the aborted GNU Programming 2E.
1185 Separate the different paragraph of a file with empty lines.
1186 * examples/Makefile: Use it to extract the whole calc++ example.
1187
1188 2005-06-24 Akim Demaille <akim@epita.fr>
1189
1190 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
1191 class typedefs.
1192
1193 2005-06-22 Akim Demaille <akim@epita.fr>
1194
1195 * doc/bison.texinfo (C++ Language Interface): First stab.
1196 (C++ Parsers): Remove.
1197
1198 2005-06-22 Akim Demaille <akim@epita.fr>
1199
1200 * data/lalr1.cc (yylex_): Honor %lex-param.
1201
1202 2005-06-22 Akim Demaille <akim@epita.fr>
1203
1204 Start a set of simple examples.
1205 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
1206 * examples/calc++/calc++-driver.hh,
1207 * examples/calc++/calc++-parser.yy,
1208 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
1209 * examples/calc++/compile, examples/calc++/test: New.
1210
1211 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
1212
1213 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
1214 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
1215 which stems from the 2005-05-27 patch.
1216
1217 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1218
1219 * data/glr.c: Modify treatment of unused parameters to permit use
1220 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
1221
1222 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
1223
1224 Fix infringement on user name space reported by Janos Zoltan Szabo.
1225 * data/yacc.c (yyparse): strlen -> yystrlen.
1226
1227 2005-05-30 Akim Demaille <akim@epita.fr>
1228
1229 * data/lalr1.cc (_): New.
1230 Translate the various messages.
1231
1232 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
1233
1234 Fix infringement on user name space reported by Bruno Haible.
1235 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
1236 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
1237 the user's name space.
1238 (alloca): Include <stdlib.h> to get it, if it's not built in.
1239 (YYMALLOC, YYFREE): Define only if needed.
1240 (malloc, free): Declare, but only if needed, as this infringes on
1241 the user name space.
1242
1243 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
1244
1245 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
1246 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
1247 with %d format.
1248 * lib/ebitset.c (min, max): Undef before defining.
1249 * lib/vbitset.c (min, max): Likewise.
1250 * lib/subpipe.c (create_subpipe): Save local variables in case
1251 vfork clobbers them.
1252
1253 2005-05-24 Bruno Haible <bruno@clisp.org>
1254
1255 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
1256 error message syntax used by gcc-4.0.
1257
1258 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
1259
1260 * README: Mention m4 1.4.3. Remove obsolete advice about
1261 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
1262
1263 * bootstrap: Remove workaround for problem I encountered with
1264 gettext 0.14.1; it seems to be fixed now.
1265
1266 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
1267
1268 * NEWS: Version 2.0a.
1269
1270 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
1271 the previous change.
1272
1273 Various maintainer cleanups.
1274 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
1275 conftest*, for benefit of CVS commands run at the same time as
1276 "configure". Add build-aux, since "bootstrap" now creates it and
1277 its subfiles.
1278 * Makefile.cfg (move_if_change): Remove.
1279 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
1280 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
1281 (po_repo, do-po-update, po-update, wget_files, get-targets):
1282 (config.guess-url_prefix, config.sub-url_prefix):
1283 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
1284 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
1285 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
1286 Remove.
1287 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
1288 this is now the recommended name.
1289 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
1290 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
1291 ylwrap. These files now go into build-aux.
1292 * config/move-if-change: Remove.
1293 * config/prev-version.txt: Bump from 1.75 to 2.0.
1294
1295 * bootstrap: Add stdio-safer, unistd-safer modules.
1296 Remove m4/glibc2.m4 (introduced by latest gnulib, but
1297 we don't need it).
1298 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
1299 fopen-safer.c, stdio-safer.h, unistd-safer.h.
1300 * lib/subpipe.c: Include "unistd-safer.h".
1301 (create_subpipe): Make sure all the newly-created
1302 file descriptors are > 2, so that diagnostics don't
1303 get sent down them (which might cause Bison to hang, in theory).
1304 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
1305 * src/files.c (xfopen): Use fopen_safer, not fopen.
1306
1307 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
1308 yesterday's yacc.c fix.
1309
1310 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
1311
1312 * data/glr.c, data/lalr1.cc: Update copyright date.
1313
1314 Fix a destructor bug reported by Wolfgang Spraul in
1315 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
1316 * data/yacc.c (yyabortlab): Don't call destructor, and
1317 don't set yychar to EMPTY.
1318 (yyoverflowlab): Don't call destructor.
1319 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
1320 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
1321 since we no longer output the message "discarding lookahead token
1322 end of input ()".
1323
1324 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
1325
1326 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
1327 fix a small glitch in debugging output.
1328 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
1329 after YY_SYMBOL_PRINT where needed.
1330
1331 (struct yyGLRState): Add some comments.
1332 (struct yySemanticOption): Add some comments.
1333 (union yyGLRStackItem): Add comment.
1334
1335 (yymergeOptionSets): Correct this to properly perform the union,
1336 avoiding infinite reported by Michael Rosien.
1337 Update comment.
1338
1339 * tests/glr-regression.at: Add test for GLR merging error reported
1340 by M. Rosien.
1341
1342 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
1343
1344 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
1345 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
1346 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
1347 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
1348 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
1349 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
1350 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
1351 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
1352 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
1353 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
1354 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
1355 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
1356 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
1357 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
1358 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
1359 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
1360 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
1361 src/derives.h, src/files.c, src/files.h, src/getargs.c,
1362 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
1363 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
1364 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
1365 src/output.h, src/parse-gram.c, src/parse-gram.h,
1366 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
1367 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
1368 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
1369 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
1370 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
1371 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
1372 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
1373 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
1374 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
1375 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
1376 tests/reduce.at, tests/regression.at, tests/sets.at,
1377 tests/synclines.at, tests/testsuite.at, tests/torture.at:
1378 Update FSF postal mail address.
1379
1380 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
1381
1382 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
1383 Problem reported by Ralf Menzel.
1384
1385 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
1386
1387 * tests/actions.at: Test that stack overflow invokes destructors.
1388 From Marcus Holland-Moritz.
1389 * data/yacc.c (yyerrlab): Move the code that destroys the stack
1390 from here....
1391 (yyreturn): to here. That way, destructors are called properly
1392 even if the stack overflows, or the user calls YYACCEPT or
1393 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
1394 (yyoverflowlab): Destroy the lookahead.
1395
1396 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
1397
1398 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
1399
1400 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
1401
1402 * NEWS: Bison-generated C parsers no longer quote literal strings
1403 associated with tokens.
1404 * src/output.c (prepare_symbols): Don't escape strings,
1405 since users don't want to see C escapes.
1406 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
1407 in diagnostics.
1408 * tests/input.at (Torturing the Scanner): Likewise.
1409 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
1410
1411 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
1412
1413 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
1414 the data size is known to be too small and we can't increase it.
1415 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
1416
1417 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
1418
1419 * src/parse-gram.y: Include quotearg.h.
1420 (string_as_id): Quote $1 before using it as a key, since the
1421 lexer no longer quotes it for us.
1422 (string_content): Don't strip quotes, since lexer no longer
1423 quotes it for us.
1424 * src/scan-gram.l: Include quotearg.h.
1425 ("\""): Omit quote.
1426 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
1427 a key, since the rest of the lexer doesn't quote it.
1428 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
1429 * tests/regression.at (Token definitions): Check for backslashes
1430 in token strings.
1431
1432 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
1433 (YYSIZE_T): Define to unsigned long int when using an older compiler.
1434 (yyparse): Revamp code to generate long syntax error message, to
1435 make it easier to translate, and to avoid problems with arithmetic
1436 overflow. Change "virtual memory" to "memory" in diagnostic, since
1437 we don't know whether the memory is virtual.
1438
1439 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
1440
1441 * NEWS: Bison-generated C parsers now use the _ macro to
1442 translate strings.
1443 * data/yacc.c (_) [!defined _]: New macro.
1444 All English strings wrapped inside this macro.
1445 * doc/bison.texinfo (Bison Parser): Document _.
1446 * po/POTFILES.in: Include src/parse-gram.c, since it now
1447 includes translateable strings that parse-gram.y doesn't.
1448
1449 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
1450
1451 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
1452 reverting the 2004-10-11 change to this function.
1453 (symbol_check_alias_consistency): Don't call symbol_type_set
1454 if the type name is already correct.
1455 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
1456
1457 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
1458
1459 * tests/regression.at (Token definitions): Don't use a token named
1460 c, as that generates a "#define c ..." that runs afoul of buggy
1461 stdlib.h that uses the identifier c as a member of struct
1462 drand48_data. Problem reported by Horst Wente.
1463
1464 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
1465
1466 * bootstrap: Change translation URL from
1467 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
1468 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
1469 redirection glitches. Problem reported by twlevo@xs4all.nl.
1470
1471 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
1472
1473 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
1474 after operands; POSIX says this isn't portable for the c99 command.
1475
1476 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
1477
1478 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
1479 immediately if a data overrun has occurred; this may help us track
1480 down what may be a spurious failure on MacOS.
1481
1482 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
1483
1484 Respond to problems reported by twlevo@xs4all.nl.
1485
1486 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
1487
1488 * src/vcg.h: Comment fix.
1489 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
1490 (G_CMAX): Change to -1 instead of INT_MAX.
1491
1492 * data/yacc.c (yyparse): Omit spaces before #line.
1493
1494 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
1495
1496 * src/tables.c (state_number_to_vector_number): Put it inside an
1497 "#if 0", since it's not currently used. Problem reported by
1498 Roland McGrath.
1499
1500 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
1501
1502 * src/output.c (escaped_output): Renamed from
1503 escaped_file_name_output, since we now use it for symbol tags as
1504 well. All uses changed.
1505 (symbol_destructors_output, symbol_printers_output):
1506 Escape symbol tags too.
1507 Problem reported by Matyas Forstner in
1508 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
1509
1510 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
1511 not needed.
1512 * src/output.c (user_actions_output, token_definitions_output,
1513 symbol_destructors_output, symbol_printers_output): Likewise.
1514 * src/reader.c (prologue_augment): Likewise.
1515 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
1516
1517 * src/vcg.c (output_edge): Don't quote linestyle arg.
1518 Problem reported by twlevo@xs4all.nl.
1519
1520 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
1521
1522 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
1523 example, reported by Derek M Jones. Also, make the example even
1524 more outrageous, to better illustrate how bad the problem is.
1525
1526 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
1527
1528 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
1529 putsym. Typo reported by Sebastian Piping.
1530
1531 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
1532
1533 * doc/bison.texinfo (Language and Grammar): some -> same
1534 (Epilogue): int he -> in the
1535 Typos reported by Sebastian Piping via Justin Pence.
1536
1537 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
1538
1539 * tests/glr-regression.at (Improper handling of embedded actions
1540 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
1541 embedded actions and $-N in GLR parsers", work around an Autoconf bug
1542 with dollar signs in test names.
1543 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
1544 for a similar reason.
1545
1546 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
1547
1548 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
1549 wants to redefine G_VIEW.
1550
1551 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
1552
1553 * src/vcg.c (get_view_str): Remove case for normal_view.
1554 Problem reported by twlevo@xs4all.nl.
1555
1556 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
1557
1558 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
1559 Problem reported by twlevo@xs4all.nl.
1560
1561 * doc/bison.texinfo: Change @dircategory from "GNU programming
1562 tools" to "Software development". Requested by Richard Stallman
1563 via Karl Berry.
1564
1565 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
1566
1567 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
1568 Problem reported by twlevo@xs4all.nl.
1569
1570 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
1571
1572 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
1573 keyword; it's not needed with modern compilers, and it doesn't
1574 affect correctness with older compilers. Suggested by
1575 twlevo@xs4all.nl.
1576
1577 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
1578
1579 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
1580 gcc -Wswitch-default.
1581 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
1582 * data/yacc.c (yyparse): Likewise.
1583
1584 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
1585
1586 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
1587 already. Let config.h define any nonstandard values.
1588
1589 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
1590
1591 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
1592 for the benefit of slower hosts. Problem reported by
1593 Nelson H. F. Beebe.
1594
1595 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
1596
1597 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
1598 being defined and not used.
1599 * data/lalr1.cc (yyparse): Likewise.
1600 Use "if (false)" rather than "if (0)".
1601
1602 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
1603
1604 * TODO: Mention that we should allow NUL bytes in tokens.
1605
1606 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
1607
1608 * src/scan-skel.l (<<EOF>>): Don't close standard output.
1609 Problem reported by Hans Aberg.
1610
1611 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
1612
1613 * src/getargs.c (version): Happy new year; update overall
1614 program copyright date from 2004 to 2005.
1615
1616 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
1617 Problem reported by Hans Aberg.
1618 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
1619 (Output file names.): Add a test for the case when standard output
1620 is closed.
1621
1622 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
1623
1624 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
1625 to fix an oversight in the Bison 2.0 manual.
1626
1627 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
1628
1629 * NEWS: Version 2.0. Reformat the existing news items since
1630 1.875, so that related items are grouped together.
1631 * configure.ac (AC_INIT): Bump version to 2.0.
1632 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
1633
1634 * tests/torture.at (Exploding the Stack Size with Alloca): Set
1635 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
1636 otherwise, we're not testing alloca. Unfortunately there's no
1637 simple way to consult HAVE_ALLOCA here.
1638
1639 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
1640 for yymsg, too.
1641
1642 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
1643 hand. This avoids a warning about comparing int to size_t when
1644 GCC warnings are enabled.
1645
1646 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
1647
1648 * NEWS: Bison-generated parsers no longer default to using the
1649 alloca function (when available) to extend the parser stack, due
1650 to widespread problems in unchecked stack-overflow detection.
1651 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
1652 responsibility to set it to a positive value. This lets the user
1653 specify a value that is not a preprocessor constant.
1654 * data/yacc.c (YYMAXDEPTH): Likewise.
1655 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
1656 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
1657 to be a compile-time constant. However, explain the constraints on it.
1658 Also, explain the constraints on YYINITDEPTH.
1659 (Table of Symbols): Explain that alloca is no longer the default.
1660 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
1661 to 1.
1662
1663 * doc/bison.texinfo (Location Default Action): Mention that n must
1664 be zero when k is zero. Suggested by Frank Heckenbach.
1665
1666 2004-12-22 Akim Demaille <akim@epita.fr>
1667
1668 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
1669 (parser::state_type, parser::semantic_type, parser::location_type):
1670 Private, not public.
1671 (parser::parse): Return ints, not bool.
1672 Returning a bool introduces a problem: 0 corresponds to false, and
1673 it seems weird to return false on success. Returning true changes
1674 the conventions for yyparse.
1675 Alternatively we could return void and send an exception.
1676 There is no clear consensus (yet?).
1677 (state_stack, semantic_stack, location_stack): Rename as...
1678 (state_stack_type, semantic_stack_type, location_stack_type): these.
1679 Private, not public.
1680 * tests/c++.at: New.
1681 * tests/testsuite.at, tests/Makefile.am: Adjust.
1682
1683 2004-12-21 Akim Demaille <akim@epita.fr>
1684
1685 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
1686
1687 2004-12-21 Akim Demaille <akim@epita.fr>
1688
1689 Don't impose std::string for filenames.
1690
1691 * data/lalr1.cc (b4_filename_type): New.
1692 (position::filename): Use it.
1693 (parser.hh): Move the inclusion of stack.hh and location.hh below
1694 the user code, so that needed headers for the filename type can be
1695 included first.
1696 Forward declare them before the user code.
1697 * tests/Makefile.am (check-local, installcheck-local): Pass
1698 TESTSUITEFLAGS to the TESTSUITE.
1699
1700 2004-12-20 Akim Demaille <akim@epita.fr>
1701
1702 Use more STL like names: my_class instead of MyClass.
1703
1704 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
1705 (SemanticStack, SemanticType, StateStack, StateType)
1706 (TokenNumberType, Stack, Slice, Traits, Parser::location)
1707 (Parser::value): Rename as...
1708 (location_stack, location_type, rhs_number_type, semantic_stack)
1709 (semantic_type, state_stack, state_type, token_number_type, stack)
1710 (slice, traits, parser::yylloc, parser::yylval): these.
1711
1712 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
1713
1714 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
1715
1716 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
1717 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
1718
1719 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
1720
1721 Remove uses of 'short int' and 'unsigned short int'. This raises
1722 some arbitrary limits. It uses more memory but nowadays that's
1723 not much of an issue.
1724
1725 This change does not affect the generated parsers; that's a different
1726 task, as some users will want to conserve memory there.
1727
1728 Ideally we should use size_t to represent all object counts, and
1729 something like ptrdiff_t to represent signed differences of object
1730 counts; but that will require more code-cleanup than I have the
1731 time to do right now.
1732
1733 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
1734 Use size_t, not int or short int, to count objects.
1735 * src/closure.c (nritemset, closure): Likewise.
1736 * src/closure.h (nritemset, closure): Likewise.
1737 * src/nullable.c (nullable_compute): Likewise.
1738 * src/print.c (print_core): Likewise.
1739 * src/print_graph.c (print_core): Likewise.
1740 * src/state.c (state_compare, state_hash): Likewise.
1741 * src/state.h (struct state): Likewise.
1742 * src/tables.c (default_goto, goto_actions): Likewise.
1743
1744 * src/gram.h (rule_number, rule): Use int, not short int.
1745 * src/output.c (prepare_rules): Likewise.
1746 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
1747 errs, reductions): Likewise.
1748 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
1749 Likewise.
1750 * src/tables.c (vector_number, tally, action_number,
1751 ACTION_NUMBER_MINIMUM): Likewise.
1752 * src/output.c (muscle_insert_short_int_table): Remove.
1753
1754 2004-12-17 Akim Demaille <akim@epita.fr>
1755
1756 * data/lalr1.cc: Extensive Doxygenation.
1757 (error_): Rename as...
1758 (error): this, since it is visible to the user.
1759 Adjust callers.
1760 (Parser::message): Now an automatic variable from...
1761 (Parser::yyreport_syntax_error_): here.
1762 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
1763 Parser::error.
1764 * tests/input.at: Escape $.
1765
1766 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
1767
1768 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
1769 Parenthesize rhs to avoid obscure problems with mistakes like
1770 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
1771 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
1772 b4_rhs_location): Likewise.
1773 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
1774 b4_rhs_location): Likewise.
1775
1776 2004-12-16 Akim Demaille <akim@epita.fr>
1777
1778 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
1779 yacc.c: be sure to stay within yycheck_.
1780 * tests/actions.at: Re-enable C++ tests.
1781
1782 2004-12-16 Akim Demaille <akim@epita.fr>
1783
1784 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
1785 real.
1786
1787 2004-12-16 Akim Demaille <akim@epita.fr>
1788
1789 Use #define to handle the %name-prefix.
1790
1791 * data/glr.c, data/yacc.c: Comment changes.
1792 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
1793 so that one can refer to yylex in the parser file, and have it
1794 renamed, as is the case with other skeletons.
1795
1796 2004-12-16 Akim Demaille <akim@epita.fr>
1797
1798 Move lalr1.cc internals into yy*.
1799
1800 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
1801 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
1802 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
1803 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
1804 (empty_, final_, terror_, errcode_, ntokens_)
1805 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
1806 (looka_, ilooka_, error_range_, nerrs_):
1807 Rename as...
1808 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
1809 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
1810 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
1811 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
1812 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
1813 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
1814 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
1815 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
1816 these.
1817
1818 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
1819
1820 Fix some problems reported by twlevo at xs4all.
1821 * src/symtab.c (symbol_new): Report an error if the input grammar
1822 contains too many symbols. This is better than calling abort() later.
1823 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
1824 (struct node, struct graph):
1825 Rename member expand to stretch. All uses changed.
1826 (struct graph): Remove member layoutalgorithm. All uses removed.
1827 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
1828 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
1829 All uses changed.
1830 (N_STRETCH): Rename from N_EXPAND. All uses changed.
1831
1832 2004-12-15 Akim Demaille <akim@epita.fr>
1833
1834 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
1835 Add more Doxygen comments.
1836 (symprint_, stack_print_, reduce_print_, destruct_, pop)
1837 (report_syntax_error_, translate_): Rename as...
1838 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
1839 (yypop_, yyreport_syntax_error_, yytranslate_): this.
1840
1841 2004-12-15 Akim Demaille <akim@epita.fr>
1842
1843 * data/lalr1.cc (lex_): Rename as...
1844 (yylex_): this.
1845 Move the trace here.
1846 Take the %name-prefix into account.
1847 Reported by Alexandre Duret-Lutz.
1848
1849 2004-12-15 Akim Demaille <akim@epita.fr>
1850
1851 Simplify the C++ parser constructor.
1852
1853 * data/lalr1.cc (debug_): Rename as...
1854 (yydebug_): so that the parser's internals are always in the yy*
1855 pseudo namespace.
1856 Adjust uses.
1857 (b4_parse_param_decl): Remove the leading comma as it is now only
1858 called as unique argument list.
1859 (Parser::Parser): Remove the constructor accepting a location and
1860 an initial debugging level.
1861 Remove from the other ctor the argument for the debugging level.
1862 (debug_level_type, debug_level, set_debug_level): New.
1863
1864 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
1865 constructor calls.
1866
1867 2004-12-15 Akim Demaille <akim@epita.fr>
1868
1869 Remove b4_root related material: failure experiment
1870 (which goal was to allow to derive from a class).
1871
1872 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
1873 definitions and uses.
1874
1875 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
1876
1877 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
1878 not 2, since it's not portable to subtract 1 from the start of an
1879 array. The new item 0 is never set or used. All uses changed.
1880
1881 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
1882 the default definition of YYLLOC_DEFAULT. Problem reported
1883 by Frank Heckenbach.
1884
1885 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
1886
1887 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
1888 the normal case and one for the error case. Just use the
1889 first one uniformly. Problem reported by Frank Heckenbach.
1890 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
1891 use exactly the same macro in both places.
1892 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
1893 so that the normal-case YYRHSLOC works for the error case too.
1894 All uses changed.
1895 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
1896 (YYLLOC_DEFAULT): Use the same macro as glr.c.
1897 * doc/bison.texinfo (Location Default Action): Don't claim that
1898 we have an array of locations. Use the same macro for both glr
1899 and lalr parsers. Mention YYRHSLOC. Mention what happens when
1900 the index is 0.
1901
1902 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
1903
1904 * HACKING: Update email addresses to send announcements to.
1905
1906 * configure.ac (AC_INIT): Bump version to 1.875f.
1907
1908 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
1909
1910 * NEWS: Version 1.875e.
1911 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
1912
1913 * src/scan-skel.l: Include "complain.h", for "fatal".
1914
1915 * src/relation.h (relation_print, relation_digraph):
1916 Relation sizes are of type relation_node, not size_t (this is
1917 merely a doc fix, since the two types are equivalent).
1918 (relation_transpose): Relation sizes are of type relation_node,
1919 not int.
1920 * src/relation.c: Likewise.
1921 (top, infinity): Now of type relation_node, not int.
1922 (traverse, relation_transpose): Use relation_node, not int.
1923
1924 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
1925 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
1926 (yyparse): Remove unused local introduced in 2004-10-25 patch.
1927
1928 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
1929 specifying whether the test should be skipped. Use it tp
1930 specify that the [%defines %skeleton "lalr1.cc"] tests currently
1931 fail on some hosts, and should be skipped.
1932
1933 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
1934
1935 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
1936 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
1937 unless otherwise specified below.
1938
1939 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
1940 to allocate kernel_base, kernel_items, kernel_size, since
1941 they needn't be initialized to 0.
1942 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
1943 * src/closure.c (new_closure): Likewise, for itemset.
1944 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
1945 * src/lalr.c (set_goto_map): Likewise, for temp_map.
1946 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
1947 (build_relations): Likewise for edge, states1, includes.
1948 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
1949 * src/reader.c (packgram): Likewise, for ritem, rules.
1950 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
1951 * src/relation.c (relation_digraph): Likewise for VERTICES.
1952 (relation_transpose): Likewise for new_R, end_R.
1953 * src/symtab.c (symbols_token_translations_init): Likewise for
1954 token_translations.
1955 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
1956 (token_actions): Likewise for yydefact, actrow, conflrow,
1957 conflict_list.
1958 (save_column): Likewise for froms[symno], tos[symno].
1959 (goto_actions): Likewise for state_count.
1960 (pack_table): Likewise for base, pos, check.
1961 (tables_generate): Likewise for width.
1962
1963 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
1964 for initial core. Just have a separate core, so we needn't worry
1965 about whether kernel_size and kernel_base are initialized.
1966
1967 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
1968 kernel_size, kernel_items): Remove unnecessary initialization.
1969 * src/conflicts.c (conflicts): Likewise.
1970 * src/derives.c (derives): Likewise.
1971 * src/muscle_tablc (muscle_insert): Likewise.
1972 * src/relation.c (relation_digraph): Likewise.
1973 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
1974 conflrow, conflict_table, conflict_list, table, check):
1975 Likewise.
1976
1977 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
1978 This is because all callers pass unsigned int.
1979 * src/closure.h (new_closure): Likewise.
1980
1981 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
1982 (build_relations): Initialize includes[i] in all cases.
1983 * src/reader.c (packgram): Always initialize rules[ruleno].prec
1984 and rules[ruleno].precsym. Initialize members in order.
1985 * src/relation.c (relation_transpose): Always initialize new_R[i]
1986 and end_R[i].
1987 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
1988
1989 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
1990 conflict_list[0] was always 0, but now it isn't initialized.
1991
1992 * src/table.c (table_grow): When conflict_table grew, the grown
1993 area wasn't cleared. Fix this.
1994
1995 * lib/.cvsignore: Add strdup.c, strdup.h.
1996 * m4/.cvsignore: Add strdup.m4.
1997
1998 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
1999
2000 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
2001 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
2002 GOTO_NUMBER_MAXIMUM, since we occasionally compute
2003 ngotos + 1 without checking for overflow.
2004 (build_relations): Use END_NODE, not -1, to denote end of edges.
2005 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
2006 build_relations): Use goto_number, not int, for goto numbers.
2007 * src/tables.c (save_column, default_goto): Likewise.
2008
2009 2004-11-23 Akim Demaille <akim@epita.fr>
2010
2011 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
2012 of #defining from yystype.
2013 Don't typedef yystype, C++ does not need it.
2014 This lets it possible to forward declare it as union.
2015
2016 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
2017
2018 * bootstrap (gnulib_modules): Add extensions.
2019 Problem reported by Jim Meyering.
2020
2021 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
2022
2023 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
2024 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
2025 src/system.h, src/tables.c: XFREE -> free, to accommodate
2026 recent change to gnulib xalloc.h.
2027 Problem reported by Jim Meyering.
2028
2029 2004-11-17 Akim Demaille <akim@epita.fr>
2030
2031 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
2032
2033 2004-10-28 Akim Demaille <akim@epita.fr>,
2034 Alexandre Duret-Lutz <adl@gnu.org>
2035
2036 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
2037 changes.
2038 (YYCDEBUG): Adjust.
2039 Use it instead of cdebug_.
2040 (Parser::debug_stream, Parser::set_debug_stream): New.
2041 (Parser::symprint_): Define cdebug_ for temporary backward
2042 compatibility.
2043 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
2044 debug_stream ().
2045
2046 2004-11-17 Akim Demaille <akim@epita.fr>
2047
2048 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
2049 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
2050 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
2051 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
2052
2053 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
2054
2055 * data/glr.c (yyloc_default): Remove; not used.
2056 Problem reported by Frank Heckenbach.
2057
2058 2004-10-25 Akim Demaille <akim@epita.fr>
2059
2060 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
2061 Introduce another definition to address simple location arrays.
2062 (yyGLRStack): New member: yyerror_range.
2063 (yyrecoverSyntaxError, yyparse): Update it.
2064 (yyrecoverSyntaxError): Use it when shifting the error token to
2065 have an accurate range, equivalent to the one computed by both
2066 yacc.c and lalr1.cc.
2067 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
2068 that column numbers start at column 0, as per GNU Coding
2069 Standards, the others tests, and the doc.
2070 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
2071 Adjust to the above change (first column is 0).
2072 And adjust the location of the "<error>", now covering the whole
2073 line.
2074
2075 2004-10-22 Akim Demaille <akim@epita.fr>
2076 and Paul Eggert <eggert@cs.ucla.edu>
2077
2078 Remove some arbitrary limits on goto numbers and relations.
2079 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
2080 initial values, since they're never used.
2081 (set_goto_map): ngotos is now unsigned, so test for overflow
2082 by seeing whether it wraps around to zero.
2083 * src/lalr.h (goto_number): Now size_t, not short int.
2084 (GOTO_NUMBER_MAXIMUM): Remove.
2085 * src/relation.c (relation_print, traverse, relation_transpose):
2086 Check for END_NODE rather than looking at sign.
2087 * src/relation.h (END_NODE): New macro.
2088 (relation_node): Now size_t, not short int.
2089
2090 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
2091
2092 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
2093 keyword, not an identifier. Problem reported by Baron Schwartz in
2094 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
2095
2096 2004-10-11 Akim Demaille <akim@epita.fr>
2097
2098 * src/symtab.c (symbol_check_alias_consistency): Also check
2099 type names, destructors, and printers.
2100 Reported by Alexandre Duret-Lutz.
2101 Recode the handling of associativity and precedence in terms
2102 of symbol_precedence_set.
2103 Accept no redeclaration at all, not even equal to the previous
2104 value.
2105 (redeclaration): New.
2106 Use it to factor redeclaration complaints.
2107 (symbol_make_alias): Don't set the type of the alias, let
2108 symbol_check_alias_consistency do it as for other features.
2109 * src/symtab.h (symbol): Add new member prec_location, and
2110 type_location.
2111 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
2112 * tests/input.at (Incompatible Aliases): New.
2113
2114 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
2115
2116 .cvsignore fixes to accommodate gnulib changes,
2117 and the practice of naming build directories "_build".
2118 * .cvsignore: Add "_*". Sort.
2119 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
2120 * m4/.cvsignore: Add "*_gl.m4".
2121
2122 2004-10-06 Akim Demaille <akim@epita.fr>
2123
2124 * src/parse-gram.y (add_param): Fix the truncation of trailing
2125 spaces.
2126
2127 2004-10-05 Akim Demaille <akim@epita.fr>
2128
2129 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
2130 whether the reducion was empty or not. This leaves room to
2131 improve the use of YYLLOC_DEFAULT in such a case.
2132 lalr1.cc is still experimental, so changing this is acceptable.
2133 And finally, there are probably not many users who changed the
2134 handling of locations in GLR, so changing is admissible too.
2135
2136 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
2137 empty reduction, set @$ to an empty location ending the previously
2138 stacked symbol.
2139 Adjust uses to make sure the code is triggered on empty
2140 reductions.
2141 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
2142 expected output: empty reductions have empty locations.
2143
2144 2004-09-29 Akim Demaille <akim@epita.fr>
2145
2146 * data/lalr1.cc: Move towards a more standard C++ coding style
2147 for templates: Class < T > -> Class<T>.
2148
2149 2004-09-29 Akim Demaille <akim@epita.fr>
2150
2151 * data/lalr1.cc: Reinstall the former ctor, for sake of
2152 compatibility, but warn it will be removed.
2153 Move towards a more standard C++ coding style (i.e., type *var ->
2154 type* var).
2155
2156 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
2157
2158 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
2159 since it's less likely to work if NULs are involved in the future.
2160
2161 2004-09-27 Akim Demaille <akim@epita.fr>
2162
2163 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
2164
2165 2004-09-27 Akim Demaille <akim@epita.fr>
2166
2167 * data/lalr1.cc (b4_parse_param_decl_1): New.
2168 (b4_parse_param_decl): Use it to have different names between attribute
2169 and argument names.
2170 (b4_cc_constructor_call): Likewise.
2171
2172 2004-09-24 Akim Demaille <akim@epita.fr>
2173
2174 * src/parse-gram.y (add_param): Strip the leading and trailing
2175 blanks from a formal argument declaration.
2176 (YY_LOCATION_PRINT): New.
2177
2178 2004-09-24 Akim Demaille <akim@epita.fr>
2179
2180 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
2181 after the location.
2182
2183 2004-09-24 Akim Demaille <akim@epita.fr>
2184
2185 * doc/bison.texinfo (Table of Symbols): Sort.
2186
2187 2004-09-21 Akim Demaille <akim@epita.fr>
2188
2189 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
2190 the useless parentheses.
2191 Suggested by Paul Eggert.
2192
2193 2004-09-20 Akim Demaille <akim@epita.fr>
2194
2195 Let the initial-action act on the look-ahead, and use it for the
2196 "initial push" (corresponding to an hypothetical beginning-of-file).
2197 And let lalr1.cc honor %initial-action.
2198
2199 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
2200 example.
2201 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
2202 (Parser::Parser): Remove the ctor that used to initialize it.
2203 (Parser::parse): Like in the other skeletons, issue the "starting
2204 parse" message before any action.
2205 Honor %initial-action.
2206 Initialize the stacks with the lookahead.
2207 * data/yacc.c: Let $$ and @$ in %initial-action designate the
2208 look-ahead.
2209 Push them in the stacks.
2210 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
2211
2212 2004-09-20 Akim Demaille <akim@epita.fr>
2213
2214 * doc/bison.texinfo (Initial Action Decl): New.
2215
2216 2004-09-20 Akim Demaille <akim@epita.fr>
2217
2218 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
2219 clearer criterion to define it.
2220 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
2221 When reducing on an empty RHS, use the latest stacked location as
2222 location.
2223 yylloc is not always available.
2224 * data/glr.c: Likewise.
2225 Also, honor initial-actions.
2226
2227 2004-09-20 Akim Demaille <akim@epita.fr>
2228
2229 * data/yacc.c (YY_LOCATION_PRINT): New.
2230 Define when we know YYLTYPE's structure, i.e., when the default
2231 YYLLOC_DEFAULT is used.
2232 * data/c.m4 (b4_yysymprint_generate): Use it.
2233 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
2234 value of the result.
2235 (error_start_): Replace with...
2236 (error_range_): this location array.
2237 This allows to replace code relying on the implementation of
2238 locations by portable code.
2239 * data/yacc.c (yylerrsp): Replace with...
2240 (yyerror_range): this.
2241 Every time a token is popped, update yyerror_range[0], to have an
2242 accurate location for the error token.
2243 * data/glr.c (YY_LOCATION_PRINT): New.
2244 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
2245 deference a pointer.
2246 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
2247 report the location in %printers.
2248
2249 * src/scan-skel.l: Instead of abort, report error messages to ease
2250 understanding skeleton scanning failures.
2251
2252 2004-09-16 Akim Demaille <akim@epita.fr>
2253
2254 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
2255 (iterator, const_iterator): these, to be more in the C++ spirit.
2256 Also, return reverse iterators so that when displaying the stack
2257 we display its bottom first.
2258 (Parser::stack_print_, Parser::reduce_print_): Match the messages
2259 from yacc.c.
2260 We should probably use vector here though.
2261
2262 2004-09-16 Akim Demaille <akim@epita.fr>
2263
2264 Have more complete shift traces.
2265
2266 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
2267 to report Shifts instead of ad hoc YYDPRINTF invocations,
2268 including for the error token.
2269 * data/lalr1.cc (symprint_): Output the location.
2270 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
2271 output the location within the %printer.
2272 Activate GLR tests, at least to make sure they compile properly.
2273 They still don't pass though.
2274 * tests/calc.at: Adjust expect verbose output, since now "Entering
2275 state..." is on a different line than the "Shifting" message.
2276
2277 2004-09-08 Akim Demaille <akim@epita.fr>
2278
2279 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
2280 Bison directive from the Bison file to the invocation of this
2281 macro, so that these directives are passed to
2282 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
2283 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
2284 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
2285 the extra Bison directives instead of the whole series.
2286 Change the grammar so that there are recoverable errors, and
2287 unrecoverable errors. Now we can have the parser give up before
2288 consuming the whole input. As a result we now can observe that
2289 the lookahead is freed when needed.
2290 Change the parser source to parse argv[1] instead of a hard coded
2291 string.
2292 Simplify yylex, and give a value and location to EOF.
2293 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
2294 passed directives already coded in the file.
2295 Add some tests to check the location of "error".
2296 For some tests, the C++ parser is correct, and not yacc.c.
2297 For other tests, they provide different, but unsatisfying, values,
2298 so keep the C++ value so that at least one parser is "correct"
2299 according to the test suite.
2300 (Actions after errors): Remove, this is subsumed by the
2301 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
2302
2303 2004-09-06 Akim Demaille <akim@epita.fr>
2304
2305 * data/lalr1.cc: Adjust the indentation of the labels.
2306 (Parser::pop): New.
2307 Use it.
2308
2309 2004-09-06 Akim Demaille <akim@epita.fr>
2310
2311 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
2312 argument, an informative message.
2313 Call YY_SYMBOL_PRINT.
2314 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
2315 * data/lalr1.cc (destruct_): Likewise.
2316 In addition, no longer depend on b4_yysymprint_generate and
2317 b4_yydestruct_generate to generate these functions, do it "by
2318 hand".
2319
2320 2004-09-03 Akim Demaille <akim@epita.fr>
2321
2322 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
2323 invoked, yydestruct the lookahead.
2324 * tests/calc.at (Calculator $1): Update the expected lengths of
2325 traces: there is an added line for the discarded lookahead.
2326 * doc/bison.texinfo (Destructor Decl): Some rewording.
2327 Define "discarded" symbols.
2328
2329 2004-09-02 Akim Demaille <akim@epita.fr>
2330
2331 * data/lalr1.cc (translate_, destruct_): No reason to be static.
2332
2333 2004-09-02 Akim Demaille <akim@epita.fr>
2334
2335 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
2336 (YYDSYMPRINTF): Rename as...
2337 (YY_SYMBOL_PRINT): this.
2338 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
2339 two.
2340 Use it instead of direct symprint_ calls.
2341 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
2342 one.
2343
2344 2004-09-02 Akim Demaille <akim@epita.fr>
2345
2346 * data/lalr1.cc (b4_yysymprint_generate): New.
2347 (symprint_): New member function, defined when YYDEBUG.
2348 Use it consistently instead of token/nterm debugging output by
2349 hand.
2350 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
2351 %printer calls to use cdebug_ when using lalr1.cc.
2352
2353 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
2354
2355 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
2356 with #ifdef YYDEBUG.
2357
2358 2004-08-26 Akim Demaille <akim@epita.fr>
2359
2360 * doc/bison.texinfo (Implementing Loops): Rename as...
2361 (Implementing Gotos/Loops): this.
2362
2363 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
2364
2365 Adjust to latest gnulib.
2366 * bootstrap (gnulib_modules): Add xalloc-die.
2367 Set LC_ALL=C so that file names sort consistently.
2368 Prefer the gnulib copies of gettext.m4, glibc21.m4,
2369 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
2370 uintmax_t.m4, ulonglong.m4.
2371 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
2372 po.m4 since we are now using _gl.m4 instead.
2373
2374 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
2375
2376 * src/scan-action.l: Remove. Scanning of semantic actions is
2377 handled in scan-gram.l.
2378
2379 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
2380
2381 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
2382
2383 * src/location.h (struct): The file member is a uniqstr.
2384 (equal_boundaries): Use UNIQSTR_EQ for comparison.
2385
2386 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
2387
2388 Fix bug with non-%union parsers that have printers or destructors,
2389 which led to a Bison core dump. Reported by Peter Fales in
2390 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2391
2392 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
2393 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
2394 not to our own type.
2395 * src/output.c (symbol_destructors_output, symbol_printers_output):
2396 Don't assume %union.
2397 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
2398 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
2399 UNION-FLAG. All callers changed.
2400 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
2401 Use type char, not unsigned int, when declaring an array of char;
2402 this lets us remove a cast.
2403 (Printers and Destructors): Add non-%union test cases.
2404
2405 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2406
2407 * doc/bison.texinfo: Minor editorial changes, mostly to the new
2408 GLR writeups. E.g., avoid frenchspacing and the future tense,
2409 change "lookahead" to "look-ahead", and change "wrt" to "with
2410 respect to".
2411
2412 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2413
2414 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
2415 New sections, split off from the GLR Parsers section. Put the new
2416 Simple GLR Parser near the start of the GLR section, for clarity.
2417 Rewrite connective text.
2418
2419 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
2420
2421 * doc/bison.texinfo (Simple GLR Parsers): New section.
2422
2423 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2424
2425 * NEWS, TODO, doc/bison.texinfo:
2426 Use "look-ahead" instead of "lookahead", to be consistent.
2427 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
2428 while we're fixing "look-ahead".
2429 * src/conflicts.c (shift_set): Renamed from shiftset.
2430 (look_ahead_set): Renamed from lookaheadset.
2431 * src/print.c: Likewise.
2432 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
2433 name for "lookahead".
2434 (report_types, usage): Likewise.
2435 * src/getargs.h (report_look_ahead_tokens): Renamed from
2436 report_lookaheads.
2437 * src/lalr.c (compute_look_ahead_tokens): Renamed from
2438 compute_lookaheads.
2439 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
2440 (look_ahead_tokens_print): Renamed from lookaheads_print.
2441 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
2442 state_rule_lookaheads_print.
2443 * src/state.h: Likewise.
2444 (reductions.look_ahead_tokens): Renamed from lookaheads.
2445 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
2446 AT_DATA_LOOKAHEADS_GRAMMAR.
2447
2448 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
2449
2450 * README: Update location of patched M4 distribution.
2451
2452 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
2453
2454 Don't assume the C++ compiler takes the same arguments as the C compiler
2455 (trivial change).
2456 * configure.ac (O0CXXFLAGS): New var.
2457 * tests/atlocal.in (CXXFLAGS): Use it.
2458
2459 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
2460
2461 Fix some "make check" problems with C++ reported by
2462 Albert Chin-A-Young for Tru64 C++ in this thread:
2463 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
2464
2465 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
2466 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
2467 Output to a .cc file for C++, not to a .c file.
2468 * tests/calc.at (AT_CHECK_CALC): Likewise.
2469 * tests/regression.at (AT_CHECK_DANCER): Likewise.
2470 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
2471
2472 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
2473
2474 * tests/calc.at, tests/actions.at: Workaround for SGI
2475 C++ compiler. (trivial change)
2476
2477 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
2478
2479 Spent a few hours checking out which prerequisite versions the
2480 current sources actually require. I went all the way back to
2481 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
2482 a seemingly endless set of combinations of versions more recent
2483 than that. The bottom line is that the current sources require
2484 fairly recent versions of the build tools, and it'll be some work
2485 to change this.
2486 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
2487 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
2488 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
2489 Add comments explaining why those particular versions are
2490 currently needed.
2491
2492 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
2493 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
2494 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
2495
2496 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
2497 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
2498
2499 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
2502 0.11.5. Suggested by Bruno Haible.
2503 * bootstrap: Remove gettext version checking.
2504
2505 * doc/bison.texinfo (Decl Summary): Also mention that %union
2506 can depend on prerequisite types. Problem reported by Tim
2507 Van Holder.
2508
2509 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
2510
2511 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
2512 * README-alpha: Don't tell people not to package this.
2513
2514 * bootstrap: Don't assume $(...) works; use `...` instead.
2515 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
2516 gettext better.
2517
2518 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
2519 put into the -d output file, and mention what to do if YYSTYPE is
2520 defined as a macro.
2521
2522 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
2523
2524 Undo change made earlier today: it caused autopoint to not bring
2525 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
2526 autopoint's.
2527
2528 * bootstrap: Check that gettext version matches what's in
2529 configure.ac. Warn users to ignore robots.txt ERROR 404.
2530 * bootstrap: Undo today's earlier change (logged below).
2531 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
2532
2533 The gettext version checking is causing more trouble than it's
2534 curing; remove it. Problem reported by Paul Hilfinger.
2535
2536 * bootstrap: Issue a warning that one can expect a message
2537 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
2538 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
2539
2540 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
2541
2542 Ensure that the C++ compiler used for testing actually works on a
2543 simple test program; if not, skip the C++-related tests. Problem
2544 reported by Vin Shelton in:
2545 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
2546
2547 * m4/cxx.m4: New file.
2548 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
2549 * tests/atlocal.in (BISON_CXX_WORKS): Add.
2550 * tests/local.at (AT_COMPILE_CXX): Use it.
2551
2552 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
2553
2554 * data/glr.c (yylloc): Output this macro even if locations are not
2555 being generated, as the GLR parser needs it even in that case.
2556 Problem reported by Troy A. Johnson
2557 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
2558
2559 * configure.ac (AC_INIT): Update to 1.875e.
2560
2561 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
2562
2563 * NEWS: Version 1.875d.
2564 * configure.ac (AC_INIT): Likewise.
2565 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
2566
2567 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
2568 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
2569 lalr1.cc runs afoul of the first, and the last two are no longer
2570 supported by GCC 3.4.0.
2571 * README: Mention GNU m4 1.4 or later; mention m4 patches.
2572 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
2573
2574 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
2575
2576 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
2577 unsigned int, for compatibility with latest gnulib hash module.
2578 * src/state.c (state_hash, state_hasher): Likewise.
2579 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
2580 * src/uniqstr.c (hash_uniqstr): Likewise.
2581
2582 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
2583
2584 * NEWS: Unescaped newlines are no longer allowed in char & strings.
2585
2586 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
2587 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
2588 character and string literals.
2589 (unexpected_end): New function.
2590 (unexpected_eof): Use it.
2591 (unexpected_newline): New function.
2592 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
2593 actions.
2594
2595 * NEWS: Document %expect-rr.
2596
2597 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
2598 Fix typo by replacing $1 with $option.
2599 Remove more 'intl'-related files.
2600 Don't DEFUN AM_INTL_SUBDIR twice.
2601
2602 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
2603 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
2604 strtoul.c.
2605 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
2606 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
2607 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
2608 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
2609 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
2610 * src/.cvsignore: Add *.output.
2611
2612 * src/parse-gram.y: Put copyright notice inside %{ %} so it
2613 gets copied to the output file.
2614
2615 2004-04-28 Paul Eggert <eggert@twinsun.com>
2616
2617 Get files from the gnulib and po repositories, instead of relying
2618 on them being in our CVS. Upgrade to latest versions of gnulib
2619 and Automake.
2620
2621 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
2622 * bootstrap: Bootstrap from gnulib and po repositories.
2623 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
2624 * README-cvs: Document these changes. Remove version numbers from
2625 mentions of build tools, since they change so often. Mention Flex.
2626
2627 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
2628 (gl_USE_SYSTEM_EXTENSIONS): Add.
2629 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
2630 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
2631 does this for us.
2632 (AC_ISC_POSIX): Remove; we no longer support this
2633 ancient OS, as it gets in the way of latest Autoconf & gnulib.
2634 (AC_HEADER_STDC): Remove: we now assume C89 or better.
2635 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
2636 Do not check for C89 headers, except for locale.h which is used
2637 by the Yacc library and must port to K&R hosts.
2638 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
2639 Do not check for C89 functions, except for setlocale which is
2640 used by the Yacc library.
2641 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
2642 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
2643 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
2644 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
2645 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
2646 AM_GNU_GETTEXT): Remove; now done by:
2647 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
2648 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
2649 for us.
2650
2651 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
2652 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
2653 Define to empty, as gnulib.mk will do the rest for us.
2654 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
2655 for us.
2656 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
2657 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
2658
2659 * src/files.c: Include gnulib's xstrndup.h.
2660
2661 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
2662 (REALLOC): Use xnrealloc, for likewise.
2663 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
2664 (strnlen, memrchr): Remove decls; functions no longer used.
2665 Include <stpcpy.h>.
2666
2667 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
2668 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2669 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
2670 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
2671 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
2672 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
2673 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
2674 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
2675 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
2676 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
2677 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
2678 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
2679 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
2680 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
2681 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
2682 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
2683 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
2684 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
2685 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
2686 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
2687 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
2688 Remove, as these files are now generated automatically
2689 by bootstrap or automake.
2690
2691 * po/ChangeLog: Remove: all but one entry was a duplicate
2692 of this file, and I moved that 2000-11-02 entry here.
2693
2694 * config/.cvsignore: Add Makefile, depcomp, install-sh.
2695 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
2696 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
2697 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
2698 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
2699 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
2700 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
2701 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
2702 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
2703 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
2704 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
2705 xstrndup.h.
2706 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
2707 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
2708 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
2709 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
2710 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
2711 * src/.cvsignore: Remove *_.c.
2712
2713
2714 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
2715 support it. (The latest stable gzip doesn't.)
2716
2717 2004-04-27 Paul Eggert <eggert@twinsun.com>
2718
2719 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
2720 case, as stos_ is now used by destructors due to the 2004-02-09
2721 change.
2722
2723 Remove more K&R C support.
2724 * lib/libiberty.y (PARAMS): Remove. All uses removed.
2725 * lib/subpipe.c (errno): Remove decl.
2726 Include <stdlib.h> unconditionally.
2727 (EXIT_FAILURE): Remove macro.
2728 * src/complain.c (vfprintf, strerror): Remove.
2729 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
2730 unconditionally.
2731 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
2732 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
2733 (strchr, strspn, memchr): Remove decls.
2734 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
2735 unconditionally. Do not declare perror.
2736 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
2737 unconditionally.
2738
2739 * src/complain.c (_): Remove useless defn, as system.h defines this.
2740
2741 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
2742 with latest obstack.h.
2743 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
2744 to procedure types, as obstack.h now does that for us.
2745 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
2746
2747 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
2748 so that this include file can stand alone.
2749 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
2750 does this now. Include subpipe.h first after config.h, to
2751 test whether it can stand alone.
2752
2753 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
2754 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
2755 unused declaration.
2756
2757 * tests/synclines.at (%union synch line): Put a dummy member in
2758 the union, because empty unions aren't allowed in C. Caught
2759 by GCC 3.4.0.
2760
2761 2004-04-13 Jim Meyering <jim@meyering.net>
2762
2763 * src/conflicts.c (conflicts_print): Correct format string typo:
2764 use `%%' to produce literal `%'. (trivial change)
2765
2766 2004-03-30 Paul Eggert <eggert@twinsun.com>
2767
2768 * src/getargs.c (version): Update copyright year to 2004.
2769
2770 * data/c.m4 (b4_int_type): Use 'short int' rather than
2771 'short', and similarly for 'long', 'unsigned', etc.
2772 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
2773 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
2774 yy_yypstack, yydumpstack): Likewise.
2775 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
2776 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
2777 Likewise.
2778 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
2779 yy_stack_print, yyparse): Likewise.
2780 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
2781 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
2782 * lib/bitset.c (bitset_print): Likewise.
2783 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
2784 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2785 * lib/bitsetv.c (bitsetv_dump): Likewise.
2786 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
2787 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
2788 Likewise.
2789 * src/LR0.c (allocate_itemsets): Likewise.
2790 * src/gram.h (rule_number, rule): Likewise.
2791 * src/lalr.h (goto_number): Likewise.
2792 * src/nullable.c (nullable_compute): Likewise.
2793 * src/output.c (prepare_rules): Likewise.
2794 * src/relation.c (relation_print, relation_digraph): Likewise.
2795 * src/relation.h (relation_node): Likewise.
2796 * src/state.h (state_number, transitions, errs, reductions,
2797 struct state): Likewise.
2798 * src/symtab.h (symbol_number, struct symbol): Likewise.
2799 * src/tables.c (vector_number, tally, action_number,
2800 default_goto, goto_actions): Likewise.
2801 * tests/existing.at (GNU Cim Grammar): Likewise.
2802 * tests/regression.at (Web2c Actions): Likewise.
2803
2804 * src/output.c (muscle_insert_short_int_table): Renamed from
2805 muscle_insert_short_table. All uses changed.
2806
2807 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2808
2809 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
2810 (declaration): Replace expected_conflicts with expected_sr_conflicts.
2811 Add %expect-rr rule.
2812
2813 * src/scan-gram.l: Recognize %expect-rr.
2814
2815 * src/conflicts.h (expected_sr_conflicts): Rename from
2816 expected_conflicts.
2817 (expected_rr_conflicts): Declare.
2818
2819 * src/conflicts.c (expected_sr_conflicts): Rename from
2820 expected_conflicts.
2821 (expected_rr_conflicts): Define.
2822 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
2823 for GLR parsers.
2824 Use expected_sr_conflicts in place of expected_conflicts.
2825 Warn if expected_rr_conflicts used in non-GLR parser.
2826
2827 * doc/bison.texinfo: Add documentation for %expect-rr.
2828
2829 2004-03-08 Paul Eggert <eggert@gnu.org>
2830
2831 Add support for hex token numbers. Suggested by Odd Arild Olsen in
2832 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
2833
2834 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
2835 in lalr1.cc.
2836 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
2837 * src/scan-gram.l (scan_integer): New function.
2838 ({int}): Use it.
2839 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
2840 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
2841 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
2842 Say "long int", not "long", for uniformity with GNU style.
2843
2844 2004-02-25 Paul Eggert <eggert@twinsun.com>
2845
2846 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
2847 compilers. This fixes a problem with Intel's C++ compiler being
2848 chatty, reported by Guido Trentalancia in
2849 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
2850
2851 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
2852
2853 Support %destructor and merge error locations in lalr1.cc.
2854
2855 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
2856 (Parser::stos_): Define unconditionally.
2857 (Parser::destruct_): New method. Generate its body with
2858 b4_yydestruct_generate.
2859 (Parser::error_start_): New attribute.
2860 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
2861 token which are discarded.
2862 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
2863 error_start_ when erroneous token are discarded.
2864 (Parser::parse) <yyerrlab1>: Compute the location of the error
2865 token so that it covers all the discarded tokens.
2866 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
2867 it can be called with `%skeleton "lalr1.cc"', and do that.
2868
2869 2004-02-02 Paul Eggert <eggert@twinsun.com>
2870
2871 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
2872 $(top_srcdir)/lib and ../lib. This fixes a bug reported
2873 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
2874 There's no need to mention top_builddir since Automake does that
2875 for us.
2876 (INCLUDES): Remove, as Automake says it's obsolescent.
2877 Contents migrated into AM_CPPFLAGS as described above.
2878 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
2879
2880 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2881
2882 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
2883 (yyreportSyntaxError): Handle case where lookahead token is
2884 YYEMPTY.
2885
2886 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2887
2888 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
2889 resulting parsers are compilable with C++.
2890
2891 2003-12-23 Paul Eggert <eggert@twinsun.com>
2892
2893 * config/depcomp, config/install-sh: Sync with Automake 1.8.
2894 * src/output.c (output_skeleton): Rename local var.
2895 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
2896 Bison tokens, as this runs afoul of the 2003-10-07 change that
2897 disallowed NUL bytes in character constants or string literals.
2898
2899 * tests/local.at: Require Autoconf 2.59's Autotest.
2900 * tests/testsuite.at: Don't include local.at, since we now assume
2901 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
2902 including it.
2903 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
2904 multiple inclusion warnings.
2905
2906 2003-12-02 Akim Demaille <akim@epita.fr>
2907
2908 * doc/bison.texinfo (How Can I Reset the Parser): More about start
2909 conditions.
2910 From Bruno Haible.
2911
2912 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
2913
2914 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
2915
2916 2003-10-07 Paul Eggert <eggert@twinsun.com>
2917
2918 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
2919 if testsuite doesn't exist.
2920
2921 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
2922 literals, unfortunately.
2923 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
2924 Complain about NUL bytes in character constants or string literals.
2925
2926 2003-10-05 Paul Eggert <eggert@twinsun.com>
2927
2928 * NEWS: Don't document %no-default-prec, as it's still
2929 too experimental.
2930 * doc/bison.texinfo: Document %no-default-prec only if
2931 the defaultprec flag is set. Normally it's not.
2932
2933 2003-10-04 Paul Eggert <eggert@twinsun.com>
2934
2935 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
2936 non-modifiable lvalue, instead of a modifiable one.
2937 * doc/bison.texinfo (Actions): Document that $$ can
2938 be assigned to. Do not claim that $$ and $N are
2939 array element references: user code should not rely on this.
2940
2941 2003-10-01 Paul Eggert <eggert@twinsun.com>
2942
2943 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
2944 (grammar_declaration): Use it.
2945 * src/scan-gram.l: New token %no-default-prec.
2946 * tests/conflicts.at: Revamp tests to use %no-default-prec.
2947 * NEWS, doc/bison.texinfo: Document the above.
2948
2949 2003-10-01 Akim Demaille <akim@epita.fr>
2950
2951 VCG no longer supports long_straight_phase.
2952
2953 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
2954 * src/print_graph.c (print_graph): Adjust.
2955
2956 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
2957 and Paul Eggert <eggert@twinsun.com>
2958
2959 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
2960 Table of Symbols): Document %default-prec.
2961 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
2962 (grammar_declaration): Set default_prec on %default-prec.
2963 * src/scan-gram.l (%default-prec): New token.
2964 * src/reader.h (default_prec): New flag.
2965 * src/reader.c: Likewise.
2966 (packgram): Handle it.
2967 * tests/conflicts.at (%default-prec without %prec,
2968 %default-prec with %prec, %default-prec 1): New tests.
2969
2970 2003-09-30 Paul Eggert <eggert@twinsun.com>
2971
2972 * tests/testsuite.at: Include local.at, not input.at, fixing
2973 a typo in the 2003-08-25 patch.
2974
2975 2003-08-27 Akim Demaille <akim@epita.fr>
2976
2977 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
2978 GCC warnings.
2979
2980 2003-08-26 Akim Demaille <akim@epita.fr>
2981
2982 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
2983 "<\#" to avoid magic from Gnus when posting parts of this script.
2984
2985 2003-08-26 Akim Demaille <akim@epita.fr>
2986
2987 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
2988 (Parser::parse): here.
2989 Adjust: nerrs and errstatus is now replaced by...
2990 (Parser::nerrs_, Parser::errstatus_): New.
2991
2992 2003-08-25 Akim Demaille <akim@epita.fr>
2993
2994 * config/announce-gen, Makefile.cfg: New.
2995 * Makefile.am: Adjust.
2996 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
2997 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
2998
2999 2003-08-25 Akim Demaille <akim@epita.fr>
3000
3001 When reducing initial empty rules, Bison parser read an initial
3002 location that is not defined. This results in garbage, and that
3003 affects Bison's own parser. Therefore we need (i) to extend Bison
3004 to support a means to initialize this location, and (ii) to use
3005 this CVS Bison to fix CVS Bison's parser.
3006
3007 * src/reader.h, reader.c (epilogue_augment): Remove, replace
3008 with...
3009 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
3010 * src/parse-gram.y: Adjust.
3011 (%initial-action): New.
3012 (%error-verbose): Since we require CVS Bison, there is no reason
3013 not to use it.
3014 * src/scan-gram.l: Adjust.
3015 * src/Makefile.am (YACC): New, to make sure we use our own parser.
3016 * data/yacc.c (yyparse): Use b4_initial_action.
3017
3018 2003-08-25 Akim Demaille <akim@epita.fr>
3019
3020 * doc/bison.texinfo: Don't promote stdout for error messages.
3021
3022 2003-08-25 Akim Demaille <akim@epita.fr>
3023
3024 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
3025 From Alexandre Duret-Lutz.
3026
3027 2003-08-25 Akim Demaille <akim@epita.fr>
3028
3029 Version 1.875c.
3030
3031 2003-08-25 Akim Demaille <akim@epita.fr>
3032
3033 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
3034 Use them.
3035
3036 2003-08-25 Akim Demaille <akim@epita.fr>
3037
3038 * data/lalr1.cc (Parser::reduce_print_): New.
3039 Use it.
3040
3041 2003-08-25 Akim Demaille <akim@epita.fr>
3042
3043 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
3044 error recovery loops. This patch is based on
3045 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
3046 Also, augment the similarity between lalr1.cc and yacc.c.
3047 Note: the locations of error recovery rules are not correct yet.
3048
3049 * data/lalr1.cc: Comment changes to augment the similarity between
3050 lalr1.cc and yacc.c.
3051 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
3052 (yyerrlab1): Remove, but where it used to be (now the bottom part of
3053 yyerrlab), when hitting EOF, pop the whole stack here instead of
3054 merely falling thru the default error handling mechanism.
3055 (yyerrorlab): New label, with the old contents of YYERROR,
3056 plus the following change: pop the stack of rhs corresponding
3057 to the production that invoked YYERROR. That is how Yacc
3058 behaves (required by POSIX).
3059 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
3060 fail.
3061
3062 2003-08-25 Akim Demaille <akim@epita.fr>
3063
3064 Tune local.at so that people can "autom4te -l autotest calc.at -o
3065 calc" for instance, to extract a sub test suite.
3066
3067 * tests/testsuite.at: Move the initialization, Autotest version
3068 requirement, and AT_TESTED invocation into...
3069 * tests/local.at: here.
3070 * tests/testsuite.at: Include it for compatibility with Autoconf
3071 2.57.
3072 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
3073 be ignore.
3074
3075 2003-08-04 Paul Eggert <eggert@twinsun.com>
3076
3077 Rework code slightly to avoid gcc -Wtraditional warnings.
3078 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
3079 The returned value is now stored in *YY0. All callers changed.
3080 * src/output.c (merge_output): Adjust to the above change.
3081
3082 2003-07-26 Paul Eggert <eggert@twinsun.com>
3083
3084 * data/glr.c (YYASSERT): New macro.
3085 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
3086 yyresolveStates, yyprocessOneStack):
3087 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
3088 Derived from a suggestion by Frank Heckenbach.
3089
3090 2003-07-25 Paul Eggert <eggert@twinsun.com>
3091
3092 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
3093 for portability to K&R C (after ansi2knr, presumably). See
3094 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
3095 by Frank Heckenbach, though I have omitted the structure-initialization
3096 part of his glr-knr.diff patch since I recall that the Portable
3097 C Compiler didn't require that change.
3098
3099 Let the user specify how to allocate and free memory.
3100 Derived from a suggestion by Frank Heckenbach in
3101 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
3102 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
3103 All uses of free, malloc, realloc changed to use these macros,
3104 and unnecessary casts removed.
3105 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
3106
3107 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
3108
3109 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
3110 use s.empty() rather than s == "" to test for empty string; see
3111 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
3112 (trivial change)
3113
3114 2003-06-25 Akim Demaille <akim@epita.fr>
3115
3116 * config/depcomp, config/install-sh: Update from masters.
3117
3118 2003-06-20 Paul Eggert <eggert@twinsun.com>
3119
3120 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
3121 and return properly parenthesized result.
3122 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
3123 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
3124 Remove unnecessary parentheses from uses.
3125 * doc/bison.texinfo (Location Default Action): Describe the
3126 conventions for parentheses.
3127
3128 2003-06-19 Paul Eggert <eggert@twinsun.com>
3129
3130 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
3131 yyreportTree): Do not assume that size_t is the same width as int,
3132 when printing sizes. Print sizes using an unsigned format.
3133 Problem reported by Frank Heckenbach in
3134 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
3135
3136 Port to Forte Developer 7 C compiler.
3137 * data/glr.c (struct YYLTYPE): If locations are not being used,
3138 declare a single dummy member, as empty structs do not conform
3139 to the C standard.
3140 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
3141 the Forte Developer 7 C compiler complains that end-of-loop
3142 code is not reached.
3143
3144 2003-06-17 Paul Eggert <eggert@twinsun.com>
3145
3146 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
3147 avoid warnings from picky compilers about redefinition of PARAMS.
3148
3149 2003-06-17 Paul Eggert <eggert@twinsun.com>
3150
3151 Version 1.875b.
3152
3153 * NEWS: Document 1.875b.
3154
3155 * lib/bbitset.h: Do not include config.h; that's the includer's job.
3156 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
3157 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
3158 Don't use 'index' in comments, as it's a builtin fn on some hosts.
3159 * lib/bitset_stats.c: Include gettext.h unconditionally, as
3160 per recent gettext manual's suggestion.
3161 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
3162 Use prototypes, not old-style definitions.
3163 * lib/lbitset.c (lbitset_unused_clear): Likewise.
3164 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
3165 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
3166 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
3167 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
3168 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
3169 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
3170 vbitset_or_and_cmp, vbitset_copy): Likewise.
3171
3172 * lib/libiberty.h: Do not include config.h; that's the includer's job.
3173 Do not include <stdlib.h>.
3174 (PARAMS): Define unconditionally for C89.
3175 (ATTRIBUTE_NORETURN): Remove.
3176 (ATTRIBUTE_UNUSED): Define unconditionally.
3177
3178 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
3179 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
3180 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
3181 * lib/vbitset.c, lib/vbitset.h: New files.
3182 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3183 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
3184 from libbitset.
3185
3186 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
3187 `How Can I Reset @code{yyparse}', since texinfo does not allow
3188 arbitrary @ in node names.
3189
3190 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
3191 shouldn't be needed according to the gettext 0.12.1 documentation
3192 but which seem to be needed anyway: codeset.m4 glibc21.m4
3193 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
3194 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
3195 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
3196
3197 * lib/.cvsignore: Add stdbool.h.
3198 * m4/.cvsignore: Add nls.m4, po.m4.
3199
3200 Upgrade to CVS gnulib.
3201 * stdbool_.h: File renamed from stdbool.h.in.
3202 * configure.ac (AM_STDBOOL_H): Invoke this instead of
3203 AC_HEADER_STDBOOL.
3204 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
3205 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
3206 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
3207 (MOSTLYCLEANFILES): New var.
3208 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
3209 (stdbool.h): New rule.
3210 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
3211 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
3212 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
3213 m4/quote.m4: Upgrade to today's gnulib.
3214
3215 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
3216 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
3217 the tests right now.
3218 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
3219 yyerror are declared before use; C99 requires this.
3220
3221 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3222
3223 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
3224 first.
3225 (yyrecoverSyntaxError): Correct the logic for setting and testing
3226 yyerrState.
3227 Correct comment on handling EOF.
3228 Allow states with only a default reduction, rather than failing
3229 (I can't quite reconstruct why these were not allowed before).
3230
3231 Fixes to avoid problem that $-N rules in GLR parsers can cause
3232 buffer overruns, corrupting state.
3233
3234 * src/output.c (prepare_rules): Output max_left_semantic_context
3235 definition.
3236 * src/reader.h (max_left_semantic_context): New variable declaration.
3237 * src/scan-gram.l (max_left_semantic_context): Define.
3238 (handle_action_dollar): Update max_left_semantic_context.
3239 * data/glr.c (YYMAXLEFT): New definition.
3240 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
3241 (yyresolveAction): Ditto.
3242
3243 Fixes to problems with location handling in GLR parsers reported by
3244 Frank Heckenbach (2003/06/05).
3245
3246 * data/glr.c (YYLTYPE): Make trivial if locations not used.
3247 (YYRHSLOC): Add parentheses, and define only if locations used.
3248 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
3249 locations not used.
3250 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
3251 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
3252
3253 * tests/cxx-type.at: Exercise location information; update tests
3254 to differentiate output with and without locations.
3255 Remove forward declarations of yylex and yyerror---caused errors
3256 because default YYLTYPE not yet defined.
3257 Change semantic actions to compute strings, rather than printing
3258 them directly (to test proper passing of semantics values). Change
3259 output to prefix notation and update test data and expected results.
3260 (yylex): Track locations.
3261 (stmtMerge): Return value rather than printing, and include arguments
3262 in value.
3263
3264 2003-06-03 Paul Eggert <eggert@twinsun.com>
3265
3266 Avoid warnings generated by GCC 2.95.4 when Bison is
3267 configured with --enable-gcc-warnings.
3268 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
3269 yy::]b4_parser_class_name[::translate_,
3270 yy::Stack::operator[] (unsigned),
3271 yy::Stack::operator[] (unsigned) const,
3272 yy::Slice::operator[] (unsigned),
3273 yy::Slice::operator[] (unsigned) const):
3274 Rename local vars to avoid warnings.
3275 * tests/glr-regression.at (Improper handling of embedded actions
3276 and $-N in GLR parsers): Remove unused local variable from yylex.
3277 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
3278 (void) as arg when not pure, since we now assume C89 when building
3279 Bison. Pacify GCC by using parameter.
3280
3281 2003-06-02 Paul Eggert <eggert@twinsun.com>
3282
3283 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
3284 yy::Location::lines, yy::Location::columns): Rename arguments
3285 to avoid shadowing; this removes a warning generated by GCC 3.3.
3286
3287 2003-06-01 Paul Eggert <eggert@twinsun.com>
3288
3289 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
3290 to g++, as GCC 3.3 complains if you do it.
3291 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
3292 everything that WARNING_CFLAGS has, except omit warnings
3293 not suitable for C++.
3294 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
3295 * tests/atlocal.in (CXXFLAGS): New var.
3296 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
3297
3298 Fix a GLR parser bug I reported in February; see
3299 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
3300 The problem was that GLR parsers did not conform to the C standard,
3301 because actions like { $1 = $2 + $3; } expanded to expressions
3302 that invoked YYFILL in separate subexpressions, and YYFILL assigned
3303 to a local variable. The C standard says that expressions
3304 like (var = f ()) + (var = f ()) have undefined behavior.
3305 Another problem was that GCC sometimes issues warnings that
3306 yyfill and its parameters are unused.
3307
3308 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
3309 as possibly unused.
3310 (yyfill): New function.
3311 (YYFILL): Use it.
3312 (yyuserAction): Change type of yynormal to bool, so that it matches
3313 the new yyfill signature. Mark it as possibly unused.
3314
3315
3316 Follow up on a bug I reported in February, where a Bison-generated
3317 parser can loop. Provide a test case and a fix for yacc.c. I
3318 don't have a fix for lalr1.cc or for glr.c, unfortunately.
3319 The original bug report is in:
3320 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
3321
3322 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
3323 macro's size was becoming unwieldy.
3324 (yyerrlab): Do not discard an empty lookahead symbol, as this
3325 might destroy garbage.
3326 (yyerrorlab): New label, with the old contents of YYERROR,
3327 plus the following change: pop the stack of rhs corresponding
3328 to the production that invoked YYERROR. That is how Yacc
3329 behaves, and POSIX requires this behavior.
3330 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
3331 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
3332 Define 'alarm' to do nothing if unistd.h is not available.
3333 Add a new rule "exp: '-' error;" to test the above change to
3334 data/yacc.c. Use 'alarm' to abort any test taking longer than
3335 10 seconds, as it's probably looping.
3336 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
3337 Also, the new yacc.c generates two fewer diagnostics for an
3338 existing test.
3339
3340 2003-05-24 Paul Eggert <eggert@twinsun.com>
3341
3342 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
3343 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
3344 This fixes a problem reported by John Bowman when the Compaq/HP
3345 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
3346 -ansi -Wall -gall).
3347 * data/yacc.c (union yyalloc): Likewise.
3348 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
3349
3350 Switch from 'int' to 'bool' where that makes sense.
3351
3352 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
3353 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
3354 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
3355 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
3356 Return or accept bool, not int. All callers changed.
3357 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
3358 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
3359 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
3360 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
3361 bitset_or_and_cmp_): Likewise.
3362 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
3363 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
3364 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
3365 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
3366 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
3367 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
3368 bitset_stats_or_and_cmp): Likewise.
3369 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
3370 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
3371 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
3372 ebitset_xor_cmp): Likewise.
3373 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
3374 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
3375 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
3376 lbitset_xor_cmp): Likewise.
3377 * lib/bbitset.h: Include <stdbool.h>.
3378 (struct bitset_vtable): The following members now return bool, not
3379 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
3380 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
3381 or_and_cmp).
3382 * src/conflicts.c (count_rr_conflicts): Likewise.
3383 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
3384 All uses changed.
3385 * lib/ebitset.c (ebitset_obstack_init): Likewise.
3386 * lib/lbitset.c (lbitset_obstack_init): Likewise.
3387 * src/getargs.c (debug_flag, defines_flag, locations_flag,
3388 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3389 graph_flag): Likewise.
3390 * src/getargs.h (debug_flag, defines_flag, locations_flag,
3391 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3392 graph_flag): Likewise.
3393 * src/output.c (error_verbose): Likewise.
3394 * src/output.h (error_verbose): Likewise.
3395 * src/reader.c (start_flag, typed): Likewise.
3396 * src/reader.h (typed): Likewise.
3397 * src/getargs.c (LOCATIONS_OPTION): New constant.
3398 (long_options, getargs): Use it.
3399 * src/lalr.c (build_relations): Use bool, not int.
3400 * src/nullable.c (nullable_compute): Likewise.
3401 * src/print.c (print_reductions): Likewise.
3402 * src/tables.c (action_row, pack_vector): Likewise.
3403 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
3404 * src/output.c (prepare): Use it.
3405 * src/output.c (token_definitions_output,
3406 symbol_destructors_output, symbol_destructors_output): Use string,
3407 not boolean integer, to keep track of whether to output separator.
3408 * src/print_graph.c (print_core): Likewise.
3409 * src/state.c (state_rule_lookaheads_print): Likewise.
3410
3411 * config/install-sh: Sync from automake 1.7.5.
3412
3413 2003-05-14 Paul Eggert <eggert@twinsun.com>
3414
3415 * src/parse-gram.y (rules_or_grammar_declaration): Require a
3416 semicolon after a grammar declaration, in the interest of possible
3417 future changes to the Bison input language.
3418 Do not allow a stray semicolon at the start of the grammar.
3419 (rhses.1): Allow one or more semicolons after any rule, including
3420 just before "|" as required by POSIX.
3421 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
3422 grammar.
3423
3424 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
3425
3426 %parse-param support for lalr1.cc.
3427
3428 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
3429 b4_cc_constructor_calls, b4_cc_constructor_call,
3430 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
3431 definitions.
3432 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
3433 parse-param arguments.
3434 (yy::b4_parser_class_name): Declare instance variables to
3435 hold parse-param arguments.
3436 * tests/calc.at: s/value/semantic_value/ because value clashes
3437 with a member of yy::b4_parser_class_name. Adjust C++ code
3438 to handle %parse-param. Enable %parse-param test in C++.
3439
3440 2003-05-12 Paul Eggert <eggert@twinsun.com>
3441
3442 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
3443 English a bit. Fix fclose typo. Change "const char" to "char
3444 const", and use ANSI C rather than K&R for "main". Suggest
3445 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
3446 and suggest yy_switch_to_buffer.
3447
3448 2003-05-05 Paul Eggert <eggert@twinsun.com>
3449
3450 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
3451 C89. This avoids a diagnostic on compilers that define __STDC__
3452 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
3453 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
3454
3455 2003-05-03 Paul Eggert <eggert@twinsun.com>
3456
3457 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
3458 Do not overrun array bounds.
3459 This should fix a bug reported today by Olatunji Oluwabukunmi in
3460 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
3461
3462 2003-04-29 Akim Demaille <akim@epita.fr>
3463
3464 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
3465 * src/getargs.c, src/getargs.h: here, as bool, not int.
3466 (nondeterministic_parser): New.
3467 * src/parse-gram.y, src/scan-gram.l: Support
3468 %nondeterministic-parser.
3469 * src/output.c (prepare): Use nondeterministic_parser instead
3470 of glr_parser where appropriate.
3471 * src/tables.c (conflict_row, action_row, save_row)
3472 (token_actions, token_actions, pack_vector): Ditto.
3473
3474 2003-04-29 Akim Demaille <akim@epita.fr>
3475
3476 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
3477
3478 2003-04-29 Akim Demaille <akim@epita.fr>
3479
3480 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
3481 with %pure-parser and %locations to exercise the patch from Yakov
3482 Markovitch below.
3483
3484 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
3485
3486 * data/yacc.c: (b4_lex_param): Corrected for the case where
3487 %lex-param is provided and %pure-parser isn't.
3488
3489 2003-04-27 Paul Eggert <eggert@twinsun.com>
3490
3491 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
3492 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
3493 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
3494 if it is not defined.
3495 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
3496
3497 2003-04-26 Paul Eggert <eggert@twinsun.com>
3498
3499 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
3500 Declare to be of type suitable for the ninf value itself, not of
3501 type suitable for the corresponding table, since the latter might
3502 be unsigned but the ninf value might be negative. This fixes a
3503 bug reported by Alexandre Duret-Lutz in
3504 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3505
3506 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
3507 invokes it. We shouldn't invoke it twice because it will attempt
3508 to put error.o in the archive twice. This fixes a glitch reported
3509 by Martin Mokrejs in
3510 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
3511
3512 2003-04-21 Paul Eggert <eggert@twinsun.com>
3513
3514 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
3515 to gnulib.
3516
3517 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
3518
3519 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
3520 Fix obvious typo that results in uncompilable GLR parsers
3521 when both %pure-parser and %locations are used. (trivial change)
3522
3523 2003-04-17 Paul Eggert <eggert@twinsun.com>
3524
3525 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
3526 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
3527 Do not insert the expected token via unput, as this runs afoul
3528 of a POSIX-compatibility bug in flex 2.5.31.
3529 All uses changed to BEGIN the parent state,
3530 since we no longer insert the expected token via unput.
3531 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
3532 that is no longer emitted after the above change.
3533
3534 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
3535 the first one. This change is from Paul Hilfinger, and it fixes
3536 regression reported by Werner Lemberg in
3537 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3538
3539 (resolve_sr_conflict): Don't invoke state_errs_set
3540 unless one or more tokens have been explicitly made errors.
3541 Otherwise, the above change causes Bison to abort.
3542
3543 * tests/existing.at (GNU pic Grammar): New test case, taken from
3544 Lemberg's email.
3545
3546 2003-03-31 Akim Demaille <akim@epita.fr>
3547
3548 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
3549
3550 2003-03-31 Akim Demaille <akim@epita.fr>
3551
3552 * src/output.c (prepare_symbols): Avoid trailing spaces in the
3553 output.
3554
3555 2003-03-31 Akim Demaille <akim@epita.fr>
3556
3557 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
3558 From Paul Hilfinger.
3559
3560 2003-03-29 Akim Demaille <akim@epita.fr>
3561
3562 * m4/error.m4: Do not put under dynamic conditions some code which
3563 expansion is under static control.
3564
3565 2003-03-29 Akim Demaille <akim@epita.fr>
3566
3567 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
3568
3569 2003-03-29 Akim Demaille <akim@epita.fr>
3570
3571 * doc/bison.texinfo (Strings are Destroyed): New.
3572
3573 2003-03-13 Paul Eggert <eggert@twinsun.com>
3574
3575 * .cvsignore: Add configure.lineno.
3576 * src/.cvsignore: Add yacc.
3577 * tests/.cvsignore: Add testsuite.log.
3578 * doc/fdl.texi: Sync with latest FSF version.
3579
3580 2003-03-12 Paul Eggert <eggert@twinsun.com>
3581
3582 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
3583 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
3584 cursor, instead of leaving it undefined. This fixes a bug
3585 reported by Tim Van Holder in
3586 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
3587 * tests/input.at (Torturing the Scanner): Test the scanner on
3588 an empty input file, which was Tim Van Holder's test case.
3589
3590 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
3591 <sys/resource.h> can be included, include sys/time.h and
3592 sys/times.h first, if available. This works around the SunOS
3593 4.1.4 porting bug reported by Bruce Becker in
3594 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
3595
3596 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
3597 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
3598 AC_HEADER_SYS_WAIT.
3599
3600 Merge changes from gnulib. This was prompted because the CVS
3601 snapshot didn't build on Solaris 7 due to strnlen problems.
3602
3603 These changes need to be merged back into gnulib:
3604 * lib/hash.c: Include <stdbool.h> unconditionally.
3605 * m4/onceonly.m4 (m4_quote): New macro.
3606 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
3607 Quote AC_FOREACH variable-expansions properly.
3608 The 2003-01-03 obstack.h change also needs merging.
3609 {end of changes requiring merging}
3610
3611 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
3612 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
3613 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
3614 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
3615 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
3616 New files, imported from gnulib.
3617 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
3618 above.
3619
3620 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
3621 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
3622 gnulib sources.
3623
3624 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
3625 Add.
3626 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
3627 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
3628 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
3629 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
3630 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
3631 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
3632 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
3633 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
3634 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
3635 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
3636 (jm_PREREQ_ARGMATCH): Remove.
3637 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
3638 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
3639
3640 * src/system.h: Include <stdbool.h> unconditionally.
3641
3642 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
3643 assuming at least C89 in the bitset code for some time now.
3644
3645 2003-03-03 Akim Demaille <akim@epita.fr>
3646
3647 * ro.po: New.
3648
3649 2003-03-02 Akim Demaille <akim@epita.fr>
3650
3651 * doc/bison.texinfo (Table of Symbols): Reactivate the
3652 documentation for %lex-param, and %parse-param.
3653
3654 2003-03-02 Akim Demaille <akim@epita.fr>
3655
3656 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
3657 generate verbose error messages.
3658 Use the number of tokens as an upper bound in yytname, as it
3659 cannot be a non terminal.
3660
3661 2003-03-02 Akim Demaille <akim@epita.fr>
3662
3663 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
3664 message.
3665
3666 2003-03-02 Akim Demaille <akim@epita.fr>
3667
3668 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
3669 Use them to exercise yycheck overrun.
3670 Based on Andrew Suffield's grammar.
3671
3672 2003-03-02 Akim Demaille <akim@epita.fr>
3673
3674 Create tests/local.at for Bison generic testing macros.
3675
3676 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
3677 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
3678 This new file.
3679 * tests/calc.at (AT_CHECK_CALC): Adjust.
3680 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
3681 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
3682 * tests/local.at: here.
3683 (AT_COMPILE_CXX): Tags the tests using it as c++.
3684 Ignore the test if CXX is not functional.
3685
3686 2003-03-01 Paul Eggert <eggert@twinsun.com>
3687
3688 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
3689 not loc->end, since loc->end might contain garbage and this leads
3690 to undefined behavior on some platforms.
3691 (id_loc, token_start): Use (IF_LINTed) initial values that do not
3692 depend on *loc, so that the reader doesn't give the the false
3693 impression that *loc is initialized.
3694 (<INITIAL>"%%"): Do not bother setting code_start, since its value
3695 does not survive the return.
3696
3697 2003-03-01 Akim Demaille <akim@epita.fr>
3698
3699 * src/scan-gram.l (code_start): Always initialize it when entering
3700 into yylex, as SC_EPILOGUE is activated *before* the corresponding
3701 yylex invocation. An alternative would be making it static, but
3702 then it starts with the second %%'s beginning, instead of its end.
3703
3704 2003-02-28 Paul Eggert <eggert@twinsun.com>
3705
3706 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
3707 around a UnixWare 7.1.1 porting bug reported by John Hughes in
3708 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
3709
3710 2003-02-26 Paul Eggert <eggert@twinsun.com>
3711
3712 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
3713 Remove Sequent/Pyramid discussion (nobody uses them any more).
3714 Merge VMS and MS-DOS discussion; these ports may well be dead
3715 but let's keep mentioning them for now. Put <> around email
3716 addresses. Add copyright notice.
3717
3718 2003-02-24 Paul Eggert <eggert@twinsun.com>
3719
3720 * data/glr.c (yy_reduce_print): yylineno -> yylno,
3721 to avoid collision with flex use of yylineno.
3722 Problem reported by Bruce Lilly in
3723 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
3724 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
3725 * data/yacc.c (yy_reduce_print): Likewise.
3726
3727 * config/depcomp: Sync with Automake 1.7.3.
3728
3729 2003-02-21 Akim Demaille <akim@epita.fr>
3730
3731 * data/lalr1.cc: Use temporary variables instead of casts to
3732 change integer types.
3733 Suggested by Paul Eggert.
3734
3735 2003-02-21 Akim Demaille <akim@epita.fr>
3736
3737 * doc/bison.texinfo: Use "location" consistently to refer to @n,
3738 to avoid confusions with lalr1.cc's notion of Position.
3739 Suggested by Paul Eggert.
3740
3741 2003-02-20 Akim Demaille <akim@epita.fr>
3742
3743 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
3744 before initial_columns.
3745 (location.hh): Use consistent variable names when defining the
3746 operator<<.
3747 Use "last" so that we subtract from Positions, not from unsigned.
3748
3749 2003-02-20 Akim Demaille <akim@epita.fr>
3750
3751 * data/lalr1.cc (position.hh): New subfile, including the extended
3752 and Doxygen'ed documentation of class Position.
3753 (location.hh): Use it.
3754 Document a` la Doxygen.
3755 With the help of Benoit Perrot.
3756
3757 2003-02-20 Akim Demaille <akim@epita.fr>
3758
3759 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
3760 AT_YACC_IF.
3761 Redefine AT_YYERROR_SEES_LOC_IF using it.
3762 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
3763 not defined.
3764 Don't use the location in yy::Parser::error_ and
3765 yy::Parser::print_ when not %locations.
3766 Activate more lalr1.cc tests.
3767
3768 2003-02-19 Akim Demaille <akim@epita.fr>
3769
3770 * data/lalr1.cc: When displaying a line number, be sure to make it
3771 an int.
3772
3773 2003-02-19 Akim Demaille <akim@epita.fr>
3774
3775 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
3776 Remove, useless.
3777 (YYABORT, YYACCEPT, YYERROR): New.
3778 * tests/calc.at: Renable the lalr1.cc test.
3779
3780 2003-02-19 Akim Demaille <akim@epita.fr>
3781
3782 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
3783 error recovery, mixing with/without pops and discarding of the
3784 lookahead.
3785 Exercise YYERROR.
3786 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
3787
3788 2003-02-17 Paul Eggert <eggert@twinsun.com>
3789
3790 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
3791 * tests/testsuite.at (AT_COMPILE): Use them.
3792 This fixes the testsuite problem reported by Robert Lentz in
3793 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
3794
3795 2003-02-12 Paul Eggert <eggert@twinsun.com>
3796
3797 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
3798 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
3799 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
3800 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
3801 Check for malloc failure, for consistency with yacc.c.
3802 (yytname_size): Remove, for consistency with yacc.c.
3803
3804 The bug still remains in data/lalr1.cc, as I didn't have time
3805 to fix it there.
3806
3807 2003-02-06 Akim Demaille <akim@epita.fr>
3808
3809 * configure.ac (GXX): Rename as...
3810 (CXX): this, to keep the original Autoconf semantics.
3811 Require 2.57.
3812 * data/lalr1.cc: Fix b4_copyright invocations.
3813 If YYDEBUG is not defined, don't depend upon name_ being defined.
3814 (location.hh): Include string and iostream.
3815 (Position::filename): New member.
3816 (Position::Position ()): New.
3817 (operator<< (Position)): New.
3818 (operator- (Position, int)): New.
3819 (Location::first, Location::last): Rename as...
3820 (Location::begin, Location::end): these, to mock the conventional
3821 iterator names.
3822 (operator<< (Location)): New.
3823 * tests/atlocal.in (CXX): New.
3824 * tests/testsuite.at (AT_COMPILE_CXX): New.
3825 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
3826 locations in a more synthetic way.
3827 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
3828 lalr1.cc is used.
3829 Adjust the C locations to match those from Emacs: first column is
3830 column 0.
3831 Change all the expected results.
3832 Conform to the GCS: simplify the locations when applicable.
3833 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
3834 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
3835 these CPP macros with the m4 macros new defined by...
3836 (AT_CHECK_PUSHDEFS): this, i.e.:
3837 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
3838 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
3839 New macros.
3840 (AT_CHECK_POPDEFS): Undefine them.
3841 (AT_CHECK_CALC_LALR1_CC): New.
3842 Use it for the first lalr1.cc test.
3843
3844 2003-02-04 Akim Demaille <akim@epita.fr>
3845
3846 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
3847 Location as is defined.
3848
3849 2003-02-04 Akim Demaille <akim@epita.fr>
3850
3851 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
3852 name_ being defined.
3853
3854 2003-02-03 Paul Eggert <eggert@twinsun.com>
3855
3856 * src/gram.h (start_symbol): Remove unused decl.
3857
3858 Use more-consistent naming conventions for local vars.
3859
3860 * src/derives.c (derives_compute): Change type of local var from
3861 int to rule_number.
3862 * src/gram.c (grammar_rules_partial_print): Likewise.
3863 * src/print.c (print_core): Likewise.
3864 * src/reduce.c (reduce_grammar_tables): Likewise.
3865
3866 * src/gram.c (grammar_dump): Change name of item_number *
3867 local var from r to rp.
3868 * src/nullable.c (nullable_compute): Likewise.
3869
3870 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
3871
3872 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
3873 for symbol or symbol_number var.
3874 * src/reader.c (grammar_start_symbol_set): Likewise.
3875 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
3876 Likewise.
3877 * src/state.c (transitions_to): Likewise.
3878 * src/state.h: Likewise.
3879 * src/tables.c (symbol_number_to_vector_number): Likewise.
3880
3881 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
3882 char * var.
3883
3884 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
3885 var.
3886
3887 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
3888 var.
3889
3890 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
3891 Use str, not s, for char * var. Use ch, not c, for character var.
3892 Use size for size var.
3893
3894 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
3895 char * var.
3896 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
3897 uniqstr var.
3898 * src/uniqstr.h: Likewise.
3899
3900 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
3901 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
3902 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
3903 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
3904 param to have same name as that of enum, so that we don't use
3905 "s" to stand for a non-state.
3906
3907 2003-02-02 Akim Demaille <akim@epita.fr>
3908
3909 * src/scan-skel.l: Scan more than one inert character per yylex
3910 invocation.
3911
3912 2003-02-01 Paul Eggert <eggert@twinsun.com>
3913
3914 Version 1.875a.
3915
3916 * po/LINGUAS: Add ms.
3917
3918 2003-01-30 Akim Demaille <akim@epita.fr>
3919
3920 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
3921
3922 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3923
3924 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
3925 of $1.
3926
3927 Changes in response to error report by S. Eken: GLR mode does not
3928 handle negative $ indices or $ indices in embedded rules correctly.
3929 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
3930
3931 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
3932 (b4_rhs_location): Ditto.
3933 (yyfill): New function to copy from stack tree into array
3934 incrementally.
3935 (yyuserAction): Modify to allow incremental move of semantic values
3936 to rhs array when in GLR mode.
3937 Define YYFILL to use in user-defined actions to fill semantic array
3938 as needed.
3939 Remove dummy use of yystack, as there is now a guaranteed use.
3940 (yydoAction): Modify to allow incremental move of semantic values
3941 to rhs array when in GLR mode.
3942 (yyresolveAction): Ditto.
3943 (yyglrShiftDefer): Update comment.
3944 (yyresolveStates): Use X == NULL for pointers, not !X.
3945 (yyglrReduce): Ditto.
3946 (yydoAction): Ditto
3947
3948 * tests/glr-regr1.at: Rename to ...
3949 * tests/glr-regression.at: Add new regression test for the problems
3950 described above (adapted from S. Eken).
3951 Update copyright notice.
3952 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
3953 * tests/Makefile.am: Ditto.
3954
3955 2003-01-28 Paul Eggert <eggert@twinsun.com>
3956
3957 * data/lalr1.cc: Do not use @output_header_name@ unless
3958 b4_defines_flag is set. This fixes two bugs reported by
3959 Tim Van Holder in
3960 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
3961 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
3962
3963 2003-01-21 Paul Eggert <eggert@twinsun.com>
3964
3965 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
3966 we don't need to worry about yyerrlab1 being reported as an
3967 "unused label" by non-GCC C compilers. The downside is that if
3968 locations are used then a couple of statements are duplicated each
3969 time YYERROR is invoked, but the upside is that the warnings
3970 should vanish.
3971 (yyerrlab1): Move code to YERROR.
3972 (yyerrlab2): Remove. Change uses back to yyerrlab1.
3973 This reverts some of the 2002-12-27 change.
3974
3975 2003-01-17 Paul Eggert <eggert@twinsun.com>
3976
3977 * src/output.c (symbol_printers_output): Fix typo that led
3978 to core dump. Problem reported by Antonio Rus in
3979 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
3980
3981 2003-01-13 Akim Demaille <akim@epita.fr>,
3982 Quoc Peyrot <chojin@lrde.epita.fr>,
3983 Robert Anisko <anisko_r@lrde.epita.fr>
3984
3985 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
3986 when the stacks contain one element, as the loop would otherwise
3987 free the last state, and then use the top state (the one we just
3988 popped). This means that the initial elements will not be freed
3989 explicitly, as is the case in yacc.c; it is not a problem, as
3990 these elements have fake values.
3991
3992 2003-01-11 Paul Eggert <eggert@twinsun.com>
3993
3994 * NEWS: %expect-violations are now just warnings, reverting
3995 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
3996 bootstrapping problem reported by Matthias Klose; see
3997 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
3998 * src/conflicts.c (conflicts_print): Likewise.
3999 * tests/conflicts.at (%expect not enough, %expect too much,
4000 %expect with reduce conflicts): Likewise.
4001 * doc/bison.texinfo (Expect Decl): Document this. Also mention
4002 that the warning is enabled if the number of conflicts changes
4003 (not necessarily increases).
4004
4005 * src/getargs.c (version): Update copyright year.
4006
4007 2003-01-09 Akim Demaille <akim@epita.fr>
4008
4009 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
4010
4011 2003-01-08 Paul Eggert <eggert@twinsun.com>
4012
4013 * Makefile.maint (WGETFLAGS):
4014 New macro, containing "-C off" to disable proxy caches.
4015 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
4016 (rel-check): Use $(WGET) instead of wget.
4017
4018 2003-01-06 Paul Eggert <eggert@twinsun.com>
4019
4020 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
4021 the GLR paper of Scott, Johnstone and Hussain.
4022
4023 2003-01-04 Paul Eggert <eggert@twinsun.com>
4024
4025 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
4026 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
4027 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
4028 (EXTRA_LIBRARIES): New var, for liby.a.
4029 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
4030 (EXTRA_SCRIPTS): New var, for yacc.
4031
4032 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
4033 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
4034 Problem reported by Nelson H. F. Beebe.
4035
4036 2003-01-03 Paul Eggert <eggert@twinsun.com>
4037
4038 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
4039 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
4040 when compiling Bison 1.875's `bitset bset = obstack_alloc
4041 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
4042
4043 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
4044 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
4045 grow to a huge size with typical invocation.
4046
4047 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
4048 Use the pattern recommended by Autoconf 2.57, except also protect
4049 against double-definition.
4050 * src/system.h: Likewise.
4051 Portability issues reported by Nelson H. F. Beebe.
4052
4053 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
4054 All uses changed. Provide a definition in both C and C++.
4055 (yytrue, yyfalse): Define even if defined (__cplusplus).
4056
4057 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
4058 Reported by Nelson H. F. Beebe.
4059
4060 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
4061
4062 2003-01-02 Paul Eggert <eggert@twinsun.com>
4063
4064 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
4065 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
4066 Bug reported by Nelson H. F. Beebe.
4067
4068 2003-01-01 Paul Eggert <eggert@twinsun.com>
4069
4070 * Version 1.875.
4071
4072 2002-12-30 Paul Eggert <eggert@twinsun.com>
4073
4074 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
4075 Moved here from...
4076 (<INITIAL>","): Here. This causes stray "," to be treated
4077 more uniformly.
4078
4079 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
4080 last brace in braced code when not in Yacc mode, for compatibility
4081 with Bison 1.35. This resurrects the 2001-12-15 patch to
4082 src/reader.c.
4083
4084 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
4085 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
4086
4087 2002-12-28 Paul Eggert <eggert@twinsun.com>
4088
4089 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
4090 that of SYM's type. This fixes Debian bug 168069, reported by
4091 Thomas Olsson.
4092
4093 2002-12-28 Paul Eggert <eggert@twinsun.com>
4094
4095 Version 1.75f.
4096
4097 Switch back to the Yacc style of conflict reports, undoing some
4098 of the 2002-07-30 change.
4099 * doc/bison.texinfo (Understanding): Use Yacc style for
4100 conflict reports. Also, use new way of locating rules.
4101 * src/conflicts.c (conflict_report):
4102 Renamed from conflict_report_yacc, removing the old
4103 'conflict_report'. Translate the entire conflict report at once,
4104 so that we don't assume that "," has the same interpretation in
4105 all languages.
4106 (conflicts_output): Use Yacc-style conflict report for each state,
4107 instead of our more-complicated style.
4108 (conflicts_print): Use Yacc-style conflict report, except print
4109 the input file name when not emulating Yacc.
4110 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
4111 Conflicted Reduction, %expect not enough, %expect too much,
4112 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
4113 * tests/existing.at (GNU Cim Grammar): Likewise.
4114 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
4115
4116 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
4117 fatal): Don't invoke fflush; it's not needed and it might even be
4118 harmful for stdout, as stdout might not be open.
4119 * src/reduce.c (reduce_print): Likewise.
4120
4121 2002-12-27 Paul Eggert <eggert@twinsun.com>
4122
4123 Fix a bug where error locations were not being recorded correctly.
4124 This problem was originally reported by Paul Hilfinger in
4125 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
4126
4127 * data/yacc.c (yyparse): New local var yylerrsp, to record the
4128 top of the location stack's error locations.
4129 (yyerrlab): Set it. When discarding a token, push its location
4130 onto yylerrsp so that we don't lose track of the error's end.
4131 (yyerrlab1): Now is only the target of YYERROR, so that we can
4132 properly record the location of the action that failed. For GCC
4133 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
4134 GCC warning about yyerrlab1 being unused if YYERROR is unused.
4135 (yyerrlab2): New label, which yyerrlab now falls through to.
4136 Compute the error's location by applying YYLLOC_DEFAULT to
4137 the locations of all the symbols that went into the error.
4138 * doc/bison.texinfo (Location Default Action): Mention that
4139 YYLLOC_DEFAULT is also invoked for syntax errors.
4140 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4141 Error locations include the locations of all the tokens that were
4142 discarded, not just the last token.
4143
4144 2002-12-26 Paul Eggert <eggert@twinsun.com>
4145
4146 * src/files.c: Include quote.h.
4147 (compute_output_file_names): Warn if we detect conflicting
4148 outputs to the same file. This should catch the misunderstanding
4149 exemplified by Debian Bug 165349, reported by Bruce Stephens..
4150
4151 * src/conflicts.c (conflicts_print): If the user specifies
4152 "%expect N", report an error if there are any reduce/reduce
4153 conflicts. This is what the manual says should happen.
4154 This fixes Debian bug 130890, reported by Anthony DeRobertis.
4155 * tests/conflicts.at (%expect with reduce conflicts): New test.
4156
4157 Don't use m4_include on relative file names, as it doesn't work as
4158 desired if there happens to be a file with that name under ".".
4159
4160 * m4sugar/version.m4: Remove; it was included but it wasn't used.
4161 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
4162 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
4163 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
4164 * src/output.c (output_skeleton): Use full path names when
4165 specifying a file to include; don't rely on include path, as
4166 it's unreliable when the working file contains a file with
4167 that name.
4168
4169 2002-12-25 Paul Eggert <eggert@twinsun.com>
4170
4171 Remove obsolete references to bison.simple and bison.hairy.
4172 Problem mentioned by Aubin Mahe in
4173 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
4174 * data/glr.c: Comment fix.
4175 * doc/bison.1: Remove references. Also, mention "yacc".
4176
4177 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
4178 with -g option.
4179
4180 * src/parse-gram.y (declaration): Use enum "report_states" rather
4181 than its numeric value 1.
4182
4183 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
4184 opening a new one. This fixes Debian bug 165349, reported by
4185 Bruce Stephens.
4186
4187 2002-12-24 Paul Eggert <eggert@twinsun.com>
4188
4189 Version 1.75e.
4190
4191 * Makefile.maint (cvs-update): Don't assume that the shell
4192 supports $(...), as Solaris sh doesn't.
4193
4194 * src/parse-gram.y (lloc_default): Remove test for empty
4195 nonterminals at the end, since it didn't change the result.
4196
4197 2002-12-24 Paul Eggert <eggert@twinsun.com>
4198
4199 If the user does not define YYSTYPE as a macro, Bison now declares it
4200 using typedef instead of defining it as a macro. POSIX requires this.
4201 For consistency, YYLTYPE is also declared instead of defined.
4202
4203 %union directives can now have a tag before the `{', e.g., the
4204 directive `%union foo {...}' now generates the C code
4205 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
4206 The default union tag is `YYSTYPE', for compatibility with Solaris 9
4207 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
4208 instead of `yyltype'.
4209
4210 `yystype' and `yyltype' are now obsolescent macros instead of being
4211 typedefs or tags; they are no longer documented and will be
4212 withdrawn in a future release.
4213
4214 * data/glr.c (b4_location_type): Remove.
4215 (YYSTYPE): Renamed from yystype.
4216 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
4217 (struct YYLTYPE): Renamed from struct yyltype.
4218 (YYLTYPE): Renamed from yyltype.
4219 (yyltype, yystype): New (and obsolescent) macros,
4220 for backward compatibility.
4221 * data/yacc.c: Likewise.
4222
4223 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
4224 does not specify a union tag. This is for compatibility with
4225 Solaris 9 yacc.
4226
4227 * src/parse-gram.y (add_param): 2nd arg is now char * not char
4228 const *, since it is now modified by stripping surrounding { }.
4229 (current_braced_code): Remove.
4230 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
4231 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
4232 trailing " {...}". Now of type <chars>.
4233 (grammar_declaration): Adjust to bundled tokens.
4234 (code_content): Remove; stripping is now done by add_param.
4235 (print_token_value): Print contents of bundled tokens.
4236 (token_name): New function.
4237
4238 * src/reader.h (braced_code, current_braced_code): Remove.
4239 (token_name): New decl.
4240
4241 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
4242 token_type, not braced_code code_kind. All uses changed.
4243 (SC_PRE_CODE): New state, for scanning after a keyword that
4244 has (or usually has) an immediately-following braced code.
4245 (token_type): New local var, to keep track of which token type
4246 to return when scanning braced code.
4247 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
4248 <INITIAL>"%parse-param", <INITIAL>"%printer",
4249 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
4250 instead of returning a token type immediately.
4251 (<INITIAL>"{"): Set token type.
4252 (<SC_BRACED_CODE>"}"): Use it.
4253 (handle_action_dollar, handle_action_at): Now returns bool
4254 indicating success. Fail if ! current_rule; this prevents a core dump.
4255 (handle_symbol_code_dollar, handle_symbol_code_at):
4256 Remove; merge body into caller.
4257 (handle_dollar, handle_at): Complain in invalid contexts.
4258
4259 * NEWS, doc/bison.texinfo: Document the above.
4260 * NEWS: Fix years and program names in copyright notice.
4261
4262 2002-12-17 Paul Eggert <eggert@twinsun.com>
4263
4264 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
4265 Reporting, Table of Symbols): Omit mentions of %lex-param and
4266 %parse-param from the documentation for now.
4267
4268 2002-12-15 Paul Eggert <eggert@twinsun.com>
4269
4270 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
4271 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
4272 lookahead symbol, and which sets yychar in parser actions) and it
4273 disagreed with the Bison documentation. Bug
4274 reported by Andrew Walrond.
4275
4276 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
4277 as the caller now does that.
4278 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
4279 (YYEMPTY): Parenthesize right hand side, since others use it.
4280 (yyparse): Don't assume that our generated code is the only code
4281 that sets yychar.
4282
4283 2002-12-13 Paul Eggert <eggert@twinsun.com>
4284
4285 Version 1.75d.
4286
4287 POSIX requires a "yacc" command.
4288 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
4289 (MOSTLYCLEANFILES): Add yacc.
4290 (yacc): New rule.
4291 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
4292 as an alias for bison y.
4293
4294 * po/LINGUAS: Add da.
4295
4296 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
4297 problem with latest <getopt.h>.
4298 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
4299
4300 * doc/fdl.texi: Upgrade to 1.2.
4301 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
4302 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
4303 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
4304 gnulib.
4305 * config/install-sh: Sync with autotools.
4306
4307 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
4308 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
4309 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
4310 locations are requested.
4311 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
4312 locations are requested.
4313
4314 2002-12-12 Paul Eggert <eggert@twinsun.com>
4315
4316 Remove unportable casts and storage allocation tricks.
4317 While we're at it, remove almost all casts, since they
4318 usually aren't needed and are a sign of trouble.
4319
4320 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
4321
4322 * src/derives.c (derives_compute): Do not subtract NTOKENS from
4323 the pointer DSET returned by malloc; this isn't portable.
4324 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
4325 Similarly for DERIVES.
4326 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
4327 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
4328 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
4329
4330 * src/derives.c (derives_compute): Do not bother invoking
4331 int_of_rule_number, since rule numbers are integers.
4332
4333 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
4334 rather than XMALLOC (char, N).
4335
4336 * src/files.c (filename_split): Rewrite to avoid cast.
4337
4338 * src/gram.h (symbol_number_as_item_number,
4339 item_number_as_symbol_number, rule_number_as_item_number,
4340 item_number_as_rule_number):
4341 Now inline functions rather than macros, to avoid casts.
4342 * src/state.h (state_number_as_int): Likewise.
4343 * src/tables.c (state_number_to_vector_number,
4344 symbol_number_to_vector_number): Likewise.
4345
4346 * src/gram.h (int_of_rule_number): Remove; no longer used.
4347
4348 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
4349 since the resulting storage is always stored into.
4350
4351 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
4352 where it's needed.
4353
4354 * src/muscle_tab.c (muscle_m4_output):
4355 Now inline. Return bool, not int.
4356 * src/state.c (state_compare): Likewise.
4357 * src/symtab.c (symbol_check_defined,
4358 symbol_check_alias_consistency, symbol_pack, symbol_translation,
4359 hash_compare_symbol, hash_symbol):
4360 Likewise.
4361 * src/uniqstr.c (uniqstr_print): Likewise.
4362 * src/muscle_tab.c (muscle_m4_output_processor):
4363 New function, to avoid casts.
4364 * src/state.c (state_comparator, stage_hasher): Likewise.
4365 * src/symtab.c (symbol_check_defined_processor,
4366 symbol_check_alias_consistency_processor, symbol_pack_processor,
4367 symbol_translation_processor, hash_symbol_comparator,
4368 hash_symbol_hasher): Likewise.
4369 * src/uniqstr.c (uniqstr_print_processor): Likewise.
4370 * src/muscle_tab.c (muscles_m4_output):
4371 Use new functions instead of casting old functions unportably.
4372 * src/state.c (state_hash_new): Likewise.
4373 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
4374 symbols_token_translations_init):
4375 Likewise.
4376 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
4377
4378 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
4379 var instead of casting to long, to avoid casts.
4380 (prepare_states): Use MALLOC rather than alloca, so that we don't
4381 have to worry about alloca.
4382 * src/state.c (state_hash_lookup): Likewise.
4383
4384 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
4385 local var instead of casting to unsigned char, to avoid casts.
4386
4387 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
4388 STATE_ALLOC): Remove.
4389 (transitions_new, errs_new, reductions_new, state_new): Use malloc
4390 rather than calloc, and use offsetof to avoid allocating slightly
4391 too much storage.
4392 (state_new): Initialize all members.
4393
4394 * src/state.c (state_hash): Use unsigned accumulator, not signed.
4395
4396 * src/symtab.c (symbol_free): Remove; unused.
4397 (symbol_get): Remove cast in lhs of assignment.
4398 (symbols_do): Now static. Accept generic arguments, not
4399 hashing-related ones.
4400
4401 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
4402 (symbol_processor): Remove.
4403 (symbols_do): Remove decl; now static.
4404
4405 * src/system.h (alloca): Remove; decl no longer needed.
4406 (<stddef.h>): Include, for offsetof.
4407 (<inttypes.>, <stdint.h>): Include if available.
4408 (uintptr_t): New type, if system lacks it.
4409 (CALLOC, MALLOC, REALLOC): New macros.
4410 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
4411 new macros.
4412
4413 * src/tables.c (table_size): Now int, to pacify GCC.
4414 (table_grow, table_ninf_remap): Use signed table size.
4415 (save_row): Don't bother initializing locals when not needed.
4416 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
4417 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
4418
4419 * src/vcg.h: Correct misspellings.
4420
4421 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
4422
4423
4424 * src/getargs.c (getargs): Don't assume EOF == -1.
4425
4426 2002-12-09 Paul Eggert <eggert@twinsun.com>
4427
4428 Change identifier spellings to avoid collisions with names
4429 that are reserved by POSIX.
4430
4431 Don't use names ending in _t, since POSIX reserves them.
4432 For consistency, remove _e and _s endings -- they're weren't
4433 needed to remove ambiguity. All uses changed.
4434 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
4435 turn was just renamed from struniq_t.
4436 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
4437 which in turn was just renamed from struniq_processor_t.
4438 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
4439 in turn was renamed from hash_compare_struniq_t.
4440 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
4441 (state_list): Renamed from state_list_t.
4442 * src/assoc.h (assoc): Renamed from assoc_t.
4443 * src/conflicts.c (enum conflict_resolution): Renamed from
4444 enum conflict_resolution_e.
4445 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
4446 (rule_list): Renamed from rule_list_t.
4447 * src/getargs.h (enum trace): Renamed from enum trace_e.
4448 (enum report): Renamed from enum report_e.
4449 * src/gram.h (item_number): Renamed from item_number_t.
4450 (rule_number): Renamed from rule_number_t.
4451 (struct rule_s): Remove the "rule_s" part; not used.
4452 (rule): Renamed from rule_t.
4453 (rule_filter): Renamed from rule_filter_t.
4454 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
4455 (goto_list): Renamed from goto_list_t.
4456 * src/lalr.h (goto_number): Renamed from goto_number_t.
4457 * src/location.h (location): Renamed from location_t.
4458 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
4459 and moved here from:
4460 * src/muscle_tab.h (muscle_entry_t): here.
4461 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
4462 (rule_list): Renamed from rule_list_t.
4463 * src/print_graph.c (static_graph): Renamed from graph.
4464 * src/reader.h (braced_code): Renamed from braced_code_t.
4465 Remove brace_code_e tag.
4466 * src/relation.h (relation_node): Renamed from relation_node_t.
4467 (relation_nodes): Renamed from relation_nodes_t.
4468 (relation): Renamed from relation_t.
4469 * src/state.h (state_number): Renamed from state_number_t.
4470 (struct state): Renamed from struct state_s.
4471 (state): Renamed from state_t.
4472 (transitions): Renamed from transitions_t. Unused (and
4473 misspelled) transtion_s tag removed.
4474 (errs): Renamed from errs_t. Unused errs_s tag removed.
4475 (reductions): Renamed from reductions_t. Unused tag
4476 reductions_s removed.
4477 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
4478 (struct symbol_list): Renamed from struct symbol_list_s.
4479 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
4480 (struct symbol): Renamed from struct symbol_s.
4481 (symbol): Renamed from symbol_t.
4482 * src/tables.c (vector_number): Renamed from vector_number_t.
4483 (action_number): Renamed from action_t.
4484 * src/tables.h (base_number): Renamed from base_t.
4485 * src/vcg.h (enum color): Renamed from enum color_e.
4486 (enum textmode): Renamed from enum textmode_e.
4487 (enum shape): Renamed from enum shape_e.
4488 (struct colorentry): Renamed from struct colorentry_s.
4489 (struct classname): Renamed from struct classname_s.
4490 (struct infoname): Renamed from struct infoname_s.
4491 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
4492 (enum decision): Renamed from enum decision_e.
4493 (enum orientation): Renamed from enum orientation_e.
4494 (enum alignment): Renamed from enum alignment_e.
4495 (enum arrow_mode): Renamed from enum arrow_mode_e.
4496 (enum crossing_type): Renamed from enum crossing_type_e.
4497 (enum view): Renamed from enum view_e.
4498 (struct node): Renamed from struct node_s.
4499 (node): Renamed from node_t.
4500 (enum linestyle): Renamed from enum linestyle_e.
4501 (enum arrowstyle): Renamed from enum arrowstyle_e.
4502 (struct edge): Renamed from struct edge.
4503 (edge): Renamed from edge_t.
4504 (struct graph): Renamed from struct graph_s.
4505 (graph): Renamed from graph_t.
4506 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
4507 Rename value_t -> value.
4508 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
4509 value_t_as_yystype -> value_as_yystype.
4510
4511 Don't include <errno.h> in the mainstream code, since it
4512 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
4513 * lib/get-errno.c, lib/get-errno.h: New files.
4514 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
4515 get-errno.c.
4516 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
4517 * src/output.c (output_skeleton): Likewise.
4518 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
4519 instead of errno.
4520 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
4521 Likewise.
4522 (handle_action_dollar, handle_action_at): Likewise.
4523 * src/system.h: Do not include <errno.h>.
4524 (TAB_EXT): Renamed from EXT_TAB.
4525 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
4526
4527 Avoid str[a-z]*, since <string.h> reserves that name space.
4528 Change all instances of "struniq" in names to "uniqstr", and
4529 likewise for "STRUNIQ" and "UNIQSTR".
4530 * src/uniqstr.c: Renamed from src/struniq.c.
4531 * src/uniqstr.h: Renamed from src/struniq.h.
4532 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
4533 * src/files.c (strsuffix): Remove; unused.
4534 (concat2): Renamed from stringappend. Now static.
4535 * src/files.h (strsuffix, stringappend): Remove; unused.
4536 * src/parse-gram.y (<chars>): Renamed from <string>.
4537 (<uniqstr>): Renamed from <struniq>.
4538 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
4539 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
4540 (struct graph_s.expand): Renamed from struct graph_s.stretch.
4541 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
4542 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
4543 (N_EXPAND): Renamed from N_STRETCH.
4544
4545 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
4546 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
4547 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
4548 Remove; unused.
4549 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
4550 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
4551 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
4552 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
4553 (BASE_MAXIMUM): Renamed from BASE_MAX.
4554 (BASE_MINIMUM): Renamed from BASE_MIN.
4555 (ACTION_MAX): Remove; unused.
4556 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
4557 Unnecessary casts removed from above defines.
4558
4559
4560 Fix misspelling in names.
4561 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
4562 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
4563 G_NODE_ALIGNEMENT.
4564
4565
4566 * lib/timevar.c (timevar_report): Renamed from time_report,
4567 for consistency with other names.
4568 * lib/timevar.h (timevar_report): New decl.
4569 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
4570
4571
4572 Sort include-file uses.
4573
4574 Reorder all include files under src to be in the order "system.h".
4575 then the ../lib include files in angle brackets (alphabetized),
4576 then the . include files in double-quotes (alphabetized). Fix
4577 dependency breakages encountered in this process, as follows:
4578 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
4579 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
4580 * src/state.h: Include "symtab.h".
4581
4582 2002-12-08 Paul Eggert <eggert@twinsun.com>
4583
4584 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
4585 since this causes problems when __file__ contains character
4586 sequences like "@" that are treated specially by src/scan-skel.l.
4587 Instead, just use the file's basename. This fixes the bug
4588 reported by Martin Mokrejs in
4589 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
4590
4591 2002-12-06 Paul Eggert <eggert@twinsun.com>
4592
4593 Add support for rules that do not have trailing semicolons, as
4594 POSIX requires. Improve the quality of locations in Bison
4595 diagnostics.
4596
4597 * src/location.c: Include <quotearg.h>.
4598 (empty_location): Now const.
4599 (location_print): New function. Follow the recommendation of the
4600 GNU Coding Standards for locations that span file boundaries.
4601 * src/location.h: Do not include <quotearg.h>; no longer needed.
4602 (boundary): New type.
4603 (location_t): Use it. This allows locations to span file boundaries.
4604 All member uses changed: file -> start.file or end.file (as needed),
4605 first_line -> start.line, first_column -> start.column,
4606 last_line -> end.line, last_column -> end.column.
4607 (equal_boundaries): New function.
4608 (LOCATION_RESET, LOCATION_STEP): Remove.
4609 (LOCATION_PRINT): Remove. All callers changed to use location_print.
4610 (empty_location): Now const.
4611 (location_print): New decl.
4612 * src/parse-gram.y (lloc_default): New function, which handles
4613 empty locations more accurately.
4614 (YYLLOC_DEFAULT): Use it.
4615 (%token COLON): Remove.
4616 (%token ID_COLON): New token.
4617 (rules): Use it.
4618 (declarations, rules): Remove trailing semicolon.
4619 (declaration, rules_or_grammar_declaration):
4620 Allow empty (";") declaration.
4621 (symbol_def): Remove empty actions; no longer needed.
4622 (rules_or_grammar_declaration): Remove trailing semicolon.
4623 (semi_colon.opt): Remove.
4624 * src/reader.h: Include location.h.
4625 (scanner_cursor): New decl.
4626 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
4627 rolling our own.
4628 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
4629 of *loc.
4630 (STEP): Remove. No longer needed, now that adjust_location does
4631 the work. All uses removed.
4632 (scanner_cursor): New var.
4633 (adjust_location): Renamed from extend_location. It now sets
4634 *loc and adjusts the scanner cursor. All uses changed.
4635 Don't bother testing for CR.
4636 (handle_syncline): Remove location arg; now updates scanner cursor.
4637 All callers changed.
4638 (unexpected_end_of_file): Now accepts start boundary of token or
4639 comment, not location. All callers changed. Update scanner cursor,
4640 not the location.
4641 (SC_AFTER_IDENTIFIER): New state.
4642 (context_state): Renamed from c_context. All uses changed.
4643 (id_loc, code_start, token_start): New local vars.
4644 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
4645 processing of Yacc white space and equivalents here.
4646 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
4647 instead of returning ID immediately, since we need to search for
4648 a subsequent colon.
4649 (<INITIAL>"'", "\""): Save token_start.
4650 (<INITIAL>"%{", "{", "%%"): Save code_start.
4651 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
4652 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
4653 BEGIN context_state at end, not INITIAL.
4654 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
4655 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
4656 Return correct token start.
4657 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
4658 the start of a character, string or multiline comment is found.
4659 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
4660 Reduction): Adjust reported locations to match the more-precise
4661 results now expected.
4662 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
4663 * tests/reduce.at (Useless Rules, Reduced Automaton,
4664 Underivable Rules): Likewise.
4665 * tests/regression.at (Invalid inputs): No longer `expecting ";"
4666 or "|"' now that so many other tokens are allowed by the new grammar.
4667
4668 * src/complain.h (current_file): Remove duplicate decl;
4669 current_file is now owned by files.h.
4670 * src/complain.c, src/scan-gram.l: Include files.h.
4671
4672 2002-12-06 Paul Eggert <eggert@twinsun.com>
4673
4674 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
4675 promotes to int; it might be unsigned int.
4676 * data/yacc.c (yy_reduce_print): Likewise.
4677
4678 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
4679 be #defined in the prologue, not in the Bison declarations.
4680 This fixes Debian Bug 102878, reported by Shaul Karl.
4681
4682 2002-12-02 Paul Eggert <eggert@twinsun.com>
4683
4684 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
4685 * lib/strtoul.c: New file, from gnulib.
4686 This fixes a porting bug reported by Peter Klein in
4687 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
4688
4689 2002-11-30 Paul Eggert <eggert@twinsun.com>
4690
4691 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
4692 and put only a forward declaration in the prologue. This is for
4693 consistency with the other scanner helper functions.
4694
4695 Type clashes now generate warnings, not errors, since it
4696 appears that POSIX may allow some grammars with type clashes.
4697 * src/reader.c (grammar_current_rule_check): Warn about
4698 type clashes instead of complaining.
4699 * tests/input.at (Type Clashes): Expect warnings, not complaints.
4700
4701 Add Yacc library, since POSIX requires it.
4702 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
4703 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
4704 * lib/main.c, lib/yyerror.c: New files.
4705
4706 gram_error can be static; it need not be extern.
4707 * src/reader.h (gram_error): Remove decl.
4708 * src/parse-gram.y (gram_error): Now static. Add static decl.
4709 (print_token_value): Omit parameter names from forward decl,
4710 for consistency.
4711
4712 2002-11-29 Paul Eggert <eggert@twinsun.com>
4713
4714 * doc/bison.texinfo: Emphasize that yylex and yyerror must
4715 be declared before being used. E.g., one should typically
4716 declare them in the prologue. Use GNU coding style in examples.
4717 Put "const" consistently after the type it modifies. Mention
4718 that C99 supports "inline". Mention that yyerror traditionally
4719 returns "int".
4720
4721 %parse-param and %lex-param now take just one argument, the
4722 declaration; the argument name is deduced from the declaration.
4723
4724 * doc/bison.texinfo (Parser Function, Pure Calling, Error
4725 Reporting, Table of Symbols): Document this.
4726 * src/parse-gram.y (add_param): New function.
4727 (COMMA): Remove.
4728 (declaration): Implement new rule for %parse-param and %lex-param.
4729 * src/scan-gram.l: "," now elicits a warning, rather than being
4730 a token; this is more compatible with byacc.
4731 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
4732
4733 2002-11-27 Paul Eggert <eggert@twinsun.com>
4734
4735 Rename identifiers to avoid real and potential collisions.
4736
4737 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
4738 to avoid collision with lex macro described by Bruce Lilly in
4739 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
4740 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4741 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
4742 * src/parse-gram.y (print_token_value): Renamed from yyprint.
4743 All uses changed.
4744 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
4745 The name "yycontrol" violates the name space rules, and this stuff
4746 wasn't being used anyway.
4747 (input): Remove action; this stuff wasn't being used.
4748 (gram_error): Rename local variable yylloc -> loc.
4749 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
4750 (YY_DECL): Don't use "yy" at start of local variables.
4751 All uses changed, e.g., yylloc -> loc.
4752 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
4753 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
4754 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
4755 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
4756
4757 * src/parse-gram.y (gram_error): loc is now const *.
4758 * src/reader.h (gram_error): Likewise.
4759
4760 2002-11-24 Paul Eggert <eggert@twinsun.com>
4761
4762 Version 1.75c.
4763
4764 * tests/actions.at (Actions after errors): Use an output format
4765 more similar to that of the Printers and Destructors test.
4766 Test the position of the ';' token too.
4767 (Printers and Destructors): Likewise.
4768 (Printers and Destructors: %glr-parser): Remove for now, to avoid
4769 unnecessarily alarming people when the test fails.
4770
4771 * data/yacc.c (yyerrlab1): Move this label down, so that the
4772 parser does not discard the lookahead token if the user code
4773 invokes YYERROR. This change is required for POSIX conformance.
4774
4775 * lib/error.c: Sync with gnulib.
4776
4777 2002-11-22 Paul Eggert <eggert@twinsun.com>
4778
4779 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
4780 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
4781 * lib/xmalloc.c: Likewise.
4782
4783 2002-11-20 Paul Eggert <eggert@twinsun.com>
4784
4785 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
4786
4787 2002-11-20 Paul Eggert <eggert@twinsun.com>
4788
4789 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
4790 should use `if (! x) abort ();' rather than `assert (x);', and
4791 anyway it's one less thing to worry about configuring.
4792
4793 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
4794 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
4795 and replace all instances of assert with abort.
4796 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
4797 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
4798
4799 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
4800 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
4801 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
4802 hash_find_entry, hash_rehash, hash_insert): Likewise.
4803 * src/conflicts.c (resolve_sr_conflict): Likewise.
4804 * src/lalr.c (set_goto_map, map_goto): Likewise.
4805 * src/nullable.c (nullable_compute): Likewise.
4806 * src/output.c (prepare_rules, token_definitions_output): Likewise.
4807 * src/reader.c (packgram, reader): Likewise.
4808 * src/state.c (state_new, state_free, state_transitions_set,
4809 state_reduction_find): Likewise.
4810 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
4811 symbol_pack): Likewise.
4812 * src/tables.c (conflict_row, pack_vector): Likewise.
4813 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
4814 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
4815 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
4816 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
4817
4818 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
4819 (ARGMATCH_CONSTRAINT): New macro.
4820 (ARGMATCH_ASSERT): Use it.
4821
4822 * src/system.h (verify): New macro.
4823 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
4824 rather than assert.
4825 * src/tables.c (tables_generate): Likewise.
4826
4827 * src/struniq.c (struniq_assert): Now returns void, and aborts
4828 if the assertion is false.
4829 (struniq_assert_p): Remove.
4830 * src/struniq.h: Likewise.
4831
4832 2002-11-18 Paul Eggert <eggert@twinsun.com>
4833
4834 * data/glr.c (yygetLRActions): Replace `yyindex' with
4835 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
4836 This fixes the regression with Sun ONE Studio 7 cc that I reported in
4837 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
4838
4839 2002-11-18 Akim Demaille <akim@epita.fr>
4840
4841 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
4842 space.
4843 From Tim Van Holder.
4844
4845 2002-11-17 Paul Eggert <eggert@twinsun.com>
4846
4847 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
4848 to "SyntaxError" for consistency with my 2002-11-15 change.
4849
4850 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
4851 not define to {}, since this breaks the common use of `YYDPRINTF
4852 ((...));' if a single statement is desired (e.g. before `else').
4853 Work around GCC warnings by surrounding corresponding calls with
4854 {} if needed.
4855 (yyhasResolvedValue): Remove unused function.
4856 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
4857 loop body.
4858 (yyreportSyntaxError): Renamed from yyreportParseError.
4859 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
4860 All uses changed.
4861 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
4862 extern when possible. Remove unused initializations.
4863
4864 2002-11-16 Akim Demaille <akim@epita.fr>
4865
4866 Augment the similarity between GLR and LALR traces.
4867
4868 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
4869 (YY_REDUCE_PRINT): New.
4870 (yyparse): Use them.
4871 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
4872 YYDPRINT here.
4873 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
4874 state reached after the reduction/recovery, since...
4875 (yyparse, yyprocessOneStack): Report the state we are entering in.
4876
4877 2002-11-16 Akim Demaille <akim@epita.fr>
4878
4879 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
4880 Add support for --trace=skeleton.
4881 * src/scan-skel.l: %option debug.
4882 Scan strings of non-@ or \n instead of character by character.
4883 (scan_skel): Handle trace_skeleton.
4884 (QPUTS): New.
4885 (@output_parser_name@, @output_header_name@): ``Restore'' their
4886 support (used to be M4 macros).
4887 * data/yacc.c: Quote larger chunks, a la glr.c.
4888 * data/lalr1.cc: Likewise.
4889 The header guards are no longer available, so use some other
4890 string than `YYLSP_NEEDED'.
4891
4892 2002-11-16 Akim Demaille <akim@epita.fr>
4893
4894 Make the ``Printers and Destructors'' test more verbose, taking
4895 `yacc.c''s behavior as (possibly wrong) reference.
4896
4897 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
4898 instead of fprint on stdout.
4899 Set and report the last_line of the symbols.
4900 Consistently display values and locations.
4901
4902 2002-11-16 Paul Eggert <eggert@twinsun.com>
4903
4904 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
4905
4906 2002-11-15 Paul Eggert <eggert@twinsun.com>
4907
4908 * tests/actions.at (Actions after errors): New test case.
4909
4910 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
4911 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
4912 tests/action.at, tests/calc.at, tests/conflicts.at,
4913 tests/cxx-type.at, tests/regression.at:
4914 "parse error" -> "syntax error" for POSIX compatibility.
4915 "parsing stack overflow..." -> "parser stack overflow" so
4916 that code matches Bison documentation.
4917
4918 2002-11-15 Akim Demaille <akim@epita.fr>
4919
4920 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
4921 take two BRACED_CODE, not two string_content.
4922 Free the scanner's obstack when we are done.
4923 (code_content): New.
4924 * tests/calc.at: Adjust.
4925 * doc/bison.texinfo: Adjust.
4926 Also, make sure to include the `,' for these declarations.
4927
4928 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
4929
4930 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
4931 definition; avoids potential autoreconf problems.
4932
4933 2002-11-15 Akim Demaille <akim@epita.fr>
4934
4935 Always check the value returned by yyparse.
4936
4937 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
4938 returned by yyparse.
4939 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
4940 Adjust calls.
4941 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
4942 returned by yyparse.
4943
4944 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4945
4946 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
4947 on input.at test.
4948
4949 2002-11-14 Paul Eggert <eggert@twinsun.com>
4950
4951 * src/output.c (output_skeleton): Call xfopen instead of
4952 duplicating xfopen's body.
4953
4954 Fix bugs reported by Nelson H. F. Beebe in
4955 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
4956
4957 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
4958 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
4959 Group compiler. Instead, use "$CC -E bar.c". Include the .h
4960 file twice in the grammar, as an extra check.
4961
4962 * tests/input.at (Torturing the Scanner): Surround the
4963 backslash-newline tests with "#if 0", to make it less likely that
4964 we'll run into compiler bugs. Bring back solitary \ inside
4965 comment, but add a closing comment to work around HP C bug. Don't
4966 test backslash-newline in C character constant.
4967
4968 2002-11-14 Akim Demaille <akim@epita.fr>
4969
4970 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
4971 status of the compiler.
4972 Calling `exit 1' is no longer needed.
4973 Reported by Nelson H. F. Beebe.
4974
4975 2002-11-14 Akim Demaille <akim@epita.fr>
4976
4977 * tests/atlocal.in (CPPFLAGS): We have config.h.
4978 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
4979 New.
4980 * tests/actions.at, tests/calc.at, tests/conflicts.at,
4981 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
4982 * tests/regression.at, tests/torture.at: Use them for all the
4983 grammars that are to be compiled.
4984 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
4985 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
4986 * doc/bison.texinfo (GLR Parsers): Document `inline'.
4987
4988 2002-11-14 Akim Demaille <akim@epita.fr>
4989
4990 * doc/bison.texinfo: Various formatting changes (alignments in
4991 samples, additional @group/@end group, GCS in samples.
4992 Use @deffn instead of simple @table to define the directives,
4993 macros, variables etc.
4994
4995 2002-11-13 Paul Eggert <eggert@twinsun.com>
4996
4997 Fix some bugs reported by Albert Chin-A-Young in
4998 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
4999
5000 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
5001 -o c"; the HP C compiler chatters during compilation.
5002 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
5003 * tests/headers.at (export YYLTYPE): Likewise.
5004
5005 * tests/input.at (Torturing the Scanner): Remove lines containing
5006 solitary backslashes, as they tickle a bug in the HP C compiler.
5007
5008 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
5009 comments, since they're not portable. Use GNU coding style.
5010
5011 2002-11-13 Akim Demaille <akim@epita.fr>
5012
5013 * data/yacc.c: Leave bigger chunks of quoted text.
5014 (YYDSYMPRINTF): New.
5015 Use it to report symbol activities.
5016 * data/glr.c (YYDSYMPRINTF): New.
5017 Use it.
5018
5019 2002-11-12 Paul Eggert <eggert@twinsun.com>
5020
5021 Version 1.75b.
5022
5023 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
5024 (yyglrReduce): Return yyok, not 0.
5025 This should avoid the enumerated-type warnings reported
5026 by Nelson H. F. Beebe in
5027 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
5028
5029 * lib/bbitset.h (BITSET_INLINE): Remove.
5030 * lib/bitset.h [! BITSET_INLINE]: Remove.
5031 (bitset_set, bitset_reset, bitset_test): Rename local vars
5032 to avoid shadowing warnings by GCC.
5033
5034 * data/glr.c (inline): Remove #define. It's the user's
5035 responsibility to #define it away, just like 'const'.
5036 This fixes one of the bugs reported by Nelson H. F. Beebe in
5037 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
5038
5039 * Makefile.maint (po-check): Scan .l and .y files instead of the
5040 .c and the .h files that they generate. This fixes the bug
5041 reported by Tim Van Holder in:
5042 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
5043 Look for N_ as well as for _. Try to avoid matching #define for
5044 N_ and _.
5045 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
5046 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
5047 * src/scan-gram.l: Revamp regular expressions so that " and '
5048 do not confuse xgettext.
5049
5050 * src/struniq.h (struniq_new): Do not declare the return type
5051 to be 'const'; this violates the C standard.
5052 * src/struniq.c (struniq_new): Likewise.
5053
5054 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
5055
5056 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
5057 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
5058 linker.
5059
5060 2002-11-12 Akim Demaille <akim@epita.fr>
5061
5062 * Makefile.maint: Sync with Autoconf:
5063 (local_updates): New.
5064
5065 2002-11-12 Akim Demaille <akim@epita.fr>
5066
5067 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
5068
5069 2002-11-12 Akim Demaille <akim@epita.fr>
5070
5071 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
5072 locations.
5073
5074 2002-11-12 Akim Demaille <akim@epita.fr>
5075
5076 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
5077 not yyvalue.
5078
5079 2002-11-12 Akim Demaille <akim@epita.fr>
5080
5081 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
5082 Use it to test the GLR parser.
5083
5084 2002-11-12 Akim Demaille <akim@epita.fr>
5085
5086 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
5087 defines it.
5088 * data/glr.c (yystos): New.
5089 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
5090 (YYDSYMPRINT): New.
5091 (yyval): Don't define it, it is handled via M4.
5092 (yyrecoverParseError): Free verbosely the discarded symbols.
5093 * data/yacc.c (yysymprint): Remove, rather...
5094 (b4_yysymprint_generate): invoke.
5095 * data/c.m4 (b4_yysymprint_generate): New.
5096 Accept pointers as arguments, as opposed to the version from
5097 yacc.c.
5098 (b4_yydestruct_generate): Likewise.
5099 * tests/cations.at (Printers and Destructors): Use Bison directives
5100 instead of CPP macros.
5101 Don't rely on internal details.
5102
5103 2002-11-12 Akim Demaille <akim@epita.fr>
5104
5105 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
5106 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
5107 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
5108 it against YYEMPTY and so forth), work on yytoken (i.e., set
5109 it to YYEMPTY etc.).
5110 (yydestruct): Replace with a b4_yydestruct_generate invocation.
5111 (b4_symbol_actions): Remove.
5112 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
5113 for 0, end-of-input.
5114
5115 2002-11-12 Akim Demaille <akim@epita.fr>
5116
5117 * doc/bison.texinfo (Destructor Decl): New.
5118
5119 2002-11-12 Akim Demaille <akim@epita.fr>
5120
5121 * src/tables.c (tables_generate): Use free for pointers that
5122 cannot be NULL, not XFREE.
5123 (pack_vector): Use assert, not fatal, for bound violations.
5124 * src/state.c (state_new): Likewise.
5125 * src/reader.c (reader): Likewise.
5126 * src/lalr.c (set_goto_map): Likewise.
5127 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
5128 the file name.
5129
5130 2002-11-12 Akim Demaille <akim@epita.fr>
5131
5132 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
5133 Restore.
5134 * src/scan-gram.l (last_string): Is global to the file, not to
5135 yylex.
5136 * src/parse-gram.y (input): Don't append the epilogue here,
5137 (epilogue.opt): do it here, and free the scanner's obstack.
5138 * src/reader.c (epilogue_set): Rename as...
5139 (epilogue_augment): this.
5140 * data/c.m4 (b4_epilogue): Defaults to empty.
5141
5142 2002-11-12 Akim Demaille <akim@epita.fr>
5143
5144 * src/getargs.c (long_options): Remove duplicates.
5145 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
5146 Remove.
5147 * doc/bison.rnh: Remove.
5148 * doc/bison.texinfo (VMS Invocation): Remove.
5149
5150 2002-11-12 Akim Demaille <akim@epita.fr>
5151
5152 * src/struniq.h, src/struniq.c (struniq_t): Is const.
5153 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
5154
5155 Use struniq for symbols.
5156
5157 * src/symtab.h (symbol_t): The tag member is a struniq.
5158 (symbol_type_set): Adjust.
5159 * src/symtab.c (symbol_new): Takes a struniq.
5160 (symbol_free): Don't free the tag member.
5161 (hash_compare_symbol_t, hash_symbol_t): Rename as...
5162 (hash_compare_symbol, hash_symbol): these.
5163 Use the fact that tags as struniqs.
5164 (symbol_get): Use struniq_new.
5165 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
5166 Returns a strniq.
5167 * src/reader.h (merger_list, grammar_currentmerge_set): The name
5168 and type members are struniqs.
5169 * src/reader.c (get_merge_function)
5170 (grammar_current_rule_merge_set): Adjust.
5171 (TYPE, current_type): Are struniq.
5172
5173 Use struniq for file names.
5174
5175 * src/files.h, src/files.c (infile): Split into...
5176 (grammar_file, current_file): these.
5177 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
5178 * src/reduce.c (reduce_print): Likewise.
5179 * src/getargs.c (getargs): Likewise.
5180 * src/complain.h, src/complain.c: Likewise.
5181 * src/main.c (main): Call struniqs_new early enough to use it for
5182 file names.
5183 Don't free the input file name.
5184
5185 2002-11-12 Akim Demaille <akim@epita.fr>
5186
5187 * src/symtab.c (symbol_free): Remove dead deactivated code:
5188 type_name are properly removed.
5189 Don't use XFREE to free items that cannot be NULL.
5190 * src/struniq.h, src/struniq.c: New.
5191 * src/main.c (main): Initialize/free struniqs.
5192 * src/parse-gram.y (%union): Add astruniq member.
5193 (yyprint): Adjust.
5194 * src/scan-gram.l (<{tag}>): Return a struniq.
5195 Free the obstack bit that used to store it.
5196 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
5197
5198 2002-11-11 Paul Eggert <eggert@twinsun.com>
5199
5200 Revamp to fix many (but not all) of the C- and M4-related quoting
5201 problems. Among other things, this fixes the Bison bug reported
5202 by Jan Hubicka when processing the Bash grammar; see:
5203 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
5204
5205 Use new @ escapes consistently. Represent brackets with @{ and @}
5206 rather than @<:@ and @:>@, since this works a bit better with dumb
5207 editors like vi. Represent @ with @@, since @ is now consistently
5208 an escape. Use @oline@ and @ofile@ rather than __oline__ and
5209 __ofile__, to avoid unexpected expansions. Similarly, use @output
5210 rather than #output.
5211
5212 * data/c.m4 (b4_copyright): Omit file name from comment, since
5213 the file name could contain "*/".
5214 (b4_synclines_flag): Don't quote the 2nd argument; it should already
5215 be quoted. All uses changed.
5216
5217 * data/glr.c: Use new @ escapes consistently.
5218 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
5219 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
5220 Remove, since they couldn't handle arbitrary characters in file
5221 names.
5222 * data/lalr1.cc: Likewise.
5223 * data/yacc.c: Likewise.
5224
5225 * src/files.c (output_infix): Remove; all uses removed.
5226 * src/files.h: Likewise.
5227
5228 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
5229 mishandled funny characters in file names, and anyway it isn't
5230 needed any more.
5231 * data/yacc.c: Likewise.
5232 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
5233
5234 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
5235 * data/yacc.c: Likewise.
5236
5237 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
5238 strings now.
5239 (muscle_init): Quote filename as a C string.
5240 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
5241 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
5242 * src/output.c (escaped_file_name_output): New function.
5243 (prepare_symbols): Quote tokens for M4.
5244 (prepare): Don't insert output_infix, output_prefix,
5245 output_parser_name, output_header_name; this is now down by scan-skel.
5246 Insert skeleton as a C string.
5247
5248 * src/output.c (user_actions_output, symbol_destructors_output,
5249 symbol_printers_output): Quote filenames for C and M4.
5250 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5251
5252 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
5253 escapes other than \\ and \'; this simplifies the code.
5254 (<SC_STRING>): Likewise, for \\ and \".
5255 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
5256 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
5257 Use new escapes @{ and @} for [ and ].
5258
5259 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
5260 them with auto vars.
5261 Switch to new escape scheme, where @ is the escape character uniformly.
5262 Abort if a stray escape character is found. Avoid unbounded input
5263 buffer when parsing non-escaped text.
5264
5265 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
5266 __oline__, #output, $@, and @{ do not have unintended meanings.
5267
5268 2002-11-09 Paul Eggert <eggert@twinsun.com>
5269
5270 Fix the test failure due to GCC warnings described in
5271 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
5272 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
5273 evaluate to 0 if it's impossible for NINF to be in the respective
5274 table.
5275 (yygetLRActions, yyrecoverParseError): Use them.
5276
5277 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
5278 counted in the token inserted at end of file. Now takes
5279 location_t *, not location_t, so that the location can be
5280 adjusted. All uses changed.
5281
5282 * tests/regression.at (Invalid inputs): Adjust wording in
5283 diagnostic to match the new behavior.
5284
5285 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
5286 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
5287 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
5288 abort ();'. This reduces the runtime of the "Many lookaheads"
5289 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
5290 GCC 3.2.
5291
5292 2002-11-07 Paul Eggert <eggert@twinsun.com>
5293
5294 * src/parse-gram.y (CHARACTER): Remove unused token.
5295 All uses removed.
5296
5297 * src/scan-gram.l: Remove stack option. We no longer use the
5298 stack, since the stack was never deeper than 1; instead, use the
5299 new auto var c_context to record the stacked value.
5300
5301 Remove nounput option. At an unexpected end of file, we now unput
5302 the minimal input necessary to end cleanly; this simplifies the
5303 code.
5304
5305 Avoid unbounded token sizes where this is easy.
5306
5307 (unexpected_end_of_file): New function.
5308 Use it to systematize the error message on unexpected EOF.
5309 (last-string): Now auto, not static.
5310 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
5311 (scanner_last_string_free): Remove; not used.
5312 (percent_percent_count): Move decl to just before use.
5313 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
5314 not the (never otherwised-used) CHARACTER.
5315
5316 2002-11-07 Akim Demaille <akim@epita.fr>
5317
5318 Let yyerror always receive the msg as last argument, so that
5319 yyerror can be variadic.
5320
5321 * data/yacc.c (b4_yyerror_args): New.
5322 Use it when calling yyerror.
5323 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
5324 Use it when calling yyerror.
5325 * doc/bison.texinfo (Error Reporting): Adjust.
5326 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
5327 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
5328
5329 2002-11-06 Akim Demaille <akim@epita.fr>
5330
5331 #line should have quoted strings.
5332 Ideally, this should be done by m4_quotearg.
5333
5334 * src/scan-skel.l: Include quotearg.h.
5335 Quote __ofile__.
5336 * src/output.c (symbol_printers_output)
5337 (symbol_destructors_output): Quote the file name.
5338
5339 2002-11-06 Akim Demaille <akim@epita.fr>
5340
5341 * tests/regression.at (Invalid inputs): Adjust to the recent
5342 messages.
5343
5344 2002-11-06 Akim Demaille <akim@epita.fr>
5345
5346 Restore --no-lines.
5347 Reported by Jim Kent.
5348
5349 * data/c.m4 (b4_syncline): New.
5350 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
5351 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
5352 * src/output.c (user_actions_output): Likewise.
5353 (prepare): Define 'b4_synclines_flag'.
5354 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
5355
5356 2002-11-06 Akim Demaille <akim@epita.fr>
5357
5358 * src/main.c (main): Free `infile'.
5359 * src/scan-gram.l (handle_syncline): New.
5360 Recognize `#line'.
5361 * src/output.c (user_actions_output, symbol_destructors_output)
5362 (symbol_printers_output): Use the location's file name, not
5363 infile.
5364 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5365
5366 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5367
5368 * src/tables.c (matching_state): Don't allow states to match if
5369 either has GLR conflict entries.
5370
5371 2002-11-05 Paul Eggert <eggert@twinsun.com>
5372
5373 * src/scan-gram.l: Use more accurate diagnostics, e.g.
5374 "integer out of range" rather than "invalid value".
5375 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
5376 accordingly.
5377
5378 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
5379 Also, remove one static variable in the scanner.
5380
5381 * src/scan-gram.l (braces_level): Now auto, not static.
5382 Initialize to zero if the compiler is being picky.
5383 (INITIAL): Clear braces_level instead of incrementing it.
5384 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
5385 as POSIX 1003.1-2001 requires.
5386 * src/system.h (IF_LINT): New macro, taken from coreutils.
5387 * configure.ac: Define "lint" if --enable-gcc-warnings.
5388
5389 2002-11-05 Akim Demaille <akim@epita.fr>
5390
5391 * src/scan-gram.l: When it starts with `%', complain about the
5392 whole directive, not just that `invalid character: %'.
5393
5394 2002-11-04 Akim Demaille <akim@epita.fr>
5395
5396 * Makefile.maint: Update from Autoconf.
5397 (update, cvs-update, po-update, do-po-update): New.
5398
5399 2002-11-04 Akim Demaille <akim@epita.fr>
5400
5401 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
5402 and yyerror.
5403 Have yyerror `use' its arguments.
5404 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
5405 returns true when location & yacc & pure & parse-param.
5406 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
5407
5408 2002-11-04 Akim Demaille <akim@epita.fr>
5409
5410 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
5411 clashes.
5412 * src/scan-gram.l: Use [\'] instead of ['] to pacify
5413 font-lock-mode.
5414 Use complain_at.
5415 Use quote, not quote_n since LOCATION_PRINT no longer uses the
5416 slot 0.
5417
5418 2002-11-03 Paul Eggert <eggert@twinsun.com>
5419
5420 * src/reader.c (get_merge_function, grammar_current_rule_check):
5421 Use consistent diagnostics for reporting type name clashes.
5422 Quote the types with <>, for consistency with Yacc.
5423 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
5424
5425 2002-11-03 Akim Demaille <akim@epita.fr>
5426
5427 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
5428 New.
5429 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
5430 (b4_parse_param): Remove.
5431 Use b4_identification.
5432 Propagate b4_pure_args where needed to pass them to yyerror.
5433 * data/glr.m4 (b4_parse_param): Remove.
5434 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
5435 (b4_lpure_formals): New.
5436 Use b4_identification.
5437 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
5438 b4_user_formals and b4_user_args.
5439 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
5440 (yyreportAmbiguity): When using a pure parser, also need
5441 the location, and the parse-params.
5442 Adjust callers.
5443 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
5444 When using a pure parser, also need the parse-params.
5445 Adjust callers.
5446 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
5447 (%pure-parser + %parse-param) LALR and GLR parsers.
5448 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
5449 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
5450 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
5451 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
5452 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
5453 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
5454 * doc/bison.texinfo: Untabify the whole file.
5455 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
5456 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
5457 (Error Reporting): Adjust to these new directives.
5458 Document %error-verbose, deprecate YYERROR_VERBOSE.
5459
5460 2002-11-03 Akim Demaille <akim@epita.fr>
5461
5462 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
5463 AT_CHECK_CALC_GLR invocations to use % directives, instead of
5464 command line options.
5465 * tests/cxx-type.at: Formatting changes.
5466
5467 2002-11-03 Paul Eggert <eggert@twinsun.com>
5468
5469 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
5470 to count columns correctly, and to check for invalid inputs.
5471
5472 Use mbsnwidth to count columns correctly. Account for tabs, too.
5473 Include mbswidth.h.
5474 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
5475 (extend_location): New function.
5476 (YY_LINES): Remove.
5477
5478 Handle CRLF in C code rather than in Lex code.
5479 (YY_INPUT): New macro.
5480 (no_cr_read): New function.
5481
5482 Scan UCNs, even though we don't fully handle them yet.
5483 (convert_ucn_to_byte): New function.
5484
5485 Handle backslash-newline correctly in C code.
5486 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
5487 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
5488 all uses changed.
5489 (tag, splice): New EREs. Do not allow NUL or newline in tags.
5490 Use {splice} wherever C allows backslash-newline.
5491 YY_STEP after space, newline, vertical-tab.
5492 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
5493
5494 (letter, id): Don't assume ASCII; e.g., spell out a-z.
5495
5496 ({int}, handle_action_dollar, handle_action_at): Check for integer
5497 overflow.
5498
5499 (YY_STEP): Omit trailing semicolon, so that it's more like C.
5500
5501 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
5502 as well as \000. Check for UCHAR_MAX, not 255.
5503 Allow \x with an arbitrary positive number of digits, as in C.
5504 Check for overflow here.
5505 Allow \? and UCNs, for compatibility with C.
5506
5507 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
5508 with quote slot used by complain_at.
5509
5510 * tests/input.at: Add tests for backslash-newline, m4 quotes
5511 in symbols, long literals, and funny escapes in strings.
5512
5513 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
5514 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
5515 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
5516 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
5517 * m4/mbswidth.m4: New file, from GNU coreutils.
5518
5519 * doc/bison.texinfo (Grammar Outline): Document // comments.
5520 (Symbols): Document that trigraphs have no special meaning in Bison,
5521 nor is backslash-newline allowed.
5522 (Actions): Document that trigraphs have no special meaning.
5523
5524 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
5525 no longer used.
5526
5527 2002-11-02 Paul Eggert <eggert@twinsun.com>
5528
5529 * src/reader.c: Don't include quote.h; not needed.
5530 (get_merge_function): Reword warning to be consistent with
5531 type clash diagnostic in grammar_current_rule_check.
5532
5533 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
5534 bug in trigraph handling.
5535
5536 * src/output.c (prepare_symbols): When printing token names,
5537 escape "[" as "@<:@" and likewise for "]".
5538
5539 * src/system.h (errno): Remove declaration, as we are now
5540 assuming C89 or better, and C89 guarantees errno.
5541
5542 2002-10-30 Paul Eggert <eggert@twinsun.com>
5543
5544 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
5545 Check for close failures.
5546 * src/files.h (xfclose): Return void, not int, since it always
5547 returned zero.
5548 * src/files.c (xfclose): Likewise. Report I/O error if ferror
5549 indicates one.
5550 * src/output.c (output_skeleton): Use xfclose rather than fclose
5551 and ferror. xfclose now checks ferror.
5552
5553 * data/glr.c (YYLEFTMOST_STATE): Remove.
5554 (yyreportTree): Use a stack-based leftmost state. This avoids
5555 our continuing battles with bogus warnings about initializers.
5556
5557 2002-10-30 Akim Demaille <akim@epita.fr>
5558
5559 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
5560 #if.
5561
5562 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5563
5564 * tests/glr-regr1.at: New test for reported regressions.
5565 * tests/testsuite.at: Add glr-regr1.at test.
5566 * tests/Makefile.am: Add glr-regr1.at test.
5567
5568 2002-10-24 Paul Eggert <eggert@twinsun.com>
5569
5570 Version 1.75a.
5571
5572 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
5573 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
5574 we use malloc. Don't assume 'A' through 'Z' are contiguous.
5575 Don't assume strdup exists; POSIX says its an XSI extension.
5576 Check for buffer overflow on input.
5577
5578 2002-10-24 Akim Demaille <akim@epita.fr>
5579
5580 * src/output.c (output_skeleton): Don't disable M4sugar comments
5581 too soon: it results in comments being expanded.
5582 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
5583 first output.
5584
5585 2002-10-24 Akim Demaille <akim@epita.fr>
5586
5587 * data/yacc.c (m4_int_type): New.
5588 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
5589 char' as only yacc.c wants K&R portability.
5590 * data/glr.c (yysigned_char): Remove.
5591 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
5592 Reported by Quoc Peyrot.
5593
5594 2002-10-23 Paul Eggert <eggert@twinsun.com>
5595
5596 * src/main.c (main): With --trace=time, report times even if a
5597 non-fatal error occurs. Formerly, the times were reported in some
5598 such cases but not in others.
5599 * src/reader.c (reader): Just return if a complaint has been issued,
5600 instead of exiting, so that 'main' can report times.
5601
5602 2002-10-22 Akim Demaille <akim@epita.fr>
5603
5604 * src/system.h: Include sys/types.
5605 Reported by Bert Deknuydt.
5606
5607 2002-10-23 Paul Eggert <eggert@twinsun.com>
5608
5609 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
5610 Suggested by Art Haas.
5611
5612 2002-10-22 Paul Eggert <eggert@twinsun.com>
5613
5614 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
5615 decl; not needed any more.
5616 * src/main.c (main): Use return to exit, undoing yesterday's change.
5617 The last OS that we could find where this wouldn't work is
5618 SunOS 3.5, and that's too old to worry about now.
5619
5620 * data/glr.c (struct yyltype): Define members even when not
5621 doing locations. This is more consistent with yacc.c, and it
5622 works around the following bug reports:
5623 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
5624 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
5625
5626 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
5627 @acronym consistently. Standardize on "Yacc" instead of "YACC",
5628 "Algol" instead of "ALGOL". Give a bit more history about BNF.
5629
5630 2002-10-22 Akim Demaille <akim@epita.fr>
5631
5632 * data/README: New.
5633
5634 2002-10-21 Paul Eggert <eggert@twinsun.com>
5635
5636 Be consistent about 'bool'; the old code used an enum in one
5637 module and an int in another, and this violates the C standard.
5638 * m4/stdbool.m4: New file, from coreutils 4.5.3.
5639 * configure.ac (AC_HEADER_STDBOOL): Add.
5640 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
5641 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
5642 * src/symtab.c (hash_compare_symbol_t): Likewise.
5643 * src/system.h (bool, false, true): Use a definition consistent
5644 with ../lib/hash.c. All uses changed.
5645
5646 * src/complain.c (warning_issued): Renamed from warn_message_count,
5647 so that we needn't worry about integer overflow (!).
5648 Now of type bool. All uses changed.
5649 (complaint_issued): Renamed from complain_message_count; likewise.
5650
5651 * src/main.c (main): Use exit to exit with failure.
5652
5653 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
5654 rather than 1 and 0.
5655 * src/main.c (main): Likewise.
5656 * src/getargs.c (getargs): Likewise.
5657 * src/reader.c (reader): Likewise.
5658
5659 * src/getarg.c (getargs): Remove duplicate code for
5660 "Try `bison --help'".
5661
5662 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
5663 What was that "2" for?
5664
5665 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
5666 * src/getargs.c (usage): Likewise.
5667
5668 * src/getargs.c (getargs): When there are too few operands, report
5669 the last one. When there are too many, report the first extra
5670 one. This is how diffutils does it.
5671
5672 2002-10-20 Paul Eggert <eggert@twinsun.com>
5673
5674 Remove K&R vestiges.
5675 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
5676 * src/complain.c (VA_START): Remove. Assume prototypes.
5677 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
5678 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
5679 fatal): Assume prototypes.
5680 * src/complain.h: Assume prototypes.
5681 * src/system.h (PARAMS): Remove.
5682 Include <limits.h> unconditionally, since it's guaranteeed even
5683 for a freestanding C89 compiler.
5684 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
5685 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
5686
5687 2002-10-20 Akim Demaille <akim@epita.fr>
5688
5689 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
5690 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
5691 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
5692 (yyresolveStates, yyresolveAction, yyresolveStack)
5693 (yyprocessOneStack): Use them.
5694 (yy_reduce_print): New.
5695 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
5696
5697 2002-10-20 Akim Demaille <akim@epita.fr>
5698
5699 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
5700 arguments and output `void'.
5701 (b4_c_function): Rename as...
5702 (b4_c_function_def): this.
5703 (b4_c_function_decl, b4_c_ansi_function_def)
5704 (b4_c_ansi_function_decl): New.
5705 Change the interpretation of the arguments: before `int, foo', now
5706 `int foo, foo'.
5707 * data/yacc.c (yyparse): Prototype and define thanks to these.
5708 Adjust b4_c_function_def uses.
5709 * data/glr.c (yyparse): Likewise, but ANSI only.
5710
5711 2002-10-20 Akim Demaille <akim@epita.fr>
5712
5713 * src/output.c (prepare): Move the definition of `tokens_number',
5714 `nterms_number', `undef_token_number', `user_token_number_max'
5715 to...
5716 (prepare_tokens): Here.
5717 (prepare_tokens): Rename as...
5718 (prepare_symbols): this.
5719 (prepare): Move the definition of `rules_number' to...
5720 (prepare_rules): here.
5721 (prepare): Move the definition of `last', `final_state_number',
5722 `states_number' to...
5723 (prepare_states): here.
5724 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
5725
5726 2002-10-20 Akim Demaille <akim@epita.fr>
5727
5728 * src/tables.h, src/tables.c, src/output.c: Comment changes.
5729
5730 2002-10-20 Akim Demaille <akim@epita.fr>
5731
5732 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
5733 * data/c.m4: here.
5734
5735 2002-10-20 Akim Demaille <akim@epita.fr>
5736
5737 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
5738 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
5739 `pair'.
5740 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
5741 `name' to...
5742 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
5743 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
5744 These.
5745
5746 2002-10-19 Paul Eggert <eggert@twinsun.com>
5747
5748 Do not create a temporary file, as that involves security and
5749 cleanup headaches. Instead, use a pair of pipes.
5750 Derived from a suggestion by Florian Krohm.
5751 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
5752 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
5753 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
5754 (BISON_PREREQ_SUBPIPE): Add.
5755 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
5756 Add subpipe.h, subpipe.c.
5757 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
5758 * po/POTFILES.in: Add lib/subpipe.c.
5759 * src/output.c: Include "subpipe.h".
5760 (m4_invoke): Remove decl.
5761 (scan_skel): New decl.
5762 (output_skeleton): Use pipe rather than temporary file for m4 input.
5763 Check that m4sugar.m4 is readable, to avoid deadlock.
5764 Check for pipe I/O error.
5765 * src/scan-skel.l (readpipe): Remove decl.
5766 (scan_skel): New function, to be used in place of m4_invoke.
5767 Read from stream rather than file.
5768
5769 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
5770 float, as this generates a warning on Solaris 8 + GCC 3.2 with
5771 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
5772 this generates a more-accurate value anyway.
5773
5774 * lib/timevar.c (timervar_accumulate): Rename locals to
5775 avoid confusion with similarly-named more-global.
5776 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
5777
5778 * src/output.c (prepare): Use xstrdup to convert char const *
5779 to char *, to avoid GCC warning.
5780
5781 2002-10-19 Akim Demaille <akim@epita.fr>
5782
5783 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
5784 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
5785 Use them to have `calc.y' ready for %pure-parser.
5786 * data/yacc.c (YYLEX): Pass a yylex return type to
5787 b4_c_function_call.
5788
5789 2002-10-19 Akim Demaille <akim@epita.fr>
5790
5791 Prototype support of %lex-param and %parse-param.
5792
5793 * src/parse-gram.y: Add the definition of the %lex-param and
5794 %parse-param tokens, plus their rules.
5795 Drop the `_' version of %glr-parser.
5796 Add the "," token.
5797 * src/scan-gram.l (INITIAL): Scan them.
5798 * src/muscle_tab.c: Comment changes.
5799 (muscle_insert, muscle_find): Rename `pair' as `probe'.
5800 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
5801 (muscle_entry_s): The `value' member is no longer const.
5802 Adjust all dependencies.
5803 * src/muscle_tab.c (muscle_init): Adjust: use
5804 MUSCLE_INSERT_STRING.
5805 Initialize the obstack earlier.
5806 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
5807 (muscle_pair_list_grow): New.
5808 * data/c.m4 (b4_c_function_call, b4_c_args): New.
5809 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
5810 * tests/calc.at: Use %locations, not --locations.
5811 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
5812
5813 2002-10-19 Akim Demaille <akim@epita.fr>
5814
5815 * src/getargs.c (usage): Take status as argument and exit
5816 accordingly.
5817 Report the traditional `Try ... --help' message when status != 0.
5818 (usage, version): Don't take a FILE * as arg, it is pointless.
5819 (getargs): When there is an incorrect number of arguments, make it
5820 an error, and report it GNUlically thanks to `usage ()'.
5821
5822 2002-10-18 Paul Eggert <eggert@twinsun.com>
5823
5824 * data/glr.c (yyreportParseError): Don't assume that sprintf
5825 yields the length of the printed string, as this is not true
5826 on SunOS 4.1.4. Reported by Peter Klein.
5827
5828 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
5829 * tests/conflicts.at (%nonassoc and eof): Likewise.
5830 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
5831
5832 2002-10-17 Akim Demaille <akim@epita.fr>
5833
5834 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
5835 * src/getargs.c (trace_types, trace_args): Adjust.
5836 * src/reader.c (grammar_current_rule_prec_set)
5837 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
5838 Standardize error messages.
5839 And s/@prec/%prec/!
5840 (reader): Use trace_flag to enable scanner/parser debugging,
5841 instead of an adhoc scheme.
5842 * src/scan-gram.l: Remove trailing debugging code.
5843
5844 2002-10-16 Paul Eggert <eggert@twinsun.com>
5845
5846 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
5847 MUSCLE_TAB_H.
5848
5849 * NEWS: Officially drop support for building Bison with K&R C,
5850 since it didn't work anyway and it's not worth worrying about.
5851 * Makefile.maint (wget_files): Remove ansi2knr.c.
5852 (ansi2knr.c-url_prefix): Remove.
5853 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
5854 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5855 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5856
5857 2002-10-15 Paul Eggert <eggert@twinsun.com>
5858
5859 Stop using the "enum_" trick for K&R-style function definitions;
5860 it confused me, and I was the author! Instead, assume that people
5861 who want to use K&R C compilers (when using these modules in GCC,
5862 perhaps?) will run ansi2knr.
5863
5864 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
5865 All uses of "enum_" changed to "enum ".
5866 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
5867 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
5868
5869 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
5870 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
5871 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
5872 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
5873 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
5874 abitset_not, abitset_ones, abitset_or, abitset_or_and,
5875 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
5876 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
5877 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
5878 Use function prototypes; this removes the need for declaring
5879 static functions simply to provide their prototypes.
5880 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
5881 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
5882 bitset_count_, bitset_create, bitset_dump, bitset_first,
5883 bitset_free, bitset_init, bitset_last, bitset_next,
5884 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
5885 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
5886 bitset_print, bitset_release_memory, bitset_toggle_,
5887 bitset_type_choose, bitset_type_get, bitset_type_name_get,
5888 debug_bitset): Likewise.
5889 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
5890 * lib/bitset_stats.c (bitset_log_histogram_print,
5891 bitset_percent_histogram_print, bitset_stats_and,
5892 bitset_stats_and_cmp, bitset_stats_and_or,
5893 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
5894 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
5895 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
5896 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
5897 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
5898 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
5899 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
5900 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
5901 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
5902 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
5903 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
5904 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
5905 bitset_stats_zero): Likewise.
5906 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
5907 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
5908 bitsetv_dump, debug_bitsetv): Likewise.
5909 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
5910 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
5911 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
5912 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
5913 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
5914 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
5915 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
5916 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
5917 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
5918 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
5919 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
5920 Likewise.
5921 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
5922 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
5923 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
5924 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
5925 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
5926 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
5927 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
5928 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
5929 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
5930 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
5931 lbitset_xor_cmp, lbitset_zero): Likewise.
5932
5933 2002-10-14 Akim Demaille <akim@epita.fr>
5934
5935 Version 1.75.
5936
5937 2002-10-14 Akim Demaille <akim@epita.fr>
5938
5939 * tests/Makefile.am (maintainer-check-posix): New.
5940
5941 2002-10-14 Akim Demaille <akim@epita.fr>
5942
5943 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
5944 member.
5945
5946 2002-10-14 Akim Demaille <akim@epita.fr>
5947
5948 * src/tables.c (table_ninf_remap): base -> tab.
5949 Reported by Matt Rosing.
5950
5951 2002-10-14 Paul Eggert <eggert@twinsun.com>
5952
5953 * tests/action.at, tests/calc.at, tests/conflicts.at,
5954 tests/cxx-type.at, tests/headers.at, tests/input.at,
5955 tests/regression.at, tests/synclines.at, tests/torture.at:
5956 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
5957 so that the tests still work even if POSIXLY_CORRECT is set.
5958 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
5959
5960 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
5961 for portability to K&R hosts. Fix typo: signed char is guaranteed
5962 only to 127, not to 128.
5963 * data/glr.c (yysigned_char): New type.
5964 * data/yacc.c (yysigned_char): Likewise.
5965 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
5966
5967 2002-10-13 Paul Eggert <eggert@twinsun.com>
5968
5969 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
5970 true due to limited range of data type" warning from GCC.
5971
5972 * data/c.m4 (b4_token_defines): Protect against double-inclusion
5973 by wrapping enum yytokentype's definition inside #ifndef
5974 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
5975
5976 2002-10-13 Akim Demaille <akim@epita.fr>
5977
5978 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
5979 Un yy- yyrhs to avoid the name clash with the global YYRHS.
5980
5981 2002-10-13 Akim Demaille <akim@epita.fr>
5982
5983 * Makefile.maint: Update from Autoconf 2.54.
5984 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
5985
5986 2002-10-13 Akim Demaille <akim@epita.fr>
5987
5988 * src/print.c (print_state): Separate the list of solved conflicts
5989 from the other items.
5990 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
5991
5992 2002-10-13 Akim Demaille <akim@epita.fr>
5993
5994 Let nondeterministic skeletons be usable with deterministic
5995 tables.
5996
5997 With the patch, GAWK compiled by GCC without -O2 passes its test
5998 suite using a GLR parser driven by LALR tables. It fails with -O2
5999 because `struct stat' gives two different answers on my machine:
6000 88 (definition of an auto var) and later 96 (memset on this var).
6001 Hence the stack is badly corrumpted. The headers inclusion is to
6002 blame: if I move the awk.h inclusion before GLR's system header
6003 inclusion, the two struct stat have the same size.
6004
6005 * src/tables.c (pack_table): Always create conflict_table.
6006 (token_actions): Always create conflict_list.
6007 * data/glr.c (YYFLAG): Remove, unused.
6008
6009 2002-10-13 Akim Demaille <akim@epita.fr>
6010
6011 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
6012 (O0FLAGS): New.
6013 (VALGRIND, GXX): New.
6014 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
6015 * tests/bison.in: Run $PREBISON a pre-command.
6016 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
6017 (maintainer-check-g++): New.
6018 * Makefile.am (maintainer-check): New.
6019
6020 2002-10-13 Akim Demaille <akim@epita.fr>
6021
6022 * data/glr.c: Formatting changes.
6023 Tweak some trace messages to match yacc.c's.
6024
6025 2002-10-13 Akim Demaille <akim@epita.fr>
6026
6027 GLR parsers sometimes raise parse errors instead of performing the
6028 default reduction.
6029 Reported by Charles-Henry de Boysson.
6030
6031 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
6032 check the length of the traces when %glr.
6033 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
6034 GLR's traces.
6035 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
6036 Test GLR parsers.
6037 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
6038 (yyltype): Remove the yy prefix from the member names.
6039 (yytable): Complete its comment.
6040 (yygetLRActions): Map error action number from YYTABLE from
6041 YYTABLE_NINF to 0.
6042 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
6043 (which was a bug: it should have been YYTABEL_NINF, and yet it was
6044 not satisfying as we could compare an YYACTION computed from
6045 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
6046 only value for error actions.
6047 (yyreportParseError): In verbose parse error messages, don't issue
6048 `error' in the list of expected tokens.
6049 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
6050 next action to perform to match glr.c's decoding.
6051 (yytable): Complete its comment.
6052
6053 2002-10-13 Paul Eggert <eggert@twinsun.com>
6054
6055 Fix problem reported by Henrik Grubbstroem in
6056 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
6057 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
6058 because the Bison parser reads the second action before reducing
6059 the first one.
6060 * src/scan-gram.l (rule_length): New static var.
6061 Use it to keep track of the rule length in the scanner, since
6062 we can't expect the parser to be in lock-step sync with the scanner.
6063 (handle_action_dollar, handle_action_at): Use this var.
6064 * tests/actions.at (Exotic Dollars): Test for the problem.
6065
6066 2002-10-12 Paul Eggert <eggert@twinsun.com>
6067
6068 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
6069 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
6070 Include <sys/time.h> when checking for clock_t and struct tms.
6071 Use same include order as source.
6072 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
6073 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
6074
6075 * lib/timevar.c: Update copyright date and clarify comments.
6076 (get_time) [IN_GCC]: Keep the GCC version for reference.
6077
6078 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
6079 GCC version as of today, then merge Bison's changes.
6080 Change "GCC" to "Bison" in copyright notice. timevar.def's
6081 author is Akim, so change that too.
6082
6083 * src/reader.c (grammar_current_rule_check):
6084 Don't worry about the default action if $$ is untyped.
6085 Prevents bogus warnings reported by Jim Gifford in
6086 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
6087
6088 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
6089 * data/glr.c, data/lalr1.cc, data/yacc.c:
6090 Output token definitions before the first part of user declarations.
6091 Fixes compatibility problem reported by Jim Gifford for kbd in
6092 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
6093
6094 2002-10-11 Paul Eggert <eggert@twinsun.com>
6095
6096 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
6097 (yyparse): here. This undoes some of the 2002-07-25 change.
6098 Compatibility problem reported by Ralf S. Engelschall with
6099 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
6100
6101 2002-10-11 Akim Demaille <akim@epita.fr>
6102
6103 * tests/regression.at Characters Escapes): New.
6104 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
6105 characters.
6106 Reported by Jan Nieuwenhuizen.
6107
6108 2002-10-11 Akim Demaille <akim@epita.fr>
6109
6110 * po/id.po: New.
6111
6112 2002-10-10 Paul Eggert <eggert@twinsun.com>
6113
6114 Portability fixes for bitsets; this also avoids several GCC
6115 warnings.
6116
6117 * lib/abitset.c: Include <stddef.h>, for offsetof.
6118 * lib/lbitset.c: Likewise.
6119
6120 * lib/abitset.c (abitset_bytes): Return a size that is aligned
6121 properly for vectors of objects. Do not assume that adding a
6122 header size to a multiple of a word size yields a value that is
6123 properly aligned for the whole union.
6124 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6125
6126 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
6127 unique names for structures.
6128 * lib/ebitset.c (ebitset_bytes): Likewise.
6129 * lib/lbitset.c (lbitset_bytes): Likewise.
6130
6131 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
6132 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
6133 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
6134 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
6135 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
6136 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
6137 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
6138 to improve the type-checking that GCC can do.
6139 * lib/bitset.c (bitset_op4_cmp): Likewise.
6140 * lib/bitset_stats.c (bitset_stats_count,
6141 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
6142 bitset_stats_copy, bitset_stats_disjoint_p,
6143 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
6144 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
6145 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
6146 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
6147 bitset_stats_and_or_cmp, bitset_stats_andn_or,
6148 bitset_stats_andn_or_cmp, bitset_stats_or_and,
6149 bitset_stats_or_and_cmp): Likewise.
6150 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
6151 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
6152 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
6153 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
6154
6155 * lib/abitset.h: Include bitset.h, not bbitset.h.
6156 * lib/ebitset.h: Likewise.
6157 * lib/lbitset.h: Likewise.
6158
6159 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
6160 All instances of parameters of type enum bitset_opts are now of
6161 type enum_bitset_opts, to conform to the C Standard, and similarly
6162 for enum_bitset_type.
6163 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
6164 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
6165
6166 Do not use "struct bitset_struct" to mean different things in
6167 different modules. Not only is this confusing, it violates
6168 the C Standard, which requires that structure types in different
6169 modules must be compatible if one is to be passed to the other.
6170 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
6171 All instances of "struct bitset_struct *" replaced with "bitset".
6172 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
6173 (union bitset_union, struct abitset_struct, struct ebitset_struct,
6174 struct lbitset_struct, struct bitset_stats_struct): New types.
6175 All uses of struct bitset_struct changed to union bitset_union,
6176 etc.
6177 * lib/abitset.c (struct abitset_struct, abitset,
6178 struct bitset_struct): Remove.
6179 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
6180 struct bitset_struct): Remove.
6181 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
6182 bitset_struct): Remove.
6183 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
6184 Likewise.
6185
6186 Do not call a function of type T using a call that assumes the
6187 function is of a different type U. Standard C requires that a
6188 function must be called with a type that is compatible with its
6189 definition.
6190 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6191 New decls.
6192 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6193 New functions.
6194 * lib/ebitset.c (PFV): Remove.
6195 * lib/lbitset.c (PFV): Likewise.
6196 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
6197 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
6198 decls.
6199 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
6200 (ebitset_vtable): Use them.
6201 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
6202 lbitset_xor): New functions.
6203 (lbitset_vtable): Use them.
6204
6205 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
6206 Declare.
6207
6208 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
6209 GCC warning.
6210 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
6211 Use offsetof, for simplicity.
6212
6213 2002-10-06 Paul Eggert <eggert@twinsun.com>
6214
6215 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
6216 the same width as int. This reapplies a hunk of the 2002-08-12 patch
6217 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6218 which was inadvertently undone by the 2002-09-30 patch.
6219 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
6220 the same width as int.
6221
6222 2002-10-04 Paul Eggert <eggert@twinsun.com>
6223
6224 Version 1.50.
6225
6226 * configure.ac (AC_INIT), NEWS: Increment version number.
6227
6228 * doc/bison.texinfo: Minor spelling, grammar, and white space
6229 fixes.
6230 (Symbols): Mention that any negative value returned from yylex
6231 signifies end-of-input. Warn about negative chars. Mention
6232 the portable Standard C character set.
6233
6234 The GNU coding standard says CFLAGS and YFLAGS are reserved
6235 for the installer to set.
6236 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
6237 * src/Makefile.am (AM_CFLAGS): Likewise.
6238 (AM_YFLAGS): Renamed from YFLAGS.
6239
6240 Fix some MAX and MIN problems.
6241 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
6242 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
6243 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
6244 * src/reader.c (reader): Use it.
6245
6246 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
6247 POSIX 1003.1-2001 has removed fgrep.
6248
6249 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
6250
6251 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
6252 interpreted as signed.
6253 * lib/ebitset.c (ebitset_list): Fix bug.
6254
6255 2002-10-01 Paul Eggert <eggert@twinsun.com>
6256
6257 More fixes for 64-bit hosts and large bitsets.
6258
6259 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
6260 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
6261 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
6262 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
6263 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
6264 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
6265 bitset_count_): Likewise.
6266 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
6267 bitset_first, bitset_last): Likewise.
6268 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
6269 bitset_stats_list_reverse, bitset_stats_size,
6270 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
6271 Likewise.
6272 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6273 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
6274 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
6275 bitsetv_reflexive_transitive_closure): Likewise.
6276 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
6277 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
6278 Likewise.
6279 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
6280 Likewise.
6281
6282 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
6283 Use size_t, not unsigned int, to count bytes.
6284 * lib/abitset.h (abitset_bytes): Likewise.
6285 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
6286 Likewise.
6287 * lib/bitset.h (bitset_bytes): Likewise.
6288 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
6289 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
6290 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6291 * lib/ebitset.c (ebitset_bytes): Likewise.
6292 * lib/ebitset.h (ebitset_bytes): Likewise.
6293 * lib/lbitset.c (lbitset_bytes): Likewise.
6294 * lib/lbitset.h (lbitset_bytes): Likewise.
6295
6296 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
6297 abitset_subset_p, abitset_disjoint_p, abitset_and,
6298 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
6299 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
6300 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
6301 abitset_or_and, abitset_or_and_cmp):
6302 Use bitset_windex instead of unsigned int.
6303 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6304 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
6305 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
6306 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
6307 Likewise.
6308 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
6309
6310 * lib/bitset.c (bitset_print):
6311 Use proper printf formats for widths of integer types.
6312 * lib/bitset_stats.c (bitset_percent_histogram_print,
6313 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
6314 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6315 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6316 * lib/lbitset.c (lbitset_bytes): Likewise.
6317
6318 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
6319 BITSET_SIZE_MAX): New macros.
6320 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
6321 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
6322 to BITSET_WINDEX_MAX.
6323
6324 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
6325 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
6326 since we now return the bitset_bindex type (not int).
6327
6328 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
6329 when computing sizes.
6330 * lib/ebitset.c (ebitset_elts_grow): Likewise.
6331
6332 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
6333 and avoid cast to unsigned.
6334
6335 2002-09-30 Akim Demaille <akim@epita.fr>
6336
6337 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6338 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
6339 Updates from Michael Hayes.
6340
6341 2002-09-30 Art Haas <ahaas@neosoft.com>
6342
6343 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
6344 invocations.
6345 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
6346 defined.
6347
6348 2002-09-27 Akim Demaille <akim@epita.fr>
6349
6350 Version 1.49c.
6351
6352 2002-09-27 Akim Demaille <akim@epita.fr>
6353
6354 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
6355 (Because of AC_LIBSOURCE).
6356
6357 2002-09-27 Akim Demaille <akim@epita.fr>
6358
6359 Playing with Autoscan.
6360
6361 * configure.ac: Remove the old LIBOBJ tweaks.
6362 (AC_REPLACE_FUNCS): Add strrchr and strtol.
6363 * lib/strrchr.c: New.
6364 * lib/strtol.c: New, from the Coreutils 4.5.1.
6365
6366 2002-09-27 Akim Demaille <akim@epita.fr>
6367
6368 Playing with Autoscan.
6369
6370 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
6371 * lib/Makefile.am (libbison_a_SOURCES): No longer include
6372 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
6373 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
6374 Coreutils 4.5.1.
6375
6376 2002-09-24 Akim Demaille <akim@epita.fr>
6377
6378 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
6379 (Frequently Asked Questions, Parser Stack Overflow): New.
6380
6381 2002-09-13 Akim Demaille <akim@epita.fr>
6382
6383 Playing with autoscan.
6384
6385 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
6386 * src/files.c (skeleton_find): Remove, unused.
6387 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
6388 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
6389
6390 2002-09-13 Akim Demaille <akim@epita.fr>
6391
6392 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
6393 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
6394
6395 2002-09-13 Akim Demaille <akim@epita.fr>
6396
6397 * configure.ac: Require 2.54.
6398 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
6399 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
6400 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
6401 Remove, provided by Autoconf macros.
6402
6403 2002-09-12 Akim Demaille <akim@epita.fr>
6404
6405 * m4/prereq.m4: Update, from Coreutils 4.5.1.
6406
6407 2002-09-12 Akim Demaille <akim@epita.fr>
6408
6409 * m4/prereq.m4: Update, from Fileutils 4.1.5.
6410 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
6411 Reported by Martin Mokrejs.
6412
6413 2002-09-10 Akim Demaille <akim@epita.fr>
6414
6415 * src/parse-gram.y: Associate a human readable string to each
6416 token type.
6417 * tests/regression.at (Invalid inputs): Adjust.
6418
6419 2002-09-10 Gary V. Vaughan <gary@gnu.org>
6420
6421 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
6422 with an Autoconf-2.5x style configure.ac.
6423
6424 2002-09-06 Paul Eggert <eggert@twinsun.com>
6425
6426 * doc/bison.texinfo (Conditions): Make explicit that the GPL
6427 exception applies only to yacc.c. This is a modification of a
6428 patch originally suggested by Akim Demaille.
6429
6430 2002-09-06 Akim Demaille <akim@epita.fr>
6431
6432 * data/c.m4 (b4_copyright): Move the GPL exception comment from
6433 here to...
6434 * data/yacc.c: here.
6435
6436 * data/lalr1.cc (struct yyltype): Don't define it, since we use
6437 LocationType.
6438 (b4_ltype): Default to yy::Location from location.hh.
6439
6440 2002-09-04 Jim Meyering <jim@meyering.net>
6441
6442 * data/yacc.c: Guard the declaration of yytoknum also with
6443 `#ifdef YYPRINT', so it is declared only when used.
6444
6445 2002-09-04 Akim Demaille <akim@epita.fr>
6446
6447 * configure.in: Rename as...
6448 * configure.ac: this.
6449 Bump to 1.49c.
6450
6451 2002-09-04 Akim Demaille <akim@epita.fr>
6452
6453 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
6454 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
6455 translate maintainer only messages.
6456
6457 2002-08-12 Paul Eggert <eggert@twinsun.com>
6458
6459 Version 1.49b.
6460
6461 * Makefile.am (SUBDIRS): Remove intl.
6462 (DISTCLEANFILES): Remove.
6463 * NEWS: Mention that GNU M4 is now required. Clarify what is
6464 meant by "larger grammars". Mention the pt_BR translation.
6465 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
6466 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
6467 Bump version from 0.11.2 to 0.11.5.
6468 (BISON_PREREQ_STAGE): Remove.
6469 (AM_GNU_GETTEXT): Use external gettext.
6470 (AC_OUTPUT): Remove intl/Makefile.
6471
6472 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
6473
6474 * data/glr.c: Include string.h, for strlen.
6475 (yyreportParseError): Use size_t for yysize.
6476 (yy_yypstack): No longer nested inside yypstates, as nested
6477 functions are not portable. Do not assume size_t is the
6478 same width as int.
6479 (yypstates): Do not assume that ptrdiff_t is the same width
6480 as int, and similarly for yyposn and YYINDEX.
6481
6482 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
6483
6484 * lib/Makefile.am (INCLUDES): Do not include from the intl
6485 directory, which has been removed.
6486 * src/Makefile.am (INCLUDES): Likewise.
6487
6488 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
6489 (bitsets_sources, additional_bitsets_sources, timevars_sources):
6490 New vars.
6491
6492 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
6493 * tests/Makefile.am (EXTRA_DIST): Likewise.
6494
6495 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
6496 Do not assume that bitset_windex is the same width as unsigned.
6497
6498 * lib/abitset.c (abitset_unused_clear): Do not assume that
6499 bitset_word is the same width as int.
6500 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
6501 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
6502 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
6503 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
6504 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
6505
6506 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
6507 portability to one's complement hosts!).
6508 * lib/ebitset.c (ebitset_op1): Likewise.
6509 * lib/lbitset.c (lbitset_op1): Likewise.
6510
6511 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
6512 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
6513 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
6514 Sync with fileutils.
6515 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
6516 lib/gettext.h: Sync with diffutils.
6517
6518 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
6519 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
6520
6521 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
6522 PROTOTYPES to check for prototypes, and "defined __STDC__" to
6523 check for void *.
6524
6525 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
6526 size_t; the old version tried to do this but casted improperly.
6527 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
6528 (bitset_test): Now returns int, not unsigned long.
6529
6530 * lib/bitset_stats.c: Include "gettext.h".
6531 (_): New macro.
6532 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
6533 name locals "index", as it generates unnecessary warnings on some
6534 hosts that have an "index" function.
6535
6536 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
6537 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
6538 they need translation.
6539 * src/LR0.c (state_list_append, new_itemsets, get_state,
6540 append_states, generate_states): Likewise.
6541 * src/assoc.c (assoc_to_string): Likewise.
6542 * src/closure.c (print_closure, set_firsts, closure): Likewise.
6543 * src/gram.c (grammar_dump): Likewise.
6544 * src/injections.c (injections_compute): Likewise.
6545 * src/lalr.c (lookaheads_print): Likewise.
6546 * src/relation.c (relation_transpose): Likewise.
6547 * src/scan-gram.l: Likewise.
6548 * src/tables.c (table_grow, pack_vector): Likewise.
6549
6550 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
6551 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
6552 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
6553 * m4/mbstate_t.m4: Sync with fileutils.
6554 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
6555
6556 * po/LINGUAS: Add pt_BR.
6557 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
6558 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
6559 lib/timevar.c.
6560 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
6561 manual recommends.
6562 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
6563
6564 * src/complain.c (strerror_r): Remove decl; not needed.
6565 (strerror): Use same pattern as ../lib/error.c.
6566
6567 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
6568
6569 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
6570
6571 * src/main.c (main): Cast result of bindtextdomain and textdomain
6572 to void, to avoid a GCC warning when --disable-nls is in effect.
6573
6574 * src/scan-gram.l: Use strings rather than escapes when possible,
6575 to minimize the number of warnings from xgettext.
6576 (handle_action_dollar, handle_action_at): Don't use isdigit,
6577 as it mishandles negative chars and it may not work as expected
6578 outside the C locale.
6579
6580 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
6581 this is a GCC extension and is not portable to other compilers.
6582
6583 * src/system.h (alloca): Use same pattern as ../lib/error.c.
6584 Do not include <ctype.h>; no longer needed.
6585 Do not include <malloc.h>; no longer needed (and generates
6586 warnings on OpenBSD 3.0).
6587
6588 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
6589 it's not portable.
6590
6591 * tests/regression.at: Do not use 'cc -c input.c -o input';
6592 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
6593
6594 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
6595 exit status as failure, not just exit status 1. Sun C exits
6596 with status 2 sometimes.
6597
6598 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
6599 Use it for the two large tests.
6600
6601 2002-08-02 Akim Demaille <akim@epita.fr>
6602
6603 * src/conflicts.c (conflicts_output): Don't output rules never
6604 reduced here, since anyway that computation doesn't work.
6605 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
6606 (rule_useless_p, rule_never_reduced_p): New.
6607 (grammar_rules_partial_print): Use a filter instead of a range.
6608 Display the title only if needed.
6609 (grammar_rules_print): Adjust.
6610 (grammar_rules_never_reduced_report): New.
6611 * src/tables.c (action_row): Move the computation of rules never
6612 reduced to...
6613 (token_actions): here.
6614 * src/main.c (main): Make the parser before making the report, so
6615 that rules never reduced are computed.
6616 Call grammar_rules_never_reduced_report.
6617 * src/print.c (print_results): Report rules never reduced.
6618 * tests/conflicts.at, tests/reduce.at: Adjust.
6619
6620 2002-08-01 Akim Demaille <akim@epita.fr>
6621
6622 Instead of attaching lookaheads and duplicating the rules being
6623 reduced by a state, attach the lookaheads to the reductions.
6624
6625 * src/state.h (state_t): Remove the `lookaheads',
6626 `lookaheads_rule' member.
6627 (reductions_t): Add a `lookaheads' member.
6628 Use a regular array for the `rules'.
6629 * src/state.c (reductions_new): Initialize the lookaheads member
6630 to 0.
6631 (state_rule_lookaheads_print): Adjust.
6632 * src/state.h, src/state.c (state_reductions_find): New.
6633 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
6634 (count_rr_conflicts): Adjust.
6635 * src/lalr.c (LArule): Remove.
6636 (add_lookback_edge): Adjust.
6637 (state_lookaheads_count): New.
6638 (states_lookaheads_initialize): Merge into...
6639 (initialize_LA): this.
6640 (lalr_free): Adjust.
6641 * src/main.c (main): Don't free nullable and derives too early: it
6642 is used by --verbose.
6643 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
6644
6645 2002-08-01 Akim Demaille <akim@epita.fr>
6646
6647 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
6648 `rule_number_t**'.
6649 (set_derives, free_derives): Rename as...
6650 (derives_compute, derives_free): this.
6651 Adjust all dependencies.
6652 * src/nullable.c (set_nullable, free_nullable): Rename as...
6653 (nullable_compute, nullable_free): these.
6654 (rule_list_t): Store rule_t *, not rule_number_t.
6655 * src/state.c (state_rule_lookaheads_print): Directly compare rule
6656 pointers, instead of their numbers.
6657 * src/main.c (main): Call nullable_free, and derives_free earlier,
6658 as they were lo longer used.
6659
6660 2002-08-01 Akim Demaille <akim@epita.fr>
6661
6662 * lib/timevar.c (get_time): Include children time.
6663 * src/lalr.h (LA, LArule): Don't export them: used with the
6664 state_t.
6665 * src/lalr.c (LA, LArule): Static.
6666 * src/lalr.h, src/lalr.c (lalr_free): New.
6667 * src/main.c (main): Call it.
6668 * src/tables.c (pack_vector): Check whether loc is >= to the
6669 table_size, not >.
6670 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
6671 (tables_generate): do it, since that's also it which allocates
6672 them.
6673 Don't free LA and LArule, main does.
6674
6675 2002-07-31 Akim Demaille <akim@epita.fr>
6676
6677 Separate parser tables computation and output.
6678
6679 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
6680 (conflict_list, conflict_list_cnt, table, check, table_ninf)
6681 (yydefgoto, yydefact, high): Move to...
6682 * src/tables.h, src/tables.c: here.
6683 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
6684 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
6685 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
6686 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
6687 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
6688 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
6689 (action_row, save_row, token_actions, save_column, default_goto)
6690 (goto_actions, sort_actions, matching_state, pack_vector)
6691 (table_ninf_remap, pack_table, prepare_actions): Move to...
6692 * src/tables.c: here.
6693 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
6694 * src/output.c (token_actions, output_base, output_conflicts)
6695 (output_check): Merge into...
6696 (prepare_actions): this.
6697 (actions_output): Rename as...
6698 (user_actions_output): this.
6699 * src/main.c (main): Call tables_generate and tables_free.
6700
6701 2002-07-31 Akim Demaille <akim@epita.fr>
6702
6703 Steal GCC's --time-report support.
6704
6705 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
6706 stolen/adjusted from GCC.
6707 * m4/stage.m4: Remove time related checks.
6708 * m4/timevar.m4: New.
6709 * configure.in: Adjust.
6710 * src/system.h: Adjust to using timevar.h.
6711 * src/getargs.h, src/getargs.c: Support trace_time for
6712 --trace=time.
6713 * src/main.c (stage): Remove.
6714 (main): Replace `stage' invocations with timevar calls.
6715 * src/output.c: Insert pertinent timevar calls.
6716
6717 2002-07-31 Akim Demaille <akim@epita.fr>
6718
6719 Let --trace have arguments.
6720
6721 * src/getargs.h (enum trace_e): New.
6722 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
6723 (long_options, short_options): --trace/-T takes an optional
6724 argument.
6725 Change all the uses of trace_flag to reflect the new flags.
6726 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
6727
6728 Strengthen `stage' portability.
6729
6730 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
6731 * configure.in: Use it.
6732 Don't check for malloc.h and sys/times.h.
6733 * src/system.h: Include them when appropriate.
6734 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
6735 times and struct tms are available.
6736
6737 2002-07-30 Akim Demaille <akim@epita.fr>
6738
6739 In verbose parse error message, don't report `error' as an
6740 expected token.
6741 * tests/actions.at (Printers and Destructors): Adjust.
6742 * tests/calc.at (Calculator $1): Adjust.
6743 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
6744 error message, do not report the parser accepts the error token in
6745 that state.
6746
6747 2002-07-30 Akim Demaille <akim@epita.fr>
6748
6749 Normalize conflict related messages.
6750
6751 * src/complain.h, src/complain.c (warn, complain): New.
6752 * src/conflicts.c (conflicts_print): Use them.
6753 (conflict_report_yacc): New, extracted from...
6754 (conflicts_print): here.
6755 * tests/conflicts.at, tests/existing.at: Adjust.
6756
6757 2002-07-30 Akim Demaille <akim@epita.fr>
6758
6759 Report rules which are never reduced by the parser: those hidden
6760 by conflicts.
6761
6762 * src/LR0.c (save_reductions): Don't make the final state too
6763 different: save its reduction (accept) instead of having a state
6764 without any action (no shift or goto, no reduce).
6765 Note: the final state is now a ``regular'' state, i.e., the
6766 parsers now contain `reduce 0' as default reduction.
6767 Nevertheless, since they decide to `accept' when yystate =
6768 final_state, they still will not reduce rule 0.
6769 * src/print.c (print_actions, print_reduction): Adjust.
6770 * src/output.c (action_row): Track reduced rules.
6771 (token_actions): Report rules never reduced.
6772 * tests/conflicts.at, tests/regression.at: Adjust.
6773
6774 2002-07-30 Akim Demaille <akim@epita.fr>
6775
6776 `stage' was accidently included in a previous patch.
6777 Initiate its autoconfiscation.
6778
6779 * configure.in: Look for malloc.h and sys/times.h.
6780 * src/main.c (stage): Adjust.
6781 Report only when trace_flag.
6782
6783 2002-07-29 Akim Demaille <akim@epita.fr>
6784
6785 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
6786 state_number_t.
6787 (errs_t): symbol_t*, not symbol_number_t.
6788 (reductions_t): rule_t*, not rule_number_t.
6789 (FOR_EACH_SHIFT): New.
6790 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
6791 * src/print.c, src/print_graph.c: Adjust.
6792
6793 2002-07-29 Akim Demaille <akim@epita.fr>
6794
6795 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
6796
6797 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
6798 (endtoken, accept): these.
6799 * src/reader.c (reader): Set endtoken's default tag to "$end".
6800 Set undeftoken's tag to "$undefined" instead of "$undefined.".
6801 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
6802 Adjust.
6803
6804 2002-07-29 Akim Demaille <akim@epita.fr>
6805
6806 * src/reduce.c (reduce_grammar): When the language is empty,
6807 complain about the start symbol, not the axiom.
6808 Use its location.
6809 * tests/reduce.at (Empty Language): New.
6810
6811 2002-07-26 Akim Demaille <akim@epita.fr>
6812
6813 * src/reader.h, src/reader.c (gram_error): ... can't get
6814 yycontrol without making too strong assumptions on the parser
6815 itself.
6816 * src/output.c (prepare_tokens): Use the real 0th value of
6817 token_translations instead of `0'.
6818 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
6819 visible here.
6820 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
6821 for the time being: %locations ought to provide it to yyerror.
6822
6823 2002-07-25 Akim Demaille <akim@epita.fr>
6824
6825 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
6826 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
6827 * tests/regression.at (Web2c Actions): Adjust.
6828
6829 2002-07-25 Akim Demaille <akim@epita.fr>
6830
6831 Stop storing rules from 1 to nrules + 1.
6832
6833 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
6834 * src/nullable.c, src/output.c, src/print.c, src/reader.c
6835 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
6836 Iterate from 0 to nrules.
6837 Use rule_number_as_item_number and item_number_as_rule_number.
6838 Adjust to `derive' now containing possibly 0.
6839 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
6840 Handle the `- 1' part in rule numbers from/to item numbers.
6841 * src/conflicts.c (log_resolution): Fix the message which reversed
6842 shift and reduce.
6843 * src/output.c (action_row): Initialize default_rule to -1.
6844 (token_actions): Adjust.
6845 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
6846 expected output.
6847 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
6848
6849 2002-07-25 Akim Demaille <akim@epita.fr>
6850
6851 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
6852 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
6853 (b4_c_knr_arg_decl): New.
6854 * data/yacc.c: Use it to define yysymprint, yydestruct, and
6855 yyreport_parse_error.
6856
6857 2002-07-25 Akim Demaille <akim@epita.fr>
6858
6859 * data/yacc.c (yyreport_parse_error): New, extracted from...
6860 (yyparse): here.
6861 (yydestruct, yysymprint): Move above yyparse.
6862 Be K&R compliant.
6863
6864 2002-07-25 Akim Demaille <akim@epita.fr>
6865
6866 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
6867 replace...
6868 (b4_sint_type, b4_uint_type): these.
6869 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
6870 * tests/regression.at (Web2c Actions): Adjust.
6871
6872 2002-07-25 Akim Demaille <akim@epita.fr>
6873
6874 * src/gram.h (TIEM_NUMBER_MAX): New.
6875 (item_number_of_rule_number, rule_number_of_item_number): Rename
6876 as...
6877 (rule_number_as_item_number, item_number_as_rule_number): these.
6878 Adjust dependencies.
6879 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
6880 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
6881 (symbol_number_to_vector_number): New.
6882 (order): Of vector_number_t* type.
6883 (base_t, BASE_MAX, BASE_MIN): New.
6884 (froms, tos, width, pos, check): Of base_t type.
6885 (action_number_t, ACTION_MIN, ACTION_MAX): New.
6886 (actrow): Of action_number_t type.
6887 (conflrow): Of unsigned int type.
6888 (table_ninf, base_ninf): New.
6889 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
6890 (muscle_insert_int_table, muscle_insert_base_table)
6891 (muscle_insert_rule_number_table): New.
6892 (prepare_tokens): Output `toknum' as int_table.
6893 (action_row): Returns a rule_number_t.
6894 Use ACTION_MIN, not SHRT_MIN.
6895 (token_actions): yydefact is rule_number_t*.
6896 (table_ninf_remap): New.
6897 (pack_table): Use it for `base' and `table'.
6898 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
6899 replaced with...
6900 (YYPACT_NINF, YYTABLE_NINF): these.
6901 (yypact, yytable): Compute their types instead of hard-coded
6902 `short'.
6903 * tests/regression.at (Web2c Actions): Adjust.
6904
6905 2002-07-19 Akim Demaille <akim@epita.fr>
6906
6907 * src/scan-gram.l (id): Can start with an underscore.
6908
6909 2002-07-16 Akim Demaille <akim@epita.fr>
6910
6911 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
6912 Adjust all former `associativity' dependencies.
6913 * src/symtab.c (symbol_new): Default associativity is `undef', not
6914 `right'.
6915 (symbol_check_alias_consistence): Adjust.
6916
6917 2002-07-09 Akim Demaille <akim@epita.fr>
6918
6919 * doc/bison.texinfo: Properly set the ``header'' part.
6920 Use @dircategory ``GNU programming tools'' as per Texinfo's
6921 documentation.
6922 Use @copying.
6923
6924 2002-07-09 Akim Demaille <akim@epita.fr>
6925
6926 * lib/quotearg.h: Protect against multiple inclusions.
6927 * src/location.h (location_t): Add a `file' member.
6928 (LOCATION_RESET, LOCATION_PRINT): Adjust.
6929 * src/complain.c (warn_at, complain_at, fatal_at): Drop
6930 `error_one_per_line' support.
6931
6932 2002-07-09 Akim Demaille <akim@epita.fr>
6933
6934 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
6935 * src/reader.c (lineno): Remove.
6936 Adjust all dependencies.
6937 (get_merge_function): Take a location and use complain_at.
6938 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
6939 * tests/regression.at (Invalid inputs, Mixing %token styles):
6940 Adjust.
6941
6942 2002-07-09 Akim Demaille <akim@epita.fr>
6943
6944 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
6945 recovery rule, and forbid extensions when --yacc.
6946 (gram_error): Use complain_at.
6947 * src/reader.c (reader): Exit if there were parse errors.
6948
6949 2002-07-09 Akim Demaille <akim@epita.fr>
6950
6951 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
6952 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
6953 Reported by R Blake <blakers@mac.com>.
6954
6955 2002-07-09 Akim Demaille <akim@epita.fr>
6956
6957 * data/yacc.c: Output the copyright notive in the header.
6958
6959 2002-07-03 Akim Demaille <akim@epita.fr>
6960
6961 * src/output.c (froms, tos): Are state_number_t.
6962 (save_column): sp, sp1, and sp2 are state_number_t.
6963 (prepare): Rename `final' as `final_state_number', `nnts' as
6964 `nterms_number', `nrules' as `rules_number', `nstates' as
6965 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
6966 unused.
6967 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
6968 * data/lalr1.cc (nsym_): Remove, unused.
6969
6970 2002-07-03 Akim Demaille <akim@epita.fr>
6971
6972 * src/lalr.h, src/lalr.c (goto_number_t): New.
6973 * src/lalr.c (goto_list_t): New.
6974 Propagate them.
6975 * src/nullable.c (rule_list_t): New.
6976 Propagate.
6977 * src/types.h: Remove.
6978
6979 2002-07-03 Akim Demaille <akim@epita.fr>
6980
6981 * src/closure.c (print_fderives): Use rule_rhs_print.
6982 * src/derives.c (print_derives): Use rule_rhs_print.
6983 (rule_list_t): New, replaces `shorts'.
6984 (set_derives): Add comments.
6985 * tests/sets.at (Nullable, Firsts): Adjust.
6986
6987 2002-07-03 Akim Demaille <akim@epita.fr>
6988
6989 * src/output.c (prepare_actions): Free `tally' and `width'.
6990 (prepare_actions): Allocate and free `order'.
6991 * src/symtab.c (symbols_free): Free `symbols'.
6992 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
6993 * src/output.c (m4_invoke): Move to...
6994 * src/scan-skel.l: here.
6995 (<<EOF>>): Close yyout, and free its name.
6996
6997 2002-07-03 Akim Demaille <akim@epita.fr>
6998
6999 Fix some memory leaks, and fix a bug: state 0 was examined twice.
7000
7001 * src/LR0.c (new_state): Merge into...
7002 (state_list_append): this.
7003 (new_states): Merge into...
7004 (generate_states): here.
7005 (set_states): Don't ensure a proper `errs' state member here, do it...
7006 * src/conflicts.c (conflicts_solve): here.
7007 * src/state.h, src/state.c: Comment changes.
7008 (state_t): Rename member `shifts' as `transitions'.
7009 Adjust all dependencies.
7010 (errs_new): For consistency, also take the values as argument.
7011 (errs_dup): Remove.
7012 (state_errs_set): New.
7013 (state_reductions_set, state_transitions_set): Assert that no
7014 previous value was assigned.
7015 (state_free): New.
7016 (states_free): Use it.
7017 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
7018 temporary storage: use `errs' and `nerrs' as elsewhere.
7019 (set_conflicts): Allocate and free this `errs'.
7020
7021 2002-07-02 Akim Demaille <akim@epita.fr>
7022
7023 * lib/libiberty.h: New.
7024 * lib: Update the bitset implementation from upstream.
7025 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
7026 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
7027 * src/main.c: Adjust bitset stats calls.
7028
7029 2002-07-01 Paul Eggert <eggert@twinsun.com>
7030
7031 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
7032 char, so that negative chars don't collide with $.
7033
7034 2002-06-30 Akim Demaille <akim@epita.fr>
7035
7036 Have the GLR tests be `warning' checked, and fix the warnings.
7037
7038 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
7039 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
7040 (yyremoveDeletes): `yyi' and `yyj' are size_t.
7041 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
7042 (yyaddDeferredAction): static.
7043 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
7044 (yyreportParseError): yyprefix is const.
7045 yytokenp is used only when verbose.
7046 (yy__GNUC__): Replace with __GNUC__.
7047 (yypdumpstack): yyi is size_t.
7048 (yypreference): Un-yy local variables and arguments, to avoid
7049 clashes with `yyr1'. Anyway, we are not in the user name space.
7050 (yytname_size): be an int, as is compared with ints.
7051 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
7052 Use them.
7053 * tests/cxx-gram.at: Use quotation to protect $1.
7054 Use AT_COMPILE to enable warnings hunts.
7055 Prototype yylex and yyerror.
7056 `Use' argc.
7057 Include `string.h', not `strings.h'.
7058 Produce and prototype stmtMerge only when used.
7059 yylex takes a location.
7060
7061 2002-06-30 Akim Demaille <akim@epita.fr>
7062
7063 We spend a lot of time in quotearg, in particular when --verbose.
7064
7065 * src/symtab.c (symbol_get): Store a quoted version of the key.
7066 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
7067 Adjust all callers.
7068
7069 2002-06-30 Akim Demaille <akim@epita.fr>
7070
7071 * src/state.h (reductions_t): Rename member `nreds' as num.
7072 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
7073 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
7074
7075 2002-06-30 Akim Demaille <akim@epita.fr>
7076
7077 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
7078 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
7079 (shifts_to): Rename as...
7080 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
7081 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
7082 (TRANSITION_IS_DISABLED, transitions_to): these.
7083
7084 2002-06-30 Akim Demaille <akim@epita.fr>
7085
7086 * src/print.c (print_shifts, print_gotos): Merge into...
7087 (print_transitions): this.
7088 (print_transitions, print_errs, print_reductions): Align the
7089 lookaheads columns.
7090 (print_core, print_transitions, print_errs, print_state,
7091 print_grammar): Output empty lines separator before, not after.
7092 (state_default_rule_compute): Rename as...
7093 (state_default_rule): this.
7094 * tests/conflicts.at (Defaulted Conflicted Reduction),
7095 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
7096 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
7097
7098 2002-06-30 Akim Demaille <akim@epita.fr>
7099
7100 Display items as we display rules.
7101
7102 * src/gram.h, src/gram.c (rule_lhs_print): New.
7103 * src/gram.c (grammar_rules_partial_print): Use it.
7104 * src/print.c (print_core): Likewise.
7105 * tests/conflicts.at (Defaulted Conflicted Reduction),
7106 (Unresolved SR Conflicts): Adjust.
7107 (Unresolved SR Conflicts): Adjust and rename as...
7108 (Resolved SR Conflicts): this, as was meant.
7109 * tests/regression.at (Web2c Report): Adjust.
7110
7111 2002-06-30 Akim Demaille <akim@epita.fr>
7112
7113 * src/print.c (state_default_rule_compute): New, extracted from...
7114 (print_reductions): here.
7115 Pessimize, but clarify the code.
7116 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
7117
7118 2002-06-30 Akim Demaille <akim@epita.fr>
7119
7120 * src/output.c (action_row): Let default_rule be always a rule
7121 number.
7122
7123 2002-06-30 Akim Demaille <akim@epita.fr>
7124
7125 * src/closure.c (print_firsts, print_fderives, closure):
7126 Use BITSET_EXECUTE.
7127 * src/lalr.c (lookaheads_print): Likewise.
7128 * src/state.c (state_rule_lookaheads_print): Likewise.
7129 * src/print_graph.c (print_core): Likewise.
7130 * src/print.c (print_reductions): Likewise.
7131 * src/output.c (action_row): Likewise.
7132 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
7133
7134 2002-06-30 Akim Demaille <akim@epita.fr>
7135
7136 * src/print_graph.c: Use report_flag.
7137
7138 2002-06-30 Akim Demaille <akim@epita.fr>
7139
7140 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
7141 to...
7142 * src/relation.h, src/relation.c (traverse, relation_digraph)
7143 (relation_print, relation_transpose): New.
7144
7145 2002-06-30 Akim Demaille <akim@epita.fr>
7146
7147 * src/state.h, src/state.c (shifts_to): New.
7148 * src/lalr.c (build_relations): Use it.
7149
7150 2002-06-30 Akim Demaille <akim@epita.fr>
7151
7152 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
7153 (item_number_of_rule_number, rule_number_of_item_number): New.
7154 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
7155 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7156 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
7157 Propagate their use.
7158 Much remains to be done, in particular wrt `shorts' from types.h.
7159
7160 2002-06-30 Akim Demaille <akim@epita.fr>
7161
7162 * src/symtab.c (symbol_new): Initialize the `printer' member.
7163
7164 2002-06-30 Akim Demaille <akim@epita.fr>
7165
7166 * src/LR0.c (save_reductions): Remove, replaced by...
7167 * src/state.h, src/state.c (state_reductions_set): New.
7168 (reductions, errs): Rename as...
7169 (reductions_t, errs_t): these.
7170 Adjust all dependencies.
7171
7172 2002-06-30 Akim Demaille <akim@epita.fr>
7173
7174 * src/LR0.c (state_list_t, state_list_append): New.
7175 (first_state, last_state): Now symbol_list_t.
7176 (this_state): Remove.
7177 (new_itemsets, append_states, save_reductions): Take a state_t as
7178 argument.
7179 (set_states, generate_states): Adjust.
7180 (save_shifts): Remove, replaced by...
7181 * src/state.h, src/state.c (state_shifts_set): New.
7182 (shifts): Rename as...
7183 (shifts_t): this.
7184 Adjust all dependencies.
7185 * src/state.h (state_t): Remove the `next' member.
7186
7187 2002-06-30 Akim Demaille <akim@epita.fr>
7188
7189 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
7190 escaped in slot 0.
7191
7192 2002-06-30 Akim Demaille <akim@epita.fr>
7193
7194 Use hash.h for the state hash table.
7195
7196 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
7197 (allocate_storage): Use state_hash_new.
7198 (free_storage): Use state_hash_free.
7199 (new_state, get_state): Adjust.
7200 * src/lalr.h, src/lalr.c (states): Move to...
7201 * src/states.h (state_t): Remove the `link' member, no longer
7202 used.
7203 * src/states.h, src/states.c: here.
7204 (state_hash_new, state_hash_free, state_hash_lookup)
7205 (state_hash_insert, states_free): New.
7206 * src/states.c (state_table, state_compare, state_hash): New.
7207 * src/output.c (output_actions): Do not free states now, since we
7208 still need to know the final_state number in `prepare', called
7209 afterwards. Do it...
7210 * src/main.c (main): here: call states_free after `output'.
7211
7212 2002-06-30 Akim Demaille <akim@epita.fr>
7213
7214 * src/state.h, src/state.c (state_new): New, extracted from...
7215 * src/LR0.c (new_state): here.
7216 * src/state.h (STATE_ALLOC): Move to...
7217 * src/state.c: here.
7218 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
7219 * src/state.h, src/state.c: here.
7220
7221 2002-06-30 Akim Demaille <akim@epita.fr>
7222
7223 * src/reader.c (gensym): Rename as...
7224 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
7225 (getsym): Rename as...
7226 (symbol_get): this.
7227
7228 2002-06-30 Akim Demaille <akim@epita.fr>
7229
7230 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
7231 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
7232 * src/output.c, src/print.c, src/print_graph.c: Propagate.
7233 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
7234
7235 2002-06-30 Akim Demaille <akim@epita.fr>
7236
7237 Make the test suite pass with warnings checked.
7238
7239 * tests/actions.at (Printers and Destructors): Improve.
7240 Avoid unsigned vs. signed issues.
7241 * tests/calc.at: Don't exercise the scanner here, do it...
7242 * tests/input.at (Torturing the Scanner): here.
7243
7244 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7245
7246 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
7247 reorganize first lines parallel to yacc.c.
7248
7249 2002-06-28 Akim Demaille <akim@epita.fr>
7250
7251 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
7252 (b4_token_enum, b4_token_defines): New, factored from...
7253 * data/lalr1.cc, data/yacc.c, glr.c: here.
7254
7255 2002-06-28 Akim Demaille <akim@epita.fr>
7256
7257 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
7258 unused variables.
7259 * src/output.c (merger_output): static.
7260
7261 2002-06-28 Akim Demaille <akim@epita.fr>
7262
7263 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
7264 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
7265 pacify GCC.
7266 * src/output.c (save_row): Initialize all the variables to pacify GCC.
7267
7268 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7269
7270 Accumulated changelog for new GLR parsing features.
7271
7272 * src/conflicts.c (count_total_conflicts): Change name to
7273 conflicts_total_count.
7274 * src/conflicts.h: Ditto.
7275 * src/output.c (token_actions): Use the new name.
7276 (output_conflicts): Change conflp => conflict_list_heads, and
7277 confl => conflict_list for better readability.
7278 * data/glr.c: Use the new names.
7279 * NEWS: Add self to GLR announcement.
7280
7281 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
7282
7283 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
7284 Akim Demaille.
7285
7286 * data/bison.glr: Change name to glr.c
7287 * data/glr.c: Renamed from bison.glr.
7288 * data/Makefile.am: Add glr.c
7289
7290 * src/getargs.c:
7291
7292 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
7293 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
7294
7295 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7296
7297 * data/bison.glr: Be sure to restore the
7298 current #line when returning to the skeleton contents after having
7299 exposed the input file's #line.
7300
7301 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7302
7303 * data/bison.glr: Bring up to date with changes to bison.simple.
7304
7305 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7306
7307 * data/bison.glr: Correct definitions that use b4_prefix.
7308 Various reformatting.
7309 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
7310 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
7311 yytokenp argument; now part of stack.
7312 (yychar): Define to behave as documented.
7313 (yyclearin): Ditto.
7314
7315 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7316
7317 * src/reader.h: Add declaration for free_merger_functions.
7318
7319 * src/reader.c (merge_functions): New variable.
7320 (get_merge_function): New function.
7321 (free_merger_functions): New function.
7322 (readgram): Check for %prec that is not followed by a symbol.
7323 Handle %dprec and %merge declarations.
7324 (packgram): Initialize dprec and merger fields in rules array.
7325
7326 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
7327 conflict_list_cnt, conflict_list_free): New variables.
7328 (table_grow): Also grow conflict_table.
7329 (prepare_rules): Output dprec and merger tables.
7330 (conflict_row): New function.
7331 (action_row): Output conflict lists for GLR parser. Don't use
7332 default reduction in conflicted states for GLR parser so that there
7333 are spaces for the conflict lists.
7334 (save_row): Also save conflict information.
7335 (token_actions): Allocate conflict list.
7336 (merger_output): New function.
7337 (pack_vector): Pack conflict table, too.
7338 (output_conflicts): New function to output yyconflp and yyconfl.
7339 (output_check): Allocate conflict_tos.
7340 (output_actions): Output conflict tables, also.
7341 (output_skeleton): Output b4_mergers definition.
7342 (prepare): Output b4_max_rhs_length definition.
7343 Use 'bison.glr' as default skeleton for GLR parsers.
7344
7345 * src/gram.c (glr_parser): New flag.
7346 (grammar_free): Call free_merger_functions.
7347
7348 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
7349 all pairs of conflicting reductions, rather than just all tokens
7350 causing conflicts. Needed to size conflict tables.
7351 (conflicts_output): Modify call to count_rr_conflicts for new
7352 interface.
7353 (conflicts_print): Ditto.
7354 (count_total_conflicts): New function.
7355
7356 * src/reader.h (merger_list): New type.
7357 (merge_functions): New variable.
7358
7359 * src/lex.h (tok_dprec, tok_merge): New token types.
7360
7361 * src/gram.h (rule_s): Add dprec and merger fields.
7362 (glr_parser): New flag.
7363
7364 * src/conflicts.h (count_total_conflicts): New function.
7365
7366 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
7367
7368 * doc/bison.texinfo (Generalized LR Parsing): New section.
7369 (GLR Parsers): New section.
7370 (Language and Grammar): Mention GLR parsing.
7371 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
7372 Correct typo ("tge" -> "the").
7373
7374 * data/bison.glr: New skeleton for GLR parsing.
7375
7376 * tests/cxx-gram.at: New tests for GLR parsing.
7377
7378 * tests/testsuite.at: Include cxx-gram.at.
7379
7380 * tests/Makefile.am: Add cxx-gram.at.
7381
7382 * src/parse-gram.y:
7383
7384 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
7385
7386 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
7387
7388 2002-06-27 Akim Demaille <akim@epita.fr>
7389
7390 * src/options.h, src/options.c: Remove.
7391 * src/getargs.c (short_options, long_options): New.
7392
7393 2002-06-27 Akim Demaille <akim@epita.fr>
7394
7395 * data/bison.simple, data/bison.c++: Rename as...
7396 * data/yacc.c, data/lalr1.cc: these.
7397 * doc/bison.texinfo (Environment Variables): Remove.
7398
7399 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
7400
7401 * src/getargs.c (report_argmatch): Initialize strtok().
7402
7403 2002-06-20 Akim Demaille <akim@epita.fr>
7404
7405 * data/bison.simple (b4_symbol_actions): New, replaces...
7406 (b4_symbol_destructor, b4_symbol_printer): these.
7407 (yysymprint): Be sure to call YYPRINT only for tokens, and using
7408 user token numbers.
7409
7410 2002-06-20 Akim Demaille <akim@epita.fr>
7411
7412 * data/bison.simple (yydestructor): Rename as...
7413 (yydestruct): this.
7414
7415 2002-06-20 Akim Demaille <akim@epita.fr>
7416
7417 * src/symtab.h, src/symtab.c (symbol_type_set)
7418 (symbol_destructor_set, symbol_precedence_set): The location is
7419 the last argument.
7420 Adjust all callers.
7421
7422 2002-06-20 Akim Demaille <akim@epita.fr>
7423
7424 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
7425 internals.
7426 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
7427 Takes a location.
7428 * src/symtab.h, src/symtab.c (symbol_class_set)
7429 (symbol_user_token_number_set): Likewise.
7430 Adjust all callers.
7431 Promote complain_at.
7432 * tests/input.at (Type Clashes): Adjust.
7433
7434 2002-06-20 Akim Demaille <akim@epita.fr>
7435
7436 * data/bison.simple (YYLEX): Fix the declaration when
7437 %pure-parser.
7438
7439 2002-06-20 Akim Demaille <akim@epita.fr>
7440
7441 * data/bison.simple (yysymprint): Don't print the token number,
7442 just its name.
7443 * tests/actions.at (Destructors): Rename as...
7444 (Printers and Destructors): this.
7445 Also exercise %printer.
7446
7447 2002-06-20 Akim Demaille <akim@epita.fr>
7448
7449 * data/bison.simple (YYDSYMPRINT): New.
7450 Use it to remove many of the #if YYDEBUG/if (yydebug).
7451
7452 2002-06-20 Akim Demaille <akim@epita.fr>
7453
7454 * src/symtab.h, src/symtab.c (symbol_t): printer and
7455 printer_location are new members.
7456 (symbol_printer_set): New.
7457 * src/parse-gram.y (PERCENT_PRINTER): New token.
7458 Handle its associated rule.
7459 * src/scan-gram.l: Adjust.
7460 (handle_destructor_at, handle_destructor_dollar): Rename as...
7461 (handle_symbol_code_at, handle_symbol_code_dollar): these.
7462 * src/output.c (symbol_printers_output): New.
7463 (output_skeleton): Call it.
7464 * data/bison.simple (yysymprint): New. Cannot be named yyprint
7465 since there are already many grammar files with a user `yyprint'.
7466 Replace the calls to YYPRINT to calls to yysymprint.
7467 * tests/calc.at: Adjust.
7468 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
7469 taking advantage of parser very internal details (stack size!).
7470
7471 2002-06-20 Akim Demaille <akim@epita.fr>
7472
7473 * src/scan-gram.l: Complete the scanner with the missing patterns
7474 to pacify Flex.
7475 Use `quote' and `symbol_tag_get' where appropriate.
7476
7477 2002-06-19 Akim Demaille <akim@epita.fr>
7478
7479 * tests/actions.at (Destructors): Augment to test locations.
7480 * data/bison.simple (yydestructor): Pass it the current location
7481 if locations are enabled.
7482 Prototype only when __STDC__ or C++.
7483 Change the argument names to move into the yy name space: there is
7484 user code here.
7485
7486 2002-06-19 Akim Demaille <akim@epita.fr>
7487
7488 * data/bison.simple (b4_pure_if): New.
7489 Use it instead of #ifdef YYPURE.
7490
7491 2002-06-19 Akim Demaille <akim@epita.fr>
7492
7493 * data/bison.simple (b4_location_if): New.
7494 Use it instead of #ifdef YYLSP_NEEDED.
7495
7496 2002-06-19 Akim Demaille <akim@epita.fr>
7497
7498 Prepare @$ in %destructor, but currently don't bind it in the
7499 skeleton, as %location use is not cleaned up yet.
7500
7501 * src/scan-gram.l (handle_dollar, handle_destructor_at)
7502 (handle_action_at): New.
7503 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
7504 a braced_code_t and a location as additional arguments.
7505 (handle_destructor_dollar): Instead of requiring `b4_eval', just
7506 unquote one when outputting `b4_dollar_dollar'.
7507 Adjust callers.
7508 * data/bison.simple (b4_eval): Remove.
7509 (b4_symbol_destructor): Adjust.
7510 * tests/input.at (Invalid @n): Adjust.
7511
7512 2002-06-19 Zack Weinberg <zack@codesourcery.com>
7513
7514 * doc/bison.texinfo: Document ability to have multiple
7515 prologue sections.
7516
7517 2002-06-18 Akim Demaille <akim@epita.fr>
7518
7519 * src/files.c (compute_base_names): When computing the output file
7520 names from the input file name, strip the directory part.
7521
7522 2002-06-18 Akim Demaille <akim@epita.fr>
7523
7524 * data/bison.simple.new: Comment changes.
7525 Reported by Andreas Schwab.
7526
7527 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
7528
7529 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
7530 there are no `label `yyoverflowlab' defined but not used' warnings
7531 when yyoverflow is defined.
7532
7533 2002-06-18 Akim Demaille <akim@epita.fr>
7534
7535 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
7536 new member.
7537 (symbol_destructor_set): Adjust.
7538 * src/output.c (symbol_destructors_output): Output the destructor
7539 locations.
7540 Output the symbol name.
7541 * data/bison.simple (b4_symbol_destructor): Adjust.
7542
7543 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
7544 and Akim Demaille <akim@epita.fr>
7545
7546 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
7547 what's left on the stack when the error recovery hits EOF.
7548 * tests/actions.at (Destructors): Complete to exercise this case.
7549
7550 2002-06-17 Akim Demaille <akim@epita.fr>
7551
7552 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
7553 arguments is really empty, not only equal to `[]'.
7554 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
7555 member.
7556 (symbol_destructor_set): New.
7557 * src/output.c (symbol_destructors_output): New.
7558 * src/reader.h (brace_code_t, current_braced_code): New.
7559 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
7560 (handle_dollar): Rename as...
7561 (handle_action_dollar): this.
7562 (handle_destructor_dollar): New.
7563 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
7564 (grammar_declaration): Use it.
7565 * data/bison.simple (yystos): Is always defined.
7566 (yydestructor): New.
7567 * tests/actions.at (Destructors): New.
7568 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
7569
7570 2002-06-17 Akim Demaille <akim@epita.fr>
7571
7572 * src/symlist.h, src/symlist.c (symbol_list_length): New.
7573 * src/scan-gram.l (handle_dollar, handle_at): Compute the
7574 rule_length only when needed.
7575 * src/output.c (actions_output, token_definitions_output): Output
7576 the full M4 block.
7577 * src/symtab.c: Don't access directly to the symbol tag, use
7578 symbol_tag_get.
7579 * src/parse-gram.y: Use symbol_list_free.
7580
7581 2002-06-17 Akim Demaille <akim@epita.fr>
7582
7583 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
7584 (symbol_list_prepend, get_type_name): Move to...
7585 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
7586 (symbol_list_prepend, symbol_list_n_type_name_get): here.
7587 Adjust all callers.
7588 (symbol_list_free): New.
7589 * src/scan-gram.l (handle_dollar): Takes a location.
7590 * tests/input.at (Invalid $n): Adjust.
7591
7592 2002-06-17 Akim Demaille <akim@epita.fr>
7593
7594 * src/reader.h, src/reader.c (symbol_list_new): Export it.
7595 (symbol_list_prepend): New.
7596 * src/parse-gram.y (%union): `list' is a new member.
7597 (symbols.1): New, replaces...
7598 (terms_to_prec.1, nterms_to_type.1): these.
7599 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
7600 Take a location as additional argument.
7601 Adjust all callers.
7602
7603 2002-06-15 Akim Demaille <akim@epita.fr>
7604
7605 * src/parse-gram.y: Move %token in the declaration section so that
7606 we don't depend upon CVS Bison.
7607
7608 2002-06-15 Akim Demaille <akim@epita.fr>
7609
7610 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
7611 * src/print.c (print_core): Use it.
7612
7613 2002-06-15 Akim Demaille <akim@epita.fr>
7614
7615 * src/conflicts.c (log_resolution): Accept the rule involved in
7616 the sr conflicts instead of the lookahead number that points to
7617 that rule.
7618 (flush_reduce): Accept the current lookahead vector as argument,
7619 instead of the index in LA.
7620 (resolve_sr_conflict): Accept the current number of lookahead
7621 bitset to consider for the STATE, instead of the index in LA.
7622 (set_conflicts): Adjust.
7623 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
7624
7625 2002-06-15 Akim Demaille <akim@epita.fr>
7626
7627 * src/state.h (state_t): Replace the `lookaheadsp' member, a
7628 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
7629 Adjust all dependencies.
7630 * src/lalr.c (initialize_lookaheads): Split into...
7631 (states_lookaheads_count, states_lookaheads_initialize): these.
7632 (lalr): Adjust.
7633
7634 2002-06-15 Akim Demaille <akim@epita.fr>
7635
7636 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
7637 out of...
7638 (grammar_rules_print): here.
7639 * src/reduce.c (reduce_output): Use it.
7640 * tests/reduce.at (Useless Rules, Reduced Automaton)
7641 (Underivable Rules): Adjust.
7642
7643 2002-06-15 Akim Demaille <akim@epita.fr>
7644
7645 Copy BYacc's nice way to report the grammar.
7646
7647 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
7648 New.
7649 Don't print the rules' location, it is confusing and useless.
7650 (rule_print): Use grammar_rhs_print.
7651 * src/print.c (print_grammar): Use grammar_rules_print.
7652
7653 2002-06-15 Akim Demaille <akim@epita.fr>
7654
7655 Complete and rationalize `useless thing' warnings.
7656
7657 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
7658 (symbol_tag_print): New.
7659 Use them everywhere in place of accessing directly the tag member.
7660 * src/gram.h, src/gram.c (rule_print): New.
7661 Use it where a rule used to be printed `by hand'.
7662 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
7663 (reduce_grammar_tables): Report the useless rules.
7664 (reduce_print): Useless things are a warning, not an error.
7665 Report it as such.
7666 * tests/reduce.at (Useless Nonterminals, Useless Rules):
7667 (Reduced Automaton, Underivable Rules): Adjust.
7668 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
7669 * tests/conflicts.at (Unresolved SR Conflicts)
7670 (Solved SR Conflicts): Adjust.
7671
7672 2002-06-15 Akim Demaille <akim@epita.fr>
7673
7674 Let symbols have a location.
7675
7676 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
7677 (getsym): Adjust.
7678 Adjust all callers.
7679 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
7680 Use location_t, not int.
7681 * src/symtab.c (symbol_check_defined): Take advantage of the
7682 location.
7683 * tests/regression.at (Invalid inputs): Adjust.
7684
7685 2002-06-15 Akim Demaille <akim@epita.fr>
7686
7687 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
7688 (input): Don't try to initialize yylloc here, do it in the
7689 scanner.
7690 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
7691 * src/gram.h (rule_t): Change line and action_line into location
7692 and action_location, of location_t type.
7693 Adjust all dependencies.
7694 * src/location.h, src/location.c (empty_location): New.
7695 * src/reader.h, src/reader.c (grammar_start_symbol_set)
7696 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
7697 (grammar_current_rule_symbol_append)
7698 (grammar_current_rule_action_append): Expect a location as argument.
7699 * src/reader.c (grammar_midrule_action): Adjust to attach an
7700 action's location as dummy symbol location.
7701 * src/symtab.h, src/symtab.c (startsymbol_location): New.
7702 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
7703 the line numbers.
7704
7705 2002-06-14 Akim Demaille <akim@epita.fr>
7706
7707 Grammar declarations may be found in the grammar section.
7708
7709 * src/parse-gram.y (rules_or_grammar_declaration): New.
7710 (declarations): Each declaration may end with a semicolon, not
7711 just...
7712 (grammar_declaration): `"%union"'.
7713 (grammar): Branch to rules_or_grammar_declaration.
7714
7715 2002-06-14 Akim Demaille <akim@epita.fr>
7716
7717 * src/main.c (main): Invoke scanner_free.
7718
7719 2002-06-14 Akim Demaille <akim@epita.fr>
7720
7721 * src/output.c (m4_invoke): Extracted from...
7722 (output_skeleton): here.
7723 Free tempfile.
7724
7725 2002-06-14 Akim Demaille <akim@epita.fr>
7726
7727 * src/parse-gram.y (directives, directive, gram)
7728 (grammar_directives, precedence_directives, precedence_directive):
7729 Rename as...
7730 (declarations, declaration, grammar, grammar_declaration)
7731 (precedence_declaration, precedence_declarator): these.
7732 (symbol_declaration): New.
7733
7734 2002-06-14 Akim Demaille <akim@epita.fr>
7735
7736 * src/files.c (action_obstack): Remove, unused.
7737 (output_obstack): Remove it, and all its dependencies, as it is no
7738 longer needed.
7739 * src/reader.c (epilogue_set): Build the epilogue in the
7740 muscle_obstack.
7741 * src/output.h, src/output.c (muscle_obstack): Move to...
7742 * src/muscle_tab.h, src/muscle_tab.h: here.
7743 (muscle_init): Initialize muscle_obstack.
7744 (muscle_free): New.
7745 * src/main.c (main): Call it.
7746
7747 2002-06-14 Akim Demaille <akim@epita.fr>
7748
7749 * src/location.h: New, extracted from...
7750 * src/reader.h: here.
7751 * src/Makefile.am (noinst_HEADERS): Merge into
7752 (bison_SOURCES): this.
7753 Add location.h.
7754 * src/parse-gram.y: Use location_t instead of Bison's.
7755 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
7756 Use location_t instead of ints.
7757
7758 2002-06-14 Akim Demaille <akim@epita.fr>
7759
7760 * data/bison.simple, data/bison.c++: Be sure to restore the
7761 current #line when returning to the skeleton contents after having
7762 exposed the input file's #line.
7763
7764 2002-06-12 Akim Demaille <akim@epita.fr>
7765
7766 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
7767 eager.
7768 * tests/actions.at (Exotic Dollars): New.
7769
7770 2002-06-12 Akim Demaille <akim@epita.fr>
7771
7772 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
7773 ['"/] too eagerly.
7774 * tests/input.at (Torturing the Scanner): New.
7775
7776 2002-06-11 Akim Demaille <akim@epita.fr>
7777
7778 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
7779 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
7780 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
7781 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
7782 * src/reader.c (reader): Use it.
7783
7784 2002-06-11 Akim Demaille <akim@epita.fr>
7785
7786 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
7787 Adjust all callers.
7788 (scanner_last_string_free): New.
7789
7790 2002-06-11 Akim Demaille <akim@epita.fr>
7791
7792 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
7793 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
7794 (last_string, YY_OBS_FREE): New.
7795 Use them when returning an ID.
7796
7797 2002-06-11 Akim Demaille <akim@epita.fr>
7798
7799 Have Bison grammars parsed by a Bison grammar.
7800
7801 * src/reader.c, src/reader.h (prologue_augment): New.
7802 * src/reader.c (copy_definition): Remove.
7803
7804 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
7805 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
7806 (grammar_current_rule_prec_set, grammar_current_rule_check)
7807 (grammar_current_rule_symbol_append)
7808 (grammar_current_rule_action_append): Export.
7809 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
7810 (symbol_list_action_append): Remove.
7811 Hook the routines from reader.
7812 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
7813 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
7814
7815 * src/reader.c (read_declarations): Remove, unused.
7816
7817 * src/parse-gram.y: Handle the epilogue.
7818 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
7819 (grammar_start_symbol_set): this.
7820 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
7821 * src/reader.c (readgram): Remove, unused.
7822 (reader): Adjust to insert eoftoken and axiom where appropriate.
7823
7824 * src/reader.c (copy_dollar): Replace with...
7825 * src/scan-gram.h (handle_dollar): this.
7826 * src/parse-gram.y: Remove `%thong'.
7827
7828 * src/reader.c (copy_at): Replace with...
7829 * src/scan-gram.h (handle_at): this.
7830
7831 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
7832 New.
7833
7834 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
7835 time being.
7836
7837 * src/reader.h, src/reader.c (grammar_rule_end): New.
7838
7839 * src/parse.y (current_type, current_class): New.
7840 Implement `%nterm', `%token' support.
7841 Merge `%term' into `%token'.
7842 (string_as_id): New.
7843 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
7844 type name.
7845
7846 * src/parse-gram.y: Be sure to handle properly the beginning of
7847 rules.
7848
7849 * src/parse-gram.y: Handle %type.
7850 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
7851
7852 * src/parse-gram.y: More directives support.
7853 * src/options.c: No longer handle source directives.
7854
7855 * src/parse-gram.y: Fix %output.
7856
7857 * src/parse-gram.y: Handle %union.
7858 Use the prologue locations.
7859 * src/reader.c (parse_union_decl): Remove.
7860
7861 * src/reader.h, src/reader.c (epilogue_set): New.
7862 * src/parse-gram.y: Use it.
7863
7864 * data/bison.simple, data/bison.c++: b4_stype is now either not
7865 defined, then default to int, or to the contents of %union,
7866 without `union' itself.
7867 Adjust.
7868 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
7869
7870 * src/output.c (actions_output): Don't output braces, as they are
7871 already handled by the scanner.
7872
7873 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
7874 characters to themselves.
7875
7876 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
7877 that the epilogue has a proper #line.
7878
7879 * src/parse-gram.y: Handle precedence/associativity.
7880
7881 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
7882 a terminal.
7883 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
7884 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
7885 at all to define terminals that cannot be emitted.
7886
7887 * src/scan-gram.l: Escape M4 characters.
7888
7889 * src/scan-gram.l: Working properly with escapes in user
7890 strings/characters.
7891
7892 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
7893 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
7894 grammar.
7895 Use more modest sizes, as for the time being the parser does not
7896 release memory, and therefore the process swallows a huge amount
7897 of memory.
7898
7899 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
7900 stricter %token grammar.
7901
7902 * src/symtab.h (associativity): Add `undef_assoc'.
7903 (symbol_precedence_set): Do nothing when passed an undef_assoc.
7904 * src/symtab.c (symbol_check_alias_consistence): Adjust.
7905
7906 * tests/regression.at (Invalid %directive): Remove, as it is now
7907 meaningless.
7908 (Invalid inputs): Adjust to the new error messages.
7909 (Token definitions): The new grammar doesn't allow too many
7910 eccentricities.
7911
7912 * src/lex.h, src/lex.c: Remove.
7913 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
7914 (copy_character, copy_string2, copy_string, copy_identifier)
7915 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
7916 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
7917 (parse_action): Remove.
7918 * po/POTFILES.in: Adjust.
7919
7920 2002-06-11 Akim Demaille <akim@epita.fr>
7921
7922 * src/reader.c (parse_action): Don't store directly into the
7923 rule's action member: return the action as a string.
7924 Don't require `rule_length' as an argument: compute it.
7925 (grammar_current_rule_symbol_append)
7926 (grammar_current_rule_action_append): New, eved out from
7927 (readgram): here.
7928 Remove `action_flag', `rulelength', unused now.
7929
7930 2002-06-11 Akim Demaille <akim@epita.fr>
7931
7932 * src/reader.c (grammar_current_rule_prec_set).
7933 (grammar_current_rule_check): New, eved out from...
7934 (readgram): here.
7935 Remove `xaction', `first_rhs': useless.
7936 * tests/input.at (Type clashes): New.
7937 * tests/existing.at (GNU Cim Grammar): Adjust.
7938
7939 2002-06-11 Akim Demaille <akim@epita.fr>
7940
7941 * src/reader.c (grammar_midrule_action): New, Eved out from
7942 (readgram): here.
7943
7944 2002-06-11 Akim Demaille <akim@epita.fr>
7945
7946 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
7947 New.
7948 (readgram): Use them as replacement of inlined code, crule and
7949 crule1.
7950
7951 2002-06-11 Akim Demaille <akim@epita.fr>
7952
7953 * src/reader.c (grammar_end, grammar_symbol_append): New.
7954 (readgram): Use them.
7955 Make the use of `p' as local as possible.
7956
7957 2002-06-10 Akim Demaille <akim@epita.fr>
7958
7959 GCJ's parser requires the tokens to be defined before the prologue.
7960
7961 * data/bison.simple: Output the token definition before the user's
7962 prologue.
7963 * tests/regression.at (Braces parsing, Duplicate string)
7964 (Mixing %token styles): Check the output from bison.
7965 (Early token definitions): New.
7966
7967 2002-06-10 Akim Demaille <akim@epita.fr>
7968
7969 * src/symtab.c (symbol_user_token_number_set): Don't complain when
7970 assigning twice the same user number to a token, so that we can
7971 use it in...
7972 * src/lex.c (lex): here.
7973 Also use `symbol_class_set' instead of hand written code.
7974 * src/reader.c (parse_assoc_decl): Likewise.
7975
7976 2002-06-10 Akim Demaille <akim@epita.fr>
7977
7978 * src/symtab.c, src/symtab.c (symbol_class_set)
7979 (symbol_user_token_number_set): New.
7980 * src/reader.c (parse_token_decl): Use them.
7981 Use a switch instead of ifs.
7982 Use a single argument.
7983
7984 2002-06-10 Akim Demaille <akim@epita.fr>
7985
7986 Remove `%thong' support as it is undocumented, unused, duplicates
7987 `%token's job, and creates useless e-mail traffic with people who
7988 want to know what it is, why it is undocumented, unused, and
7989 duplicates `%token's job.
7990
7991 * src/reader.c (parse_thong_decl): Remove.
7992 * src/options.c (option_table): Remove "thong".
7993 * src/lex.h (tok_thong): Remove.
7994
7995 2002-06-10 Akim Demaille <akim@epita.fr>
7996
7997 * src/symtab.c, src/symtab.c (symbol_type_set)
7998 (symbol_precedence_set): New.
7999 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
8000 (value_components_used): Remove, unused.
8001
8002 2002-06-09 Akim Demaille <akim@epita.fr>
8003
8004 Move symbols handling code out of the reader.
8005
8006 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
8007 (axiom): Move to...
8008 * src/symtab.h, src/symtab.c: here.
8009
8010 * src/gram.c (start_symbol): Remove: use startsymbol->number.
8011 * src/reader.c (startval): Rename as...
8012 * src/symtab.h, src/symtab.c (startsymbol): this.
8013 * src/reader.c: Adjust.
8014
8015 * src/reader.c (symbol_check_defined, symbol_make_alias)
8016 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
8017 (token_translations_init)
8018 Move to...
8019 * src/symtab.c: here.
8020 * src/reader.c (packsymbols): Move to...
8021 * src/symtab.h, src/symtab.c (symbols_pack): here.
8022 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
8023 argument.
8024
8025 2002-06-03 Akim Demaille <akim@epita.fr>
8026
8027 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
8028 then statements.
8029
8030 2002-06-03 Akim Demaille <akim@epita.fr>
8031
8032 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
8033 structs with non literals.
8034 * src/scan-skel.l: never-interactive.
8035 * src/conflicts.c (enum conflict_resolution_e): No trailing
8036 comma.
8037 * src/getargs.c (usage): Split long literal strings.
8038 Reported by Hans Aberg.
8039
8040 2002-05-28 Akim Demaille <akim@epita.fr>
8041
8042 * data/bison.c++: Use C++ ostreams.
8043 (cdebug_): New member.
8044
8045 2002-05-28 Akim Demaille <akim@epita.fr>
8046
8047 * src/output.c (output_skeleton): Be sure to allocate enough room
8048 for `/' _and_ for `\0' in full_skeleton.
8049
8050 2002-05-28 Akim Demaille <akim@epita.fr>
8051
8052 * data/bison.c++: Catch up with bison.simple:
8053 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8054 and Paul Eggert <eggert@twinsun.com>: `error' handing.
8055 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
8056 and popping traces.
8057
8058 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8059
8060 * src/output.c (output_skeleton): Put an explicit path in front of
8061 the skeleton file name, rather than relying on the -I directory,
8062 to partially alleviate effects of having a skeleton file lying around
8063 in the current directory.
8064
8065 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8066
8067 * src/conflicts.c (log_resolution): Correct typo:
8068 obstack_printf should be obstack_fgrow1.
8069
8070 2002-05-26 Akim Demaille <akim@epita.fr>
8071
8072 * src/state.h (state_t): `solved_conflicts' is a new member.
8073 * src/LR0.c (new_state): Set it to 0.
8074 * src/conflicts.h, src/conflicts.c (print_conflicts)
8075 (free_conflicts, solve_conflicts): Rename as...
8076 (conflicts_print, conflicts_free, conflicts_solve): these.
8077 Adjust callers.
8078 * src/conflicts.c (enum conflict_resolution_e)
8079 (solved_conflicts_obstack): New, used by...
8080 (log_resolution): this.
8081 Adjust to attach the conflict resolution to each state.
8082 Complete the description with the precedence/associativity
8083 information.
8084 (resolve_sr_conflict): Adjust.
8085 * src/print.c (print_state): Output its solved_conflicts.
8086 * tests/conflicts.at (Unresolved SR Conflicts)
8087 (Solved SR Conflicts): Exercise --report=all.
8088
8089 2002-05-26 Akim Demaille <akim@epita.fr>
8090
8091 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8092 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
8093 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
8094 (token_number_t, item_number_as_token_number)
8095 (token_number_as_item_number, muscle_insert_token_number_table):
8096 Rename as...
8097 (symbol_number_t, item_number_as_symbol_number)
8098 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
8099 these, since it is more appropriate.
8100
8101 2002-05-26 Akim Demaille <akim@epita.fr>
8102
8103 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
8104 `Error:' lines.
8105 * data/bison.simple (yystos) [YYDEBUG]: New.
8106 (yyparse) [YYDEBUG]: Display the symbols which are popped during
8107 error recovery.
8108 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
8109
8110 2002-05-25 Akim Demaille <akim@epita.fr>
8111
8112 * doc/bison.texinfo (Debugging): Split into...
8113 (Tracing): this new section, its former contents, and...
8114 (Understanding): this new section.
8115 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
8116 by...
8117 (report_flag): this.
8118 Adjust all dependencies.
8119 (report_args, report_types, report_argmatch): New.
8120 (usage, getargs): Report/support -r, --report.
8121 * src/options.h
8122 (struct option_table_struct): Rename as..,
8123 (struct option_table_s): this.
8124 Rename the `set_flag' member to `flag' to match with getopt_long's
8125 struct.
8126 * src/options.c (option_table): Split verbose into an entry for
8127 %verbose, and another for --verbose.
8128 Support --report/-r, so remove -r from the obsolete --raw.
8129 * src/print.c: Attach full item sets and lookaheads reports to
8130 report_flag instead of trace_flag.
8131 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
8132
8133 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8134 and Paul Eggert <eggert@twinsun.com>
8135
8136 * data/bison.simple (yyparse): Correct error handling to conform to
8137 POSIX and yacc. Specifically, after syntax error is discovered,
8138 do not reduce further before shifting the error token.
8139 Clean up the code a bit by removing the labels yyerrdefault,
8140 yyerrhandle, yyerrpop.
8141 * NEWS: Document the above.
8142
8143 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8144
8145 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
8146 type; it isn't always big enough, since it doesn't necessarily
8147 include non-terminals.
8148 (yytranslate): Expand definition of yy_token_number_type, so that
8149 the latter can be removed.
8150 (yy_token_number_type): Remove, only one use.
8151 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
8152 don't use TokenNumberType as element type.
8153
8154 * tests/regression.at: Modify expected output to agree with change
8155 to yyr1 and yytranslate.
8156
8157 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
8158
8159 * src/reader.c (parse_action): Use copy_character instead of
8160 obstack_1grow.
8161
8162 2002-05-13 Akim Demaille <akim@epita.fr>
8163
8164 * tests/regression.at (Token definitions): Prototype yylex and
8165 yyerror.
8166
8167 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8168
8169 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
8170 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
8171 32-bit arithmetic.
8172 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
8173
8174 2002-05-07 Akim Demaille <akim@epita.fr>
8175
8176 * tests/synclines.at: Be sure to prototype yylex and yyerror to
8177 avoid GCC warnings.
8178
8179 2002-05-07 Akim Demaille <akim@epita.fr>
8180
8181 Kill GCC warnings.
8182
8183 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
8184 over the RHS of each rule.
8185 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
8186 * src/state.h (state_t): Member `nitems' is unsigned short.
8187 * src/LR0.c (get_state): Adjust.
8188 * src/reader.c (packgram): Likewise.
8189 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
8190 `Type'.
8191 (muscle_insert_int_table): Remove, unused.
8192 (prepare_rules): Remove `max'.
8193
8194 2002-05-06 Akim Demaille <akim@epita.fr>
8195
8196 * src/closure.c (print_firsts): Display of the symbol tags.
8197 (bitmatrix_print): Move to...
8198 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
8199 here.
8200 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
8201
8202 2002-05-06 Akim Demaille <akim@epita.fr>
8203
8204 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
8205 hash_do_for_each.
8206
8207 2002-05-06 Akim Demaille <akim@epita.fr>
8208
8209 * src/LR0.c (new_state, get_state): Instead of using the global
8210 `kernel_size' and `kernel_base', have two new arguments:
8211 `core_size' and `core'.
8212 Adjust callers.
8213
8214 2002-05-06 Akim Demaille <akim@epita.fr>
8215
8216 * src/reader.c (packgram): No longer end `ritem' with a 0
8217 sentinel: it is not used.
8218
8219 2002-05-05 Akim Demaille <akim@epita.fr>
8220
8221 New experimental feature: display the lookaheads in the report and
8222 graph.
8223
8224 * src/print (print_core): When --trace-flag, display the rules
8225 lookaheads.
8226 * src/print_graph.c (print_core): Likewise.
8227 Swap the arguments.
8228 Adjust caller.
8229
8230 2002-05-05 Akim Demaille <akim@epita.fr>
8231
8232 * tests/torture.at (Many lookaheads): New test.
8233
8234 2002-05-05 Akim Demaille <akim@epita.fr>
8235
8236 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
8237 (GENERATE_MUSCLE_INSERT_TABLE): this.
8238 (output_int_table, output_unsigned_int_table, output_short_table)
8239 (output_token_number_table, output_item_number_table): Replace with...
8240 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
8241 (muscle_insert_short_table, muscle_insert_token_number_table)
8242 (muscle_insert_item_number_table): these.
8243 Adjust all callers.
8244 (prepare_tokens): Don't free `translations', since...
8245 * src/reader.h, src/reader.c (grammar_free): do it.
8246 Move to...
8247 * src/gram.h, src/gram.c (grammar_free): here.
8248 * data/bison.simple, data/bison.c++: b4_token_number_max is now
8249 b4_translate_max.
8250
8251 2002-05-05 Akim Demaille <akim@epita.fr>
8252
8253 * src/output.c (output_unsigned_int_table): New.
8254 (prepare_rules): `i' is unsigned.
8255 `prhs', `rline', `r2' are unsigned int.
8256 Rename muscle `rhs_number_max' as `rhs_max'.
8257 Output muscles `prhs_max', `rline_max', and `r2_max'.
8258 Free rline and r1.
8259 * data/bison.simple, data/bison.c++: Adjust to use these muscles
8260 to compute types instead of constant types.
8261 * tests/regression.at (Web2c Actions): Adjust.
8262
8263 2002-05-04 Akim Demaille <akim@epita.fr>
8264
8265 * src/symtab.h (SALIAS, SUNDEF): Rename as...
8266 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
8267 Adjust dependencies.
8268 * src/output.c (token_definitions_output): Be sure not to output a
8269 `#define 'a'' when fed with `%token 'a' "a"'.
8270 * tests/regression.at (Token definitions): New.
8271
8272 2002-05-03 Paul Eggert <eggert@twinsun.com>
8273
8274 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
8275 for K&R C.
8276
8277 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
8278
8279 * Makefile.am (SUBDIRS): Remove intl.
8280 (EXTRA_DIST): Add config/config.rpath.
8281
8282 2002-05-03 Akim Demaille <akim@epita.fr>
8283
8284 * data/bison.simple (m4_if): Don't output empty enums.
8285 And actually, output valid enum definitions :(.
8286
8287 2002-05-03 Akim Demaille <akim@epita.fr>
8288
8289 * configure.bat: Remove, completely obsolete.
8290 * Makefile.am (EXTRA_DIST): Adjust.
8291 Don't distribute config.rpath...
8292 * config/Makefile.am (EXTRA_DIST): Do it.
8293
8294 2002-05-03 Akim Demaille <akim@epita.fr>
8295
8296 * configure.in (GETTEXT_VERSION): New.
8297 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
8298
8299 2002-05-03 Akim Demaille <akim@epita.fr>
8300
8301 * data/bison.simple (b4_token_enum): New.
8302 (b4_token_defines): Use it to output tokens both as #define and
8303 enums.
8304 Suggested by Paul Eggert.
8305 * src/output.c (token_definitions_output): Don't output spurious
8306 white spaces.
8307
8308 2002-05-03 Akim Demaille <akim@epita.fr>
8309
8310 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
8311
8312 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
8313
8314 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
8315 Update the stack class, give a try to deque as the default container.
8316
8317 2002-05-02 Akim Demaille <akim@epita.fr>
8318
8319 * data/bison.simple (yyparse): Do not implement @$ = @1.
8320 (YYLLOC_DEFAULT): Adjust to do it.
8321 * doc/bison.texinfo (Location Default Action): Fix.
8322
8323 2002-05-02 Akim Demaille <akim@epita.fr>
8324
8325 * src/reader.c (parse_braces): Merge into...
8326 (parse_action): this.
8327
8328 2002-05-02 Akim Demaille <akim@epita.fr>
8329
8330 * configure.in (ALL_LINGUAS): Remove.
8331 * po/LINGUAS, hr.po: New.
8332
8333 2002-05-02 Akim Demaille <akim@epita.fr>
8334
8335 Remove the so called hairy (semantic) parsers.
8336
8337 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
8338 * src/gram.h, src/gram.c (semantic_parser): Remove.
8339 (rule_t): Remove the guard and guard_line members.
8340 * src/lex.h (token_t): remove tok_guard.
8341 * src/options.c (option_table): Remove %guard and %semantic_parser
8342 support.
8343 * src/output.c, src/output.h (guards_output): Remove.
8344 (prepare): Adjust.
8345 (token_definitions_output): Don't output the `T'
8346 tokens (???).
8347 (output_skeleton): Don't output the guards.
8348 * src/files.c, src/files.c (attrsfile): Remove.
8349 * src/reader.c (symbol_list): Remove the guard and guard_line
8350 members.
8351 Adjust dependencies.
8352 (parse_guard): Remove.
8353 * data/bison.hairy: Remove.
8354 * doc/bison.texinfo (Environment Variables): Remove occurrences of
8355 BISON_HAIRY.
8356
8357 2002-05-02 Akim Demaille <akim@epita.fr>
8358
8359 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
8360 (parse_guard): Rename the formal argument `stack_offset' as
8361 `rule_length', which is more readable.
8362 Adjust callers.
8363 (copy_at, copy_dollar): Instead of outputting the hard coded
8364 values of $$, $n and so forth, output invocation to b4_lhs_value,
8365 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
8366 Note: this patch partially drops `semantic-parser' support: it
8367 always does `rule_length - n', where semantic parsers ought to
8368 always use `-n'.
8369 * data/bison.simple, data/bison.c++ (b4_lhs_value)
8370 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
8371
8372 2002-05-02 Akim Demaille <akim@epita.fr>
8373
8374 * configure.in (AC_INIT): Bump to 1.49b.
8375 (AM_INIT_AUTOMAKE): Short invocation.
8376
8377 2002-05-02 Akim Demaille <akim@epita.fr>
8378
8379 Version 1.49a.
8380
8381 2002-05-01 Akim Demaille <akim@epita.fr>
8382
8383 * src/skeleton.h: Remove.
8384
8385 2002-05-01 Akim Demaille <akim@epita.fr>
8386
8387 * src/skeleton.h: Fix the #endif.
8388 Reported by Magnus Fromreide.
8389
8390 2002-04-26 Paul Eggert <eggert@twinsun.com>
8391
8392 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
8393 Define if we define YYSTYPE and YYLTYPE, respectively.
8394 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8395
8396 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
8397
8398 * src/scan-skel.l: Postprocess quadrigraphs.
8399
8400 * src/reader.c (copy_character): New function, used to output
8401 single characters while replacing `[' and `]' with quadrigraphs, to
8402 avoid troubles with M4 quotes.
8403 (copy_comment): Output characters with copy_character.
8404 (read_additionnal_code): Likewise.
8405 (copy_string2): Likewise.
8406 (copy_definition): Likewise.
8407
8408 * tests/calc.at: Exercise M4 quoting.
8409
8410 2002-04-25 Akim Demaille <akim@epita.fr>
8411
8412 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
8413 between `!' and the command.
8414 Reported by Paul Eggert.
8415
8416 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
8417
8418 * tests/calc.at: Exercise prologue splitting.
8419
8420 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
8421 `b4_post_prologue' instead of `b4_prologue'.
8422
8423 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
8424 muscles.
8425 (output): Free pre_prologue_obstack and post_prologue_obstack.
8426 * src/files.h, src/files.c (attrs_obstack): Remove.
8427 (pre_prologue_obstack, post_prologue_obstack): New.
8428 * src/reader.c (copy_definition): Add a parameter to specify the
8429 obstack to fill, instead of using attrs_obstack unconditionally.
8430 (read_declarations): Pass pre_prologue_obstack to copy_definition if
8431 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
8432
8433 2002-04-23 Paul Eggert <eggert@twinsun.com>
8434
8435 * data/bison.simple: Remove unnecessary commentary and white
8436 space differences from 1_29-branch.
8437 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
8438
8439 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
8440 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
8441 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
8442 constructors or destructors.
8443
8444 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
8445
8446 2002-04-23 Akim Demaille <akim@epita.fr>
8447
8448 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
8449 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
8450 location with columns.
8451 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
8452 All reported by Paul Eggert.
8453
8454 2002-04-22 Akim Demaille <akim@epita.fr>
8455
8456 * src/reduce.c (dump_grammar): Move to...
8457 * src/gram.h, src/gram.c (grammar_dump): here.
8458 Be sure to separate long item numbers.
8459 Don't read the members of a rule's prec if its nil.
8460
8461 2002-04-22 Akim Demaille <akim@epita.fr>
8462
8463 * src/output.c (table_size, table_grow): New.
8464 (MAXTABLE): Remove, replace uses with table_size.
8465 (pack_vector): Instead of dying when the table is too big, grow it.
8466
8467 2002-04-22 Akim Demaille <akim@epita.fr>
8468
8469 * data/bison.simple (yyr1): Its type is that of a token number.
8470 * data/bison.c++ (r1_): Likewise.
8471 * tests/regression.at (Web2c Actions): Adjust.
8472
8473 2002-04-22 Akim Demaille <akim@epita.fr>
8474
8475 * src/reader.c (token_translations_init): 256 is now the default
8476 value for the error token, i.e., it will be assigned another
8477 number if the user assigned 256 to one of her tokens.
8478 (reader): Don't force 256 to error.
8479 * doc/bison.texinfo (Symbols): Adjust.
8480 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
8481 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
8482 etc. instead of 10, 20, 30 (which was used to `jump' over error
8483 (256) and undefined (2)).
8484
8485 2002-04-22 Akim Demaille <akim@epita.fr>
8486
8487 Propagate more token_number_t.
8488
8489 * src/gram.h (token_number_as_item_number)
8490 (item_number_as_token_number): New.
8491 * src/output.c (GENERATE_OUTPUT_TABLE): New.
8492 Use it to create output_item_number_table and
8493 output_token_number_table.
8494 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8495 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
8496 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
8497 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
8498
8499 2002-04-22 Akim Demaille <akim@epita.fr>
8500
8501 * src/output.h, src/output.c (get_lines_number): Remove.
8502
8503 2002-04-19 Akim Demaille <akim@epita.fr>
8504
8505 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
8506 as Lex/Flex'.
8507 (Debugging): More details about enabling the debugging features.
8508 (Table of Symbols): Describe $$, $n, @$, and @n.
8509 Suggested by Tim Josling.
8510
8511 2002-04-19 Akim Demaille <akim@epita.fr>
8512
8513 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
8514
8515 2002-04-10 Akim Demaille <akim@epita.fr>
8516
8517 * src/system.h: Rely on HAVE_LIMITS_H.
8518 Suggested by Paul Eggert.
8519
8520 2002-04-09 Akim Demaille <akim@epita.fr>
8521
8522 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
8523 full stderr, and strip it according to the bison options, instead
8524 of composing the error message from different bits.
8525 This makes it easier to check for several error messages.
8526 Adjust all the invocations.
8527 Add an invocation exercising the error token.
8528 Add an invocation demonstrating a stupid error message.
8529 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
8530 Adjust the tests.
8531 Error message are for stderr, not stdout.
8532
8533 2002-04-09 Akim Demaille <akim@epita.fr>
8534
8535 * src/gram.h, src/gram.c (error_token_number): Remove, use
8536 errtoken->number.
8537 * src/reader.c (reader): Don't specify the user token number (2)
8538 for $undefined, as it uselessly prevents using it.
8539 * src/gram.h (token_number_t): Move to...
8540 * src/symtab.h: here.
8541 (state_t.number): Is a token_number_t.
8542 * src/print.c, src/reader.c: Use undeftoken->number instead of
8543 hard coded 2.
8544 (Even though this 2 is not the same as above: the number of the
8545 undeftoken remains being 2, it is its user token number which
8546 might not be 2).
8547 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
8548 `user_token_number_max'.
8549 Output `undef_token_number'.
8550 * data/bison.simple, data/bison.c++: Use them.
8551 Be sure to map invalid yylex return values to
8552 `undef_token_number'. This saves us from gratuitous SEGV.
8553
8554 * tests/conflicts.at (Solved SR Conflicts)
8555 (Unresolved SR Conflicts): Adjust.
8556 * tests/regression.at (Web2c Actions): Adjust.
8557
8558 2002-04-08 Akim Demaille <akim@epita.fr>
8559
8560 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
8561 Adding #line.
8562 Remove the duplicate `typedefs'.
8563 (RhsNumberType): Fix the declaration and various other typos.
8564 Use __ofile__.
8565 * data/bison.simple: Use __ofile__.
8566 * src/scan-skel.l: Handle __ofile__.
8567
8568 2002-04-08 Akim Demaille <akim@epita.fr>
8569
8570 * src/gram.h (item_number_t): New, the type of item numbers in
8571 RITEM. Note that it must be able to code symbol numbers as
8572 positive number, and the negation of rule numbers as negative
8573 numbers.
8574 Adjust all dependencies (pretty many).
8575 * src/reduce.c (rule): Remove this `short *' pointer: use
8576 item_number_t.
8577 * src/system.h (MINSHORT, MAXSHORT): Remove.
8578 Include `limits.h'.
8579 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
8580 (shortcpy): Remove.
8581 (MAXTABLE): Move to...
8582 * src/output.c (MAXTABLE): here.
8583 (prepare_rules): Use output_int_table to output rhs.
8584 * data/bison.simple, data/bison.c++: Adjust.
8585 * tests/torture.at (Big triangle): Move the limit from 254 to
8586 500.
8587 * tests/regression.at (Web2c Actions): Ajust.
8588
8589 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
8590 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
8591 passes, but produces negative #line number, once fixed, GCC is
8592 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
8593 C), it passes.
8594 * src/state.h (state_h): Code input lines on ints, not shorts.
8595
8596 2002-04-08 Akim Demaille <akim@epita.fr>
8597
8598 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
8599 and then the grammar.
8600
8601 2002-04-08 Akim Demaille <akim@epita.fr>
8602
8603 * src/system.h: No longer using strndup.
8604
8605 2002-04-07 Akim Demaille <akim@epita.fr>
8606
8607 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
8608 * src/output.c (output_table_data): Return the longest number.
8609 (prepare_tokens): Output `token_number_max').
8610 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
8611 New.
8612 Use them to define yy_token_number_type/TokenNumberType.
8613 Use this type for yytranslate.
8614 * tests/torture.at (Big triangle): Push the limit from 124 to
8615 253.
8616 * tests/regression.at (Web2c Actions): Adjust.
8617
8618 2002-04-07 Akim Demaille <akim@epita.fr>
8619
8620 * tests/torture.at (Big triangle): New.
8621 (GNU AWK Grammar, GNU Cim Grammar): Move to...
8622 * tests/existing.at: here.
8623
8624 2002-04-07 Akim Demaille <akim@epita.fr>
8625
8626 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
8627 nritems.
8628 Adjust dependencies.
8629
8630 2002-04-07 Akim Demaille <akim@epita.fr>
8631
8632 * src/reader.c: Normalize increments to prefix form.
8633
8634 2002-04-07 Akim Demaille <akim@epita.fr>
8635
8636 * src/reader.c, symtab.c: Remove debugging code.
8637
8638 2002-04-07 Akim Demaille <akim@epita.fr>
8639
8640 Rename all the `bucket's as `symbol_t'.
8641
8642 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
8643 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
8644 * src/symtab.c, src/symtab.h (bucket): Rename as...
8645 (symbol_t): this.
8646 (symbol_list_new, bucket_check_defined, bucket_make_alias)
8647 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
8648 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
8649 (buckets_new, buckets_free, buckets_do): Rename as...
8650 (symbol_list_new, symbol_check_defined, symbol_make_alias)
8651 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
8652 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
8653 (symbols_new, symbols_free, symbols_do): these.
8654
8655 2002-04-07 Akim Demaille <akim@epita.fr>
8656
8657 Use lib/hash for the symbol table.
8658
8659 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
8660 EOF.
8661 * src/lex.c (lex): Set the `number' member of new terminals.
8662 * src/reader.c (bucket_check_defined, bucket_make_alias)
8663 (bucket_check_alias_consistence, bucket_translation): New.
8664 (reader, grammar_free, readgram, token_translations_init)
8665 (packsymbols): Adjust.
8666 (reader): Number the predefined tokens.
8667 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
8668 for predefined tokens.
8669 * src/symtab.h (bucket): Remove all the hash table related
8670 members.
8671 * src/symtab.c (symtab): Replace by...
8672 (bucket_table): this.
8673 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
8674 (buckets_new, buckets_do): New.
8675
8676 2002-04-07 Akim Demaille <akim@epita.fr>
8677
8678 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
8679 (start_symbol, max_user_token_number, semantic_parser)
8680 (error_token_number): Initialize.
8681 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
8682 Initialize.
8683 (reader): Don't.
8684 (errtoken, eoftoken, undeftoken, axiom): Extern.
8685
8686 2002-04-07 Akim Demaille <akim@epita.fr>
8687
8688 * src/gram.h (rule_s): prec and precsym are now pointers
8689 to the bucket giving the priority/associativity.
8690 Member `associativity' removed: useless.
8691 * src/reduce.c, src/conflicts.c: Adjust.
8692
8693 2002-04-07 Akim Demaille <akim@epita.fr>
8694
8695 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
8696 Properly escape the symbols' TAG when outputting them.
8697
8698 2002-04-07 Akim Demaille <akim@epita.fr>
8699
8700 * src/lalr.h (LA): Is a bitsetv, not bitset*.
8701
8702 2002-04-07 Akim Demaille <akim@epita.fr>
8703
8704 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
8705 (LArule): this, which is an array to rule_t*.
8706 * src/print.c, src/conflicts.c: Adjust.
8707
8708 2002-04-07 Akim Demaille <akim@epita.fr>
8709
8710 * src/gram.h (rule_t): Rename `number' as `user_number'.
8711 `number' is a new member.
8712 Adjust dependencies.
8713 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
8714
8715 2002-04-07 Akim Demaille <akim@epita.fr>
8716
8717 As a result of the previous patch, it is no longer needed
8718 to reorder ritem itself.
8719
8720 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
8721
8722 2002-04-07 Akim Demaille <akim@epita.fr>
8723
8724 Be sure never to walk through RITEMS, but use only data related to
8725 the rules themselves. RITEMS should be banished.
8726
8727 * src/output.c (output_token_translations): Rename as...
8728 (prepare_tokens): this.
8729 In addition to `translate', prepare the muscles `tname' and
8730 `toknum', which were handled by...
8731 (output_rule_data): this.
8732 Remove, and move the remainder of its outputs into...
8733 (prepare_rules): this new routines, which also merges content from
8734 (output_gram): this.
8735 (prepare_rules): Be sure never to walk through RITEMS.
8736 (output_stos): Rename as...
8737 (prepare_stos): this.
8738 (output): Always invoke prepare_states, after all, just don't use it
8739 in the output if you don't need it.
8740
8741 2002-04-07 Akim Demaille <akim@epita.fr>
8742
8743 * src/LR0.c (new_state): Display `nstates' as the name of the
8744 newly created state.
8745 Adjust to initialize first_state and last_state if needed.
8746 Be sure to distinguish the initial from the final state.
8747 (new_states): Create the itemset of the initial state, and use
8748 new_state.
8749 * src/closure.c (closure): Now that the initial state has its
8750 items properly set, there is no need for a special case when
8751 creating `ruleset'.
8752
8753 As a result, now the rule 0, reducing to $axiom, is visible in the
8754 outputs. Adjust the test suite.
8755
8756 * tests/conflicts.at (Solved SR Conflicts)
8757 (Unresolved SR Conflicts): Adjust.
8758 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
8759 * tests/conflicts.at (S/R in initial): New.
8760
8761 2002-04-07 Akim Demaille <akim@epita.fr>
8762
8763 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
8764 the RHS of the rules.
8765 * src/output.c (output_gram): Likewise.
8766
8767 2002-04-07 Akim Demaille <akim@epita.fr>
8768
8769 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
8770 bucket.
8771 Adjust all dependencies.
8772 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
8773 `number' of the buckets too.
8774 * src/gram.h: Include `symtab.h'.
8775 (associativity): Move to...
8776 * src/symtab.h: here.
8777 No longer include `gram.h'.
8778
8779 2002-04-07 Akim Demaille <akim@epita.fr>
8780
8781 * src/gram.h, src/gram.c (rules_rhs_length): New.
8782 (ritem_longest_rhs): Use it.
8783 * src/gram.h (rule_t): `number' is a new member.
8784 * src/reader.c (packgram): Set it.
8785 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
8786 the end of `rules', and count them out of `nrules'.
8787 (reduce_output, dump_grammar): Adjust.
8788 * src/print.c (print_grammar): It is no longer needed to check for
8789 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
8790 * tests/reduce.at (Reduced Automaton): New test.
8791
8792 2002-04-07 Akim Demaille <akim@epita.fr>
8793
8794 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
8795 lacking `+ 1' to nrules, Bison reported as useless a token if it
8796 was used solely to set the precedence of the last rule...
8797
8798 2002-04-07 Akim Demaille <akim@epita.fr>
8799
8800 * data/bison.c++, data/bison.simple: Don't output the current file
8801 name in #line, to avoid useless diffs between two identical
8802 outputs under different names.
8803
8804 2002-04-07 Akim Demaille <akim@epita.fr>
8805
8806 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
8807 Normalize loops to using `< nrules + 1', not `<= nrules'.
8808
8809 2002-04-07 Akim Demaille <akim@epita.fr>
8810
8811 * TODO: Update.
8812
8813 2002-04-07 Akim Demaille <akim@epita.fr>
8814
8815 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
8816 bucket.value as bucket.number.
8817
8818 2002-04-07 Akim Demaille <akim@epita.fr>
8819
8820 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
8821 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
8822 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
8823 RHS, instead of being an index in RITEMS.
8824
8825 2002-04-04 Paul Eggert <eggert@twinsun.com>
8826
8827 * doc/bison.texinfo: Update copyright date.
8828 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
8829 (Symbols): Warn about running Bison in one character set,
8830 but compiling and/or running in an incompatible one.
8831 Warn about character code 256, too.
8832
8833 2002-04-03 Paul Eggert <eggert@twinsun.com>
8834
8835 * src/bison.data (YYSTACK_ALLOC): Depend on whether
8836 YYERROR_VERBOSE is nonzero, not whether it is defined.
8837
8838 Merge changes from bison-1_29-branch.
8839
8840 2002-03-20 Paul Eggert <eggert@twinsun.com>
8841
8842 Merge fixes from Debian bison_1.34-1.diff.
8843
8844 * configure.in (AC_PREREQ): 2.53.
8845
8846 2002-03-20 Akim Demaille <akim@epita.fr>
8847
8848 * src/conflicts.c (log_resolution): Argument `resolution' is const.
8849
8850 2002-03-19 Paul Eggert <eggert@twinsun.com>
8851
8852 * src/bison.simple (YYCOPY): New macro.
8853 (YYSTACK_RELOCATE): Use it.
8854 Remove Type arg; no longer needed. All callers changed.
8855 (yymemcpy): Remove; no longer needed.
8856
8857 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
8858 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8859
8860 2002-03-19 Akim Demaille <akim@epita.fr>
8861
8862 Test and fix the #line outputs.
8863
8864 * tests/atlocal.at (GCC): New.
8865 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
8866 (Prologue synch line, %union synch line, Postprologue synch line)
8867 (Action synch line, Epilogue synch line): New tests.
8868 * src/reader.c (parse_union_decl): Define the muscle stype_line.
8869 * data/bison.simple, data/bison.c++: Use it.
8870
8871 2002-03-19 Akim Demaille <akim@epita.fr>
8872
8873 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
8874 (Solved SR Conflicts, %expect not enough, %expect right)
8875 (%expect too much): Move to...
8876 * tests/conflicts.at: this new file.
8877
8878 2002-03-19 Akim Demaille <akim@epita.fr>
8879
8880 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
8881 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
8882 that we can move to enums for instance.
8883 * src/output.c (token_definitions_output): Output a list of
8884 `token-name, token-number' instead of the #define.
8885 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
8886
8887 2002-03-14 Akim Demaille <akim@epita.fr>
8888
8889 Use Gettext 0.11.1.
8890
8891 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
8892
8893 * data/bison.c++: Make the user able to add members to the generated
8894 parser by subclassing.
8895
8896 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
8897
8898 * src/reader.c (read_additionnal_code): `c' should be an integer, not
8899 a character.
8900 Reported by Nicolas Tisserand and Nicolas Burrus.
8901
8902 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
8903
8904 * src/reader.c: Warn about lacking semi-colons, do not complain.
8905
8906 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
8907
8908 * data/bison.c++: Remove a debug line.
8909
8910 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
8911
8912 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
8913 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
8914 provide a default implementation.
8915
8916 2002-03-04 Akim Demaille <akim@epita.fr>
8917
8918 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
8919 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
8920 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
8921 * tests/semantic.at (Parsing Guards): Similarly.
8922 * src/reader.at (readgram): Complain if the last rule is not ended
8923 with a semi-colon.
8924
8925 2002-03-04 Akim Demaille <akim@epita.fr>
8926
8927 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
8928 * src/closure.c: here.
8929 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
8930 RTC.
8931 * src/warshall.h, src/warshall.c: Remove.
8932 * tests/sets.at (Broken Closure): Adjust.
8933
8934 2002-03-04 Akim Demaille <akim@epita.fr>
8935
8936 * src/output.c (output_skeleton): tempdir is const.
8937 bytes_read is unused.
8938
8939 2002-03-04 Akim Demaille <akim@epita.fr>
8940
8941 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
8942 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
8943 Update.
8944 From Michael Hayes.
8945
8946 2002-03-04 Akim Demaille <akim@epita.fr>
8947
8948 * src/closure.c (closure): `r' is unused.
8949
8950 2002-03-04 Akim Demaille <akim@epita.fr>
8951
8952 * tests/sets.at (Broken Closure): Add the ending `;'.
8953 * src/reader.at (readgram): Complain if a rule is not ended with a
8954 semi-colon.
8955
8956 2002-03-04 Akim Demaille <akim@epita.fr>
8957
8958 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
8959 (count_sr_conflicts): Use bitset_count.
8960 * src/reduce.c (inaccessable_symbols): Ditto.
8961 (bits_size): Remove.
8962 * src/warshall.h, src/warshall.c: Convert to bitsetv.
8963
8964 2002-03-04 Akim Demaille <akim@epita.fr>
8965
8966 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
8967 * src/reduce.c: Remove the `bitset_zero's following the
8968 `bitset_create's, as now it is performed by the latter.
8969
8970 2002-03-04 Akim Demaille <akim@epita.fr>
8971
8972 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
8973 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
8974 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
8975 latest sources from Michael.
8976
8977 2002-03-04 Akim Demaille <akim@epita.fr>
8978
8979 * src/output.c (output): Don't free the grammar.
8980 * src/reader.c (grammar_free): New.
8981 * src/main.c (main): Call it and don't free symtab here.
8982
8983 2002-03-04 Akim Demaille <akim@epita.fr>
8984
8985 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
8986 before returning.
8987 Reported by Benoit Perrot.
8988
8989 2002-03-04 Akim Demaille <akim@epita.fr>
8990
8991 Use bitset operations when possible, not loops over bits.
8992
8993 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
8994 bitset_or.
8995 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
8996 * src/reduce.c (useless_nonterminals): Formatting changes.
8997 * src/warshall.c (TC): Use bitset_or.
8998
8999 2002-03-04 Akim Demaille <akim@epita.fr>
9000
9001 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
9002 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
9003 Ditto.
9004
9005 2002-03-04 Akim Demaille <akim@epita.fr>
9006
9007 * src/lalr.c (F): Now a bitset*.
9008 Adjust all dependencies.
9009
9010 2002-03-04 Akim Demaille <akim@epita.fr>
9011
9012 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
9013 Adjust all dependencies.
9014
9015 2002-03-04 Akim Demaille <akim@epita.fr>
9016
9017 * src/L0.c, src/LR0.h (nstates): Be size_t.
9018 Adjust comparisons (signed vs unsigned).
9019 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
9020 bitset*.
9021 Adjust all dependencies.
9022
9023 2002-03-04 Akim Demaille <akim@epita.fr>
9024
9025 * src/closure.c (firsts): Now, also a bitset.
9026 Adjust all dependencies.
9027 (varsetsize): Remove, now unused.
9028 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
9029
9030 2002-03-04 Akim Demaille <akim@epita.fr>
9031
9032 * src/print.c: Convert to use bitset.h, not hand coded iterations
9033 over ints.
9034
9035 2002-03-04 Akim Demaille <akim@epita.fr>
9036
9037 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
9038
9039 2002-03-04 Akim Demaille <akim@epita.fr>
9040
9041 * src/closure.c (ruleset): Be a bitset.
9042 (rulesetsize): Remove.
9043
9044 2002-03-04 Akim Demaille <akim@epita.fr>
9045
9046 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
9047 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
9048 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
9049 * src/closure.c (fderives): Be an array of bitsets.
9050
9051 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
9052
9053 * data/bison.c++: Merge the two generated headers. Insert a copyright
9054 notice in each output file.
9055
9056 2002-02-28 Akim Demaille <akim@epita.fr>
9057
9058 * data/bison.c++: Copy the prologue of bison.simple to fetch
9059 useful M4 definitions, such as b4_header_guard.
9060
9061 2002-02-25 Akim Demaille <akim@epita.fr>
9062
9063 * src/getargs.c (version): Give the name of the authors, and use a
9064 translator friendly scheme for the bgr
9065 copyright notice.
9066
9067 2002-02-25 Akim Demaille <akim@epita.fr>
9068
9069 * src/output.c (header_output): Remove, now handled completely via
9070 M4.
9071
9072 2002-02-25 Akim Demaille <akim@epita.fr>
9073
9074 * m4/m4.m4: New, from CVS Autoconf.
9075 * configure.in: Invoke it.
9076 * src/output.c (output_skeleton): Use its result instead of the
9077 hard coded name.
9078
9079 2002-02-25 Akim Demaille <akim@epita.fr>
9080
9081 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
9082 Fileutils 4.1.5.
9083 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
9084 * src/output.c (output_skeleton): Use mkstemp to create a real
9085 temporary file.
9086 Move the filling of `skeleton' and its muscle to...
9087 (prepare): here.
9088 (output): Move the definition of the prologue muscle to...
9089 (prepare): here.
9090 * src/system.h (DEFAULT_TMPDIR): New.
9091
9092 2002-02-14 Paul Eggert <eggert@twinsun.com>
9093
9094 Remove the support for C++ namespace cleanliness; it was
9095 causing more problems than it was curing, since it didn't work
9096 properly on some nonstandard C++ compilers. This can wait
9097 for a proper C++ parser.
9098
9099 * NEWS: Document this.
9100 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
9101 of C++, as it's treated like C now.
9102 * src/bison.simple (YYSTD): Remove.
9103 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
9104 Treat C++ just like Standard C instead of trying to support
9105 namespace cleanliness.
9106
9107 2002-02-14 Akim Demaille <akim@epita.fr>
9108
9109 * tests/regression.at (else): Adjust to Andreas' change.
9110
9111 2002-02-14 Akim Demaille <akim@epita.fr>
9112
9113 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
9114
9115 2002-02-13 Andreas Schwab <schwab@suse.de>
9116
9117 * src/output.c (output_rule_data): Don't output NULL, it might
9118 not be defined yet.
9119
9120 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
9121
9122 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
9123 (Copyright notice): Update.
9124
9125 2002-02-11 Akim Demaille <akim@epita.fr>
9126
9127 * tests/regression.at (%nonassoc and eof): Don't include
9128 nonportable headers.
9129
9130 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
9131
9132 * data/bison.c++: Correct error recovery. Make the user able to
9133 initialize the starting location.
9134
9135 2002-02-07 Akim Demaille <akim@epita.fr>
9136
9137 * tests/input.at: New.
9138
9139 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
9140
9141 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9142 more consistent when naming methods and variables. Put preprocessor
9143 directives around tables only needed for debugging.
9144
9145 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
9146
9147 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
9148 C++ parsers.
9149 (yy::b4_name::parse): Use print_.
9150
9151 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
9152
9153 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
9154
9155 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
9156
9157 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
9158 C++ parsers.
9159 (yy::b4_name::parse): Build verbose error messages, and use error_.
9160
9161 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
9162
9163 * data/bison.c++: Fix m4 quoting in comments.
9164
9165 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
9166
9167 * data/bison.c++: Adjust the parser code. Fix some muscles that were
9168 not expanded by m4.
9169
9170 2002-02-05 Akim Demaille <akim@epita.fr>
9171
9172 * data/bison.c++: Adjust to the M4 back end.
9173 More is certainly needed.
9174
9175 2002-02-05 Akim Demaille <akim@epita.fr>
9176
9177 Give a try to M4 as a back end.
9178
9179 * lib/readpipe.c: New, from wdiff.
9180 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
9181 BISON_HAIRY.
9182 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
9183 specific values. Now it is m4 that performs the lookup.
9184 * src/parse-skel.y: Remove.
9185 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
9186 * src/output.c (actions_output, guards_output)
9187 (token_definitions_output): No longer keeps track of the output
9188 line number, hence remove the second argument.
9189 (guards_output): Check against the guard member of a rule, not the
9190 action member.
9191 Adjust callers.
9192 (output_skeleton): Don't look for the skeleton location, let m4 do
9193 that.
9194 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
9195 file will be used.
9196 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
9197 (prepare): Given that for the time being changesyntax is not
9198 usable in M4, rename the muscles using `-' to `_'.
9199 Define `defines_flag', `output_parser_name' and `output_header_name'.
9200 * src/output.h (actions_output, guards_output)
9201 (token_definitions_output): Adjust prototypes.
9202 * src/scan-skel.l: Instead of scanning the skeletons, it now
9203 processes the output of m4: `__oline__' and `#output'.
9204 * data/bison.simple: Adjust to be used by M4(sugar).
9205 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
9206 to date.
9207 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
9208 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
9209 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
9210 shamelessly stolen from CVS Autoconf.
9211
9212 2002-02-05 Akim Demaille <akim@epita.fr>
9213
9214 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
9215 * configure.in: Check for the declarations of free and malloc.
9216 * src/muscle_tab.c: Adjust.
9217
9218 2002-02-05 Akim Demaille <akim@epita.fr>
9219
9220 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
9221 which have no values.
9222
9223 2002-02-05 Akim Demaille <akim@epita.fr>
9224
9225 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
9226 * data/: here.
9227
9228 2002-01-29 Paul Eggert <eggert@twinsun.com>
9229
9230 * src/bison.simple (YYSIZE_T): Do not define merely because
9231 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
9232 On some platforms, <alloca.h> does not declare YYSTD (size_t).
9233
9234 2002-01-27 Akim Demaille <akim@epita.fr>
9235
9236 Fix `%nonassoc and eof'.
9237
9238 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
9239 which were not properly copied! Replace
9240 memcpy (res->errs, src->errs, src->nerrs);
9241 with
9242 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
9243 !!!
9244 * tests/regression.at (%nonassoc and eof): Adjust to newest
9245 Autotest: `.' is not in the PATH.
9246
9247 2002-01-27 Akim Demaille <akim@epita.fr>
9248
9249 * tests/sets.at (AT_EXTRACT_SETS): New.
9250 (Nullable): Use it.
9251 (Firsts): New.
9252
9253 2002-01-26 Akim Demaille <akim@epita.fr>
9254
9255 * tests/actions.at, tests/calc.at, tests/headers.at,
9256 * tests/torture.at: Adjust to the newest Autotest which no longer
9257 forces `.' in the PATH.
9258
9259 2002-01-25 Akim Demaille <akim@epita.fr>
9260
9261 * tests/regression.at (%nonassoc and eof): New.
9262 Suggested by Robert Anisko.
9263
9264 2002-01-24 Akim Demaille <akim@epita.fr>
9265
9266 Bison dumps core when trying to complain about broken input files.
9267 Reported by Cris van Pelt.
9268
9269 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
9270 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
9271 into...
9272 (Invalid inputs): Strengthen: exercise parse_percent_token.
9273
9274 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
9275
9276 * src/Makefile.am: Add bison.c++.
9277 * src/bison.c++: New skeleton.
9278
9279 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
9280
9281 * po/it.po: New.
9282
9283 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
9284
9285 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
9286
9287 2002-01-20 Marc Autret <marc@gnu.org>
9288
9289 * src/files.c (compute_output_file_names): Fix
9290
9291 2002-01-20 Marc Autret <marc@gnu.org>
9292
9293 * tests/output.at: New test.
9294 * src/files.c (compute_base_names): Don't map extensions when
9295 the YACC flag is set, use defaults.
9296 Reported by Evgeny Stambulchik.
9297
9298 2002-01-20 Marc Autret <marc@gnu.org>
9299
9300 * src/system.h: Need to define __attribute__ away for non-GCC
9301 compilers as well (i.e., the vendor C compiler).
9302 Suggested by Albert Chin-A-Young.
9303
9304 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
9305
9306 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
9307 canonical definition.
9308 * src/system.h: Use the canonical definition for PARAMS (avoids
9309 a conflict with the macro from lib/hash.h).
9310
9311 2002-01-11 Akim Demaille <akim@epita.fr>
9312
9313 * configure.in: Use AC_FUNC_STRNLEN.
9314 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
9315
9316 2002-01-09 Akim Demaille <akim@epita.fr>
9317
9318 * src/files.c, src/files.h (output_infix): New.
9319 (tab_extension): Remove.
9320 (compute_base_names): Compute the former, drop the latter.
9321 * src/output.c (prepare): Insert the muscles `output-infix', and
9322 `output-suffix'.
9323 * src/parse-skel.y (string, string.1): New.
9324 (section.header): Use it.
9325 (section.yacc): Remove.
9326 (prefix): Remove too.
9327 * src/scan-skel.l: Adjust.
9328 * src/bison.simple, src/bison.hairy: Adjust.
9329
9330 2002-01-09 Akim Demaille <akim@epita.fr>
9331
9332 * configure.in (WERROR_CFLAGS): Compute it.
9333 * src/Makefile.am (CFLAGS): Pass it.
9334 * tests/atlocal.in (CFLAGS): Idem.
9335 * src/files.c: Fix a few warnings.
9336 (get_extension_index): Remove, unused.
9337
9338 2002-01-08 Akim Demaille <akim@epita.fr>
9339
9340 * src/getargs.c (AS_FILE_NAME): New.
9341 (getargs): Use it to convert DOSish file names.
9342 * src/files.c (base_name): Rename as full_base_name to avoid
9343 clashes with `base_name ()'.
9344 (filename_split): New.
9345 (compute_base_names): N-th rewrite, using filename_split.
9346
9347 2002-01-08 Akim Demaille <akim@epita.fr>
9348
9349 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
9350 New, stolen from the Fileutils 4.1.
9351 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
9352 * configure.in: Check for the presence of memrchr, and of its
9353 prototype.
9354
9355 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
9356
9357 * lib/hash.h (__P): Added definition for this macro.
9358 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
9359 BUILT_SOURCES, to ensure they are generated first.
9360 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
9361 %error-verbose to allow bootstrapping with bison 1.30x.
9362
9363 2002-01-06 Akim Demaille <akim@epita.fr>
9364
9365 * src/reader.c (parse_braces): Don't fetch the next char, the
9366 convention is to fetch on entry.
9367 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
9368 'switch' without a following semicolon.
9369 * tests/regression.at (braces parsing): New.
9370
9371 2002-01-06 Akim Demaille <akim@epita.fr>
9372
9373 Bison is dead wrong in its RR conflict reports.
9374
9375 * tests/torture.at (GNU Cim Grammar): New.
9376 * src/conflicts.c (count_rr_conflicts): Fix.
9377
9378 2002-01-06 Akim Demaille <akim@epita.fr>
9379
9380 Creating package.m4 from configure.ac causes too many problems.
9381
9382 * tests/Makefile.am (package.m4): Create it by hand,
9383 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
9384
9385 2002-01-06 Akim Demaille <akim@epita.fr>
9386
9387 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
9388 skeleton.h.
9389
9390 2002-01-04 Paul Eggert <eggert@twinsun.com>
9391
9392 * doc/bison.texinfo (Debugging):
9393 Remove YYSTDERR; it's no longer defined or used.
9394 Also, s/cstdio.h/cstdio/.
9395
9396 2002-01-03 Akim Demaille <akim@epita.fr>
9397
9398 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
9399
9400 2002-01-03 Akim Demaille <akim@epita.fr>
9401
9402 * src/parse-skel.y (process_skeleton): Don't bind the parser's
9403 tracing code to --trace, wait for a better --trace option, with
9404 args.
9405
9406 2002-01-03 Akim Demaille <akim@epita.fr>
9407
9408 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
9409 The ISO C++ standard is extremely clear about it: stderr is
9410 considered a macro, not a regular symbol (see table 94 `Header
9411 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
9412 Therefore std:: does not apply to it. It still does with fprintf.
9413 Also, s/cstdio.h/cstdio/.
9414
9415 2002-01-03 Akim Demaille <akim@epita.fr>
9416
9417 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
9418 for non system headers.
9419
9420 2002-01-02 Akim Demaille <akim@epita.fr>
9421
9422 Equip the skeleton chain with location tracking, runtime trace,
9423 pure parser and scanner.
9424
9425 * src/parse-skel.y: Request a pure parser, locations, and prefix
9426 renaming.
9427 (%union): Having several members with the same type does not help
9428 type mismatches, simplify.
9429 (YYPRINT, yyprint): New.
9430 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
9431 (skel_error): this.
9432 Handle locations.
9433 * src/scan-skel.l: Adjust to these changes.
9434 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
9435 (LOCATION_PRINT, skel_control_t): New.
9436
9437 2001-12-30 Akim Demaille <akim@epita.fr>
9438
9439 * src/parse-skel.y: Get rid of the shift/reduce conflict:
9440 replace `gb' with BLANKS.
9441 * src/scan-skel.l: Adjust.
9442
9443 2001-12-30 Akim Demaille <akim@epita.fr>
9444
9445 * src/system.h: We don't need nor want bcopy.
9446 Throw away MS-DOS crap: we don't need getpid.
9447 * configure.in: We don't need strndup. It was even causing
9448 problems: because Flex includes the headers *before* us,
9449 _GNU_SOURCE is not defined by config.h, and therefore strndup was
9450 not visible.
9451 * lib/xstrndup.c: New.
9452 * src/scan-skel.l: Use it.
9453 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
9454 * src/parse-skel.y: Use %directives instead of #defines.
9455
9456 2001-12-30 Akim Demaille <akim@epita.fr>
9457
9458 * src/skeleton.h: New.
9459 * src/output.c (output_parser, output_master_parser): Remove, dead
9460 code.
9461 * src/output.h (get_lines_number, actions_output, guards_output)
9462 (token_definitions_output): Prototype them.
9463 * src/parse-skel.y: Add the license notice.
9464 Include output.h and skeleton.h.
9465 (process_skeleton): Returns void, and takes a single parameter.
9466 * src/scan-skel.l: Add the license notice.
9467 Include skeleton.h.
9468 Don't use %option yylineno: it seems that then Flex imagines
9469 REJECT has been used, and therefore it won't reallocate its
9470 buffers (which makes no other sense to me than a bug). It results
9471 in warnings for `unused: yy_flex_realloc'.
9472
9473 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
9474
9475 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9476 (MUSCLE_INSERT_PREFIX): ...to there.
9477 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9478 (MUSCLE_INSERT_PREFIX): Move from here...
9479
9480 * src/bison.hairy: Add a section directive. Put braces around muscle
9481 names. This parser skeleton is still broken, but Bison should not
9482 choke on a bad muscle 'syntax'.
9483 * src/bison.simple: Add a section directive. Put braces around muscle
9484 names.
9485
9486 * src/files.h (strsuffix, stringappend): Add declarations.
9487 (tab_extension): Add declaration.
9488 (short_base_name): Add declaration.
9489
9490 * src/files.c (strsuffix, stringappend): No longer static. These
9491 functions are used in the skeleton parser.
9492 (tab_extension): New.
9493 (compute_base_names): Use the computations done in this function
9494 to guess if the generated parsers should have '.tab' in their
9495 names.
9496 (short_base_name): No longer static.
9497
9498 * src/output.c (output_skeleton): New.
9499 (output): Disable call to output_master_parser, and give a try to
9500 a new skeleton handling system.
9501 (guards_output, actions_output): No longer static.
9502 (token_definitions_output, get_lines_number): No longer static.
9503
9504 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
9505
9506 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9507 parse-skel.y.
9508
9509 * src/parse-skel.y: New file.
9510 * src/scan-skel.l: New file.
9511
9512 2001-12-29 Akim Demaille <akim@epita.fr>
9513
9514 %name-prefix is broken.
9515
9516 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
9517 Adjust all dependencies.
9518 * tests/headers.at (export YYLTYPE): Strengthen this test: use
9519 %name-prefix.
9520
9521 Renaming yylval but not yylloc is not consistent. Now we do.
9522
9523 * src/bison.simple: Prefix yylloc if used.
9524 * doc/bison.texinfo (Decl Summary): Document that.
9525
9526 2001-12-29 Akim Demaille <akim@epita.fr>
9527
9528 * doc/bison.texinfo: Promote `%long-directive' over
9529 `%long_directive'.
9530 Remove all references to fixed-output-files, yacc is enough.
9531
9532 2001-12-29 Akim Demaille <akim@epita.fr>
9533
9534 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
9535 user prologue. These are defaults.
9536 * tests/actions.at (Mid-rule actions): Make sure the user can
9537 define YYDEBUG and YYERROR_VERBOSE.
9538
9539 2001-12-29 Akim Demaille <akim@epita.fr>
9540
9541 * src/output.c (header_output): Don't forget to export YYLTYPE and
9542 yylloc.
9543 * tests/headers.at (export YYLTYPE): New, make sure it does.
9544 * tests/regression.at (%union and --defines, Invalid CPP headers):
9545 Move to...
9546 * tests/headers.at: here.
9547
9548 2001-12-29 Akim Demaille <akim@epita.fr>
9549
9550 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
9551
9552 2001-12-29 Akim Demaille <akim@epita.fr>
9553
9554 * tests/actions.at (Mid-rule actions): Output on a single line
9555 instead of several.
9556
9557 2001-12-29 Akim Demaille <akim@epita.fr>
9558
9559 * doc/bison.texinfo: Formatting changes.
9560
9561 2001-12-29 Akim Demaille <akim@epita.fr>
9562
9563 Don't store the token defs in a muscle, just be ready to output it
9564 on command. Now possible via `symbols'. Fixes a memory leak.
9565
9566 * src/output.c (token_definitions_output): New.
9567 (output_parser, header_output): Use it.
9568 * src/reader.c (symbols_save): Remove.
9569
9570 2001-12-29 Akim Demaille <akim@epita.fr>
9571
9572 * src/bison.simple: Do not provide a default for YYSTYPE and
9573 YYLTYPE before the user's prologue. Otherwise it's hardly... a
9574 default.
9575
9576 2001-12-29 Akim Demaille <akim@epita.fr>
9577
9578 Mid-rule actions are simply... ignored!
9579
9580 * src/reader.c (readgram): Be sure to attach mid-rule actions to
9581 the empty-rule associated to the dummy symbol, not to the host
9582 rule.
9583 * tests/actions.at (Mid-rule actions): New.
9584
9585 2001-12-29 Akim Demaille <akim@epita.fr>
9586
9587 Memory leak.
9588
9589 * src/reader.c (reader): Free grammar.
9590
9591 2001-12-29 Akim Demaille <akim@epita.fr>
9592
9593 Memory leak.
9594
9595 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
9596 since it allocates it for each state, although only one is needed.
9597 (allocate_storage): Do it here.
9598
9599 2001-12-29 Akim Demaille <akim@epita.fr>
9600
9601 * src/options.h, src/options.c (create_long_option_table): Rename
9602 as...
9603 (long_option_table_new): this, with a clearer prototype.
9604 (percent_table): Remove, unused,
9605 * src/getargs.c (getargs): Adjust.
9606
9607 2001-12-29 Akim Demaille <akim@epita.fr>
9608
9609 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
9610 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
9611 as states.
9612
9613 2001-12-29 Akim Demaille <akim@epita.fr>
9614
9615 * src/lalr.c (build_relations): Rename `states' as `states1'.
9616 Sorry, I don't understand exactly what it is, no better name...
9617
9618 2001-12-29 Akim Demaille <akim@epita.fr>
9619
9620 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
9621 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
9622 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
9623 as rules.
9624
9625 2001-12-29 Akim Demaille <akim@epita.fr>
9626
9627 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
9628 ago.
9629
9630 2001-12-29 Akim Demaille <akim@epita.fr>
9631
9632 * src/reader.c, src/reader.h (user_toknums): Remove.
9633 Adjust all users to use symbols[i]->user_token_number.
9634
9635 2001-12-29 Akim Demaille <akim@epita.fr>
9636
9637 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
9638 Adjust all users to use symbols[i]->prec or ->assoc.
9639
9640 2001-12-29 Akim Demaille <akim@epita.fr>
9641
9642 * src/reader.c, src/reader.h (tags): Remove.
9643 Adjust all users to use symbols[i]->tag.
9644
9645 2001-12-29 Akim Demaille <akim@epita.fr>
9646
9647 * src/gram.h, src/gram.c (symbols): New, similar to state_table
9648 and rule_table.
9649 * src/reader.c (packsymbols): Fill this table.
9650 Drop sprec.
9651 * src/conflicts.c (resolve_sr_conflict): Adjust.
9652 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
9653 single table.
9654 Use symbols[i]->tag instead of tags[i].
9655
9656 2001-12-29 Akim Demaille <akim@epita.fr>
9657
9658 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
9659 In addition, put a comment in there, to replace...
9660 * tests/regression.at (%union and C comments): Remove.
9661
9662 2001-12-29 Akim Demaille <akim@epita.fr>
9663
9664 * tests/regression.at (Web2c Actions): Blindly move the actual
9665 output as expected output. The contents *seem* right to me, but I
9666 can't pretend reading perfectly parser tables... Nonetheless, all
9667 the other tests pass correctly, the table look OK, even though the
9668 presence of `$axiom' is to be noted: AFAICS it is useless (but
9669 harmless).
9670
9671 2001-12-29 Akim Demaille <akim@epita.fr>
9672
9673 * src/reader.c (readgram): Don't add the rule 0 if there were no
9674 rules read. In other words, add it _after_ having performed
9675 grammar sanity checks.
9676 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
9677
9678 2001-12-29 Akim Demaille <akim@epita.fr>
9679
9680 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
9681 visible, and some states have now a different number.
9682
9683 2001-12-29 Akim Demaille <akim@epita.fr>
9684
9685 * src/reader.c (readgram): Bind the initial rule's lineno to that
9686 of the first rule.
9687 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
9688 (Solved SR Conflicts): Adjust rule 0's line number.
9689
9690 2001-12-29 Akim Demaille <akim@epita.fr>
9691
9692 Fix the `GAWK Grammar' failure.
9693
9694 * src/LR0.c (final_state): Initialize to -1 so that we do compute
9695 the reductions of the first state which was mistakenly confused
9696 with the final state because precisely final_state was initialized
9697 to 0.
9698 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
9699 now noticed by Bison.
9700 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
9701 have a reduction on $default.
9702
9703 2001-12-29 Akim Demaille <akim@epita.fr>
9704
9705 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
9706 rule line numbers.
9707 * src/closure.c (print_closure): Likewise.
9708 * src/derives.c (print_derives): Likewise.
9709 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
9710 now.
9711
9712 2001-12-29 Akim Demaille <akim@epita.fr>
9713
9714 * src/lalr.c (lookaheads_print): New.
9715 (lalr): Call it when --trace-flag.
9716 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
9717 are dumped.
9718
9719 2001-12-29 Akim Demaille <akim@epita.fr>
9720
9721 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
9722 when walking through ritem, even via rule->rhs.
9723 * src/reduce.c (dump_grammar, useful_production, reduce_output)
9724 (useful_production, useless_nonterminals): Likewise.
9725 (reduce_grammar_tables): Likewise, plus update nritems.
9726 * src/nullable.c (set_nullable): Likewise.
9727 * src/lalr.c (build_relations): Likewise.
9728 * tests/sets.at (Nullable): Adjust.
9729 Fortunately, now, the $axiom is no longer nullable.
9730
9731 2001-12-29 Akim Demaille <akim@epita.fr>
9732
9733 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
9734 the 0-sentinel.
9735 * src/gram.c (ritem_longest_rhs): Likewise.
9736 * src/reduce.c (nonterminals_reduce): Likewise.
9737 * src/print_graph.c (print_graph): Likewise.
9738 * src/output.c (output_rule_data): Likewise.
9739 * src/nullable.c (set_nullable): Likewise.
9740
9741 2001-12-29 Akim Demaille <akim@epita.fr>
9742
9743 * src/output.c: Comment changes.
9744
9745 2001-12-27 Paul Eggert <eggert@twinsun.com>
9746
9747 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
9748 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
9749 Sparc, as they were causing more porting problems than the
9750 (minor) performance improvement was worth.
9751
9752 Also, catch up with 1.31's YYSTD.
9753
9754 2001-12-27 Akim Demaille <akim@epita.fr>
9755
9756 * src/output.c (output_gram): Rely on nritems, not the
9757 0-sentinel. See below.
9758 Use -1 as separator, not 0.
9759 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
9760 Rely on -1 as separator in yyrhs, instead of 0.
9761 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
9762 twice `Now at end of input', therefore there are two lines less to
9763 expect.
9764
9765 2001-12-27 Akim Demaille <akim@epita.fr>
9766
9767 * tests/regression.at (Unresolved SR Conflicts):
9768 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
9769 below.
9770
9771 2001-12-27 Akim Demaille <akim@epita.fr>
9772
9773 * src/LR0.c (new_state): Recognize the final state by the fact it
9774 is reached by eoftoken.
9775 (insert_start_shifting_state, insert_eof_shifting_state)
9776 (insert_accepting_state, augment_automaton): Remove, since now
9777 these states are automatically computed from the initial state.
9778 (generate_states): Adjust.
9779 * src/print.c: When reporting a rule number to the user, substract
9780 1, so that the axiom rule is rule 0, and the first user rule is 1.
9781 * src/reduce.c: Likewise.
9782 * src/print_graph.c (print_core): For the time being, just as for
9783 the report, depend upon --trace-flags to dump the full set of
9784 items.
9785 * src/reader.c (readgram): Once the grammar read, insert the rule
9786 0: `$axiom: START-SYMBOL $'.
9787 * tests/set.at: Adjust: rule 0 is now displayed, and since the
9788 number of the states has changed (the final state is no longer
9789 necessarily the last), catch up.
9790
9791 2001-12-27 Akim Demaille <akim@epita.fr>
9792
9793 Try to make the use of the eoftoken valid. Given that its value
9794 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
9795 is used instead of > 0 where appropriate, (ii), depend upon nritems
9796 instead of the 0-sentinel.
9797
9798 * src/gram.h, src/gram.c (nritems): New.
9799 Expected to be duplication of nitems, but for the time being...
9800 * src/reader.c (packgram): Assert nritems and nitems are equal.
9801 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
9802 * src/closure.c (print_closure, print_fderives): Likewise.
9803 * src/gram.c (ritem_print): Likewise.
9804 * src/print.c (print_core, print_grammar): Likewise.
9805 * src/print_graph.c: Likewise.
9806
9807 2001-12-27 Akim Demaille <akim@epita.fr>
9808
9809 * src/main.c (main): If there are complains after grammar
9810 reductions, then output the report anyway if requested, then die.
9811 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
9812 * src/reader.c (eoftoken): New.
9813 (parse_token_decl): If the token being defined has value `0', it
9814 is the eoftoken.
9815 (packsymbols): No longer hack `tags' to insert `$' by hand.
9816 Be sure to preserve the value of the eoftoken.
9817 (reader): Make sure eoftoken is defined.
9818 Initialize nsyms to 0: now eoftoken is created just like the others.
9819 * src/print.c (print_grammar): Don't special case the eof token.
9820 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
9821 lie anyway, albeit pleasant.
9822 * tests/calc.at: Exercise error messages with eoftoken.
9823 Change the grammar so that empty input is invalid.
9824 Adjust expectations.
9825 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
9826
9827 2001-12-27 Akim Demaille <akim@epita.fr>
9828
9829 * configure.in: Check the protos of strchr ans strspn.
9830 Replace strchr if needed.
9831 * src/system.h: Provide the protos of strchr, strspn and memchr if
9832 missing.
9833 * lib/strchr.c: New.
9834 * src/reader.c (symbols_save): Use strchr.
9835
9836 2001-12-27 Akim Demaille <akim@epita.fr>
9837
9838 * src/print.c, src/print_graph.c (escape): New.
9839 Use it to quote the TAGS outputs.
9840 * src/print_graph.c (print_state): Now errors are in red, and
9841 reductions in green.
9842 Prefer high to wide: output the state number on a line of its own.
9843
9844 2001-12-27 Akim Demaille <akim@epita.fr>
9845
9846 * src/state.h, src/state.c (reductions_new): New.
9847 * src/LR0.c (set_state_table): Let all the states have a
9848 `reductions', even if reduced to 0.
9849 (save_reductions): Adjust.
9850 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
9851 * src/print.c (print_reductions, print_actions): Adjust.
9852 * src/output.c (action_row): Adjust.
9853
9854 2001-12-27 Akim Demaille <akim@epita.fr>
9855
9856 * src/state.h, src/state.c (errs_new, errs_dup): New.
9857 * src/LR0.c (set_state_table): Let all the states have an errs,
9858 even if reduced to 0.
9859 * src/print.c (print_errs, print_reductions): Adjust.
9860 * src/output.c (output_actions, action_row): Adjust.
9861 * src/conflicts.c (resolve_sr_conflict): Adjust.
9862
9863 2001-12-27 Akim Demaille <akim@epita.fr>
9864
9865 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
9866
9867 2001-12-27 Akim Demaille <akim@epita.fr>
9868
9869 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
9870 * src/print.c: here.
9871 (lookaheadset, shiftset): New, used as additional storage by
9872 print_reductions.
9873 (print_results): Adjust.
9874 (print_shifts, print_gotos, print_errs): New, extracted from...
9875 (print_actions): here.
9876 * src/print_graph.c (print_actions): Remove dead code.
9877
9878 2001-12-27 Akim Demaille <akim@epita.fr>
9879
9880 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
9881 `$n' and `@n'.
9882
9883 2001-12-27 Akim Demaille <akim@epita.fr>
9884
9885 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
9886 (build_relations): Adjust.
9887
9888 2001-12-27 Akim Demaille <akim@epita.fr>
9889
9890 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
9891 duplication.
9892
9893 2001-12-27 Akim Demaille <akim@epita.fr>
9894
9895 * src/reader.c (packgram): Catch nitems overflows.
9896
9897 2001-12-27 Akim Demaille <akim@epita.fr>
9898
9899 * src/files.c, src/files.h (guard_obstack): Remove.
9900 * src/output.c (output): Adjust.
9901 * src/reader.c (parse_braces): New, factoring...
9902 (copy_action, copy_guard): these two which are renamed as...
9903 (parse_action, parse_guard): these.
9904 As a voluntary consequence, using braces around guards is now
9905 mandatory.
9906
9907 2001-12-27 Akim Demaille <akim@epita.fr>
9908
9909 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
9910 * src/reader.c (symbol_list): `guard' and `guard_line' are new
9911 members.
9912 (symbol_list_new): Adjust.
9913 (copy_action): action_line is the first line, not the last.
9914 (copy_guard): Just as for actions, store the `action' only, not
9915 the switch/case/break flesh.
9916 Don't parse the user action that might follow the guard, let...
9917 (readgram): do it, i.e., now, there can be an action after a
9918 guard.
9919 In other words the guard is just explicitly optional.
9920 (packgram): Adjust.
9921 * src/output.c (guards_output): New.
9922 (output_parser): Call it when needed.
9923 (output): Also free the guard and attrs obstacks.
9924 * src/files.c, src/files.h (obstack_save): Remove.
9925 (output_files): Remove.
9926 As a result, if one needs the former `.act' file, using an
9927 appropriate skeleton which requires actions and guards is now
9928 required.
9929 * src/main.c (main): Adjust.
9930 * tests/semantic.at: New.
9931 * tests/regression.at: Use `input.y' as input file name.
9932 Avoid 8+3 problems by requiring input.c when the test needs the
9933 parser.
9934
9935 2001-12-27 Akim Demaille <akim@epita.fr>
9936
9937 * src/reader.c (symbol_list_new): Be sure to initialize all the
9938 fields.
9939
9940 2001-12-27 Akim Demaille <akim@epita.fr>
9941
9942 All the hacks using a final pseudo state are now useless.
9943
9944 * src/LR0.c (set_state_table): state_table holds exactly nstates.
9945 * src/lalr.c (nLA): New.
9946 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
9947 instead of lookaheadsp from the pseudo state (nstate + 1).
9948
9949 2001-12-27 Akim Demaille <akim@epita.fr>
9950
9951 * src/output.c (action_row, token_actions): Use a state_t instead
9952 of a integer, and nlookaheads instead of the following state's
9953 lookaheadsp.
9954
9955 2001-12-27 Akim Demaille <akim@epita.fr>
9956
9957 * src/conflicts.c (log_resolution, flush_shift)
9958 (resolve_sr_conflict, set_conflicts, solve_conflicts)
9959 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
9960 (conflicts_print, print_reductions): Use a state_t instead of an
9961 integer when referring to a state.
9962 As much as possible, depend upon nlookaheads, instead of the
9963 `lookaheadsp' member of the following state (since lookaheads of
9964 successive states are successive, the difference between state n + 1
9965 and n served as the number of lookaheads for state n).
9966 * src/lalr.c (add_lookback_edge): Likewise.
9967 * src/print.c (print_core, print_actions, print_state)
9968 (print_results): Likewise.
9969 * src/print_graph.c (print_core, print_actions, print_state)
9970 (print_graph): Likewise.
9971 * src/conflicts.h: Adjust.
9972
9973 2001-12-27 Akim Demaille <akim@epita.fr>
9974
9975 * src/bison.hairy: Formatting/comment changes.
9976 ANSIfy.
9977 Remove `register' indications.
9978 Add plenty of `static'.
9979
9980 2001-12-27 Akim Demaille <akim@epita.fr>
9981
9982 * src/output.c (prepare): Drop the muscle `ntbase' which
9983 duplicates ntokens.
9984 * src/bison.simple: Formatting/comment changes.
9985 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
9986 is an undocumented synonym.
9987
9988 2001-12-22 Akim Demaille <akim@epita.fr>
9989
9990 * src/output.c (output_table_data): Change the prototype to use
9991 `int' for array ranges: some invocations do pass an int, not a
9992 short.
9993 Reported by Wayne Green.
9994
9995 2001-12-22 Akim Demaille <akim@epita.fr>
9996
9997 Some actions of web2c.y are improperly triggered.
9998 Reported by Mike Castle.
9999
10000 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
10001 * tests/regression.at (Web2c): Rename as...
10002 (Web2c Report): this.
10003 (Web2c Actions): New.
10004
10005 2001-12-22 Akim Demaille <akim@epita.fr>
10006
10007 Reductions in web2c.y are improperly reported.
10008 Reported by Mike Castle.
10009
10010 * src/conflicts.c (print_reductions): Fix.
10011 * tests/regression.at (Web2c): New.
10012
10013 2001-12-18 Akim Demaille <akim@epita.fr>
10014
10015 Some host fail on `assert (!"foo")', which expands to
10016 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
10017 Reported by Nelson Beebee.
10018
10019 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
10020 `#define it_succeeded 0' and `assert (it_succeeded)'.
10021
10022 2001-12-17 Marc Autret <autret_m@epita.fr>
10023
10024 * src/bison.simple: Don't hard code the skeleton line and filename.
10025 * src/output.c (output_parser): Rename 'line' as 'output_line'.
10026 New line counter 'skeleton_line' (skeleton-line muscle).
10027
10028 2001-12-17 Paul Eggert <eggert@twinsun.com>
10029
10030 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
10031 YYDEBUG must be defined to a nonzero value.
10032
10033 * src/bison.simple (yytname): Do not assume that the user defines
10034 YYDEBUG to a properly parenthesized expression.
10035
10036 2001-12-17 Akim Demaille <akim@epita.fr>
10037
10038 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
10039 nlookaheads is a new member.
10040 Adjust all users.
10041 * src/lalr.h (nlookaheads): Remove this orphan declaration.
10042 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
10043 state.
10044
10045 2001-12-17 Akim Demaille <akim@epita.fr>
10046
10047 * src/files.h, src/files.c (open_files, close_files): Remove.
10048 * src/main.c (main): Don't open/close files, nor invoke lex_free,
10049 let...
10050 * src/reader.c (reader): Do it.
10051
10052 2001-12-17 Akim Demaille <akim@epita.fr>
10053
10054 * src/conflicts.c (print_reductions): Formatting changes.
10055
10056 2001-12-17 Akim Demaille <akim@epita.fr>
10057
10058 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
10059 (flush_reduce): New.
10060 (resolve_sr_conflict): Adjust.
10061
10062 2001-12-17 Akim Demaille <akim@epita.fr>
10063
10064 * src/output.c (output_obstack): Be static and rename as...
10065 (format_obstack): this, to avoid any confusion with files.c's
10066 output_obstack.
10067 * src/reader.h (muscle_obstack): Move to...
10068 * src/output.h: here, since it's defined in output.c.
10069
10070 2001-12-17 Akim Demaille <akim@epita.fr>
10071
10072 * src/output.c (action_row, save_column, default_goto)
10073 (sort_actions, matching_state, pack_vector): Better variable
10074 locality.
10075
10076 2001-12-17 Akim Demaille <akim@epita.fr>
10077
10078 * src/output.c: Various formatting changes.
10079
10080 2001-12-17 Akim Demaille <akim@epita.fr>
10081
10082 * src/files.c (output_files): Free the output_obstack.
10083 * src/main.c (main): Call print and print_graph conditionally.
10084 * src/print.c (print): Work unconditionally.
10085 * src/print_graph.c (print_graph): Work unconditionally.
10086 * src/conflicts.c (log_resolution): Output only if verbose_flag.
10087
10088 2001-12-16 Marc Autret <autret_m@epita.fr>
10089
10090 * src/output.c (actions_output): Fix. When we use %no-lines,
10091 there is one less line per action.
10092
10093 2001-12-16 Marc Autret <autret_m@epita.fr>
10094
10095 * src/bison.simple: Remove a useless #line directive.
10096 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
10097 * src/output.c (get_lines_number): New.
10098 (output_parser): Adjust, now takes care about the lines of a
10099 output muscles.
10100 Fix line numbering.
10101 (actions_output): Computes the number of lines taken by actions.
10102 (output_master_parser): Insert new skeleton which is the name of
10103 the output parser file name.
10104
10105 2001-12-15 Marc Autret <autret_m@epita.fr>
10106
10107 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
10108
10109 2001-12-15 Marc Autret <autret_m@epita.fr>
10110
10111 * src/output.c (output_gram): Keep track of the hairy one.
10112
10113 2001-12-15 Akim Demaille <akim@epita.fr>
10114
10115 Make `make distcheck' work.
10116
10117 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
10118 system.h which uses libgettext.h.
10119
10120 2001-12-15 Akim Demaille <akim@epita.fr>
10121
10122 * src/nullable.c (set_nullable): Useless rules must be skipped,
10123 otherwise, since we range over their symbols, we might look at a
10124 nonterminal which no longer ``exists'', i.e., it is not counted in
10125 `nvars', hence we overflow our arrays.
10126
10127 2001-12-15 Akim Demaille <akim@epita.fr>
10128
10129 The header can also be produced directly, without any obstack!
10130 Yahoo!
10131
10132 * src/files.c, src/files.h (defines_obstack): Remove.
10133 (compute_header_macro): Global.
10134 (defines_obstack_save): Remove.
10135 * src/reader.c (parse_union_decl): No longer output to
10136 defines_obstack: its content can be found in the `stype' muscle
10137 anyway.
10138 (output_token_translations): Merge into...
10139 (symbols_output): this.
10140 Rename as...
10141 (symbols_save): this.
10142 (reader): Adjust.
10143 * src/output.c (header_output): New.
10144 (output): Call it.
10145
10146 2001-12-15 Akim Demaille <akim@epita.fr>
10147
10148 * src/reader.c (parse_union_decl): Instead of handling two obstack
10149 simultaneously, use one to define the `stype' muscle, and use the
10150 value of the latter to fill defines_obstack.
10151 (copy_comment): Remove.
10152 (copy_comment2): Work for a single obstack.
10153 Rename as...
10154 (copy_comment): this.
10155
10156 2001-12-15 Akim Demaille <akim@epita.fr>
10157
10158 * src/lex.c, src/lex.h (xgetc): No longer static.
10159 * src/reader.c (parse_union_decl): Revamp.
10160
10161 2001-12-15 Akim Demaille <akim@epita.fr>
10162
10163 Still making progress in separating Bison into (i) input, (ii)
10164 process, (iii) output: now we can directly output the parser file
10165 without using table_obstack at all.
10166
10167 * src/files.c, src/files.h (table_obstack): Bye bye.
10168 (parser_file_name): New.
10169 * src/files.c (compute_output_file_names): Compute it.
10170 * src/output.c (actions_output, output_parser)
10171 (output_master_parser): To a file instead of an obstack.
10172
10173 2001-12-15 Akim Demaille <akim@epita.fr>
10174
10175 Attach actions to rules, instead of pre-outputting them to
10176 actions_obstack.
10177
10178 * src/gram.h (rule_t): action and action_line are new members.
10179 * src/reader.c (symbol_list): Likewise.
10180 (copy_action): Save the actions within the rule.
10181 (packgram): Save them in rule_table.
10182 * src/output.c (actions_output): New.
10183 (output_parser): Use it on `%%actions'.
10184 (output_rule_data): Don't free rule_table.
10185 (output): Do it.
10186 (prepare): Don't save the `action' muscle.
10187 * src/bison.simple: s/%%action/%%actions/.
10188
10189 2001-12-15 Akim Demaille <akim@epita.fr>
10190
10191 * src/reader.c (copy_action): When --yacc, don't append a `;'
10192 to the user action: let it fail if lacking.
10193 Suggested by Arnold Robbins and Tom Tromey.
10194
10195 2001-12-14 Akim Demaille <akim@epita.fr>
10196
10197 * src/lex.c (literalchar): Simply return the char you decoded, non
10198 longer mess around with obstacks and int pointers.
10199 Adjust all callers.
10200
10201 2001-12-14 Akim Demaille <akim@epita.fr>
10202
10203 * src/lex.c (literalchar): Don't escape the special characters,
10204 just decode them, and keep them as char (before, eol was output as
10205 the 2 char string `\n' etc.).
10206 * src/output.c (output_rule_data): Use quotearg to output the
10207 token strings.
10208
10209 2001-12-13 Paul Eggert <eggert@twinsun.com>
10210
10211 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
10212 Do not infringe on the global user namespace when using C++.
10213 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
10214 All uses of `fprintf' and `stderr' changed.
10215
10216 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
10217
10218 2001-12-13 Akim Demaille <akim@epita.fr>
10219
10220 The computation of nullable is broken: it doesn't handle empty
10221 RHS's properly.
10222
10223 * tests/torture.at (GNU AWK Grammar): New.
10224 * tests/sets.at (Nullable): New.
10225 * src/nullable.c (set_nullable): Instead of blindly looping over
10226 `ritems', loop over the rules, and then over their rhs's.
10227
10228 Work around Autotest bugs.
10229
10230 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
10231 frame, because Autotest understand lines starting with a `+' as
10232 traces from the shell. Then, they are not processed properly.
10233 Admittedly an Autotest bug, but we don't have time to wait for
10234 Autotest to catch up.
10235 * tests/regression.at (Broken Closure): Adjust to the new table
10236 frames.
10237 Move to...
10238 * tests/sets.at: here.
10239
10240 2001-12-13 Akim Demaille <akim@epita.fr>
10241
10242 * src/closure.c (closure): Use nrules instead of playing tricks
10243 with BITS_PER_WORD.
10244
10245 2001-12-13 Akim Demaille <akim@epita.fr>
10246
10247 * src/print.c (print_actions): Output the handling of `$' as the
10248 traces do: shifting the token EOF. Before EOF was treated as a
10249 nonterminal.
10250 * tests/regression.at: Adjust some tests.
10251 * src/print_graph.c (print_core): Complete the set of items via
10252 closure. The next-to-final and final states are still unsatisfying,
10253 but that's to be addressed elsewhere.
10254 No longer output the rule numbers, but do output the state number.
10255 A single loop for the shifts + gotos is enough, but picked a
10256 distinct color for each.
10257 (print_graph): Initialize and finalize closure.
10258
10259 2001-12-13 Akim Demaille <akim@epita.fr>
10260
10261 * src/reader.c (readgram): Remove dead code, an strip useless
10262 braces.
10263 (get_type): Remove, unused.
10264
10265 2001-12-12 Akim Demaille <akim@epita.fr>
10266
10267 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
10268 on that of lib/error.c.
10269
10270 2001-12-12 Akim Demaille <akim@epita.fr>
10271
10272 Some hosts don't like `/' in includes.
10273
10274 * src/system.h: Include libgettext.h without qualifying the path.
10275 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
10276 $(top_srcdir).
10277
10278 2001-12-11 Marc Autret <autret_m@epita.fr>
10279
10280 * src/output.c (output_parser): Remove useless muscle.
10281
10282 2001-12-11 Marc Autret <autret_m@epita.fr>
10283
10284 * src/bison.simple: Remove #line just before %%epilogue. It
10285 is now handled in ...
10286 * src/reader.c (read_additionnal_code): Add the output of a
10287 #line for the epilogue.
10288
10289 2001-12-10 Marc Autret <autret_m@epita.fr>
10290
10291 * src/reader.c (copy_definition): Re-use CPP-outed code which
10292 replace precedent remove.
10293 * src/bison.simple: Remove #line before %%prologue because
10294 %%input-line is wrong at this time.
10295
10296 2001-12-10 Marc Autret <autret_m@epita.fr>
10297
10298 * src/reader.c (symbols_output): Clean up.
10299 * src/output.c (output_gram, output): Clean up.
10300
10301 2001-12-10 Akim Demaille <akim@epita.fr>
10302
10303 * src/lalr.c (initialize_lookaheads): New. Extracted from...
10304 * src/LR0.c (set_state_table): here.
10305 * src/lalr.c (lalr): Call it.
10306
10307 2001-12-10 Akim Demaille <akim@epita.fr>
10308
10309 * src/state.h (shifts): Remove the `number' member: shifts are
10310 attached to state, hence no longer need to be labelled with a
10311 state number.
10312
10313 2001-12-10 Akim Demaille <akim@epita.fr>
10314
10315 Now that states have a complete set of members, the linked list of
10316 shifts is useless: just fill directly the state's shifts member.
10317
10318 * src/state.h (shifts): Remove the `next' member.
10319 * src/LR0.c (first_state, last_state): Remove.
10320 Adjust the callers.
10321 (augment_automaton): Don't look for the shifts that must be added
10322 a shift on EOF: it is those of the state we looked for! But now,
10323 since shifts are attached, it is no longer needed to looking
10324 merely by its id: its number.
10325
10326 2001-12-10 Akim Demaille <akim@epita.fr>
10327
10328 * src/LR0.c (augment_automaton): Better variable locality.
10329 Remove an impossible branch: if there is a state corresponding to
10330 the start symbol being shifted, then there is shift for the start
10331 symbol from the initial state.
10332
10333 2001-12-10 Akim Demaille <akim@epita.fr>
10334
10335 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
10336 only when appropriate: when insert_start_shifting_state' is not
10337 invoked.
10338 * tests/regression.at (Rule Line Numbers): Adjust.
10339
10340 2001-12-10 Akim Demaille <akim@epita.fr>
10341
10342 * src/LR0.c (augment_automaton): Now that all states have shifts,
10343 merge the two cases addition shifts to the initial state.
10344
10345 2001-12-10 Akim Demaille <akim@epita.fr>
10346
10347 * src/lalr.c (set_state_table): Move to...
10348 * src/LR0.c: here.
10349 * src/lalr.c (lalr): Don't call it...
10350 * src/LR0.c (generate_states): do it.
10351 * src/LR0.h (first_state): Remove, only the table is used.
10352
10353 2001-12-10 Akim Demaille <akim@epita.fr>
10354
10355 * src/LR0.h (first_shift, first_reduction): Remove.
10356 * src/lalr.c: Don't use first_shift: find shifts through the
10357 states.
10358
10359 2001-12-10 Akim Demaille <akim@epita.fr>
10360
10361 * src/LR0.c: Attach shifts to states as soon as they are
10362 computed.
10363 * src/lalr.c (set_state_table): Instead of assigning shifts to
10364 state, just assert that the mapping was properly done.
10365
10366 2001-12-10 Akim Demaille <akim@epita.fr>
10367
10368 * src/LR0.c (insert_start_shift): Rename as...
10369 (insert_start_shifting_state): this.
10370 (insert_eof_shifting_state, insert_accepting_state): New.
10371 (augment_automaton): Adjust.
10372 Better locality of the variables.
10373 When looking if the start_symbol is shifted from the initial
10374 state, using `while (... symbol != start_symbol ...)' sounds
10375 better than `while (... symbol < start_symbol ...)': If fail
10376 to see how the order between symbols could be relevant!
10377
10378 2001-12-10 Akim Demaille <akim@epita.fr>
10379
10380 * src/getargs.h: Don't declare `spec_name_prefix' and
10381 `spec_file_prefix', declared by src/files.h.
10382 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
10383 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
10384 * src/output.c (prepare): Adjust.
10385 * src/reader.c (symbols_output): Likewise.
10386 * src/vmsgetargs.c: Vaguely adjust, but who cares?
10387
10388 2001-12-10 Akim Demaille <akim@epita.fr>
10389
10390 * src/muscle_tab.c (muscle_init): NULL is a better default than
10391 `"0"'.
10392
10393 2001-12-10 Akim Demaille <akim@epita.fr>
10394
10395 * src/reader.c (reader): Calling symbols_output once is enough.
10396
10397 2001-12-10 Akim Demaille <akim@epita.fr>
10398
10399 Now that states have a complete set of members, the linked list of
10400 reductions is useless: just fill directly the state's reductions
10401 member.
10402
10403 * src/state.h (struct reductions): Remove member `number' and
10404 `next'.
10405 * src/LR0.c (first_reduction, last_reduction): Remove.
10406 (save_reductions): Don't link the new reductions, store them in
10407 this_state.
10408 * src/lalr.c (set_state_table): No need to attach reductions to
10409 states, it's already done.
10410 * src/output.c (output_actions): No longer free the shifts, then
10411 the reductions, then the states: free all the states and their
10412 members.
10413
10414 2001-12-10 Akim Demaille <akim@epita.fr>
10415
10416 * src/options.c (OPTN, DRTV, BOTH): New.
10417 (option_table): Use them.
10418
10419 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
10420 the job of system.h.
10421 * src/options.c: Don't include stdio.h and xalloc.h for the same
10422 reasons.
10423
10424 2001-12-10 Akim Demaille <akim@epita.fr>
10425
10426 * src/output.c (output, prepare): Make sure the values of the
10427 muscles `action' and `prologue' are 0-terminated.
10428
10429 2001-12-10 Akim Demaille <akim@epita.fr>
10430
10431 Clean up GCC warnings.
10432
10433 * src/reader.c (copy_action): `buf' is not used.
10434 (parse_skel_decl): Be static.
10435 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
10436 * src/options.h (create_long_option_table): Have a real prototype.
10437 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
10438 (hash_delete_at): Return const void *.
10439 Adjust casts to preserve the const.
10440
10441 2001-12-10 Akim Demaille <akim@epita.fr>
10442
10443 * configure.in: Require 2.52g.
10444 M4 is not needed, but AUTOM4TE is.
10445 * m4/m4.m4: Remove.
10446 * tests/Makefile.am: Adjust.
10447
10448 2001-12-10 Akim Demaille <akim@epita.fr>
10449
10450 One structure for states is enough, even though theoretically
10451 there are LR(0) states and LALR(1) states.
10452
10453 * src/lalr.h (state_t): Remove.
10454 (state_table): Be state_t **, not state_t *.
10455 * src/state.h (core, CORE_ALLOC): Rename as...
10456 (state_t, STATE_ALLOC): this.
10457 Add the LALR(1) members: shifts, reductions, errs.
10458 * src/LR0.c (state_table): Rename as...
10459 (state_hash): this, to avoid name clashes with the global
10460 `state_table'.
10461 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
10462 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
10463
10464 2001-12-10 Akim Demaille <akim@epita.fr>
10465
10466 Bison dumps core on bash.y.
10467 Reported by Pascal Bart.
10468
10469 * src/warshall.c (bitmatrix_print): New.
10470 (TC): Use it.
10471 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
10472 j must be the outer loop.
10473 * tests/regression.at (Broken Closure): New.
10474
10475 2001-12-05 Akim Demaille <akim@epita.fr>
10476
10477 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
10478 its argument.
10479 Reported by Peter Hamorsky.
10480
10481 2001-12-05 Akim Demaille <akim@epita.fr>
10482
10483 * src/conflicts.c (err_table): Remove.
10484 (resolve_sr_conflict): Adjust.
10485 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
10486 Rename as...
10487 (state_t.reductions, state_t.shifts): this.
10488
10489 2001-12-05 Akim Demaille <akim@epita.fr>
10490
10491 * src/reduce.c (reduce_grammar_tables): No longer disable the
10492 removal of useless rules via CPP but via `if (0)', so that the
10493 compiler still check the code is valid.
10494 For instance, it should have noticed `rline' no longer exists: use
10495 the `line' member of rule_t.
10496 * src/gram.c (dummy, rline): Remove, unused.
10497
10498 2001-12-05 Akim Demaille <akim@epita.fr>
10499
10500 * src/output.c (pack_vector): Use assert, not berror.
10501 * src/main.c (berror): Remove, unused.
10502
10503 2001-12-05 Akim Demaille <akim@epita.fr>
10504
10505 New experimental feature: if --verbose --trace output all the
10506 items of a state, not only its kernel.
10507
10508 * src/print.c (print_core): If `trace_flag', then invoke closure
10509 before outputting the items of the state (print_core is no longer
10510 a correct name them).
10511 (print_results): Invoke new_closure/free_closure if needed.
10512
10513 2001-12-05 Akim Demaille <akim@epita.fr>
10514
10515 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
10516 * src/closure.c, src/closure.h (itemsetsize): Rename as...
10517 (nitemset): for consistency with the rest of the project.
10518
10519 2001-12-05 Akim Demaille <akim@epita.fr>
10520
10521 * src/closure.c (print_closure): Improve.
10522 (closure): Use it for printing input and output.
10523
10524 2001-12-05 Akim Demaille <akim@epita.fr>
10525
10526 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
10527 indexed by nonterminals.
10528
10529 2001-12-05 Akim Demaille <akim@epita.fr>
10530
10531 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
10532 what it was!).
10533 * src/warshall.h: Remove accidental duplication of the content.
10534
10535 2001-12-05 Akim Demaille <akim@epita.fr>
10536
10537 * src/closure.c (set_fderives): De-obfuscate.
10538
10539 2001-12-05 Akim Demaille <akim@epita.fr>
10540
10541 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
10542
10543 2001-12-05 Akim Demaille <akim@epita.fr>
10544
10545 * src/closure.c (set_firsts): De-obfuscate.
10546
10547 2001-12-05 Akim Demaille <akim@epita.fr>
10548
10549 * src/output.c (action_row): De-obfuscate
10550 using the good o' techniques: arrays not pointers, variable
10551 locality, BITISSET, RESETBIT etc.
10552
10553 2001-12-05 Akim Demaille <akim@epita.fr>
10554
10555 Pessimize the code to simplify it: from now on, all the states
10556 have a valid SHIFTS, which NSHIFTS is possibly 0.
10557
10558 * src/LR0.c (shifts_new): Be global and move to..
10559 * src/state.c, src/state.h: here.
10560 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
10561 * src/print_graph: Adjust.
10562
10563 2001-12-05 Akim Demaille <akim@epita.fr>
10564
10565 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
10566 * src/conflicts.c: Use it.
10567 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
10568 incorrectly ``simplified''.
10569
10570 2001-12-05 Akim Demaille <akim@epita.fr>
10571
10572 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
10573 using the good o' techniques: arrays not pointers, variable
10574 locality, BITISSET, RESETBIT etc.
10575
10576 2001-12-05 Akim Demaille <akim@epita.fr>
10577
10578 * src/state.h (SHIFT_SYMBOL): New.
10579 * src/conflicts.c: Use it to deobfuscate.
10580
10581 2001-12-05 Akim Demaille <akim@epita.fr>
10582
10583 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
10584 (print_reductions): De-obfuscate using the good o' techniques:
10585 arrays not pointers, variable locality, BITISSET.
10586
10587 2001-12-05 Akim Demaille <akim@epita.fr>
10588
10589 * src/conflicts.c (print_reductions): Arrays, not pointers.
10590 Use BITISSET.
10591
10592 2001-12-05 Akim Demaille <akim@epita.fr>
10593
10594 * src/conflicts.c (print_reductions): Pessimize, but clarify.
10595
10596 2001-12-05 Akim Demaille <akim@epita.fr>
10597
10598 * src/conflicts.c (print_reductions): Improve variable locality.
10599
10600 2001-12-05 Akim Demaille <akim@epita.fr>
10601
10602 * src/conflicts.c (print_reductions): Pessimize, but clarify.
10603
10604 2001-12-05 Akim Demaille <akim@epita.fr>
10605
10606 * src/conflicts.c (print_reductions): Improve variable locality.
10607
10608 2001-12-05 Akim Demaille <akim@epita.fr>
10609
10610 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
10611 * src/lalr.c: Use them.
10612
10613 2001-12-05 Akim Demaille <akim@epita.fr>
10614
10615 * src/LR0.c (augment_automaton): Formatting changes.
10616 Better variable locality.
10617
10618 2001-12-05 Akim Demaille <akim@epita.fr>
10619
10620 * src/lalr.c (matrix_print): New.
10621 (transpose): Use it.
10622 Use arrays instead of pointers.
10623
10624 2001-12-05 Akim Demaille <akim@epita.fr>
10625
10626 * src/lalr.c (maxrhs): Move to...
10627 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
10628 * src/lalr.c (build_relations): Adjust.
10629
10630 2001-12-05 Akim Demaille <akim@epita.fr>
10631
10632 * src/lalr.c (transpose): Free the memory allocated to the
10633 argument, as it is replaced by the results by the unique caller.
10634 (build_relations): Merely invoke transpose: it handles the memory
10635 deallocation.
10636 Improve variable locality.
10637 Avoid variables used as mere abbreviations.
10638 (compute_lookaheads): Use arrays instead of pointers.
10639
10640 2001-12-05 Akim Demaille <akim@epita.fr>
10641
10642 * src/lalr.c (initialize_F): Improve variable locality.
10643 Avoid variables used as mere abbreviations.
10644
10645 2001-12-05 Akim Demaille <akim@epita.fr>
10646
10647 * src/derives.c (print_derives): Display the ruleno.
10648 * src/lalr.c (initialize_F, transpose): Better variable locality
10649 to improve readability.
10650 Avoid variables used as mere abbreviations.
10651
10652 2001-12-05 Akim Demaille <akim@epita.fr>
10653
10654 * src/lalr.c (traverse): Use arrays instead of pointers.
10655
10656 2001-12-05 Akim Demaille <akim@epita.fr>
10657
10658 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
10659 the handling of squeue.
10660 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
10661
10662 2001-12-05 Akim Demaille <akim@epita.fr>
10663
10664 Because useless nonterminals are now kept alive (instead of being
10665 `destroyed'), we now sometimes examine them, and store information
10666 related to them. Hence we need to know their number, and adjust
10667 memory allocations.
10668
10669 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
10670 static.
10671 * src/LR0.c (allocate_itemsets): The memory allocated to
10672 `symbol_count' was used for two different purpose: once to count
10673 the number of occurrences of each symbol, and later reassigned to
10674 `shift_symbol', containing the symbol that can be shifted from a
10675 given state.
10676 Deobfuscate, i.e., allocate, use and free `symbol_count' here
10677 only, and...
10678 (new_itemsets): Allocate `shift_symbol' here.
10679 (allocate_itemsets): symbol_count includes useless nonterminals.
10680 Make room for them.
10681 (free_storage): Use `free', not `XFREE', for pointers that cannot
10682 be null.
10683
10684 2001-12-05 Akim Demaille <akim@epita.fr>
10685
10686 * src/nullable.c (set_nullable): Deobfuscate the handling of
10687 ritem.
10688 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
10689
10690 2001-12-05 Akim Demaille <akim@epita.fr>
10691
10692 * src/gram.c, src/gram.h (ritem_print): New.
10693 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
10694 (This useless function was defined only to work around VMS linkers
10695 that can't handle compilation units with variables only).
10696 * src/reduce.c (dump_grammar): Use it to trace the construction of
10697 ritem.
10698
10699 2001-12-04 Paul Eggert <eggert@twinsun.com>
10700
10701 * src/bison.simple (union yyalloc): Change member names
10702 to be the same as the stack names.
10703 (yyparse): yyptr is now union yyalloc *, not char *.
10704 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
10705 and may generate better code on some machines.
10706 (yystpcpy): Use prototype if __STDC__ is defined, not just
10707 if __cplusplus is defined.
10708
10709 2001-11-30 Akim Demaille <akim@epita.fr>
10710
10711 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
10712 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
10713 Gettext doesn't compile cleanly, and dies with -Werror.
10714 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
10715 Include WARNING_CFLAGS here.
10716 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
10717 before being defined.
10718
10719 2001-11-27 Paul Eggert <eggert@twinsun.com>
10720
10721 * lib/quotearg.h (quotearg_n, quotearg_n_style):
10722 First arg is int, not unsigned.
10723 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
10724 (SIZE_MAX, UINT_MAX): New macros.
10725 (quotearg_n_options): Abort if N is negative.
10726 Avoid overflow check on hosts where size_t is 64 bits and int
10727 is 32 bits, as overflow is impossible there.
10728 Fix off-by-one typo that caused unnecessary reallocation.
10729
10730 2001-11-29 Paul Eggert <eggert@twinsun.com>
10731
10732 Name space cleanup in generated parser.
10733
10734 * doc/bison.texinfo (Bison Parser): Discuss system headers
10735 and their effect on the user name space.
10736
10737 * src/bison.simple:
10738 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
10739 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
10740 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
10741
10742 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
10743 on user names when possible.
10744
10745 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
10746 Simplify test for whather <alloca.h> exists.
10747
10748 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
10749
10750 (<stdio.h>): Include if YYDEBUG.
10751
10752 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
10753 ! defined (yyoverflow) && ! defined (yymemcpy).
10754
10755 (yymemcpy, yyparse): Rename local variables as needed so that
10756 they all begin with 'yy'.
10757
10758 (yystrlen, yystpcpy): New functions.
10759
10760 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
10761 All uses changed.
10762
10763 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
10764 instead of relying on string.h functions. Use YYSTACK_ALLOC
10765 and YYSTACK_FREE instead of malloc and free.
10766
10767 2001-11-30 Akim Demaille <akim@epita.fr>
10768
10769 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
10770 before their first uses.
10771 (YYBISON, YYPURE): Move to the top of the output.
10772
10773 2001-11-30 Akim Demaille <akim@epita.fr>
10774
10775 * tests/reduce.at (Useless Nonterminals): Fix.
10776
10777 2001-11-30 Akim Demaille <akim@epita.fr>
10778
10779 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
10780 if body instead of `;' to pacify GCC's warnings.
10781
10782 2001-11-30 Akim Demaille <akim@epita.fr>
10783
10784 Instead of mapping the LHS of unused rules to -1, keep the LHS
10785 valid, but flag the rules as invalid.
10786
10787 * src/gram.h (rule_t): `useful' is a new member.
10788 * src/print.c (print_grammar): Adjust.
10789 * src/derives.c (set_derives): Likewise.
10790 * src/reader.c (packgram, reduce_output): Likewise.
10791 * src/reduce.c (reduce_grammar_tables): Likewise.
10792 * tests/reduce.at (Underivable Rules, Useless Rules): New.
10793
10794 2001-11-30 Akim Demaille <akim@epita.fr>
10795
10796 * src/reduce.c (reduce_output): Formatting changes.
10797 * src/print.c (print_results, print_grammar): Likewise.
10798 * tests/regression.at (Rule Line Numbers)
10799 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
10800
10801 2001-11-30 Akim Demaille <akim@epita.fr>
10802
10803 * src/reduce.c (nonterminals_reduce): Instead of throwing away
10804 useless nonterminals, move them at the end of the symbol arrays.
10805 (reduce_output): Adjust.
10806 * tests/reduce.at (Useless Nonterminals): Adjust.
10807
10808 2001-11-30 Akim Demaille <akim@epita.fr>
10809
10810 * src/reduce.c: Various comment/formatting changes.
10811 (nonterminals_reduce): New, extracted from...
10812 (reduce_grammar_tables): here.
10813 (reduce_grammar): Call nonterminals_reduce.
10814
10815 2001-11-29 Paul Eggert <eggert@twinsun.com>
10816
10817 * src/bison.simple (YYSTACK_REALLOC): Remove.
10818 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
10819 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
10820 New macros.
10821 (union yyalloc): New type.
10822 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
10823 an arbitrary restriction on hosts where size_t is wider than int.
10824
10825 (yyparse): Don't dump core if alloca or malloc fails; instead, report
10826 a parser stack overflow. Allocate just one block of memory for all
10827 three stacks, instead of allocating three blocks; this typically is
10828 faster and reduces fragmentation.
10829
10830 Do not limit the number of items in the stack to a value that fits
10831 in 'int', as this is an arbitrary limit on hosts with 64-bit
10832 size_t and 32-bit int.
10833
10834 2001-11-29 Marc Autret <autret_m@epita.fr>
10835
10836 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
10837 of defining YYERROR_VERBOSE.
10838 [AT_DATA]: $4 is now out of C declarations in the prologue.
10839
10840 2001-11-28 Marc Autret <autret_m@epita.fr>
10841
10842 * src/reader.c (parse_dquoted_param): New.
10843 (parse_skel_decl): Use it.
10844 * src/lex.h: Add its prototype.
10845 * src/lex.c (literalchar): Become not static.
10846
10847 2001-11-28 Marc Autret <autret_m@epita.fr>
10848
10849 * src/output.h: And put its extern declaration here.
10850 * src/output.c (error_verbose): Define here.
10851 (prepare): Echo name modification.
10852 * src/getargs.h: Clean its extern declaration.
10853 * src/getargs.c (error_verbose_flag): Remove.
10854 (getargs): Remove case 'e'.
10855 * src/options.c (option_table): 'error-verbose' is now seen as simple
10856 percent option.
10857 Include output.h.
10858
10859 * src/reader.c (read_declarations): Remove case tok_include.
10860 (parse_include_decl): Remove.
10861 * src/lex.h (token_t): Remove tok_include.
10862 * src/options.c (option_table): 'include' is now a simple command line
10863 option.
10864
10865 2001-11-28 Marc Autret <autret_m@epita.fr>
10866
10867 * src/bison.simple: Adjust muscle names.
10868 * src/muscle_tab.c (muscle_init): Also rename the muscles.
10869 * src/output.c (prepare): s/_/-/ for the muscles names.
10870 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
10871
10872 2001-11-28 Marc Autret <autret_m@epita.fr>
10873
10874 * src/bison.simple: Fix debug.
10875 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
10876
10877 2001-11-28 Akim Demaille <akim@epita.fr>
10878
10879 * src/LR0.c (shifts_new): New.
10880 (save_shifts, insert_start_shift, augment_automaton): Use it.
10881
10882 2001-11-28 Akim Demaille <akim@epita.fr>
10883
10884 * src/closure.c (closure): `b' and `ruleno' denote the same value:
10885 keep ruleno only.
10886
10887 2001-11-28 Akim Demaille <akim@epita.fr>
10888
10889 * src/closure.c (closure): Instead of looping over word in array
10890 then bits in words, loop over bits in array.
10891
10892 2001-11-28 Akim Demaille <akim@epita.fr>
10893
10894 * src/closure.c (closure): No longer optimize the special case
10895 where all the bits of `ruleset[r]' are set to 0, to make the code
10896 clearer.
10897
10898 2001-11-28 Akim Demaille <akim@epita.fr>
10899
10900 * src/closure.c (closure): `r' and `c' are new variables, used to
10901 de-obfuscate accesses to RULESET and CORE.
10902
10903 2001-11-28 Akim Demaille <akim@epita.fr>
10904
10905 * src/reduce.c (reduce_print): Use ngettext.
10906 (dump_grammar): Improve the trace accuracy.
10907
10908 2001-11-28 Akim Demaille <akim@epita.fr>
10909
10910 * src/reduce.c (dump_grammar): Don't translate trace messages.
10911
10912 2001-11-28 Akim Demaille <akim@epita.fr>
10913
10914 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
10915 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
10916 as all tags are free'ed afterwards.
10917 From Enrico Scholz.
10918
10919 2001-11-27 Paul Eggert <eggert@twinsun.com>
10920
10921 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
10922 use alloca when we didn't want to, and vice versa.
10923
10924 2001-11-27 Marc Autret <autret_m@epita.fr>
10925
10926 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
10927 initialization.
10928 * src/output.c (prepare): Remove its update.
10929
10930 2001-11-27 Marc Autret <autret_m@epita.fr>
10931
10932 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
10933 Use %error-verbose.
10934
10935 2001-11-27 Marc Autret <autret_m@epita.fr>
10936
10937 * src/bison.simple: Remove YYERROR_VERBOSE using.
10938 Use %%error_verbose.
10939 (yyparse): Likewise.
10940 * src/output.c (prepare): Give its final value.
10941 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
10942 * src/getargs.h: Add its extern declaration.
10943 * src/getargs.c (error_verbose_flag): New int.
10944 (getargs): Update to catch new case.
10945 * src/options.c (option_table): 'error-verbose' is a new option.
10946 (shortopts): Update.
10947
10948 2001-11-27 Akim Demaille <akim@epita.fr>
10949
10950 * src/system.h: Use intl/libgettext.h.
10951 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
10952
10953 2001-11-27 Akim Demaille <akim@epita.fr>
10954
10955 * tests/torture.at (Exploding the Stack Size with Malloc):
10956 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
10957
10958 2001-11-27 Akim Demaille <akim@epita.fr>
10959
10960 * src/files.c: Include error.h.
10961 Reported by Hans Aberg.
10962
10963 2001-11-26 Marc Autret <autret_m@epita.fr>
10964
10965 * src/reader.c (parse_include_decl): New, not yet implemented.
10966 (read_declarations): Add case tok_include.
10967 * src/getargs.h (include): Add its extern definition.
10968 * src/getargs.c (include): New const char *.
10969 (getargs): Add case '-I'.
10970 * src/options.c (option_table): Add include as command line and
10971 percent option.
10972 * src/lex.h (token_t): Add tok_include.
10973
10974 2001-11-26 Akim Demaille <akim@epita.fr>
10975
10976 * src/reader.c (readgram): Make sure rules for mid-rule actions
10977 have a lineno equal to that of their host rule.
10978 Reported by Hans Aberg.
10979 * tests/regression.at (Rule Line Numbers): New.
10980
10981 2001-11-26 Akim Demaille <akim@epita.fr>
10982
10983 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
10984 size_ts.
10985
10986 2001-11-26 Akim Demaille <akim@epita.fr>
10987
10988 * src/complain.c, src/complain.h (error): Remove, provided by
10989 lib/error.[ch].
10990
10991 2001-11-26 Akim Demaille <akim@epita.fr>
10992
10993 * src/reader.c (read_declarations): Don't abort on tok_illegal,
10994 issue an error message.
10995 * tests/regression.at (Invalid %directive): New.
10996 Reported by Hans Aberg.
10997
10998 2001-11-26 Akim Demaille <akim@epita.fr>
10999
11000 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
11001 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11002
11003 2001-11-26 Akim Demaille <akim@epita.fr>
11004
11005 * src/conflicts.c (conflicts_print): Don't complain at all when
11006 there are no reduce/reduce conflicts, and as many shift/reduce
11007 conflicts as expected.
11008 * tests/regression.at (%expect right): Adjust.
11009
11010 2001-11-23 Akim Demaille <akim@epita.fr>
11011
11012 * lib/alloca.c: Update, from fileutils.
11013
11014 2001-11-23 Akim Demaille <akim@epita.fr>
11015
11016 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
11017
11018 2001-11-23 Akim Demaille <akim@epita.fr>
11019
11020 * src/system.h: Include alloca.h.
11021 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
11022
11023 2001-11-23 Akim Demaille <akim@epita.fr>
11024
11025 * src/print_graph.c (print_actions): Remove `rule', unused.
11026 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
11027 pacify GCC's signed < unsigned warnings.
11028 * src/closure.c (itemsetsize): Likewise.
11029 * src/reader.c (symbol_list_new): Static.
11030
11031 2001-11-23 Akim Demaille <akim@epita.fr>
11032
11033 Attaching lineno to buckets is stupid, since only one copy of each
11034 symbol is kept, only the line of the first occurrence is kept too.
11035
11036 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
11037 * src/reader.c (rline_allocated): Remove, unused.
11038 (symbol_list): Have a `line' member.
11039 (symbol_list_new): New.
11040 (readgram): Use it.
11041 * src/print.c (print_grammar): Output the rule line numbers.
11042 * tests/regression.at (Solved SR Conflicts)
11043 (Unresolved SR Conflicts): Adjust.
11044 Reported by Hans Aberg.
11045
11046 2001-11-22 Marc Autret <autret_m@epita.fr>
11047
11048 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
11049
11050 2001-11-22 Marc Autret <autret_m@epita.fr>
11051
11052 * src/muscle_tab.c (muscle_init): Remove initialization of
11053 skeleton muscle.
11054 * src/output.c (output_master_parser): Do it here.
11055
11056 2001-11-20 Akim Demaille <akim@epita.fr>
11057
11058 * po/sv.po: New.
11059 * configure.in (ALL_LINGUAS): Adjust.
11060 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
11061 longer contains strings to translate.
11062
11063 2001-11-19 Akim Demaille <akim@epita.fr>
11064
11065 * src/conflicts.c (conflicts_print): Add a missing \n.
11066
11067 2001-11-19 Akim Demaille <akim@epita.fr>
11068
11069 * src/nullable.c (nullable_print): New.
11070 (set_nullable): Call it when tracing.
11071 Better locality of variables.
11072
11073 2001-11-19 Akim Demaille <akim@epita.fr>
11074
11075 * src/print.c (print_actions): Better locality of variables.
11076
11077 2001-11-19 Akim Demaille <akim@epita.fr>
11078
11079 * src/derives.c (print_derives): Fix and enrich.
11080 * src/closure.c (print_fderives): Likewise.
11081
11082 2001-11-19 Akim Demaille <akim@epita.fr>
11083
11084 * src/closure.c (itemsetend): Remove, replaced with...
11085 (itemsetsize): new.
11086
11087 2001-11-19 Akim Demaille <akim@epita.fr>
11088
11089 * src/LR0.c (kernel_end): Remove, replaced with...
11090 (kernel_size): new.
11091
11092 2001-11-19 Akim Demaille <akim@epita.fr>
11093
11094 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
11095 to clarify.
11096
11097 2001-11-19 Akim Demaille <akim@epita.fr>
11098
11099 * src/closure.c (closure): Use arrays instead of pointers to clarify.
11100
11101 2001-11-19 Akim Demaille <akim@epita.fr>
11102
11103 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
11104 trace messages.
11105 * src/LR0.c: Likewise.
11106 (allocate_itemsets): Use arrays instead of pointers to clarify.
11107
11108 2001-11-19 Akim Demaille <akim@epita.fr>
11109
11110 * src/getargs.c (statistics_flag): Replace with...
11111 (trace_flag): New.
11112 (longopts): Accept --trace instead of --statistics.
11113 * src/getargs.h, src/options.c: Adjust.
11114 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
11115 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
11116
11117 2001-11-19 Akim Demaille <akim@epita.fr>
11118
11119 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
11120 pointers to clarify the code.
11121 (save_reductions, save_shifts): Factor common parts of alternatives.
11122
11123 2001-11-19 Akim Demaille <akim@epita.fr>
11124
11125 * src/LR0.c (new_state, get_state): Complete TRACE code.
11126 * src/closure.c: Include `reader.h' to get `tags', needed by the
11127 trace code.
11128 Rename the conditional DEBUG as TRACE.
11129 Output consistently TRACEs to stderr, not stdout.
11130 * src/derives.c: Likewise.
11131 * src/reduce.c: (inaccessable_symbols): Using if is better style
11132 than goto.
11133 Use `#if TRACE' instead of `#if 0' for tracing code.
11134
11135 2001-11-19 Akim Demaille <akim@epita.fr>
11136
11137 * src/system.h (LIST_FREE, shortcpy): New.
11138 * src/LR0.c: Use them.
11139 * src/output.c (free_itemsets, free_reductions, free_shifts):
11140 Remove, replaced by LIST_FREE.
11141
11142 2001-11-19 Akim Demaille <akim@epita.fr>
11143
11144 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
11145 (REDUCTIONS_ALLOC): New.
11146 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
11147 allocation.
11148
11149 2001-11-19 Akim Demaille <akim@epita.fr>
11150
11151 * src/LR0.c (new_state): Complete trace code.
11152 * src/nullable.c (set_nullable): Don't translate traces.
11153
11154 2001-11-19 Akim Demaille <akim@epita.fr>
11155
11156 * src/print_graph.c (print_core): Better locality of variables.
11157 * src/print.c (print_core): Likewise.
11158
11159 2001-11-19 Akim Demaille <akim@epita.fr>
11160
11161 * src/vcg.c: You do the output, so you are responsible of the
11162 handling of VCG syntax, in particular: use quotearg.
11163 * src/print_graph.c: Don't.
11164 (print_actions): Don't output the actions as part of the nodes,
11165 since that's the job of the edges.
11166 (print_state): Don't output by hand: fill the node description,
11167 and ask for its output.
11168
11169 2001-11-19 Akim Demaille <akim@epita.fr>
11170
11171 * src/bison.simple (yyparse): When verbosely reporting an error,
11172 no longer put additional quotes around token names.
11173 * tests/calc.at: Adjust.
11174
11175 2001-11-19 Akim Demaille <akim@epita.fr>
11176
11177 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
11178 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
11179 * src/output.c: Adjust.
11180
11181 2001-11-19 Akim Demaille <akim@epita.fr>
11182
11183 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
11184 (rule_t): this.
11185 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
11186
11187 2001-11-19 Akim Demaille <akim@epita.fr>
11188
11189 * src/gram.h (rule_t): New.
11190 (rule_table): New.
11191 (rrhs, rlhs): Remove, part of state_t.
11192 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
11193 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
11194 * src/reader.c, src/reduce.c: Adjust.
11195
11196 2001-11-19 Akim Demaille <akim@epita.fr>
11197
11198 * src/reader.c (symbols_output): New, extracted from...
11199 (packsymbols): Here.
11200 (reader): Call it.
11201
11202 2001-11-19 Akim Demaille <akim@epita.fr>
11203
11204 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
11205 (maxrhs): this new function.
11206
11207 2001-11-19 Akim Demaille <akim@epita.fr>
11208
11209 * src/lalr.c (F): New macro to access the variable F.
11210 Adjust.
11211
11212 2001-11-19 Akim Demaille <akim@epita.fr>
11213
11214 * src/lalr.h (LA): New macro to access the variable LA.
11215 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11216 * src/lalr.c: Adjust.
11217
11218 2001-11-19 Akim Demaille <akim@epita.fr>
11219
11220 * src/lalr.c (initialize_LA): Only initialize LA. Let...
11221 (set_state_table): handle the `lookaheads' members.
11222
11223 2001-11-19 Akim Demaille <akim@epita.fr>
11224
11225 * src/lalr.h (lookaheads): Removed array, whose contents is now
11226 a member of...
11227 (state_t): this structure.
11228 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11229 Adjust.
11230
11231 2001-11-19 Akim Demaille <akim@epita.fr>
11232
11233 * src/lalr.h (consistent): Removed array, whose contents is now
11234 a member of...
11235 (state_t): this structure.
11236 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11237 Adjust.
11238
11239 2001-11-19 Akim Demaille <akim@epita.fr>
11240
11241 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
11242 contents are now members of...
11243 (state_t): this structure.
11244 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11245 Adjust.
11246
11247 2001-11-19 Akim Demaille <akim@epita.fr>
11248
11249 * src/lalr.h (state_t): New.
11250 (state_table): Be a state_t * instead of a core **.
11251 (accessing_symbol): Remove, part of state_t.
11252 * src/lalr.c: Adjust.
11253 (set_accessing_symbol): Merge into...
11254 (set_state_table): this.
11255 * src/print_graph.c, src/conflicts.c: Adjust.
11256
11257 2001-11-14 Akim Demaille <akim@epita.fr>
11258
11259 * tests/calc.at, tests/output.at, tests/regression.at,
11260 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
11261 now the tests are run in private dirs, therefore AC_CLEANUP and
11262 family can be simplified to 0-ary.
11263 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
11264 use abs. path to find config.h.
11265 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
11266 stderr, there can be way too much random noise.
11267 Instead pass -Werror to GCC and rely on the exit status.
11268 Reported by Wolfram Wagner.
11269
11270 2001-11-14 Akim Demaille <akim@epita.fr>
11271
11272 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
11273 defined only if yyoverflow is defined, to avoid `warning: unused
11274 variable `yyvs1''.
11275 Reported by The Test Suite.
11276
11277 2001-11-14 Akim Demaille <akim@epita.fr>
11278
11279 * src/print.c: Include reduce.h.
11280 Reported by Hans Aberg.
11281
11282 2001-11-14 Akim Demaille <akim@epita.fr>
11283
11284 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
11285 Revert a previous patch: these are really const.
11286 * src/conflicts.c (conflict_report): Additional useless pair of
11287 braces to pacify GCC's warnings for `if () if () {} else {}'.
11288 * src/lex.c (parse_percent_token): Replace equal_offset with
11289 arg_offset.
11290 arg is const.
11291 Be sure to strdup `arg' when used, since there is no reason for
11292 token_buffer not to change.
11293
11294 2001-11-14 Akim Demaille <akim@epita.fr>
11295
11296 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
11297 definition.
11298 * src/main.c (main): Use them.
11299 Suggested by Hans Aberg.
11300
11301 2001-11-12 Akim Demaille <akim@epita.fr>
11302
11303 * src/system.h (ngettext): Now that we use ngettext, be sure to
11304 provide a default definition when NLS are not used.
11305
11306 2001-11-12 Akim Demaille <akim@epita.fr>
11307
11308 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
11309 Use @kbd to denote user input.
11310 (Language and Grammar): ANSIfy the example.
11311 Adjust its layout for info/notinfo.
11312 (Location Tracking Calc): Output error messages to stderr.
11313 Output locations in a more GNUtically correct way.
11314 Fix a couple of Englishos.
11315 Adjust @group/@end group pairs.
11316
11317 2001-11-12 Akim Demaille <akim@epita.fr>
11318
11319 %expect was not functioning at all.
11320
11321 * src/conflicts.c (expected_conflicts): Set to -1.
11322 (conflict_report): Use ngettext.
11323 (conflicts_print): Check %expect and make its violation an error.
11324 * doc/bison.texinfo (Expect Decl): Adjust.
11325 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
11326 * tests/regression.at (%expect not enough, %expect right)
11327 (%expect too much): New.
11328
11329 2001-11-12 Akim Demaille <akim@epita.fr>
11330
11331 * tests/regression.at (Conflicts): Rename as...
11332 (Unresolved SR Conflicts): this.
11333 (Solved SR Conflicts): New.
11334
11335 2001-11-12 Akim Demaille <akim@epita.fr>
11336
11337 * src/reduce.c (print_results): Rename as...
11338 (reduce_output): This.
11339 Output to OUT, passed as argument, instead of output_obstack.
11340 (dump_grammar): Likewise.
11341 (reduce_free): New.
11342 Also free V1.
11343 (reduce_grammar): No longer call reduce_output, since...
11344 * src/print.c (print_results): do it.
11345 * src/main.c (main): Call reduce_free;
11346
11347 2001-11-12 Akim Demaille <akim@epita.fr>
11348
11349 * src/conflicts.c (print_reductions): Accept OUT as argument.
11350 Output to it, not to output_obstack.
11351 * src/print.c (print_actions): Adjust.
11352
11353 2001-11-12 Akim Demaille <akim@epita.fr>
11354
11355 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
11356 the result instead of using...
11357 (src_total, rrc_total, src_count, rrc_count): Remove.
11358 (any_conflicts): Remove.
11359 (print_conflicts): Split into...
11360 (conflicts_print, conflicts_output): New.
11361 * src/conflicts.h: Adjust.
11362 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
11363 * src/print.c (print_grammar): Issue `\n' between two rules.
11364 * tests/regression.at (Conflicts): New.
11365 Reported by Tom Lane.
11366
11367 2001-11-12 Akim Demaille <akim@epita.fr>
11368
11369 * tests/regression.at (Invalid input): Remove, duplicate with
11370 ``Invalid input: 1''.
11371
11372 2001-11-12 Akim Demaille <akim@epita.fr>
11373
11374 * tests/torture.at (AT_DATA_STACK_TORTURE)
11375 (Exploding the Stack Size with Alloca)
11376 (Exploding the Stack Size with Malloc): New.
11377
11378 2001-11-12 Akim Demaille <akim@epita.fr>
11379
11380 * src/bison.simple (YYSTACK_REALLOC): New.
11381 (yyparse) [!yyoverflow]: Use it and free the old stack.
11382 Reported by Per Allansson.
11383
11384 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
11385
11386 * src/bison.simple: Define type yystype instead of YYSTYPE, and
11387 define CPP macro, which substitute YYSTYPE by yystype.
11388 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
11389 with yyltype/YYLTYPE. This allows inclusion of the generated
11390 header within the parser if the compiler, such as GGC, accepts
11391 multiple equivalent #defines.
11392 From Akim.
11393
11394 2001-11-05 Akim Demaille <akim@epita.fr>
11395
11396 * src/reader.c (symbols_output): New, extracted from...
11397 (packsymbols): here.
11398 (reader): Adjust.
11399
11400 2001-11-05 Akim Demaille <akim@epita.fr>
11401
11402 * src/lex.c (parse_percent_token): s/quotearg/quote/.
11403
11404 2001-11-05 Akim Demaille <akim@epita.fr>
11405
11406 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
11407 pattern.
11408
11409 2001-11-05 Akim Demaille <akim@epita.fr>
11410
11411 * src/options.h (struct option_table_struct): set_flags is void*.
11412 * src/options.c (longopts): Support `--output' and `%output'.
11413 (usage): Adjust.
11414 * src/lex.h (tok_setopt): Remove, replaced with...
11415 (tok_intopt, tok_stropt): these new guys.
11416 * src/lex.c (getopt.h): Not needed.
11417 (token_buffer, unlexed_token_buffer): Not const.
11418 (percent_table): Promote `-' over `_' in directive names.
11419 Active `%name-prefix', `file-prefix', and `output'.
11420 (parse_percent_token): Accept possible arguments to directives.
11421 Promote `-' over `_' in directive names.
11422
11423 2001-11-04 Akim Demaille <akim@epita.fr>
11424
11425 * doc/bison.texinfo (Decl Summary): Split the list into
11426 `directives for grammars' and `directives for bison'.
11427 Sort'em.
11428 Add description of `%name-prefix', `file-prefix', and `output'.
11429 Promote `-' over `_' in directive names.
11430 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
11431 Simplify the description of `--name-prefix'.
11432 Promote `-' over `_' in directive names.
11433 Promote `--output' over `--output-file'.
11434 Fix the description of `--defines'.
11435 * tests/output.at: Exercise %file-prefix and %output.
11436
11437 2001-11-02 Akim Demaille <akim@epita.fr>
11438
11439 * doc/refcard.tex: Update.
11440
11441 2001-11-02 Akim Demaille <akim@epita.fr>
11442
11443 * src/symtab.h (SUNDEF): New.
11444 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
11445 stand for `uninitialized', instead of 0.
11446 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
11447 * src/lex.c (lex): Adjust.
11448
11449 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
11450 Number it 0.
11451 Let yylex return it instead of a plain 0.
11452 Reported by Dick Streefland.
11453
11454 2001-11-02 Akim Demaille <akim@epita.fr>
11455
11456 * tests/regression.at (Mixing %token styles): New test.
11457
11458 2001-11-02 Akim Demaille <akim@epita.fr>
11459
11460 * src/reader.c (parse_thong_decl): Formatting changes.
11461 (token_translations_init): New, extracted from...
11462 (packsymbols): Here.
11463 Adjust.
11464
11465 2001-11-01 Akim Demaille <akim@epita.fr>
11466
11467 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
11468 Check that `9foo.y' produces correct cpp guards.
11469 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
11470 guards.
11471 Reported by Wwp.
11472
11473 2001-11-01 Akim Demaille <akim@epita.fr>
11474
11475 * tests/regression.at (Invalid input: 2): New.
11476 * src/lex.c (unlexed_token_buffer): New.
11477 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
11478 too.
11479 Reported by Wwp.
11480
11481 2001-11-01 Akim Demaille <akim@epita.fr>
11482
11483 * tests/calc.at: Catch up with 1.30.
11484 * configure.in: Bump to 1.49a.
11485 Adjust to newer Autotest.
11486
11487 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
11488
11489 * src/conflicts.c: Move global variables rrc_total and src_total ...
11490 (print_conflicts): here.
11491 * src/output.c (output): Free global variable user_toknums.
11492 * src/lex.c (token_obstack): Become static.
11493
11494 2001-10-18 Akim Demaille <akim@epita.fr>
11495
11496 * tests/atlocal.in (GCC): Add.
11497 * tests/calc.at: s/m4_match/m4_bmatch/.
11498 s/m4_patsubst/m4_bpatsubst/.
11499 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
11500 * configure.in: AC_SUBST(GCC).
11501
11502 2001-10-14 Marc Autret <autret_m@epita.fr>
11503
11504 * src/options.c (create_long_option_table): Fix.
11505
11506 2001-10-10 Akim Demaille <akim@epita.fr>
11507
11508 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
11509
11510 2001-10-04 Akim Demaille <akim@epita.fr>
11511
11512 * src/reader.c (parse_union_decl): Push the caracters in
11513 union_obstack, not attrs_obstack.
11514
11515 2001-10-04 Akim Demaille <akim@epita.fr>
11516
11517 Merge in the branch 1.29.
11518
11519 * src/reader.c (packsymbols): Use a temporary obstack for
11520 `%%tokendef', since output_stack is already used elsewhere.
11521
11522 2001-10-02 Akim Demaille <akim@epita.fr>
11523
11524 Bump 1.29d.
11525
11526 2001-10-02 Akim Demaille <akim@epita.fr>
11527
11528 Version 1.29c.
11529
11530 2001-10-02 Akim Demaille <akim@epita.fr>
11531
11532 * tests/regression.at (Invalid CPP headers): New.
11533 From Alexander Belopolsky.
11534 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
11535
11536 2001-10-02 Akim Demaille <akim@epita.fr>
11537
11538 * tests/regression.at (Invalid input): New.
11539 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
11540 Reported by Shura.
11541
11542 2001-10-02 Akim Demaille <akim@epita.fr>
11543
11544 * tests/calc.at: Now that --debug works, the tests must be adjusted.
11545
11546 2001-10-02 Akim Demaille <akim@epita.fr>
11547
11548 * src/output.c (output_parser): Assert `skeleton'.
11549 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
11550 systems.
11551 From Shura.
11552
11553 2001-10-01 Marc Autret <autret_m@epita.fr>
11554
11555 * src/lex.h: Echo modifications.
11556 * src/lex.c (unlex): Parameter is now token_t.
11557 From Hans Aberg.
11558
11559 2001-10-01 Marc Autret <autret_m@epita.fr>
11560
11561 * src/main.c: Include lex.h.
11562 From Hans Aberg.
11563
11564 2001-09-29 Akim Demaille <akim@epita.fr>
11565
11566 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
11567
11568 2001-09-28 Akim Demaille <akim@epita.fr>
11569
11570 * tests/testsuite.at: Update to newer Autotest.
11571 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
11572
11573 2001-09-27 Akim Demaille <akim@epita.fr>
11574
11575 Position independent wrapper.
11576
11577 * tests/bison: Remove.
11578 * tests/bison.in: New.
11579 * configure.in: Adjust.
11580
11581 2001-09-27 Paul Eggert <eggert@twinsun.com>
11582
11583 Port quotearg fixes from tar 1.13.24.
11584
11585 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
11586 tm to be declared.
11587 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
11588 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
11589
11590 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
11591 * m4/mbrtowc.m4: New file.
11592 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
11593 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
11594
11595 2001-09-27 Akim Demaille <akim@epita.fr>
11596
11597 Bump to 1.29c.
11598
11599 2001-09-27 Akim Demaille <akim@epita.fr>
11600
11601 Version 1.29b.
11602
11603 2001-09-25 Akim Demaille <akim@epita.fr>
11604
11605 * src/system.h: Include `xalloc.h'.
11606 Remove it from the C files.
11607 * src/files.c (output_files): Free the obstacks.
11608 * src/lex.c (init_lex): Rename as...
11609 (lex_init): this.
11610 (lex_free): New.
11611 * src/main.c (main): Use it.
11612
11613 2001-09-24 Marc Autret <autret_m@epita.fr>
11614
11615 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
11616 to output informations in fout (FILE*).
11617 (open_graph, close_graph): Likewise.
11618 (output_graph, output_edge, output_node): Likewise.
11619 * src/vcg.h: Update function prototypes.
11620 * src/print_graph.c (print_graph): Open output graph file.
11621 (print_actions): Adjust.
11622 * src/files.h: Remove extern declaration.
11623 * src/files.c: Remove graph_obstack declaration.
11624 (open_files): Remove graph_obstack initialization.
11625 (output_files): Remove graph_obstack saving.
11626
11627 2001-09-24 Marc Autret <autret_m@epita.fr>
11628
11629 * src/files.c (compute_output_file_names): Fix.
11630
11631 2001-09-24 Marc Autret <autret_m@epita.fr>,
11632 Akim Demaille <akim@epita.fr>
11633
11634 * src/reader.c (reader): Remove call to free_symtab ().
11635 * src/main.c (main): Call it here.
11636 Include symtab.h.
11637 * src/conflicts.c (initialize_conflicts): Rename as...
11638 (solve_conflicts): this.
11639 * src/print.c (print_core, print_actions, print_state)
11640 (print_grammar): Dump to a file instead a `output_obstack'.
11641 (print_results): Dump `output_obstack', and then proceed with the
11642 FILE *.
11643 * src/files.c (compute_output_file_names, close_files): New.
11644 (output_files): Adjust.
11645 * src/main.c (main): Adjust.
11646
11647 2001-09-23 Marc Autret <autret_m@epita.fr>
11648
11649 * src/files.c (compute_header_macro): Computes header macro name
11650 from spec_defines_file when given.
11651
11652 2001-09-23 Marc Autret <autret_m@epita.fr>
11653
11654 * src/files.c (output_files): Add default extensions.
11655
11656 2001-09-22 Akim Demaille <akim@epita.fr>
11657
11658 * src/conflicts.c (finalize_conflicts): Rename as...
11659 (free_conflicts): this.
11660
11661 2001-09-22 Akim Demaille <akim@epita.fr>
11662
11663 * src/gram.c (gram_free): Rename back as...
11664 (dummy): this.
11665 (output_token_translations): Free `token_translations'.
11666 * src/symtab.c (free_symtab): Free the tag field.
11667
11668 2001-09-22 Akim Demaille <akim@epita.fr>
11669
11670 Remove `translations' as it is always set to true.
11671
11672 * src/gram.h: Adjust.
11673 * src/reader.c (packsymbols, parse_token_decl): Adjust
11674 * src/print.c (print_grammar): Adjust.
11675 * src/output.c (output_token_translations): Adjust.
11676 * src/lex.c (lex): Adjust.
11677 * src/gram.c: Be sure the set pointers to NULL.
11678 (dummy): Rename as...
11679 (gram_free): this.
11680
11681 2001-09-22 Akim Demaille <akim@epita.fr>
11682
11683 * configure.in: Invoke AM_LIB_DMALLOC.
11684 * src/system.h: Use dmalloc.
11685 * src/LR0.c: Be sure to have pointers initialized to NULL.
11686 (allocate_itemsets): Allocate kernel_items only if needed.
11687
11688 2001-09-22 Akim Demaille <akim@epita.fr>
11689
11690 * configure.in: Bump to 1.29b.
11691 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
11692 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
11693 need xmalloc.c in calc.y.
11694 From Pascal Bart.
11695
11696 2001-09-21 Akim Demaille <akim@epita.fr>
11697
11698 Version 1.29a.
11699 * Makefile.maint, config/config.guess, config/config.sub,
11700 * config/missing: Update from masters.
11701 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
11702 upon package.m4.
11703 * configure.in (ALL_LINGUAS): Add `tr'.
11704
11705 2001-09-21 Akim Demaille <akim@epita.fr>
11706
11707 * tests/Makefile.am (package.m4): Move to...
11708 ($(srcdir)/$(TESTSUITE)): here.
11709
11710 2001-09-20 Akim Demaille <akim@epita.fr>
11711
11712 * src/complain.c: No longer try to be standalone: use system.h.
11713 Don't assume __STDC__ is defined to 1. Just test if it is defined.
11714 * src/complain.h: Likewise.
11715 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
11716 Remove the unused variable `n'.
11717 From Albert Chin-A-Young.
11718
11719 2001-09-18 Marc Autret <autret_m@epita.fr>
11720
11721 * doc/bison.1: Update.
11722 * doc/bison.texinfo (Bison Options): Update --defines and --graph
11723 descriptions.
11724 (Option Cross Key): Update.
11725 Add --graph.
11726
11727 2001-09-18 Marc Autret <autret_m@epita.fr>
11728
11729 * tests/regression.at: New test (comment in %union).
11730
11731 2001-09-18 Marc Autret <autret_m@epita.fr>
11732
11733 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
11734 do that.
11735 Reported by Keith Browne.
11736
11737 2001-09-18 Marc Autret <autret_m@epita.fr>
11738
11739 * tests/output.at: Add tests for --defines and --graph.
11740
11741 2001-09-18 Marc Autret <autret_m@epita.fr>
11742
11743 * tests/output.at: Removes tests of %{header,src}_extension features.
11744
11745 2001-09-18 Akim Demaille <akim@epita.fr>
11746
11747 * tests/Makefile.am (package.m4): New.
11748 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
11749 (_AT_CHECK_CALC_ERROR): Likewise.
11750 Factor the `, ' part of verbose error messages.
11751
11752 2001-09-18 Marc Autret <autret_m@epita.fr>
11753
11754 * src/getargs.c (longopts): Declare --defines and --graph as options
11755 with optional arguments.
11756 * src/files.h: Add extern declarations.
11757 * src/files.c (spec_graph_file, spec_defines_file): New.
11758 (output_files): Update.
11759 Remove CPP-outed code.
11760
11761 2001-09-18 Marc Autret <autret_m@epita.fr>
11762
11763 Turn off %{source,header}_extension feature.
11764
11765 * src/files.c (compute_exts_from_gf): Update.
11766 (compute_exts_from_src): Update.
11767 (output_files): CPP-out useless code.
11768 * src/files.h: Remove {header,source}_extension extern declarations.
11769 * src/reader.c (parse_dquoted_param): CPP-out.
11770 (parse_header_extension_decl): Remove.
11771 (parse_source_extension_decl): Remove.
11772 (read_declarations): Remove cases tok_{hdrext,srcext}.
11773 * src/lex.c (percent_table): Remove {header,source}_extension entries.
11774 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
11775
11776 2001-09-10 Akim Demaille <akim@epita.fr>
11777
11778 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
11779 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
11780 (AT_CHECK_OUTPUT): this.
11781 Merely check ls' exit status, its output is useless.
11782
11783 2001-09-10 Akim Demaille <akim@epita.fr>
11784
11785 * tests/calc.at: Use m4_match.
11786 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
11787
11788 2001-09-10 Marc Autret <autret_m@epita.fr>,
11789 Akim Demaille <akim@epita.fr>
11790
11791 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
11792 enum color_e.
11793 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
11794 to `normal'.
11795 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
11796 * src/lex.h: Adjust prototype.
11797 (token_t): Add `tok_undef'.
11798 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
11799 (parse_percent_token): Now returns token_t.
11800 Add default statement in switch.
11801 (lex): Separate `c' as an input variable, from the token_t result
11802 part.
11803 (unlexed): Is a token_t.
11804
11805 2001-09-10 Akim Demaille <akim@epita.fr>
11806
11807 * configure.in: Bump to 1.29a.
11808
11809 2001-09-07 Akim Demaille <akim@epita.fr>
11810
11811 Version 1.29.
11812
11813 2001-08-30 Akim Demaille <akim@epita.fr>
11814
11815 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
11816 * m4/atconfig.m4: Remove.
11817 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
11818 * tests/bison: New.
11819 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
11820 m4_if, m4_patsubst, and m4_regexp.
11821 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
11822 `input' file instead of echo.
11823
11824 2001-08-29 Akim Demaille <akim@epita.fr>
11825
11826 Bump to 1.28e.
11827
11828 2001-08-29 Akim Demaille <akim@epita.fr>
11829
11830 Version 1.28d.
11831
11832 2001-08-29 Paul Eggert <eggert@twinsun.com>
11833
11834 * src/bison.simple (yyparse): Don't take the address of an
11835 item before the start of an array, as that doesn't conform to
11836 the C Standard.
11837
11838 2001-08-29 Robert Anisko <anisko_r@epita.fr>
11839
11840 * doc/bison.texinfo (Location Tracking Calc): New node.
11841
11842 2001-08-29 Paul Eggert <eggert@twinsun.com>
11843
11844 * src/output.c (output): Do not define const, as this now
11845 causes more problems than it cures.
11846
11847 2001-08-29 Akim Demaille <akim@epita.fr>
11848
11849 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
11850 the nodes.
11851 Be sure to tag the `detailmenu'.
11852
11853 2001-08-29 Akim Demaille <akim@epita.fr>
11854
11855 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
11856 download in a tmp dir.
11857
11858 2001-08-28 Marc Autret <autret_m@epita.fr>
11859
11860 * config/depcomp: New file.
11861
11862 2001-08-28 Marc Autret <autret_m@epita.fr>
11863
11864 * doc/bison.1 (mandoc): Adjust.
11865 From Juan Manuel Guerrero.
11866
11867 2001-08-28 Marc Autret <autret_m@epita.fr>
11868
11869 * src/print_graph.c (print_state): Fix.
11870
11871 2001-08-27 Marc Autret <autret_m@epita.fr>
11872
11873 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
11874 char * members.
11875 Echo modifications to the functions prototypes.
11876 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
11877
11878 2001-08-27 Marc Autret <autret_m@epita.fr>
11879
11880 * src/vcg.c: Include `xalloc.h'.
11881 (add_colorentry): New.
11882 (add_classname): New.
11883 (add_infoname): New.
11884 * src/vcg.h: Add new prototypes.
11885
11886 2001-08-27 Akim Demaille <akim@epita.fr>
11887
11888 * Makefile.maint: Sync. again with CVS Autoconf.
11889
11890 2001-08-27 Akim Demaille <akim@epita.fr>
11891
11892 * Makefile.maint: Formatting changes.
11893 (po-update, cvs-update, update): New targets.
11894 (AMTAR): Remove.
11895
11896 2001-08-27 Akim Demaille <akim@epita.fr>
11897
11898 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
11899 * Makefile.maint: Sync. with CVS Autoconf.
11900
11901 2001-08-27 Marc Autret <autret_m@epita.fr>
11902
11903 * src/vcg.h (struct infoname_s): New.
11904 (struct colorentry_s): New.
11905 (graph_s): New fields {vertical,horizontal}_order in structure.
11906 Add `infoname' field.
11907 Add `colorentry' field;
11908 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
11909 (G_HORIZONTAL_ORDER): New.
11910 (G_INFONAME): New.
11911 (G_COLORENTRY): New.
11912 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
11913 Add output of `infoname'.
11914 Add output of `colorentry'.
11915
11916 2001-08-27 Marc Autret <autret_m@epita.fr>
11917
11918 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
11919 This one shadowed a global parameter.
11920
11921 2001-08-24 Marc Autret <autret_m@epita.fr>
11922
11923 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
11924 instead of `unsigned'.
11925 (print_state): Do not call obstack_object_size () in obstack_grow ()
11926 to avoid macro variables shadowing.
11927
11928 2001-08-23 Marc Autret <autret_m@epita.fr>
11929
11930 * src/lex.c (percent_table): Typo: s/naem/name/.
11931 Add graph option.
11932 Normalize new options declarations.
11933
11934 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
11935
11936 * tests/suite.at: Exercise %header_extension and %source_extension.
11937
11938 2001-08-16 Marc Autret <autret_m@epita.fr>
11939
11940 * src/reader.c (parse_dquoted_param): New.
11941 (parse_header_extension_decl): Use it.
11942 (parse_source_extension_decl): Likewise.
11943
11944 2001-08-16 Marc Autret <autret_m@epita.fr>
11945
11946 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
11947 (get_xxxx_str): Use assert () instead of complain ().
11948 Remove return invokations in default cases.
11949 (get_decision_str): Modify default behaviour. Remove second argument.
11950 Echo modifications on calls.
11951 (output_graph): Fix.
11952
11953 2001-08-16 Marc Autret <autret_m@epita.fr>
11954
11955 * src/getargs.c (usage): Update with ``-g, --graph''.
11956
11957 2001-08-16 Marc Autret <autret_m@epita.fr>
11958
11959 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
11960 (Option Cross Key): Likewise.
11961 * doc/bison.1: Update.
11962
11963 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
11964
11965 * src/output.c (output_master_parser): Don't finish action_obstack.
11966 (output_parser): Don't care about the muscle action, here.
11967 (prepare): Copy the action_obstack in the action muscle.
11968 (output): Free action_obstack.
11969
11970 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
11971
11972 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
11973 will contain `%union' declaration.
11974 (parse_union_decl): Delete #line directive output.
11975 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
11976 informations about %union.
11977 (parse_union_decl): Copy the union_obstack in the muscle stype.
11978 * src/bison.simple: Add new #line directive.
11979 Add typdef %%stype YYSTYPE.
11980
11981 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
11982
11983 * src/bison.simple: Add new `#line' directive.
11984
11985 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
11986
11987 * src/bison.simple: New `#line' directive.
11988 * src/output.c (output_parser): Support new dynamic muscle input_line.
11989
11990 2001-09-22 Marc Autret <autret_m@epita.fr>
11991
11992 * src/output.c (output_master_parser): New.
11993 (output_parser): Be more re-entrant.
11994
11995 2001-09-21 Marc Autret <autret_m@epita.fr>
11996
11997 * src/reader.c (copy_definition, parse_union_decl): Update and use
11998 `linef' muscle.
11999 (copy_action): Likewise.
12000 Use obstack_1grow ().
12001 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
12002
12003 2001-09-21 Marc Autret <autret_m@epita.fr>
12004
12005 * src/options.c (option_table): Adjust.
12006 * src/lex.c (parse_percent_token): Fix.
12007
12008 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
12009
12010 * src/options.c (symtab.h): Include it, need by lex.h.
12011
12012 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
12013
12014 * src/lex.c (parse_percent_token): Change type of variable `tx', which
12015 is now an option_table_struct*.
12016 (option_strcmp): New function option_strcmp.
12017 (parse_percent_token): Call option_strcmp.
12018 * src/getargs.c (xalloc.h, options.h): Include it.
12019 (getargs): Call create_long_option_table.
12020 (getargs): Free longopts at the end of the function.
12021 (shortopts): Move in options.c.
12022 * src/options.c (create_long_option_table): New function. Convert
12023 information from option_table to option structure.
12024 * src/reader.c (options.h): Include it.
12025
12026 * src/Makefile.am: Adjust.
12027 * src/options.c (option_table): Create from longopts and percent_table.
12028 * src/getargs.c (longopts): Delete.
12029 * src/lex.c (struct percent_table_struct): Delete.
12030 (percent_table): Delete.
12031 (options.h): Include it.
12032 * src/options.c: Create.
12033 * src/options.h: Create.
12034 Declare enum opt_access_e.
12035 Define struct option_table_struct.
12036
12037 2001-09-20 Marc Autret <autret_m@epita.fr>
12038
12039 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
12040 sections of Bison.
12041
12042 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
12043
12044 * src/bison.simple: s/%%filename/%%skeleton.
12045 * src/muscle_tab.c (getargs.h): Include it.
12046 (muscle_init): Insert new muscle skeleton.
12047
12048 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
12049
12050 * src/output.c (output_parser): Delete unused variable actions_dumped.
12051
12052 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
12053
12054 * src/output.c (output): Delete call to reader_output_yylsp.
12055 * src/reader.c (reader): Likewise.
12056 * src/reader.h: Delete declaration of reader_output_yylsp.
12057
12058 2001-09-02 Marc Autret <autret_m@epita.fr>
12059
12060 * src/reader.c: Include muscle_tab.h.
12061 (parse_union_decl): Update.
12062 (parse_macro_decl): Rename parse_muscle_decl.
12063 Update to use renamed functions and variable.
12064 (read_declarations, copy_action, read_additionnal_code, : Updated
12065 with correct variables and functions names.
12066 (packsymbols, reader): Likewise.
12067
12068 * src/reader.h (muscle_obstack): Extern declaration update.
12069
12070 * src/output.c: Include muscle_tab.h
12071 In all functions using macro_insert, change by using muscle_insert ().
12072 (macro_obstack): Rename muscle_obstack.
12073 Echo modifications in the whole file.
12074 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
12075 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
12076 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
12077
12078 * src/muscle_tab.h: Update double inclusion macros.
12079 (macro_entry_s): Rename muscle_entry_s.
12080 Update prototypes.
12081
12082 * src/muscle_tab.c: Include muscle_tab.h.
12083 Rename macro_tabble to muscle_table.
12084 (mhash1, mhash2, mcmp): Use muscle_entry.
12085 (macro_init): Rename muscle_init. Update.
12086 (macro_insert): Rename muscle_insert. Update.
12087 (macro_find): Rename muscle_find. Update.
12088
12089 * src/main.c: Include muscle_tab.h.
12090 (main): Call muscle_init ().
12091 * src/Makefile.am (bison_SOURCES): Echo modifications.
12092
12093 2001-09-02 Marc Autret <autret_m@epita.fr>
12094
12095 Now the files macro_tab.[ch] are named muscle_tab.[ch].
12096
12097 * src/muscle_tab.c, src/muscle_tab.h: Add files.
12098
12099 2001-09-02 Marc Autret <autret_m@epita.fr>
12100
12101 * src/macrotab.c, src/macrotab.h: Remove.
12102
12103 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
12104
12105 * src/reader.c (copy_guard): Use muscle to specify the `#line'
12106 filename.
12107
12108 2001-09-01 Marc Autret <autret_m@epita.fr>
12109
12110 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
12111 to an explicit value to activate the feature. We do it here.
12112
12113 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
12114
12115 * src/output.c (prepare): Delete the `filename' muscule insertion.
12116 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
12117 (parse_union_decl): Likewise.
12118 * src/macrotab.c (macro_init): Initialize filename by infile.
12119
12120 2001-08-31 Marc Autret <autret_m@epita.fr>
12121
12122 * src/bison.simple (YYLSP_NEEDED): New definition.
12123 * src/output.c (prepare): Add macro insertion of `locations_flag'
12124
12125 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
12126
12127 * src/output.c (prepare): Delete insertion of previous muscles,
12128 and insert the `prefix' muscles.
12129 * src/macrotab.c (macro_init): Likewise.
12130 (macro_init): Initialization prefix directive by `yy'.
12131 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
12132 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
12133 yylval, yydebug, yyerror, yynerrs and yyparse.
12134 New directive `#define' to substitute yydebug, ... with option
12135 name_prefix.
12136
12137 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
12138
12139 * src/main.c (main): Standardize.
12140 * src/output.c (output_table_data, output_parser): Likewise.
12141 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
12142
12143 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
12144
12145 * src/reader.c (read_additionnal_code): Rename %%user_code to
12146 %%epilogue.
12147 * src/output.c (output): Rename %%declarations to %%prologue.
12148 * src/bison.simple: Echo modifications.
12149
12150 2001-08-31 Marc Autret <autret_m@epita.fr>
12151
12152 * src/reader.c (readgram): CleanUp.
12153 (output_token_defines): Likewise.
12154 (packsymbols): Likewise.
12155 (reader): Likewise.
12156 * src/output.c (output): CPP-out useless code.
12157
12158 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
12159
12160 * src/reader.c (reader): Delete obsolete call to function
12161 output_trailers and output_headers.
12162 * src/output.h: Remove obsolete functions prototypes of output_headers
12163 and output_trailers.
12164
12165 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
12166
12167 * src/main.c: Include macrotab.h.
12168 * src/macrotab.h (macro_entry_s): Constify fields.
12169 Adjust functions prototypes.
12170 * src/macrotab.c (macro_insert): Constify key and value.
12171 (macro_find): Constify key.
12172 (macro_insert): Include 'xalloc.h'
12173 (macro_insert): Use XMALLOC.
12174 (macro_find): Constify return value.
12175 * src/output.c (output_table_data): Rename table to table_data.
12176 (output_parser): Constify macro_key, macro_value.
12177
12178 2001-08-30 Marc Autret <autret_m@epita.fr>
12179
12180 * src/reader.c (parse_skel_decl): New.
12181 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
12182 * src/lex.h (token_t): New token `tok_skel'.
12183 * src/lex.c (percent_table): Add skeleton option entry.
12184 Standardize.
12185
12186 2001-08-29 Marc Autret <autret_m@epita.fr>
12187
12188 * src/bison.simple: Add %%user_code directive at the end.
12189 * src/reader.c (read_additionnal_code): New.
12190 (reader): Use it.
12191 * src/output.c (output_program): Remove.
12192 (output): Update.
12193
12194 2001-08-28 Marc Autret <autret_m@epita.fr>
12195
12196 * src/output.c (output_actions): Clean up.
12197 (output_gram): CPP-out useless code.
12198 * src/reader.c (reader): Clean up, CPP-out useless code.
12199
12200 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
12201
12202 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
12203 directive.
12204 * src/bison.simple: Add `%%definitions'.
12205
12206 2001-08-28 Marc Autret <autret_m@epita.fr>
12207
12208 * config/depcomp: New file.
12209
12210 2001-08-27 Paul Eggert <eggert@twinsun.com>
12211
12212 * src/bison.simple (yyparse): Don't take the address of an
12213 item before the start of an array, as that doesn't conform to
12214 the C Standard.
12215
12216 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
12217
12218 * src/output.c (output): Remove the initialization of the macro
12219 obstack. It was done too late here.
12220
12221 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
12222 completely wrong.
12223 (reader): Initialize the macro obstack here, since we need it to grow
12224 '%define' directives.
12225
12226 * src/reader.h: Declare the macro obstack as extern.
12227
12228 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
12229
12230 * src/output.c (output_parser): Fix. Store single '%' characters in
12231 the output obstack instead of throwing them away.
12232
12233 2001-08-27 Akim Demaille <akim@epita.fr>
12234
12235 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
12236
12237 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12238
12239 * lib/Makefile.am: Adjust.
12240
12241 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12242
12243 * src/bison.simple: Update and add '%%' directives.
12244
12245 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12246
12247 * src/reader.c (reader): Remove calls to 'output_headers' and
12248 'output_trailers'. Remove some C output.
12249 (readgram): Disable a piece of code that was writing a default
12250 definition for 'YYSTYPE'.
12251 (reader_output_yylsp): Remove.
12252 (packsymbols): Output token defintions to a macro.
12253 (copy_definition): Disable C output.
12254
12255 * src/reader.c (parse_macro_decl): New function used to parse macro
12256 declarations.
12257 (copy_string2): Put the body of copy_string into this new function.
12258 Add a parameter to let the caller choose whether he wants to copy the
12259 string delimiters or not.
12260 (copy_string): Be a simple call to copy_string2 with the last argument
12261 bound to true.
12262 (read_declarations): Add case for macro definition.
12263 (copy_identifier): New.
12264 (parse_macro_decl): Read macro identifiers using copy_identifier
12265 rather than lex.
12266
12267 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12268
12269 * src/output.c (prepare): Add prefixed names.
12270 (output_parser): Output semantic actions.
12271 (output_parser): Fix bug on '%%line' directives.
12272
12273 * src/output.c (output_headers): Remove. The C code printed by this
12274 function should now be in the skeletons.
12275 (output_trailers): Remove.
12276 (output): Disable call to 'reader_output_yylsp'.
12277 (output_rule_data): Do not output tables to the table obstack.
12278
12279 * src/output.c: Remove some C dedicated output.
12280 Improve the use of macro and output obstacks.
12281 (output_defines): Remove.
12282
12283 * src/output.c (output_token_translations): Associate 'translate'
12284 table with a macro. No output to the table obstack.
12285 (output_gram): Same for 'rhs' and 'prhs'.
12286 (output_stos): Same for 'stos'.
12287 (output_rule_data): Same for 'r1' and 'r2'.
12288 (token_actions): Same for 'defact'.
12289 (goto_actions): Same for 'defgoto'.
12290 (output_base): Same for 'pact' and 'pgoto'.
12291 (output_table): Same for 'table'.
12292 (output_check): Same for 'check'.
12293
12294 * src/output.c (output_table_data): New function.
12295 (output_short_table): Remove.
12296 (output_short_or_char_table): Remove.
12297
12298 * src/output.c (output_parser): Replace most of the skeleton copy code
12299 with something new. Skeletons are now processed character by character
12300 rather than line by line, and Bison looks for '%%' macros. This is the
12301 first step in making Bison's output process (a lot) more flexible.
12302 (output_parser): Use the macro table.
12303
12304 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12305
12306 * src/main.c (main): Initialize the macro table.
12307
12308 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12309
12310 * src/lex.c (percent_table): Add tok_define.
12311 * src/lex.h: Add tok_define.
12312
12313 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12314
12315 * src/macrotab.c: New file.
12316 * src/macrotab.h: New file.
12317 * src/Makefile.am: Update.
12318
12319 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
12320
12321 * lib/hash.c: New file.
12322 * lib/hash.h: New file.
12323 * lib/Makefile.am: Update.
12324
12325 2001-08-15 Akim Demaille <akim@epita.fr>
12326
12327 Version 1.28c.
12328
12329 2001-08-15 Marc Autret <autret_m@epita.fr>
12330
12331 * src/reader.c (readgram): Indent output macro YYSTYPE.
12332 (packsymbols): Likewise.
12333 (output_token_defines): Likewise.
12334 * src/files.c: Standardize.
12335 (compute_header_macro): New.
12336 (defines_obstack_save): New. Use compute_header_macro.
12337 (output_files): Update. Use defines_obstack_save.
12338
12339 2001-08-15 Akim Demaille <akim@epita.fr>
12340
12341 * doc/bison.texinfo (Table of Symbols): Document
12342 YYSTACK_USE_ALLOCA.
12343
12344 2001-08-15 Akim Demaille <akim@epita.fr>
12345
12346 * missing: Update from CVS Automake.
12347 * config/config.guess, config/config.sub, config/texinfo.tex:
12348 Update from gnu.org.
12349
12350 2001-08-15 Akim Demaille <akim@epita.fr>
12351
12352 * Makefile.maint: Sync with CVS Autoconf.
12353
12354 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
12355
12356 * doc/bison.texinfo: Include GNU Free Documentation License from
12357 `fdl.texi'.
12358 * doc/fdl.texi: Add to package.
12359
12360 2001-08-14 Marc Autret <autret_m@epita.fr>
12361
12362 Turn on %{source,header}_extension features.
12363
12364 * src/lex.c (percent_table): Un-CPP out header_extension and
12365 source_extension.
12366 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
12367 (compute_exts_from_src): Remove conditions. It restores priorities
12368 between options.
12369
12370 2001-08-14 Marc Autret <autret_m@epita.fr>
12371
12372 * src/files.c (compute_base_names): Add extensions computing when
12373 `--file-prefix' used.
12374 Standardize function calls.
12375
12376 2001-08-13 Marc Autret <autret_m@epita.fr>
12377
12378 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
12379 defining it (defined but null disables alloca).
12380
12381 2001-08-13 Marc Autret <autret_m@epita.fr>
12382
12383 * src/bison.simple (_yy_memcpy): CPP reformat.
12384
12385 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
12386
12387 * tests/atconfig.in (CPPFLAGS): Fix.
12388
12389 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
12390
12391 * doc/bison.texinfo: Include GNU General Public License from
12392 `gpl.texi'.
12393 * doc/gpl.texi: Add to package.
12394
12395 2001-08-10 Marc Autret <autret_m@epita.fr>
12396
12397 * src/print_graph.h: Fix.
12398 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
12399
12400 2001-08-10 Akim Demaille <akim@epita.fr>
12401
12402 * src/system.h: Provide default declarations for stpcpy, strndup,
12403 and strnlen.
12404
12405 2001-08-10 Robert Anisko <anisko_r@epita.fr>
12406
12407 * doc/bison.texinfo (Locations): Update @$ stuff.
12408
12409 2001-08-09 Robert Anisko <anisko_r@epita.fr>
12410
12411 * src/bison.simple (YYLLOC_DEFAULT): Update.
12412 (yyparse): Adjust.
12413
12414 2001-08-08 Marc Autret <autret_m@epita.fr>
12415
12416 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
12417 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
12418 Reported by Fabrice Bauzac.
12419
12420 2001-08-08 Marc Autret <autret_m@epita.fr>
12421
12422 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
12423 * src/vcg.c (output_node): Fix.
12424 * src/vcg.h: Cleanup.
12425 * src/print_graph.c: Add comments.
12426 (node_output_size): New global variable. Simplify the formatting of
12427 the VCG graph output.
12428 (print_actions): Unused code is now used. It notifies the final state
12429 and no action states in the VCG graph. It also give the reduce actions.
12430 The `shift and goto' edges are red and the `go to state' edges are
12431 blue.
12432 Get the current node name and node_obstack by argument.
12433 (node_obstack): New variable.
12434 (print_state): Manage node_obstack.
12435 (print_core): Use node_obstack given by argument.
12436 A node is not only computed here but in print_actions also.
12437 (print_graph): CPP out useless code instead of commenting it.
12438
12439 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
12440
12441 * tests/atconfig.in (CPPFLAGS): Fix.
12442
12443 2001-08-07 Akim Demaille <akim@epita.fr>
12444
12445 * src/print_graph.c (quote): New.
12446 (print_core): Use it.
12447
12448 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
12449
12450 * src/vcg.c (complain.h): Include it.
12451 Unepitaize `return' invocations.
12452 [NDEBUG] (main): Remove.
12453 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
12454 * src/files.c (open_files): Initialize graph_obstack.
12455 * src/print_graph.c (print_actions): CPP out useless code.
12456 (print_core): Don't output the last `\n' in labels.
12457 Use `quote'.
12458 * src/files.c (output_files): Output the VCG file.
12459 * src/main.c (main): Invoke print_graph ();
12460
12461 2001-08-06 Marc Autret <autret_m@epita.fr>
12462
12463 Automaton VCG graph output.
12464 Using option ``-g'' or long option ``--graph'', you can generate
12465 a gram_filename.vcg file containing a VCG description of the LALR (1)
12466 automaton of your grammar.
12467
12468 * src/main.c: Call to print_graph() function.
12469 * src/getargs.h: Update.
12470 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
12471 (graph_flag): New flag.
12472 (longopts): Update.
12473 (getargs): Add case `g'.
12474 * src/files.c (graph_obstack): New obstack struct.
12475 (open_files): Initialize new obstack.
12476 (output_files): Saves graph_obstack if required.
12477 * src/files.h (graph_obstack): New extern declaration.
12478 * src/Makefile.am: Add new source files.
12479
12480 2001-08-06 Marc Autret <autret_m@epita.fr>
12481
12482 * src/print_graph.c, src/print_graph.h (graph): New.
12483 * src/vcg.h: New file.
12484 * src/vcg.c: New file, VCG graph handling.
12485
12486 2001-08-06 Marc Autret <autret_m@epita.fr>
12487
12488 Add of %source_extension and %header_extension which specify
12489 the source or/and the header output file extension.
12490
12491 * src/files.c (compute_base_names): Remove initialisation of
12492 src_extension and header_extension.
12493 (compute_exts_from_gf): Update.
12494 (compute_exts_from_src): Update.
12495 (output_files): Update.
12496 * src/reader.c (parse_header_extension_decl): New.
12497 (parse_source_extension_decl): New.
12498 (read_declarations): New case statements for the new tokens.
12499 * src/lex.c (percent_table): Add entries for %source_extension
12500 and %header_extension.
12501 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
12502
12503 2001-08-06 Marc Autret <autret_m@epita.fr>
12504
12505 * configure.in: Bump to 1.28c.
12506 * doc/bison.texinfo: Texinfo thingies.
12507
12508 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
12509
12510 * tests/atconfig.in (CPPFLAGS): Add.
12511 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
12512
12513 2001-08-03 Akim Demaille <akim@epita.fr>
12514
12515 Version 1.28b.
12516
12517 2001-08-03 Akim Demaille <akim@epita.fr>
12518
12519 * tests/Makefile.am (check-local): Ship testsuite.
12520 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
12521 Include `string.h'.
12522
12523 2001-08-03 Akim Demaille <akim@epita.fr>
12524
12525 * configure.in: Try using -Wformat when compiling.
12526
12527 2001-08-03 Akim Demaille <akim@epita.fr>
12528
12529 * configure.in: Bump to 1.28b.
12530
12531 2001-08-03 Akim Demaille <akim@epita.fr>
12532
12533 * src/complain.c: Adjust strerror_r portability issues.
12534
12535 2001-08-03 Akim Demaille <akim@epita.fr>
12536
12537 Version 1.28a.
12538
12539 2001-08-03 Akim Demaille <akim@epita.fr>
12540
12541 * src/getargs.c, src/getarg.h (skeleton)): Constify.
12542 * src/lex.c (literalchar): Avoid name clashes on `buf'.
12543 * src/getargs.c: Include complain.h.
12544 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
12545 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
12546
12547 2001-08-03 Akim Demaille <akim@epita.fr>
12548
12549 * src/reader.c (readgram): Display hidden chars in error messages.
12550
12551 2001-08-03 Akim Demaille <akim@epita.fr>
12552
12553 Update to gettext 0.10.39.
12554
12555 2001-08-03 Akim Demaille <akim@epita.fr>
12556
12557 * lib/strspn.c: New.
12558
12559 2001-08-01 Marc Autret <autret_m@epita.fr>
12560
12561 * doc/bison.texinfo: Update.
12562 * doc/bison.1 (mandoc): Update.
12563 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
12564 * src/files.c: Support output files extensions computing.
12565 (src_extension): New static variable.
12566 (header_extension): New static variable.
12567 (tr): New function.
12568 (get_extension_index): New function, gets the index of an extension
12569 filename in a string.
12570 (compute_exts_from_gf): New function, computes extensions from the
12571 grammar file extension.
12572 (compute_exts_from_src): New functions, computes extensions from the
12573 C source file extension, file given by ``-o'' option.
12574 (compute_base_names): Update.
12575 (output_files): Update.
12576
12577 2001-08-01 Robert Anisko <anisko_r@epita.fr>
12578
12579 * doc/bison.texi: Document @$.
12580 (Locations): New section.
12581
12582 2001-07-18 Akim Demaille <akim@epita.fr>
12583
12584 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
12585 * config/prev-version.txt, config/move-if-change: New.
12586 * Makefile.am: Adjust.
12587
12588 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
12589
12590 * src/bison.simple (yyparse): Suppress warning `comparaison
12591 between signed and unsigned'.
12592
12593 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
12594
12595 * src/getargs.h (raw_flag): Remove.
12596 * src/getargs.c: Die on `-r'/`--raw'.
12597 * src/lex.c (parse_percent_token): Die on `%raw'.
12598 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
12599 * tests/calc.at: Suppress test with option `--raw'.
12600
12601 2001-07-14 Akim Demaille <akim@epita.fr>
12602
12603 * config/: New.
12604 * configure.in: Require Autoconf 2.50.
12605 Update to gettext 0.10.38.
12606
12607 2001-03-16 Akim Demaille <akim@epita.fr>
12608
12609 * doc/bison.texinfo: ANSIfy the examples.
12610
12611 2001-03-16 Akim Demaille <akim@epita.fr>
12612
12613 * getargs.c (skeleton): New variable.
12614 (longopts): --skeleton is a new option.
12615 (shortopts, getargs): -S is a new option.
12616 * getargs.h: Declare skeleton.
12617 * output.c (output_parser): Use it.
12618
12619 2001-03-16 Akim Demaille <akim@epita.fr>
12620
12621 * m4/strerror_r.m4: New.
12622 * m4/error.m4: Run AC_FUNC_STRERROR_R.
12623 * lib/error.h, lib/error.c: Update.
12624
12625 2001-03-16 Akim Demaille <akim@epita.fr>
12626
12627 * src/getargs.c (longopts): Clean up.
12628
12629 2001-02-21 Akim Demaille <akim@epita.fr>
12630
12631 * src/reader.c (gensym): `gensym_count' is your own.
12632 Use a static buf to create the symbol name, as token_buffer is no
12633 longer a buffer.
12634
12635 2001-02-08 Akim Demaille <akim@epita.fr>
12636
12637 * src/conflicts.c (conflict_report): Be sure not to append to res
12638 between two calls, which could happen if both first sprintf were
12639 skipped, but not the first cp += strlen.
12640
12641 2001-02-08 Akim Demaille <akim@epita.fr>
12642
12643 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
12644 New, from fileutils 4.0.37.
12645 * configure.in: Require Autoconf 2.49c. I took some time before
12646 making this decision. This is the only way out for portability
12647 issues in Bison, it would mean way too much duplicate effort to
12648 import in Bison features implemented in 2.49c since 2.13.
12649 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
12650
12651 2001-02-02 Akim Demaille <akim@epita.fr>
12652
12653 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
12654 * lib/xalloc.h, lib/xmalloc.c: Update.
12655
12656 2001-01-19 Akim Demaille <akim@epita.fr>
12657
12658 Get rid of the ad hoc handling of token_buffer in the scanner: use
12659 the obstacks.
12660
12661 * src/lex.c (token_obstack): New.
12662 (init_lex): Initialize it. No longer call...
12663 (grow_token_buffer): this. Remove it.
12664 Adjust all the places which used it to use the obstack.
12665
12666 2001-01-19 Akim Demaille <akim@epita.fr>
12667
12668 * src/lex.h: Rename all the tokens:
12669 s/\bENDFILE\b/tok_eof/g;
12670 s/\bIDENTIFIER\b/tok_identifier/g;
12671 etc.
12672 Let them be enums, not #define, to ease debugging.
12673 Adjust all the code.
12674
12675 2001-01-18 Akim Demaille <akim@epita.fr>
12676
12677 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
12678 * src/lex.c (maxtoken, grow_token_buffer): Static.
12679
12680 2001-01-18 Akim Demaille <akim@epita.fr>
12681
12682 Since we now use obstacks, more % directives can be enabled.
12683
12684 * src/lex.c (percent_table): Also accept `%yacc',
12685 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
12686 `%debug'.
12687 Handle the actions for `%semantic_parser' and `%pure_parser' here,
12688 instead of returning a token.
12689 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
12690 * src/reader.c (read_declarations): Adjust.
12691 * src/files.c (open_files): Don't call `compute_base_names', don't
12692 compute `attrsfile' since they depend upon data which might be
12693 *in* the input file now.
12694 (output_files): Do it here.
12695 * src/output.c (output_headers): Document the fact that this patch
12696 introduces a guaranteed SEGV for semantic parsers.
12697 * doc/bison.texinfo: Document them.
12698 * tests/suite.at: Exercise these %options.
12699
12700 2000-12-20 Akim Demaille <akim@epita.fr>
12701
12702 Also handle the output file (--verbose) with obstacks.
12703
12704 * files.c (foutput): Remove.
12705 (output_obstack): New.
12706 Adjust all dependencies.
12707 * src/conflicts.c: Return a string.
12708 * src/system.h (obstack_grow_string): Rename as...
12709 (obstack_sgrow): this. Be ready to work with non literals.
12710 (obstack_fgrow4): New.
12711
12712 2000-12-20 Akim Demaille <akim@epita.fr>
12713
12714 * src/files.c (open_files): Fix the computation of short_base_name
12715 in the case of `-o foo.tab.c'.
12716
12717 2000-12-20 Akim Demaille <akim@epita.fr>
12718
12719 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
12720 (copy_dollar): Now that everything uses obstacks, get rid of the
12721 FILE * parameters.
12722
12723 2000-12-20 Akim Demaille <akim@epita.fr>
12724
12725 * src/files.c (open_files): Actually the `.output' file is based
12726 on the short_base_name, not base_name.
12727 * tests/suite.at (Checking output file names): Adjust.
12728
12729 2000-12-20 Akim Demaille <akim@epita.fr>
12730
12731 * src/bison.s1: Remove, we now use directly...
12732 * src/bison.simple: this.
12733 * src/Makefile.am: Use pkgdata instead of data.
12734
12735 2000-12-20 Akim Demaille <akim@epita.fr>
12736
12737 * src/files.c (guard_obstack): New.
12738 (open_files): Initialize it.
12739 (output_files): Dump it...
12740 * src/files.h: Export it.
12741 * src/reader.c (copy_guard): Use it.
12742
12743 2000-12-19 Akim Demaille <akim@epita.fr>
12744
12745 * src/files.c (outfile, defsfile, actfile): Removed as global
12746 vars.
12747 (open_files): Don't compute them.
12748 (output_files): Adjust.
12749 (base_name, short_base_name): Be global.
12750 Adjust dependencies.
12751
12752 2000-12-19 Akim Demaille <akim@epita.fr>
12753
12754 * src/files.c (strsuffix): New.
12755 (stringappend): Be just like strcat but allocate.
12756 (base_names): Eve out from open_files.
12757 Try to simplify the rather hairy computation of base_name and
12758 short_base_name.
12759 (open_files): Use it.
12760 * tests/suite.at (Checking output file names): New test.
12761
12762 2000-12-19 Akim Demaille <akim@epita.fr>
12763
12764 * src/system.h (obstack_grow_literal_string): Rename as...
12765 (obstack_grow_string): this.
12766 * src/output.c (output_parser): Recognize `%% actions' instead of
12767 `$'.
12768 * src/bison.s1: s/$/%% actions/.
12769 * src/bison.hairy: Likewise.
12770
12771 2000-12-19 Akim Demaille <akim@epita.fr>
12772
12773 * src/output.c (output_parser): Compute the `#line' lines when
12774 there are.
12775 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
12776 Suggested by Hans Aberg.
12777
12778 2000-12-19 Akim Demaille <akim@epita.fr>
12779
12780 Let the handling of the skeleton files be local to the procedures
12781 that use it.
12782
12783 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
12784 longer static.
12785 (fparser, open_extra_files): Remove.
12786 (open_files, output_files): Don't take care of fparser.
12787 * src/files.h: Adjust.
12788 * src/output.c (output_parser): Open and close the file to the
12789 skeleton.
12790 * src/reader.c (read_declarations): When %semantic_parser, open
12791 fguard.
12792
12793 2000-12-19 Akim Demaille <akim@epita.fr>
12794
12795 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
12796 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
12797
12798 2000-12-19 Akim Demaille <akim@epita.fr>
12799
12800 * src/files.c (open_files): Yipee! We no longer need all the code
12801 looking for `/tmp' since we have no tmp file.
12802
12803 2000-12-19 Akim Demaille <akim@epita.fr>
12804
12805 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
12806 New macros.
12807 * src/files.c (open_files): Less dependency on MSDOS etc.
12808
12809 2000-12-14 Akim Demaille <akim@epita.fr>
12810
12811 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
12812 Provide a default definition.
12813 Use it when executing the default @ action.
12814 * src/reader.c (reader_output_yylsp): No longer include
12815 `timestamp' and `text' in the default YYLTYPE.
12816
12817 2000-12-12 Akim Demaille <akim@epita.fr>
12818
12819 * src/reader.c (copy_definition, parse_union_decl, copy_action)
12820 (copy_guard): Quote the file names.
12821 Reported by Laurent Mascherpa.
12822
12823 2000-12-12 Akim Demaille <akim@epita.fr>
12824
12825 * src/output.c (output_headers, output_program, output): Be sure
12826 to escape special characters when outputting filenames.
12827 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
12828 (output_headers): Don't depend on them, Use ACTSTR.
12829
12830 2000-11-17 Akim Demaille <akim@epita.fr>
12831
12832 * lib/obstack.h: Formatting changes.
12833 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
12834 prevents type checking.
12835 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
12836 cast the value to (void *): assigning a `foo *' to a `void *'
12837 variable is valid.
12838 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
12839 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
12840 append characters.
12841
12842 2000-11-17 Akim Demaille <akim@epita.fr>
12843
12844 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
12845 as...
12846 (suite.m4, regression.m4, calc.m4): these.
12847 * tests/atgeneral.m4: Update from CVS Autoconf.
12848
12849 2000-11-17 Akim Demaille <akim@epita.fr>
12850
12851 * tests/regression.m4 (%union and --defines): New test,
12852 demonstrating a current bug in the obstack implementation.
12853
12854 2000-11-17 Akim Demaille <akim@epita.fr>
12855
12856 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
12857 macros.
12858 Use them to declare the variables which are global or local to
12859 `yyparse'.
12860
12861 2000-11-17 Akim Demaille <akim@epita.fr>
12862
12863 * acconfig.h: Remove, no longer used.
12864
12865 2000-11-07 Akim Demaille <akim@epita.fr>
12866
12867 * src: s/Copyright (C)/Copyright/g.
12868
12869 2000-11-07 Akim Demaille <akim@epita.fr>
12870
12871 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
12872 defining.
12873 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
12874
12875 2000-11-07 Akim Demaille <akim@epita.fr>
12876
12877 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
12878 Merge in a single CPP if/else.
12879
12880 2000-11-07 Akim Demaille <akim@epita.fr>
12881
12882 * src/output.c (output): Remove useless variables.
12883 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
12884 argument `data' for consistency with the prototypes.
12885 Qualify it `const'.
12886 (obstack_copy, obstack_copy0): Rename the second argument as
12887 `address' for consistency. Qualify it `const'.
12888 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
12889 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
12890 `const' their input argument (`data' or `address').
12891 Adjust the corresponding macros to include `const' in casts.
12892
12893 2000-11-03 Akim Demaille <akim@epita.fr>
12894
12895 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
12896 s/PFILE1/BISON_HAIRY/.
12897 Adjust dependencies.
12898
12899 2000-11-03 Akim Demaille <akim@epita.fr>
12900
12901 For some reason, this was not applied.
12902
12903 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
12904 `unlink': it's no longer used.
12905
12906 2000-11-03 Akim Demaille <akim@epita.fr>
12907
12908 * src/files.c (skeleton_find): New function, eved out of...
12909 (open_files, open_extra_files): here.
12910
12911 2000-11-03 Akim Demaille <akim@epita.fr>
12912
12913 Don't use `atexit'.
12914
12915 * src/files.c (obstack_save): New function.
12916 (done): Rename as...
12917 (output_files): this.
12918 Use `obstack_save'.
12919 * src/main.c (main): Don't use `atexit' to register `done', since
12920 it no longer has to remove tmp files, just call `output_files'
12921 when there are no errors.
12922
12923 2000-11-02 Akim Demaille <akim@epita.fr>
12924
12925 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
12926 `unlink': it's no longer used.
12927 * src/files.h: Formatting changes.
12928
12929 2000-11-02 Akim Demaille <akim@epita.fr>
12930
12931 Remove the last uses of mktemp and unlink/delete.
12932
12933 * src/files.c (fdefines, ftable): Removed.
12934 (defines_ostack, table_obstack): New.
12935 Adjust dependencies of the former into uses of the latter.
12936 * src/output.c (output_short_or_char_table, output_short_table):
12937 Convert to using obstacks.
12938 * src/reader.c (copy_comment2): Accept one FILE * and two
12939 obstacks.
12940 (output_token_defines, reader_output_yylsp): Use obstacks.
12941 * src/system.h (obstack_fgrow3): New.
12942 * po/POTFILES.in: Adjust.
12943
12944 2000-11-01 Akim Demaille <akim@epita.fr>
12945
12946 Change each use of `fattrs' into a use of `attrs_obstack'.
12947
12948 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
12949 * src/files.c (fattrs): Remove.
12950 (attrs_obstack): New.
12951 Adjust all dependencies.
12952 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
12953
12954 2000-11-01 Akim Demaille <akim@epita.fr>
12955
12956 Introduce obstacks.
12957 Change each use of `faction' into a use of `action_obstack'.
12958
12959 * lib/obstack.h, lib/obstack.c: New files.
12960 * src/files.c (faction): Remove.
12961 (action_obstack): New.
12962 Adjust all dependencies.
12963
12964 2000-10-20 Akim Demaille <akim@epita.fr>
12965
12966 * lib/quote.h (PARAMS): New macro. Use it.
12967
12968 2000-10-16 Akim Demaille <akim@epita.fr>
12969
12970 * src/output.c (output_short_or_char_table): New function.
12971 (output_short_table, output_token_translations): Use it.
12972 (goto_actions): Use output_short_table.
12973
12974 2000-10-16 Akim Demaille <akim@epita.fr>
12975
12976 * src/symtab.c (bucket_new): New function.
12977 (getsym): Use it.
12978
12979 * src/output.c (output_short_table): New argument to display the
12980 comment associated with the table.
12981 Adjust dependencies.
12982 (output_gram): Use it.
12983 (output_rule_data): Nicer output layout for YYTNAME.
12984
12985 2000-10-16 Akim Demaille <akim@epita.fr>
12986
12987 * src/lex.c (read_typename): New function.
12988 (lex): Use it.
12989 * src/reader.c (copy_dollar): Likewise.
12990
12991 2000-10-16 Akim Demaille <akim@epita.fr>
12992
12993 * src/reader.c (copy_comment2): Expect the input stream to be on
12994 the `/' which is suspected to open a comment, instead of being
12995 called after `//' or `/*' was read.
12996 (copy_comment, copy_definition, parse_union_decl, copy_action)
12997 (copy_guard): Adjust.
12998
12999 2000-10-16 Akim Demaille <akim@epita.fr>
13000
13001 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
13002 `read_signed_integer'.
13003
13004 2000-10-16 Akim Demaille <akim@epita.fr>
13005
13006 * src/reader.c (copy_dollar): New function.
13007 (copy_guard, copy_action): Use it.
13008
13009 2000-10-16 Akim Demaille <akim@epita.fr>
13010
13011 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
13012 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
13013 New files, from Fileutils 4.0.27.
13014 * src/main.c (printable_version): Remove.
13015 * src/lex.c, src/reader.c: Use `quote'.
13016
13017 2000-10-04 Akim Demaille <akim@epita.fr>
13018
13019 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
13020
13021 2000-10-04 Akim Demaille <akim@epita.fr>
13022
13023 * doc/bison.texinfo: Various typos spotted by Neil Booth.
13024
13025 2000-10-04 Akim Demaille <akim@epita.fr>
13026
13027 When a literal string is used to define two different tokens,
13028 `bison -v' segfaults.
13029 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
13030
13031 * tests/regression.m4: New file.
13032 Include the core of the sample provided by Piotr Gackiewicz.
13033 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
13034 properly.
13035
13036 2000-10-04 Akim Demaille <akim@epita.fr>
13037
13038 * src/reader.c (parse_expect_decl): Keep `count' within the size
13039 of `buffer'.
13040 From Neil Booth.
13041
13042 2000-10-02 Paul Eggert <eggert@twinsun.com>
13043
13044 * bison.s1 (yyparse): Assign the default value
13045 unconditionally, to avoid a GCC warning and make the parser a
13046 tad smaller.
13047
13048 2000-10-02 Akim Demaille <akim@epita.fr>
13049
13050 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
13051 options.
13052
13053 2000-10-02 Akim Demaille <akim@epita.fr>
13054
13055 * src/derives.c, src/print.c, src/reduce.c: To ease the
13056 translation, move some `\n' out of the translated strings.
13057
13058 2000-10-02 Akim Demaille <akim@epita.fr>
13059
13060 The location tracking mechanism is precious for parse error
13061 messages. Nevertheless, it is enabled only when `@n' is used in
13062 the grammar, which is a different issue (you can use it in error
13063 message, but not in the grammar per se). Therefore, there should
13064 be another means to enable it.
13065
13066 * src/getargs.c (getargs): Support `--locations'.
13067 (usage): Report it.
13068 * src/getargs.h (locationsflag): Export it.
13069 * src/lex.c (percent_table): Support `%locations'.
13070 * src/reader.c (yylsp_needed): Remove this variable, now replaced
13071 with `locationsflag'.
13072 * doc/bison.texinfo: Document `--locations' and `%locations'.
13073 Sort the options.
13074 * tests/calc.m4: Test it.
13075
13076 For regularity of the names, replace each
13077 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
13078 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
13079 In addition replace each `flag' with `_flag'.
13080
13081 2000-10-02 Akim Demaille <akim@epita.fr>
13082
13083 Also test parse error messages, including with YYERROR_VERBOSE.
13084
13085 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
13086 associative).
13087 Use it to check the computations.
13088 Use it to check `nonassoc' is honored.
13089 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
13090 `--yyerror-verbose'.
13091 (_AT_CHECK_CALC): Adjust to this option.
13092 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
13093
13094 2000-10-02 Akim Demaille <akim@epita.fr>
13095
13096 Test also `--verbose', `--defines' and `--name-prefix'. Testing
13097 the latter demonstrates a flaw in the handling of non debugging
13098 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
13099 was used in order to simplify:
13100
13101 #if YYDEBUG
13102 if (yydebug)
13103 {
13104 ...
13105 }
13106 #endif
13107
13108 into
13109
13110 if (yydebug)
13111 {
13112 ...
13113 }
13114
13115 unfortunately this leads to a CPP conflict when
13116 `--name-prefix=foo' is used since it produces `#define yydebug
13117 foodebug'.
13118
13119 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
13120 (YYDPRINTF): New macro.
13121 Spread its use.
13122 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
13123 the bison options.
13124 Also test `--verbose', `--defines' and `--name-prefix'.
13125
13126 2000-10-02 Akim Demaille <akim@epita.fr>
13127
13128 Improve the readability of the produced parsers.
13129
13130 * src/bison.s1: Formatting changes.
13131 Improve the comment related to the `$' mark.
13132 (yydefault): Don't fall through to `yyresume': `goto' there.
13133 * src/output.c (output_parser): When the `$' is met, skip the end
13134 of its line.
13135 New variable, `number_of_dollar_signs', to check there's exactly
13136 one `$' in the parser skeleton.
13137
13138 2000-10-02 Akim Demaille <akim@epita.fr>
13139
13140 * lib/xstrdup.c: New file, from the fileutils.
13141 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
13142 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
13143 instead of strlen + xmalloc + strcpy.
13144 * src/symtab.c (copys): Remove, use xstrdup instead.
13145
13146 2000-10-02 Akim Demaille <akim@epita.fr>
13147
13148 * src/gram.h (associativity): New enum type which replaces the
13149 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
13150 `right_assoc', `left_assoc' and `non_assoc'.
13151 Adjust all dependencies.
13152 * src/reader.c: Formatting changes.
13153 (LTYPESTR): Don't define it, use it as a literal in
13154 `reader_output_yylsp'.
13155 * src/symtab.h (symbol_class): New enum type which replaces the
13156 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
13157 `sunknown', `stoken and `snterm'.
13158
13159 2000-10-02 Akim Demaille <akim@epita.fr>
13160
13161 * src/getargs.c (fixed_outfiles): Rename as...
13162 (yaccflag): for consistency and accuracy.
13163 Adjust dependencies.
13164
13165 2000-10-02 Akim Demaille <akim@epita.fr>
13166
13167 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
13168 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
13169 difficult and introduced a lot of core dump. It turns out that
13170 Bison used an implementation of `xmalloc' based on `calloc', and
13171 at various places it does depend upon the initialization to 0. I
13172 have not tried to isolate the pertinent places, and all the former
13173 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
13174 someone should address this issue.
13175
13176 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
13177 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
13178 files.
13179 Adjust dependencies.
13180 * src/warshall.h: New file.
13181 Propagate.
13182
13183 2000-10-02 Akim Demaille <akim@epita.fr>
13184
13185 Various anti-`extern in *.c' changes.
13186
13187 * src/system.h: Include `assert.h'.
13188
13189 2000-10-02 Akim Demaille <akim@epita.fr>
13190
13191 * src/state.h (nstates, final_state, first_state, first_shift)
13192 (first_reduction): Move their exportation from here...
13193 * src/LR0.h: to here.
13194 Adjust dependencies.
13195 * src/getargs.c (statisticsflag): New variable.
13196 Add support for `--statistics'.
13197 Adjust dependencies.
13198
13199 Remove a lot of now useless `extern' statements in most files.
13200
13201 2000-10-02 Akim Demaille <akim@epita.fr>
13202
13203 * src/LR0.h: New file.
13204 Propagate its use.
13205
13206 2000-10-02 Akim Demaille <akim@epita.fr>
13207
13208 * src/print.h: New file.
13209 Propagate its use.
13210 * src/print.c: Formatting and ordering changes.
13211 (verbose, terse): Replace with...
13212 (print_results): this new function.
13213 Adjust dependencies.
13214
13215 2000-10-02 Akim Demaille <akim@epita.fr>
13216
13217 * src/conflicts.c (conflict_report): New function.
13218 (conflict_log, verbose_conflict_log): Replace with...
13219 (print_conflicts): this function.
13220 Adjust dependencies.
13221 * src/conflicts.h: New file.
13222 Propagate its inclusion.
13223
13224 2000-10-02 Akim Demaille <akim@epita.fr>
13225
13226 * src/nullable.h: New file.
13227 Propagate its inclusion.
13228 * src/nullable.c: Formatting changes.
13229
13230 2000-10-02 Akim Demaille <akim@epita.fr>
13231
13232 * src/reduce.h: New file.
13233 Propagate its inclusion.
13234 * src/reduce.c: Topological sort and other formatting changes.
13235 (bool, TRUE, FALSE): Move their definition to...
13236 * src/system.h: here.
13237
13238 2000-10-02 Akim Demaille <akim@epita.fr>
13239
13240 * src/files.c: Formatting changes.
13241 (tryopen, tryclose, openfiles): Rename as...
13242 (xfopen, xfclose, open_files): this.
13243 (stringappend): static.
13244 * src/files.h: Complete the list of exported symbols.
13245 Propagate its use.
13246
13247 2000-10-02 Akim Demaille <akim@epita.fr>
13248
13249 * src/reader.h: New file.
13250 Propagate its use instead of tedious list of `extern' and
13251 prototypes.
13252 * src/reader.c: Formatting changes, topological sort,
13253 s/register//.
13254
13255 2000-10-02 Akim Demaille <akim@epita.fr>
13256
13257 * src/lex.h: Prototype `lex.c' exported functions.
13258 * src/reader.c: Adjust.
13259 * src/lex.c: Formatting changes.
13260 (safegetc): Rename as...
13261 (xgetc): this.
13262
13263 2000-10-02 Akim Demaille <akim@epita.fr>
13264
13265 * src/lalr.h: New file.
13266 Propagate its inclusion instead of prototypes and `extern'.
13267 * src/lalr.c: Formatting changes, topological sorting etc.
13268
13269 2000-10-02 Akim Demaille <akim@epita.fr>
13270
13271 * src/output.c (token_actions): Introduce a temporary array,
13272 YYDEFACT, that makes it possible for this function to use
13273 output_short_table.
13274
13275 2000-10-02 Akim Demaille <akim@epita.fr>
13276
13277 `user_toknums' is output as a `short[]' in `output.c', while it is
13278 defined as a `int[]' in `reader.c'. For consistency with the
13279 other output tables, `user_toknums' is now defined as a table of
13280 shorts.
13281
13282 * src/reader.c (user_toknums): Be a short table instead of an int
13283 table.
13284 Adjust dependencies.
13285
13286 Factor the short table outputs.
13287
13288 * src/output.c (output_short_table): New function.
13289 * src/output.c (output_gram, output_stos, output_rule_data)
13290 (output_base, output_table, output_check): Use it.
13291
13292 2000-10-02 Akim Demaille <akim@epita.fr>
13293
13294 * src/output.c (output): Topological sort of the functions, in
13295 order to get rid of the `static' prototypes.
13296 No longer use `register'.
13297 * src/output.h: New file.
13298 Propagate its inclusion in files explicitly prototyping functions
13299 from output.c.
13300
13301 2000-09-21 Akim Demaille <akim@epita.fr>
13302
13303 * src/atgeneral.m4: Update from Autoconf.
13304
13305 2000-09-21 Akim Demaille <akim@epita.fr>
13306
13307 * src/closure.h: New file.
13308 * src/closure.c: Formatting changes, topological sort over the
13309 functions, use of closure.h.
13310 (initialize_closure, finalize_closure): Rename as...
13311 (new_closure, free_closure): these. Adjust dependencies.
13312 * src/LR0.c: Formatting changes, topological sort, use of
13313 cloture.h.
13314 (initialize_states): Rename as...
13315 (new_states): this.
13316 * src/Makefile.am (noinst_HEADERS): Adjust.
13317
13318 2000-09-20 Akim Demaille <akim@epita.fr>
13319
13320 * src/acconfig.h: Don't protect config.h against multiple
13321 inclusion.
13322 Don't define PARAMS.
13323 * src/system.h: Define PARAMS.
13324 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
13325 purpose of config.h. system.h must not try to fix wrong
13326 definitions in config.h.
13327
13328 2000-09-20 Akim Demaille <akim@epita.fr>
13329
13330 * src/derives.h: New file.
13331 * src/main.c, src/derives.h: Use it.
13332 Formatting changes.
13333 * src/Makefile.am (noinst_HEADERS): Adjust.
13334
13335 2000-09-20 Akim Demaille <akim@epita.fr>
13336
13337 * tests/atgeneral.m4: Update from Autoconf.
13338 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
13339 (AT_CHECK_CALC): New macros.
13340 Use these macros to test bison with options `', `--raw',
13341 `--debug', `--yacc', `--yacc --debug'.
13342
13343 2000-09-19 Akim Demaille <akim@epita.fr>
13344
13345 * src/output.c: Formatting changes.
13346 * src/machine.h: Remove, leaving its contents in...
13347 * src/system.h: here.
13348 Include stdio.h.
13349 Adjust all dependencies on stdio.h and machine.h.
13350 * src/getargs.h: New file.
13351 Let all `extern' declarations about getargs.c be replaced with
13352 inclusion of `getargs.h'.
13353 * src/Makefile.am (noinst_HEADERS): Adjust.
13354
13355 * tests/calc.m4 (yyin): Be initialized in main, not on the global
13356 scope.
13357 (yyerror): Returns void, not int.
13358 * doc/bison.texinfo: Formatting changes.
13359
13360 2000-09-19 Akim Demaille <akim@epita.fr>
13361
13362 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
13363 portable.
13364
13365 2000-09-18 Akim Demaille <akim@epita.fr>
13366
13367 * configure.in: Append WARNING_CFLAGS to CFLAGS.
13368 * src/Makefile.am (INCLUDES): Don't.
13369 Be ready to fetch headers in lib/.
13370
13371 2000-09-18 Akim Demaille <akim@epita.fr>
13372
13373 * doc/bison.texinfo: Update the copyright.
13374 ANSIfy and GNUify the examples.
13375 Remove the old menu.
13376
13377 2000-09-18 Akim Demaille <akim@epita.fr>
13378
13379 First set of tests: use the `calc' example from the documentation.
13380
13381 * src/bison.s1 (yyparse): Condition the code using `yytname' which
13382 is defined only when YYDEBUG is.
13383 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
13384 * src/files.c (tryopen, tryclose): Formatting changes.
13385 Move to the top and be static.
13386 * src/reader.c (read_signed_integer): Likewise.
13387 * tests/calc.m4: New file.
13388 * Makefile.am, suite.m4: Adjust.
13389 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
13390
13391 2000-09-18 Akim Demaille <akim@epita.fr>
13392
13393 Add support for an Autotest test suite for Bison.
13394
13395 * m4/m4.m4, m4/atconfig.m4: New files.
13396 * m4/Makefile.am (EXTRA_DIST): Adjust.
13397 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
13398 files.
13399 * src/getargs.c: Display a more standard --version message.
13400 * src/reader.c (reader): Formatting changes.
13401 No longer depend upon VERSION_STRING.
13402 * configure.in: No longer use `dnl'.
13403 Set up the test suite and the new directory `tests/.
13404 (VERSION_STRING): Remove.
13405
13406 2000-04-14 Akim Demaille <akim@epita.fr>
13407
13408 * src/reader.c (copy_comment2): New function, same as former
13409 `copy_comment', but outputs into two FILE *.
13410 (copy_comment): Use it.
13411 (parse_union_decl): Use it.
13412 (get_type, parse_start_decl): Use the same `invalid' message.
13413 (parse_start_decl, parse_union_decl): Use the same `multiple'
13414 message.
13415 (parse_union_decl, copy_guard, copy_action): Use the same
13416 `unmatched' message.
13417 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
13418
13419 2000-03-31 Akim Demaille <akim@epita.fr>
13420
13421 * src/files.c (tryopen, tryclose): Move to the top.
13422 Be static.
13423
13424 2000-03-31 Akim Demaille <akim@epita.fr>
13425
13426 * src/main.c (main): Don't call `done', exit does it.
13427
13428 2000-03-31 Akim Demaille <akim@epita.fr>
13429
13430 * allocate.c: s/return (foo)/return foo/.
13431 * lalr.c: Likewise.
13432 * LR0.c: Likewise.
13433 * output.c: Likewise.
13434 * reader.c: Likewise.
13435 * symtab.c: Likewise.
13436 * vmsgetargs.c: Likewise.
13437
13438 2000-03-31 Akim Demaille <akim@epita.fr>
13439
13440 Clean up the error reporting functions.
13441
13442 * src/report.c: New file.
13443 * src/report.h: Likewise.
13444 * src/Makefile.am: Adjust.
13445 * m4/error.m4: New file.
13446 * m4/Makefile.am: Adjust.
13447 * configure.in (jm_PREREQ_ERROR): Call it.
13448 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
13449 Remove.
13450 (fatal, fatals): Remove. All callers use complain.c::fatal.
13451 (warn, warni, warns, warnss, warnss): Remove. All callers use
13452 complain.c::complain.
13453 (toomany): Remove, use fatal instead.
13454 * src/files.c (done): No argument, use complain_message_count.
13455 * src/main.c (main): Register `done' to `atexit'.
13456
13457 * src/getargs.c (usage): More `fputs', less `fprintf'.
13458
13459 2000-03-28 Akim Demaille <akim@epita.fr>
13460
13461 * lib/: New directory.
13462 * Makefile.am (SUBDIRS): Adjust.
13463 * configure.in: Adjust.
13464 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
13465 useless.
13466 * src/alloca.c: Moved to lib/.
13467 * src/getopt.c: Likewise.
13468 * src/getopt1.c: Likewise.
13469 * src/getopt.h: Likewise.
13470 * src/ansi2knr.c: Likewise.
13471 * src/ansi2knr.1: Likewise.
13472 * src/Makefile.am: Adjust.
13473 * lib/Makefile.am: New file.
13474
13475 2000-03-28 Akim Demaille <akim@epita.fr>
13476
13477 * src/getargs.c (usage): Refresh the help message.
13478
13479 2000-03-17 Akim Demaille <akim@epita.fr>
13480
13481 * src/getopt1.c: Updated from textutils 2.0e
13482 * src/getopt.c: Likewise.
13483 * src/getopt.h: Likewise.
13484
13485 2000-03-17 Akim Demaille <akim@epita.fr>
13486
13487 * src/Makefile.am (bison.simple): Fix the awk program: quote only
13488 the file name, not the whole `#line LINE FILE'.
13489
13490 2000-03-17 Akim Demaille <akim@epita.fr>
13491
13492 On syntax errors, report the token on which we choked.
13493
13494 * src/bison.s1 (yyparse): In the label yyerrlab, when
13495 YYERROR_VERBOSE, add yychar in msg.
13496
13497 2000-03-17 Akim Demaille <akim@epita.fr>
13498
13499 * src/reader.c (copy_at): New function.
13500 (copy_guard): Use it.
13501 (copy_action): Use it.
13502
13503 2000-03-17 Akim Demaille <akim@epita.fr>
13504
13505 Be kind to translators, save some useless translations.
13506
13507 * src/main.c (banner): New function.
13508 (fatal_banner): Use it.
13509 (warn_banner): Use it.
13510
13511 2000-03-17 Akim Demaille <akim@epita.fr>
13512
13513 * src/reader.c (copy_definition): Use copy_string and
13514 copy_comment. Removed now unused `match', `ended',
13515 `cplus_comment'.
13516 (copy_comment, copy_string): Moved, to be visible from
13517 copy_definition.
13518
13519 2000-03-17 Akim Demaille <akim@epita.fr>
13520
13521 * src/reader.c (copy_string): Declare `static inline'. No
13522 problems with inline, since it is checked by configure.
13523 (copy_comment): Likewise.
13524
13525 2000-03-17 Akim Demaille <akim@epita.fr>
13526
13527 * src/reader.c (packsymbols): Formatting changes.
13528
13529 2000-03-17 Akim Demaille <akim@epita.fr>
13530
13531 * src/reader.c (copy_comment): New function, factored out from:
13532 (copy_action): Use it. Removed now unused `match', `ended',
13533 `cplus_comment'.
13534 (copy_guard): Likewise.
13535
13536 2000-03-17 Akim Demaille <akim@epita.fr>
13537
13538 * src/reader.c (copy_string): New function, factored out from:
13539 (copy_action): Use it.
13540 (copy_guard): Likewise.
13541
13542 2000-03-17 Akim Demaille <akim@epita.fr>
13543
13544 Change the handling of @s so that they behave exactly like $s.
13545 There is now a pseudo variable @$ (readble and writable), location
13546 of the lhs of the rule (by default ranging from the location of
13547 the first symbol of the rhs, to the location of the last symbol,
13548 or, if the rhs is empty, YYLLOC).
13549
13550 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
13551 yyval.
13552 (yyparse): When providing a default semantic action, provide a
13553 default location action.
13554 (after the $): No longer change `*YYLSP', just stack YYLOC the
13555 same way you stack YYVAL.
13556 * src/reader.c (read_declarations): Use warns.
13557 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
13558 (copy_action, case '@'): Likewise.
13559 Use a standard error message, to save useless work from
13560 translators.
13561
13562 2000-03-17 Akim Demaille <akim@epita.fr>
13563
13564 * src/bison.s1: Formatting and cosmetics changes.
13565 * src/reader.c: Likewise.
13566 Update the Copyright notice.
13567
13568 2000-03-17 Akim Demaille <akim@epita.fr>
13569
13570 * src/bison.s1 (#line): All set to `#line' only, since the
13571 Makefile now handles them.
13572
13573 2000-03-16 Akim Demaille <akim@epita.fr>
13574
13575 * src/output.c (output_rule_data): Output the documentation of
13576 some of the tables.
13577 (Copyright notice): Update.
13578 Formatting changes.
13579
13580 2000-03-16 Akim Demaille <akim@epita.fr>
13581
13582 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
13583 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
13584 One `#if YYDEBUG' remains, since it uses variables which are
13585 defined only if `YYDEBUG != 0'.
13586
13587 2000-03-16 Akim Demaille <akim@epita.fr>
13588
13589 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
13590 and related variables so that the similarities are highlighted.
13591
13592 2000-03-16 Akim Demaille <akim@epita.fr>
13593
13594 * src/bison.s1: Properly indent CPP directives.
13595
13596 2000-03-16 Akim Demaille <akim@epita.fr>
13597
13598 * src/bison.s1: Properly indent the `alloca' CPP section.
13599
13600 2000-03-16 Akim Demaille <akim@epita.fr>
13601
13602 Do not hard code values of directories in `configure.in'.
13603 Update the `configure' tool chain.
13604
13605 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
13606 src/makefile.am.
13607 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
13608 (AC_OUTPUT): Add m4/Makefile.
13609 Bump to bison 1.28a, 1.29 has never been released.
13610 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
13611 handled via src/Makefile.am.
13612 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
13613 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
13614 autoheader.
13615 * Makefile.am (SUBDIRS): Add m4.
13616 (ACLOCAL_AM_FLAGS): New variable.
13617 (AUTOMAKE_OPTIONS): Add check-news.
13618 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
13619 the proper line number and file name.
13620 (DEFS): Propagate the location of bison library files and of the
13621 locale files.
13622 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
13623 builddir.
13624 * acinclude.m4: Remove, replaced by the directory m4.
13625 * m4/Makefile.am (EXTRA_DIST): New variable.
13626 * m4/gettext.m4: New file, from the fileutils.
13627 * m4/lcmessage.m4: Likewise
13628 * m4/progtest.m4: Likewise.
13629 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
13630
13631 2000-03-10 Akim Demaille <akim@epita.fr>
13632
13633 * src/closure.c:
13634 Formatting changes of various comments.
13635 Respect the GNU coding standards at various places.
13636 Don't use `_()' when no translation is needed.
13637
13638 1999-12-13 Jesse Thilo <jthilo@gnu.org>
13639
13640 * src/files.c:
13641 OS/2 honors TMPDIR environment variable.
13642
13643 1999-12-13 Jesse Thilo <jthilo@gnu.org>
13644
13645 * doc/bison.texinfo: Tweaked spelling and grammar.
13646 Updated ISBN.
13647 Removed reference to price of printed copy.
13648 Mention BISON_SIMPLE and BISON_HAIRY.
13649
13650 1999-12-13 Jesse Thilo <jthilo@gnu.org>
13651
13652 * configure.in, NEWS:
13653 Bison 1.29 released.
13654
13655 1999-10-27 Jesse Thilo <jthilo@gnu.org>
13656
13657 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
13658 Added reference card.
13659
13660 1999-07-26 Jesse Thilo <jthilo@gnu.org>
13661
13662 * po/ru.po: Added Russian translation.
13663
13664 1999-07-26 Jesse Thilo <jthilo@gnu.org>
13665
13666 * configure.in: Added Russian translation.
13667
13668 1999-07-06 Jesse Thilo <jthilo@gnu.org>
13669
13670 * configure.in, NEWS, README:
13671 Released version 1.28.
13672
13673 1999-06-14 Jesse Thilo <jthilo@gnu.org>
13674
13675 * src/system.h:
13676 Squashed redefinition warning on some systems.
13677
13678 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
13679 Have configure build version string instead of relying on ANSI string
13680 concatentation.
13681
13682 1999-06-14 Jesse Thilo <jthilo@gnu.org>
13683
13684 * po/POTFILES.in: Got rid of version.c.
13685
13686 1999-06-14 Jesse Thilo <jthilo@gnu.org>
13687
13688 * acconfig.h, configure.in:
13689 Have configure build version string instead of relying on ANSI string
13690 concatentation.
13691
13692 1999-06-08 Jesse Thilo <jthilo@gnu.org>
13693
13694 * doc/bison.1:
13695 Dropped mention of `+' for long-named options.
13696
13697 1999-05-30 Jesse Thilo <jthilo@gnu.org>
13698
13699 * src/files.c: Added <unistd.h> for unlink().
13700
13701 * src/Makefile.am, src/system.h:
13702 I18n fixes.
13703
13704 1999-05-30 Jesse Thilo <jthilo@gnu.org>
13705
13706 * README: Added a FAQ list.
13707
13708 * configure.in, acconfig.h:
13709 I18n fixes.
13710
13711 1999-05-30 Jesse Thilo <jthilo@gnu.org>
13712
13713 * doc/FAQ, doc/Makefile.am:
13714 Added a FAQ list.
13715
13716 1999-05-19 Jesse Thilo <jthilo@gnu.org>
13717
13718 * src/alloc.h, src/symtab.h, src/version.c:
13719 Protected inclusion of "config.h" with HAVE_CONFIG_H.
13720
13721 1999-04-18 Jesse Thilo <jthilo@gnu.org>
13722
13723 * src/.cvsignore, src/Makefile.am:
13724 Reorganized: sources in `src', documentation in `doc'.
13725
13726 * src/lex.c (literalchar):
13727 fixed the code for escaping double quotes (thanks
13728 Jonathan Czisny.)
13729
13730 1999-04-18 Jesse Thilo <jthilo@gnu.org>
13731
13732 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
13733 Adjusted paths to reflect directory reorganization.
13734
13735 1999-04-18 Jesse Thilo <jthilo@gnu.org>
13736
13737 * doc/.cvsignore, doc/Makefile.am:
13738 Reorganized: sources in `src', documentation in `doc'.
13739
13740 1999-04-18 Jesse Thilo <jthilo@gnu.org>
13741
13742 * configure.in:
13743 Updated AC_INIT file to reflect directory reorganization.
13744
13745 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
13746 Reorganized: sources in `src', documentation in `doc'.
13747
13748 1999-04-13 Jesse Thilo <jthilo@gnu.org>
13749
13750 * src/allocate.c:
13751 Don't declare calloc() and realloc() if not necessary.
13752
13753 1999-04-13 Jesse Thilo <jthilo@gnu.org>
13754
13755 * configure.in, acconfig.h, acinclude.m4:
13756 Don't declare calloc() and realloc() if not necessary.
13757
13758 1999-03-23 Jesse Thilo <jthilo@gnu.org>
13759
13760 * po/.cvsignore: Added i18n support.
13761
13762 1999-03-23 Jesse Thilo <jthilo@gnu.org>
13763
13764 * acconfig.h, configure.in, Makefile.am:
13765 Added i18n support.
13766
13767 1999-03-22 Jesse Thilo <jthilo@gnu.org>
13768
13769 * src/bison.s1: Fixed #line numbers.
13770
13771 1999-03-15 Jesse Thilo <jthilo@gnu.org>
13772
13773 * po/es.po, po/fr.po, po/nl.po, po/de.po:
13774 Added PO files from Translation Project.
13775
13776 1999-03-03 Jesse Thilo <jthilo@gnu.org>
13777
13778 * Makefile.am:
13779 Added support for non-ANSI compilers (ansi2knr).
13780
13781 1999-02-16 Jesse Thilo <jthilo@gnu.org>
13782
13783 * configure.in: Bumped version number to 1.27.
13784
13785 * Makefile.am:
13786 Added `bison.simple' to list of files removed by `make distclean'.
13787
13788 1999-02-12 Jesse Thilo <jthilo@gnu.org>
13789
13790 * src/files.c, src/files.h:
13791 Defined locations of parser files in config.h instead of Makefile.
13792
13793 1999-02-12 Jesse Thilo <jthilo@gnu.org>
13794
13795 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
13796 Defined locations of parser files in config.h instead of Makefile.
13797
13798 1999-02-09 Jesse Thilo <jthilo@gnu.org>
13799
13800 * Makefile.am:
13801 Removed inappropriate use of $< macro.
13802
13803 1999-02-05 Jesse Thilo <jthilo@gnu.org>
13804
13805 * po/Makefile.in.in, po/POTFILES.in:
13806 Add `po' directory skeleton.
13807
13808 1999-01-27 Jesse Thilo <jthilo@gnu.org>
13809
13810 * README: Document help-bison list.
13811
13812 * configure.in: Add check for mkstemp().
13813
13814 1999-01-20 Jesse Thilo <jthilo@gnu.org>
13815
13816 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
13817 Hush a few compiler warnings.
13818
13819 * src/files.c:
13820 Add tryclose(), which verifies that fclose was successful.
13821 Hush a couple of compiler warnings.
13822
13823 1999-01-20 Jesse Thilo <jthilo@gnu.org>
13824
13825 * Makefile.am, OChangeLog:
13826 ChangeLog is now automatically generated. Include the old version as
13827 OChangeLog.
13828
13829 1999-01-14 Jesse Thilo <jthilo@gnu.org>
13830
13831 * 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:
13832 Update FSF address.
13833
13834 1999-01-14 Jesse Thilo <jthilo@gnu.org>
13835
13836 * doc/bison.texinfo: Fix formatting glitch.
13837
13838 * doc/bison.texinfo: Update FSF address.
13839
13840 1999-01-14 Jesse Thilo <jthilo@gnu.org>
13841
13842 * acconfig.h: Update FSF address.
13843
13844 1999-01-08 Jesse Thilo <jthilo@gnu.org>
13845
13846 * src/system.h:
13847 Don't define PACKAGE here, since config.h defines it.
13848
13849 1998-12-30 Jesse Thilo <jthilo@gnu.org>
13850
13851 * src/reader.c: Update copyright date.
13852
13853 * src/main.c:
13854 Ditch sprintf to statically-sized buffers in fatal/warn functions in
13855 favor of output directly to stderr (avoids buffer overruns).
13856
13857 * src/reader.c: Some checks for premature EOF.
13858
13859 * 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:
13860 Use prototypes if the compiler understands them.
13861
13862 * src/files.c: Honor TMPDIR on Unix hosts.
13863 Use prototypes if the compiler understands them.
13864
13865 * src/reader.c:
13866 Fix a couple of buffer overrun bugs.
13867 Use prototypes if the compiler understands them.
13868
13869 * src/system.h: Include unistd.h and ctype.h.
13870 Use #ifdef instead of #if for NLS symbols.
13871
13872 1998-12-30 Jesse Thilo <jthilo@gnu.org>
13873
13874 * doc/bison.texinfo:
13875 Delete comment "consider using @set for edition number, etc..." since
13876 we now are doing so.
13877
13878 1998-12-30 Jesse Thilo <jthilo@gnu.org>
13879
13880 * configure.in:
13881 Use prototypes if the compiler understands them.
13882
13883 * NEWS: Document 1.26 highlights.
13884
13885 * Makefile.am: Require Automake 1.3 or later.
13886
13887 * acconfig.h:
13888 Use prototypes if the compiler understands them.
13889
13890 1998-12-29 Jesse Thilo <jthilo@gnu.org>
13891
13892 * src/version.c:
13893 Use VERSION symbol from automake for version number.
13894
13895 1998-12-29 Jesse Thilo <jthilo@gnu.org>
13896
13897 * acconfig.h, configure.in, version.cin:
13898 Use VERSION symbol from automake for version number.
13899
13900 1998-11-28 Jesse Thilo <jthilo@gnu.org>
13901
13902 * Makefile.am:
13903 Distribute original version of simple parser (bison.s1), not built
13904 version (bison.simple).
13905
13906 1998-11-28 Jesse Thilo <jthilo@gnu.org>
13907
13908 * doc/bison.texinfo: Add info dir entry.
13909
13910 * doc/bison.texinfo:
13911 Let automake put version number into documentation.
13912
13913 1998-11-26 Jesse Thilo <jthilo@gnu.org>
13914
13915 * src/bison.cld, src/build.com, src/vmshlp.mar:
13916 Add non-RCS files from /gd/gnu/bison.
13917
13918 1998-11-26 Jesse Thilo <jthilo@gnu.org>
13919
13920 * doc/bison.1:
13921 Document the BISON_HAIRY and BISON_SIMPLE variables.
13922
13923 1998-11-25 Jesse Thilo <jthilo@gnu.org>
13924
13925 * src/version.c: Build version.c automatically.
13926
13927 * src/reader.c:
13928 Fix token numbering (used to start at 258, not 257).
13929
13930 * src/system.h: Include config.h.
13931
13932 * src/getargs.c: Update bug report address.
13933
13934 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
13935 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
13936
13937 1998-11-25 Jesse Thilo <jthilo@gnu.org>
13938
13939 * Makefile.am:
13940 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
13941
13942 * configure.in, version.cin:
13943 Build version.c automatically.
13944
13945 * AUTHORS: Add AUTHORS file.
13946
13947 * README: Update bug report address.
13948
13949 * bison.simple:
13950 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
13951
13952 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
13953 Add automake stuff.
13954
13955 1998-11-25 Jesse Thilo <jthilo@gnu.org>
13956
13957 * doc/bison.texinfo: Clean up some formatting.
13958
13959 1998-05-05 Richard Stallman <rms@gnu.org>
13960
13961 * doc/bison.texinfo:
13962 Explain better why to make a pure parser.
13963
13964 1998-01-05 Richard Stallman <rms@gnu.org>
13965
13966 * src/files.c (openfiles):
13967 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
13968 find a temporary directory, if possible. Do not unlink files while
13969 they are open.
13970
13971 1997-08-25 Richard Stallman <rms@gnu.org>
13972
13973 * src/reader.c (stack_offset;):
13974 Change some warni to warns.
13975
13976 * src/lex.c (literalchar): Use warns, not warni.
13977
13978 1997-06-28 Richard Stallman <rms@gnu.org>
13979
13980 * src/bison.s1: Add a Bison version comment.
13981
13982 * src/main.c (fatal, warn, berror):
13983 Use program_name.
13984
13985 1997-06-28 Richard Stallman <rms@gnu.org>
13986
13987 * Makefile.in (bison_version): New variable.
13988 (dist): Use that variable.
13989 (bison.s1): Substitute the Bison version into bison.simple.
13990
13991 * bison.simple: Add a Bison version comment.
13992
13993 1997-06-18 Richard Stallman <rms@gnu.org>
13994
13995 * src/main.c (fatal, warn, berror):
13996 Make error messages standard.
13997 (toomany): Improve error message text.
13998
13999 * 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:
14000 new.h renamed to alloc.h.
14001
14002 1997-06-18 Richard Stallman <rms@gnu.org>
14003
14004 * Makefile.in: new.h renamed to alloc.h.
14005
14006 1997-05-24 Richard Stallman <rms@gnu.org>
14007
14008 * src/lex.c (literalchar):
14009 Fix the code for escaping \, " and '.
14010
14011 (lex): Avoid trouble when there are many chars
14012 to discard in a char literal with just several chars in it.
14013
14014 1997-05-17 Richard Stallman <rms@gnu.org>
14015
14016 * src/bison.s1:
14017 Use malloc, if using alloca is troublesome.
14018 (YYSTACK_USE_ALLOCA): New flag macro.
14019 Define it for some systems and compilers.
14020 (YYSTACK_ALLOC): New macro.
14021 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14022 If it was malloc'd, free it.
14023
14024 1997-05-17 Richard Stallman <rms@gnu.org>
14025
14026 * bison.simple:
14027 Use malloc, if using alloca is troublesome.
14028 (YYSTACK_USE_ALLOCA): New flag macro.
14029 Define it for some systems and compilers.
14030 (YYSTACK_ALLOC): New macro.
14031 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14032 If it was malloc'd, free it.
14033
14034 1997-04-23 Richard Stallman <rms@gnu.org>
14035
14036 * src/bison.s1:
14037 (alloca) [__hpux]: Always define as __builtin_alloca.
14038
14039 1997-04-23 Richard Stallman <rms@gnu.org>
14040
14041 * bison.simple:
14042 (alloca) [__hpux]: Always define as __builtin_alloca.
14043
14044 1997-04-22 Richard Stallman <rms@gnu.org>
14045
14046 * src/bison.s1:
14047 [__hpux]: Include alloca.h (right for HPUX 10)
14048 instead of declaring alloca (right for HPUX 9).
14049
14050 * src/bison.s1 (__yy_memcpy):
14051 Declare arg `count' as unsigned int.
14052 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14053
14054 1997-04-22 Richard Stallman <rms@gnu.org>
14055
14056 * bison.simple:
14057 [__hpux]: Include alloca.h (right for HPUX 10)
14058 instead of declaring alloca (right for HPUX 9).
14059
14060 * bison.simple (__yy_memcpy):
14061 Declare arg `count' as unsigned int.
14062 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14063
14064 1997-01-03 Richard Stallman <rms@gnu.org>
14065
14066 * src/allocate.c: [__STDC__ or _MSC_VER]:
14067 Declare calloc and realloc to return void *.
14068
14069 1997-01-02 Richard Stallman <rms@gnu.org>
14070
14071 * src/system.h:
14072 [_MSC_VER]: Include stdlib.h and process.h.
14073 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
14074
14075 * src/main.c (main): Return FAILURE as a value.
14076 (printable_version): Declare arg as int, not char.
14077
14078 1997-01-02 Richard Stallman <rms@gnu.org>
14079
14080 * Makefile.in (dist):
14081 Explicitly check for symlinks, and copy them.
14082
14083 1996-12-19 Richard Stallman <rms@gnu.org>
14084
14085 * src/files.c:
14086 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
14087
14088 1996-12-18 Paul Eggert <eggert@gnu.org>
14089
14090 * src/bison.s1 (yyparse):
14091 If __GNUC__ and YYPARSE_PARAM are both defined,
14092 declare yyparse to have a void * argument.
14093
14094 1996-12-18 Paul Eggert <eggert@gnu.org>
14095
14096 * bison.simple (yyparse):
14097 If __GNUC__ and YYPARSE_PARAM are both defined,
14098 declare yyparse to have a void * argument.
14099
14100 1996-12-17 Richard Stallman <rms@gnu.org>
14101
14102 * src/reduce.c (nbits): Add some casts.
14103
14104 1996-08-12 Richard Stallman <rms@gnu.org>
14105
14106 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
14107
14108 1996-08-12 Richard Stallman <rms@gnu.org>
14109
14110 * bison.simple: Test _MSDOS as well as _MSDOS_.
14111
14112 1996-07-31 Richard Stallman <rms@gnu.org>
14113
14114 * src/bison.s1:
14115 [__sun && __i386]: Include alloca.h.
14116
14117 1996-07-31 Richard Stallman <rms@gnu.org>
14118
14119 * bison.simple:
14120 [__sun && __i386]: Include alloca.h.
14121
14122 1996-07-30 Richard Stallman <rms@gnu.org>
14123
14124 * src/bison.s1: Comment change.
14125
14126 * src/bison.s1: Test _MSDOS_, not MSDOS.
14127
14128 1996-07-30 Richard Stallman <rms@gnu.org>
14129
14130 * bison.simple: Comment change.
14131
14132 * bison.simple: Test _MSDOS_, not MSDOS.
14133
14134 1996-06-01 Richard Stallman <rms@gnu.org>
14135
14136 * 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:
14137 Insert `_' macro around many string constants.
14138
14139 * src/main.c:
14140 Insert `_' macro around many string constants.
14141
14142 (main): Call setlocale, bindtextdomain and textdomain.
14143
14144 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
14145 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
14146 [ENABLE_NLS]: Include libintl.h.
14147 [ENABLE_NLS] (gettext): Define.
14148 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
14149 (N_, PACKAGE, LOCALEDIR): New macros.
14150
14151 1996-06-01 Richard Stallman <rms@gnu.org>
14152
14153 * POTFILES.in: New file.
14154
14155 * Makefile.in (allocate.o):
14156 Define target explicitly.
14157
14158 * Makefile.in (CFLAGS): Set to @CFLAGS@.
14159 (LDFLAGS): Set to @LDFLAGS@.
14160 (configure): Run autoconf only if preceding `cd' succeeds.
14161 (bison.s1): Redirect output to temporary file then move the
14162 temporary to the target, rather than redirecting directly to bison.s1.
14163 (clean): Remove config.status and config.log.
14164 (distclean): Don't remove config.status here.
14165
14166 1996-05-12 Richard Stallman <rms@gnu.org>
14167
14168 * src/bison.s1:
14169 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14170
14171 1996-05-12 Richard Stallman <rms@gnu.org>
14172
14173 * bison.simple:
14174 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14175
14176 1996-05-11 Richard Stallman <rms@gnu.org>
14177
14178 * src/bison.s1 (__yy_memcpy):
14179 Really reorder the args, as was supposedly done on Feb 14 1995.
14180 (yyparse): Calls changed accordingly.
14181
14182 1996-05-11 Richard Stallman <rms@gnu.org>
14183
14184 * Makefile.in (dist): Don't use $(srcdir).
14185
14186 * bison.simple (__yy_memcpy):
14187 Really reorder the args, as was supposedly done on Feb 14 1995.
14188 (yyparse): Calls changed accordingly.
14189
14190 1996-01-27 Richard Stallman <rms@gnu.org>
14191
14192 * src/output.c (output_rule_data):
14193 Test YYERROR_VERBOSE in the conditional
14194 around the definition of ttyname.
14195
14196 1995-12-29 Richard Stallman <rms@gnu.org>
14197
14198 * src/bison.s1:
14199 Fix line numbers in #line commands.
14200
14201 1995-12-29 Richard Stallman <rms@gnu.org>
14202
14203 * bison.simple:
14204 Fix line numbers in #line commands.
14205
14206 1995-12-27 Richard Stallman <rms@gnu.org>
14207
14208 * src/bison.s1 (YYPARSE_PARAM_DECL):
14209 In C++, make it always null.
14210 (YYPARSE_PARAM_ARG): New macro.
14211 (yyparse): Use YYPARSE_PARAM_ARG.
14212
14213 1995-12-27 Richard Stallman <rms@gnu.org>
14214
14215 * bison.simple (YYPARSE_PARAM_DECL):
14216 In C++, make it always null.
14217 (YYPARSE_PARAM_ARG): New macro.
14218 (yyparse): Use YYPARSE_PARAM_ARG.
14219
14220 1995-11-29 Richard Stallman <rms@gnu.org>
14221
14222 * doc/bison.texinfo:
14223 Describe literal string tokens, %raw, %no_lines, %token_table.
14224
14225 1995-11-29 Daniel Hagerty <hag@gnu.org>
14226
14227 * doc/bison.texinfo: Fixed update date
14228
14229 1995-10-16 Richard Stallman <rms@gnu.org>
14230
14231 * src/version.c: Version 1.25.
14232
14233 1995-10-16 Richard Stallman <rms@gnu.org>
14234
14235 * NEWS: *** empty log message ***
14236
14237 1995-10-16 Richard Stallman <rms@gnu.org>
14238
14239 * doc/bison.1, doc/bison.rnh:
14240 Add new options.
14241
14242 1995-10-15 Richard Stallman <rms@gnu.org>
14243
14244 * src/vmsgetargs.c, src/getargs.c:
14245 Added -n, -k, and -raw switches.
14246 (noparserflag, toknumflag, rawtoknumflag): New variables.
14247
14248 * src/symtab.h (SALIAS):
14249 New #define for adding aliases to %token.
14250 (struct bucket): Added `alias' field.
14251
14252 * src/reduce.c (reduce_grammar):
14253 Revise error message.
14254 (print_notices): Remove final `.' from error message.
14255
14256 * src/reader.c (reader_output_yylsp):
14257 New function.
14258 (readgram): Use `#if 0' around code that accepted %command
14259 inside grammar rules: The documentation doesn't allow it,
14260 and it will fail since the %command processors scan for the next %.
14261 (parse_token_decl): Extended the %token
14262 declaration to allow a multi-character symbol as an alias.
14263 (parse_thong_decl): New function.
14264 (read_declarations): Added %thong declarations.
14265 (read_declarations): Handle NOOP to deal with allowing
14266 % declarations as another means to specify the flags.
14267 (readgram): Allow %prec prior to semantics embedded in a rule.
14268 (skip_to_char, read_declarations, copy_definition)
14269 (parse_token_decl, parse_start_decl, parse_type_decl)
14270 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
14271 (get_type_name, copy_guard, copy_action, readgram)
14272 (get_type, packsymbols): Revised most error messages.
14273 Changed `fatal' to `warnxxx' to avoid aborting for error.
14274 Revised and use multiple warnxxx functions to avoid using VARARGS1.
14275 (read_declarations): Improve the error message for
14276 an invalid character. Do not abort.
14277 (read_declarations, copy_guard, copy_action): Use
14278 printable_version to avoid unprintable characters in printed output.
14279 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
14280 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
14281 Allow the type of a non-terminal can be given
14282 more than once, as long as all specifications give the same type.
14283
14284 * src/output.c:
14285 (output_headers, output_trailers, output, output_gram)
14286 (output_rule_data): Implement noparserflag variable.
14287 Implement toknumflag variable.
14288 (output): Call reader_output_yylsp to output LTYPESTR.
14289
14290 * src/main.c (main):
14291 If reader sees an error, don't process the grammar.
14292 (fatals): Updated to not use VARARGS1.
14293 (printable_version, int_to_string, warn, warni, warns, warnss)
14294 (warnsss): New error reporting functions. Avoid abort for error.
14295
14296 * src/lex.h:
14297 Added THONG and NOOP for alias processing.
14298 Added SETOPT for the new code that allows setting options with %flags.
14299
14300 * src/lex.c:
14301 Include getopt.h. Add some extern decls.
14302 (safegetc): New function to deal with EOF gracefully.
14303 (literalchar); new function to deal with reading \ escapes.
14304 (lex): Use literalchar.
14305 (lex): Implemented "..." tokens.
14306 (literalchar, lex, parse_percent_token): Made tokenbuffer
14307 always contain the token. This includes growing the token
14308 buffer while reading an integer.
14309 (parse_percent_token): Replaced if-else statement with percent_table.
14310 (parse_percent_token): Added % declarations as another
14311 way to specify the flags -n, -l, and -r. Also added hooks for
14312 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
14313 major changes to files.c.
14314 (lex) Retain in the incoming stream a character following
14315 an incorrect '/'.
14316 (skip_white_space, lex): Revised most error messages
14317 and changed fatal to warn to avoid aborting.
14318 (percent_table): Added %thong declarations.
14319
14320 * src/gram.h: Comment changes.
14321
14322 * src/files.c (openfiles, open_extra_files, done):
14323 Add faction flag
14324 and actfile file. Handle noparserflag. Both for -n switch.
14325
14326 * src/conflicts.c (resolve_sr_conflict):
14327 Remove use of alloca.
14328
14329 1995-06-01 Jim Meyering <meyering@gnu.org>
14330
14331 * doc/bison.texinfo: *** empty log message ***
14332
14333 1995-05-06 Richard Stallman <rms@gnu.org>
14334
14335 * src/bison.s1: Comment change.
14336
14337 1995-05-06 Richard Stallman <rms@gnu.org>
14338
14339 * bison.simple: Comment change.
14340
14341 1995-05-03 Richard Stallman <rms@gnu.org>
14342
14343 * src/version.c: Version now 1.24.
14344
14345 * src/bison.s1: Change distribution terms.
14346
14347 * src/version.c: Version now 1.23.
14348
14349 1995-05-03 Richard Stallman <rms@gnu.org>
14350
14351 * doc/bison.texinfo:
14352 Rewrite "Conditions for Using Bison".
14353 Update version to 1.24.
14354
14355 1995-05-03 Richard Stallman <rms@gnu.org>
14356
14357 * bison.simple: Change distribution terms.
14358
14359 1995-02-23 Richard Stallman <rms@gnu.org>
14360
14361 * src/files.c: Test __VMS_POSIX as well as VMS.
14362
14363 1995-02-14 Jim Meyering <meyering@gnu.org>
14364
14365 * src/bison.s1 (__yy_memcpy):
14366 Renamed from __yy_bcopy to avoid
14367 confusion. Reverse FROM and TO arguments to be consistent with
14368 those of memcpy.
14369
14370 1995-02-14 Jim Meyering <meyering@gnu.org>
14371
14372 * bison.simple (__yy_memcpy):
14373 Renamed from __yy_bcopy to avoid
14374 confusion. Reverse FROM and TO arguments to be consistent with
14375 those of memcpy.
14376
14377 1994-11-10 David J. MacKenzie <djm@gnu.org>
14378
14379 * NEWS: reformat
14380
14381 * NEWS: New file.
14382
14383 * Makefile.in (DISTFILES): Include NEWS.
14384
14385 * Makefile.in (DISTFILES):
14386 Include install-sh, not install.sh.
14387
14388 * configure.in: Update to Autoconf v2 macro names.
14389
14390 1994-10-05 David J. MacKenzie <djm@gnu.org>
14391
14392 * Makefile.in: fix typo
14393
14394 * Makefile.in (prefix, exec_prefix):
14395 Let configure set them.
14396
14397 1994-09-28 David J. MacKenzie <djm@gnu.org>
14398
14399 * Makefile.in: Set datadir to $(prefix)/share.
14400
14401 1994-09-15 Richard Stallman <rms@gnu.org>
14402
14403 * src/bison.s1:
14404 Update copyright notice and GPL version.
14405
14406 1994-09-15 Richard Stallman <rms@gnu.org>
14407
14408 * bison.simple:
14409 Update copyright notice and GPL version.
14410
14411 1994-07-12 Richard Stallman <rms@gnu.org>
14412
14413 * src/reduce.c, src/reader.c:
14414 entered into RCS
14415
14416 1994-05-05 David J. MacKenzie <djm@gnu.org>
14417
14418 * Makefile.in: entered into RCS
14419
14420 1994-03-26 Richard Stallman <rms@gnu.org>
14421
14422 * src/bison.s1: entered into RCS
14423
14424 1994-03-26 Richard Stallman <rms@gnu.org>
14425
14426 * bison.simple: entered into RCS
14427
14428 1994-03-25 Richard Stallman <rms@gnu.org>
14429
14430 * src/main.c: entered into RCS
14431
14432 1994-03-24 Richard Stallman <rms@gnu.org>
14433
14434 * src/conflicts.c: entered into RCS
14435
14436 1994-01-02 Richard Stallman <rms@gnu.org>
14437
14438 * Makefile.in: *** empty log message ***
14439
14440 1993-11-21 Richard Stallman <rms@gnu.org>
14441
14442 * src/bison.s1: *** empty log message ***
14443
14444 1993-11-21 Richard Stallman <rms@gnu.org>
14445
14446 * doc/bison.texinfo: entered into RCS
14447
14448 * doc/bison.texinfo: *** empty log message ***
14449
14450 1993-11-21 Richard Stallman <rms@gnu.org>
14451
14452 * bison.simple: *** empty log message ***
14453
14454 1993-10-25 David J. MacKenzie <djm@gnu.org>
14455
14456 * doc/bison.texinfo: *** empty log message ***
14457
14458 1993-10-19 Richard Stallman <rms@gnu.org>
14459
14460 * src/bison.s1: *** empty log message ***
14461
14462 1993-10-19 Richard Stallman <rms@gnu.org>
14463
14464 * bison.simple: *** empty log message ***
14465
14466 1993-10-14 Richard Stallman <rms@gnu.org>
14467
14468 * src/bison.s1: *** empty log message ***
14469
14470 1993-10-14 Richard Stallman <rms@gnu.org>
14471
14472 * bison.simple: *** empty log message ***
14473
14474 1993-09-14 David J. MacKenzie <djm@gnu.org>
14475
14476 * doc/bison.texinfo: *** empty log message ***
14477
14478 1993-09-13 Noah Friedman <friedman@gnu.org>
14479
14480 * Makefile.in: *** empty log message ***
14481
14482 1993-09-10 Richard Stallman <rms@gnu.org>
14483
14484 * src/conflicts.c: *** empty log message ***
14485
14486 * src/system.h: entered into RCS
14487
14488 1993-09-10 Richard Stallman <rms@gnu.org>
14489
14490 * doc/bison.1: entered into RCS
14491
14492 1993-09-06 Noah Friedman <friedman@gnu.org>
14493
14494 * src/version.c: entered into RCS
14495
14496 1993-09-06 Noah Friedman <friedman@gnu.org>
14497
14498 * Makefile.in: *** empty log message ***
14499
14500 1993-07-30 David J. MacKenzie <djm@gnu.org>
14501
14502 * Makefile.in: *** empty log message ***
14503
14504 1993-07-24 Richard Stallman <rms@gnu.org>
14505
14506 * src/bison.s1: *** empty log message ***
14507
14508 1993-07-24 Richard Stallman <rms@gnu.org>
14509
14510 * bison.simple: *** empty log message ***
14511
14512 1993-07-08 David J. MacKenzie <djm@gnu.org>
14513
14514 * Makefile.in: *** empty log message ***
14515
14516 1993-07-04 Richard Stallman <rms@gnu.org>
14517
14518 * src/bison.s1: *** empty log message ***
14519
14520 1993-07-04 Richard Stallman <rms@gnu.org>
14521
14522 * bison.simple: *** empty log message ***
14523
14524 1993-06-26 David J. MacKenzie <djm@gnu.org>
14525
14526 * src/getargs.c: entered into RCS
14527
14528 1993-06-26 David J. MacKenzie <djm@gnu.org>
14529
14530 * doc/bison.texinfo: *** empty log message ***
14531
14532 * doc/bison.1: New file.
14533
14534 1993-06-25 Richard Stallman <rms@gnu.org>
14535
14536 * src/getargs.c: New file.
14537
14538 1993-06-16 Richard Stallman <rms@gnu.org>
14539
14540 * src/bison.s1: *** empty log message ***
14541
14542 1993-06-16 Richard Stallman <rms@gnu.org>
14543
14544 * bison.simple: *** empty log message ***
14545
14546 1993-06-03 Richard Stallman <rms@gnu.org>
14547
14548 * src/bison.s1: New file.
14549
14550 1993-06-03 Richard Stallman <rms@gnu.org>
14551
14552 * doc/bison.texinfo: *** empty log message ***
14553
14554 1993-06-03 Richard Stallman <rms@gnu.org>
14555
14556 * bison.simple: New file.
14557
14558 1993-05-19 Richard Stallman <rms@gnu.org>
14559
14560 * doc/bison.texinfo: New file.
14561
14562 1993-05-07 Noah Friedman <friedman@gnu.org>
14563
14564 * Makefile.in: *** empty log message ***
14565
14566 1993-04-28 Noah Friedman <friedman@gnu.org>
14567
14568 * src/reader.c: *** empty log message ***
14569
14570 1993-04-23 Noah Friedman <friedman@gnu.org>
14571
14572 * src/alloc.h: entered into RCS
14573
14574 1993-04-20 David J. MacKenzie <djm@gnu.org>
14575
14576 * src/version.c: *** empty log message ***
14577
14578 * src/files.c, src/allocate.c:
14579 entered into RCS
14580
14581 * src/reader.c: *** empty log message ***
14582
14583 * src/lex.c: entered into RCS
14584
14585 * src/conflicts.c: New file.
14586
14587 * src/symtab.c: entered into RCS
14588
14589 * src/alloc.h: New file.
14590
14591 * src/LR0.c: entered into RCS
14592
14593 1993-04-18 Noah Friedman <friedman@gnu.org>
14594
14595 * src/reader.c: New file.
14596
14597 * src/version.c: *** empty log message ***
14598
14599 1993-04-18 Noah Friedman <friedman@gnu.org>
14600
14601 * Makefile.in: *** empty log message ***
14602
14603 1993-04-17 Noah Friedman <friedman@gnu.org>
14604
14605 * Makefile.in: *** empty log message ***
14606
14607 1993-04-15 Richard Stallman <rms@gnu.org>
14608
14609 * src/main.c, src/files.c:
14610 New file.
14611
14612 1993-04-15 Noah Friedman <friedman@gnu.org>
14613
14614 * configure.in: entered into RCS
14615
14616 * configure.in: *** empty log message ***
14617
14618 * configure.in: New file.
14619
14620 1993-04-14 Richard Stallman <rms@gnu.org>
14621
14622 * Makefile.in: New file.
14623
14624 1993-04-13 Richard Stallman <rms@gnu.org>
14625
14626 * src/version.c: New file.
14627
14628 1993-03-25 Richard Stallman <rms@gnu.org>
14629
14630 * src/output.c: entered into RCS
14631
14632 1992-09-25 Richard Stallman <rms@gnu.org>
14633
14634 * configure.bat: entered into RCS
14635
14636 1992-06-22 Richard Stallman <rms@gnu.org>
14637
14638 * src/vmsgetargs.c: entered into RCS
14639
14640 1992-06-22 Richard Stallman <rms@gnu.org>
14641
14642 * doc/bison.rnh: entered into RCS
14643
14644 1992-04-20 David J. MacKenzie <djm@gnu.org>
14645
14646 * README: entered into RCS
14647
14648 1992-01-22 Richard Stallman <rms@gnu.org>
14649
14650 * src/machine.h: entered into RCS
14651
14652 1991-12-21 Richard Stallman <rms@gnu.org>
14653
14654 * src/lalr.c, src/closure.c:
14655 entered into RCS
14656
14657 1991-12-20 Richard Stallman <rms@gnu.org>
14658
14659 * src/state.h: entered into RCS
14660
14661 1991-12-18 Richard Stallman <rms@gnu.org>
14662
14663 * src/print.c, src/nullable.c, src/derives.c:
14664 entered into RCS
14665
14666 1991-11-03 David J. MacKenzie <djm@gnu.org>
14667
14668 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
14669 entered into RCS
14670
14671 1988-09-09 Richard Stallman <rms@gnu.org>
14672
14673 * src/bison.hairy: entered into RCS
14674
14675 1987-12-16 Richard Stallman <rms@gnu.org>
14676
14677 * REFERENCES: entered into RCS
14678
14679
14680 -----
14681
14682 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
14683 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
14684 Foundation, Inc.
14685
14686 Copying and distribution of this file, with or without
14687 modification, are permitted provided the copyright notice and this
14688 notice are preserved.