]> git.saurik.com Git - bison.git/blame - ChangeLog
* src/conflicts.c (conflicts_print): Don't print file name twice
[bison.git] / ChangeLog
CommitLineData
035aa4a0
PE
12005-11-18 Paul Eggert <eggert@cs.ucla.edu>
2
3 * src/conflicts.c (conflicts_print): Don't print file name twice
4 when %expect fails because there were no conflicts.
5 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6 change.
7 * tests/conflicts.at (%expect not enough, %expect too much):
8 (%expect with reduce conflicts): Adjust to new behavior.
9
102005-11-18 Akim Demaille <akim@epita.fr>
11
12 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
13 errors.
14 * NEWS: Document this.
15 * doc/bison.texinfo (Expect Decl): Likewise.
16
d1ff7a7c
AD
172005-11-16 Akim Demaille <akim@epita.fr>
18
19 Generalize the display of semantic values and locations in traces.
20 * data/glr.c (yy_reduce_print): Fix indices (again).
21 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
22 literal integers.
23 * data/lalr1.cc (yyreduce_print): Rename as...
24 (yy_reduce_print): this.
25 Display values and locations.
26 * data/yacc.c (yy_reduce_print): Likewise.
27 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
28 (yysymprint): Move higher to be visible from yy_reduce_print).
29 (yyparse): Adjust.
30 * tests/calc.at: Adjust the expected length of the traces.
31
6de5398d
AD
322005-11-14 Akim Demaille <akim@epita.fr>
33
34 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
35 from 1 to N, while values and location start at 0.
36 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
37
a1373f55
AD
382005-11-14 Akim Demaille <akim@epita.fr>
39
40 * data/glr.c (yy_reduce_print): Fix the $ number.
41
613d8952
AD
422005-11-14 Akim Demaille <akim@epita.fr>
43
44 "Use" parse parameters.
45 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
46 * data/glr.c, data/glr.cc: Use them.
47 * data/glr.c (YYUSE): Have a C++ definition that supports
48 non-pointer types.
49
b2741627
AD
502005-11-14 Akim Demaille <akim@epita.fr>
51
52 * data/glr.c (yyexpandGLRStack): Declare only if defined.
53
5059b5c8
AD
542005-11-14 Akim Demaille <akim@epita.fr>
55
42249483
AD
56 * data/glr.cc: New.
57 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 58
4626a15d
AD
592005-11-12 Akim Demaille <akim@epita.fr>
60
61 Let position and location be PODs.
62 * data/location.cc (position::initialize, location::initialize): New.
63 (position::position, location::location): Define only if
64 b4_location_constructors is defined.
65 * data/lalr1.cc (b4_location_constructors): Define it for backward
66 compatibility.
67 * doc/bison.texinfo (Initial Action Decl): Use initialize.
68
692005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
70
71 * data/lalr1.cc: Move the body of the ctor and dtor into the
72 parser file (instead of the header).
73 Wrap the implementations in a "namespace yy".
74
752005-11-12 Akim Demaille <akim@epita.fr>
76
77 Have glr.c include its header file when created.
78 * data/glr.c (b4_shared_declarations): New.
79 Output them verbatim in the parser if !%defines, otherwise
80 output then in the header file, and include it instead.
81
1989d947
AD
822005-11-11 Akim Demaille <akim@epita.fr>
83
84 * data/glr.c: Comment changes.
85
862005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
87
88 When yydebug, report semantic and location values for reductions.
89 * data/glr.c (yy_reduce_print): Report the semantic values and the
90 locations.
91 (YY_REDUCE_PRINT): Adjust.
92 (yyglrReduce): Use them.
93 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
94 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
95 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
96 traces.
97
02998094
AD
982005-11-10 Akim Demaille <akim@epita.fr>
99
100 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
101 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
102 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
103
5210672f
PE
1042005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
105
106 * m4/cxx.m4, examples/Makefile.am: Don't build
107 examples/calc++ if no C++ compiler is available. (trivial change)
108
a8991a1d
AD
1092005-11-09 Akim Demaille <akim@epita.fr>
110
111 * src/scan-skel.l: Use a couple of asserts.
112
36b5e963
AD
1132005-11-03 Akim Demaille <akim@epita.fr>
114
115 In some (weird) cases, the final state number is incorrect.
116 Reported by Alexandre Duret-Lutz.
117 * src/LR0.c (state_list_append): Remove the computation of
118 final_state.
119 (save_reductions): Do it here.
120 (get_state): Alpha conversion.
121 (generate_states): Use a for loop.
122 * src/gram.h (item_number_is_rule_number)
123 (item_number_is_symbol_number): New.
124 * src/state.c: Use assert.
125 * src/system.h: Include assert.h.
126 * tests/sets.at (Accept): New.
127
44e7ead1
PH
1282005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
129
130 * data/glr.c (yyfill): Adjust comment.
36b5e963 131 (yyresolveAction): Initialize default location properly
44e7ead1
PH
132 for empty right-hand sides.
133 (yydoAction): Ditto.
134 Add comment explaining apparently dead code.
36b5e963
AD
135 * tests/glr-regression.at
136 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 137 New test.
36b5e963 138
e10a80ee
PE
1392005-10-30 Paul Eggert <eggert@cs.ucla.edu>
140
141 * bootstrap (cleanup_gnulib): New function. Use it to clean up
142 gnulib when interrupted. This fixes some race conditions and
143 works around some portability problems (one noted by Paul
144 Hilfinger).
145
067b32ee
AD
1462005-10-22 Akim <akim@epita.fr>
147
148 * Makefile.cfg: Adjust to config -> build-aux.
149 Reported by twledo.
150
4b367315
AD
1512005-10-21 Akim Demaille <akim@epita.fr>
152
153 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
154 the %parse-params.
155 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
156 * data/yacc.c (b4_Pure_if): Rename as...
157 (b4_yacc_pure_if): this.
158 (YY_SYMBOL_PRINT, yyparse): Adjust.
159 * doc/bison.texinfo: Formatting changes.
160
24cc23d9
AD
1612005-10-21 Akim Demaille <akim@epita.fr>
162
163 Finish the transition config -> build-aux.
164 * configure.ac, Makefile.am: Use build-aux.
165 * config/prev-version, config/announce-gen, config/Makefile.am:
166 Move to...
167 * build-aux/prev-version, build-aux/announce-gen,
168 * build-aux/Makefile.am: here.
169
d4476375
AD
1702005-10-14 Akim Demaille <akim@epita.fr>
171
172 * examples/calc++/test: Use set -x only when VERBOSE.
173
302c0aee
PE
1742005-10-13 Paul Eggert <eggert@cs.ucla.edu>
175
176 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
177 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
178
7625ec2c
AD
1792005-10-13 Akim Demaille <akim@epita.fr>
180
181 * src/scan-skel.l: Output the base name parts of the parser and
182 header file names.
302c0aee 183 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
184 additional checks.
185 Use this to exercise C++ outputs in subdirs.
186 Reported by Oleg Smolsky.
187
ba0fe3c7
PE
1882005-10-12 Paul Eggert <eggert@cs.ucla.edu>
189
190 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
191 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
192 Problem reported by John P. Hartmann.
193 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
194 already defined it.
195
9b8a5ce0
AD
1962005-10-12 Akim Demaille <akim@epita.fr>
197
198 * src/parse-gram.y (version_check): Exit 63 to please missing
199 (stands for "version mismatch).
200 * tests/input.at, doc/bison.texinfo: Adjust.
201
4f6e011e
PE
2022005-10-10 Paul Eggert <eggert@cs.ucla.edu>
203
204 Work around portability problems with Visual Age C compiler
205 (xlc and xlC_r) reported by John P. Hartmann.
206 * data/location.cc (initial_column, initial_line): Remove.
207 All uses replaced by 0 and 1.
208 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
209 that xlc complains about.
210 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 211 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 212 as __STDC__.
4d7aa45e
PE
213 * data/yacc.c (YYMODERN_C): New macro, which also looks at
214 __STDC_VERSION__. Use it everywhere instead of looking at
215 __STDC__ and __cplusplus.
4f6e011e 216
a1b3bf8c
AD
2172005-10-10 Akim Demaille <akim@epita.fr>
218
219 * examples/calc++/test: Be quiet unless VERBOSE.
220
412e44aa
PE
2212005-10-05 Paul Eggert <eggert@cs.ucla.edu>
222
2a4647a3
PE
223 * data/c.m4 (yydestruct, yysymprint):
224 Use YYUSE instead of casting to void.
225 * data/glr.c (YYUSE): New macro.
226 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
227 Use it instead of rolling our own.
228 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
229 (YYCHK1):
230 Use /*CONSTCOND*/ to suppress lint warnings.
231 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
232 (YY_STACK_PRINT): Use 'false' not '0'.
233 (YYUSE): New macro.
234 (yysymprint_, yydestruct_): Use it instead of rolling our own.
235 * data/yacc.c (YYUSE): New macro.
236 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
237 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
238 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
239
240
412e44aa
PE
241 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
242 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
243
88c6637f
PE
2442005-10-04 Paul Eggert <eggert@cs.ucla.edu>
245
2f4f028d
PE
246 Undo the parts of the unlocked-I/O change that substituted
247 putc or puts for printf. This might hurt performance a bit,
248 but some people prefer the printf style.
249 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
250 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
251 All uses replaced by YYFPRINTF and YYDPRINTF.
252 * data/yacc.c: Likewise.
253 * lib/bitset.c (bitset_print): Likewise.
254 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
255 putc and puts.
256 * lib/lbitset.c (debug_lbitset): Likewise.
257 * src/closure.c (print_firsts, print_fderives): Likewise.
258 * src/gram.c (grammar_dump): Likewise.
259 * src/lalr.c (look_ahead_tokens_print): Likewise.
260 * src/output.c (escaped_output): Likewise.
261 (user_actions_output): Break apart two printfs.
262 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
263 * src/reduce.c (reduce_print): Likewise.
264 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
265 * src/system.h: Include unlocked-io.h rathe than stdio.h.
266
88c6637f
PE
267 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
268 Use assignments rather than casts-to-void to suppress
269 unused-variable warnings. This pacifies 'lint'.
270 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
271 unused-variable warnings.
272
fb32e373
JMG
2732005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
274
275 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
276
edb8f44f
PE
2772005-10-02 Paul Eggert <eggert@cs.ucla.edu>
278
fb9c0b33
PE
279 Use unlocked I/O for a minor performance improvement on hosts like
280 GNU/Linux and Solaris that support unlocked I/O. The basic idea
281 is to use the gnlib unlocked-io module, and to prefer putc and
282 puts to printf when either will work (since the latter doesn't
283 come in an unlocked flavor).
284 * bootstrap (gnulib_modules): Add unlocked-io.
285 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
286 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
287 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
288 and similarly for puts and putc and printf.
289 * data/yacc.c: Likewise.
290 * lib/bitset.c (bitset_print): Likewise.
291 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
292 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
293 to printf.
294 * lib/lbitset.c (debug_lbitset): Likewise.
295 * src/closure.c (print_firsts, print_fderives): Likewise.
296 * src/gram.c (grammar_dump): Likewise.
297 * src/lalr.c (look_ahead_tokens_print): Likewise.
298 * src/output.c (escaped_output): Likewise.
299 (user_actions_output): Coalesce two printfs.
2f4f028d 300 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
301 * src/reduce.c (reduce_print): Likewise.
302 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 303 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 304
edb8f44f
PE
305 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
306 this confuses xgettext.
307
b50d2359
AD
3082005-10-02 Akim Demaille <akim@epita.fr>
309
310 * bootstrap (gnulib_modules): Add strverscmp.
311 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
312 * m4/.cvsignore: Add strverscmp.m4.
313 * src/parse-gram.y (%require): New token, new rule.
314 (version_check): New.
315 * src/scan-gram.l (%require): Adjust.
316 * tests/input.at (AT_REQUIRE): New.
317 Use it.
318 * doc/bison.texinfo (Require Decl): New.
319 (Calc++ Parser): Use %require.
320
21667f64
AD
3212005-10-02 Akim Demaille <akim@epita.fr>
322
323 * data/location.cc: New.
324
2b81e969
AD
3252005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
326 Akim Demaille <akim@epita.fr>
327
328 Make sure -odir/foo.cc creates dir/location.hh etc.
329 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
330 (spec_file_prefix, spec_verbose_file, spec_graph_file)
331 (spec_defines_file): Now const.
332 (dir_prefix): New.
333 (short_base_name): Remove.
334 * src/files.c: Adjust.
335 (dirname.h): Include.
336 (base_name): Don't prototype it.
337 (finput): Remove, duplicates gram_in.
338 (full_base_name, short_base_name): Replace by...
339 (all_but_ext, all_but_tab_ext): these.
340 (compute_base_names): Rename as...
341 (compute_file_name_parts): this.
342 Update to compute the new variables, including dir_prefix.
343 Adjust dependencies.
344 * src/output.c (prepare): Output them.
345 * src/reader.c: Adjust to use gram_in, not finput.
346 * src/scan-skel.l (@dir_prefix@): New.
347
ad6a9b97
JMG
3482005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
349
350 * lib/subpipe.c: New function end_of_output_subpipe() added
351 to allow support for non-posix systems. This is a no-op function
352 for posix systems.
353
354 * lib/subpipe.h: New function end_of_output_subpipe() added
355 to allow support for non-posix systems. This is a no-op function
356 for posix systems.
357
358 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
359 handle the lack of pipe/fork functionality on non-posix systems.
360
361 * djgpp/Makefile.maint: DJGPP specific file.
362
363 * djgpp/README.in: DJGPP specific file.
364
365 * djgpp/config.bat: DJGPP specific configuration file.
366
367 * djgpp/config.sed: DJGPP specific configuration file.
368
369 * djgpp/config.site: DJGPP specific configuration file.
370
371 * djgpp/config_h.sed: DJGPP specific configuration file.
372
373 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
374
375 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
376
fc695704
AD
3772005-10-02 Akim Demaille <akim@epita.fr>
378
379 * data/location.cc: New, extract from...
380 * data/lalr1.cc: here.
381 (location.hh): Include it after the user prologue, in case the
382 filename type is defined by the user.
383 Forward declation location and position before the pre-prologue.
384 (yyresult_): Rename as...
385 (yyresult): this, it's a local variable, not an attribute.
386 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
387
3882005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
389
390 * examples/extexi: Restore the #line generation.
391
fb9712a9
AD
3922005-09-30 Akim Demaille <akim@epita.fr>,
393 Alexandre Duret-Lutz <adl@gnu.org>
394
395 Move the token type and YYSTYPE in the parser class.
396 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
397 (parser::token): New, from the moved free definition of tokens.
398 (parser::semantic_value): Now a full definition instead of an
399 indirection to YYSTYPE.
400 (b4_post_prologue): No longer included in the header file, but
401 in the implementation file.
402 * doc/bison.texi (C+ Language Interface): Update.
403 * src/parse-gram.y: Support unary %define.
404 * tests/actions.at: Define global_tokens_and_yystype for backward
405 compatibility until we update the tests.
406 * tests/calc.at: Idem.
407 (first_line, first_column, last_line, last_column): Define for lalr1.cc
408 to simplify the code.
409
55f0c7b1
PE
4102005-09-29 Paul Eggert <eggert@cs.ucla.edu>
411
412 Port to SunOS 4.1.4, which lacks strtoul and strerror.
413 Ah, the good old days! Problem reported by Peter Klein.
414 * bootstrap (gnulib_modules): Add strerror, strtoul.
415 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
416 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
417
fb9712a9 4182005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
419
420 * data/c.m4 (b4_error_verbose_if): New.
421 * data/lalr1.cc: Use it.
422 (YYERROR_VERBOSE_IF): Remove.
423 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
424 parser members, replaced by...
425 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
426 local variables.
427 (yysyntax_error_): Takes the state number as argument.
428 (yyreduce_print_): Use the argument yyrule, not the former
429 attribute yyn_.
430
8a6f72f3
PE
4312005-09-26 Paul Eggert <eggert@cs.ucla.edu>
432
433 * bootstrap (gnulib_modules): Add verify.
434 * lib/.cvsignore: Add verify.h.
435 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
436 * src/system.h (verify): Remove.
437 Include verify.h instead.
438 * src/tables.c (tables_generate): Use new API for 'verify'.
439
0d50976f
PE
4402005-09-21 Paul Eggert <eggert@cs.ucla.edu>
441
ebc3737e
PE
442 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
443 local variables whose names begin with 'yy'.
444 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
445 Trivial changes from Joel E. Denny.
446
0d50976f
PE
447 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
448 it itself.
449 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
450 don't use alloca any more.
451
452 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
453 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 454 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
455 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
456 to match yacc.c, to test more hosts.
457
a05b79df
PE
4582005-09-20 Paul Eggert <eggert@cs.ucla.edu>
459
55289366
PE
460 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
461 doesn't affect behavior.
462 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
463 Solaris, AIX, MSC.
464 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
465 This works a bit better with glibc, if user code has already included
466 stdlib.h.
467 * doc/bison.texinfo (Bison Parser): Document that users can't
468 arbitrarily use malloc and free for other purposes. Document
469 that <alloca.h> and <malloc.h> might be included.
470 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
471 user must declare alloca.
472
a05b79df
PE
473 * HACKING (release): Forwarn the Translation Project about
474 stable releses.
475
3ab2ca22
AD
4762005-09-20 Akim Demaille <akim@epita.fr>
477
478 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
479
a9739e7c
PE
4802005-09-19 Paul Eggert <eggert@cs.ucla.edu>
481
a702593e
PE
482 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
483 (YYSTACK_ALLOC_MAXIMUM): Use it.
484 (yysyntax_error): New function.
485 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
486 multiple syntax errors are reported, and alloca is being used.
487 Instead, reallocate buffers twice as big each time, so that
488 we waste at most half the allocated memory. Start with a small
489 (128-byte) buffer that will suffice in most cases anyway.
490 Use yysyntax_error to do most of the work.
491
492 * doc/bison.texinfo (Error Reporting, Table of Symbols):
493 yynerrs is the number of errors reported, not the number of
494 errors encountered.
495
a9739e7c
PE
496 * tests/glr-regression.at (Duplicated user destructor for lookahead):
497 Mark it as expected to fail.
498 Cast result of malloc; problem reported by twlevo@xs4all.nl.
499 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
500 Don't start user-code symbols with "yy", to avoid name space problems.
501
f479c6c6
AD
5022005-09-19 Akim Demaille <akim@epita.fr>
503
504 Remove the traits, failed experiment.
505 It never proved useful, and anyway because of the current
506 definition, it was not possible to have several specialization of
507 this traits, making it useless.
508 * data/lalr1.cc (yy:traits): Remove.
509 Inline its definitions in the parser class.
510
e2586f82
AD
5112005-09-19 Akim Demaille <akim@epita.fr>
512
513 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
514 least Mac OSX with a /usr/local install of gettext.
515
2e8cf949
AD
5162005-09-19 Akim Demaille <akim@epita.fr>
517
518 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
519 and yytoken for similarity with the other skeletons.
520
c7fb0b90
AD
5212005-09-19 Akim Demaille <akim@epita.fr>
522
523 * NEWS, configure.ac: Bump to 2.1a.
524
1bd0deda
PE
5252005-09-16 Paul Eggert <eggert@cs.ucla.edu>
526
527 * NEWS: Version 2.1.
528
529 * NEWS: Remove notice of yytname change, since it was never in an
530 official release.
531 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
532 diagnostic.
533 * src/output.c (prepare): Likewise.
534 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
535 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
536 is not defined. This is an awful hack, but it's enough for now.
537 All callers changed.
538 * tests/glr-regression-at (make_value): Args are const pointers now,
539 to avoid GCC warning.
540 (Duplicated user destructor for lookahead): New test. Currently
541 skipped. It fails on my host but I'm not sure it'll always fail.
542
5432005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
544
545 * src/symtab.h (struct symbol): Declare the printer and destructor
546 as const, to avoid accidental calls to free.
547 (symbol_destructor_set, symbol_printer_set): Adjust.
548 * src/symtab.c: Adjust.
549
1bd0deda 5502005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
551
552 * data/c.m4 (b4_token_enums): New.
553 (b4_token_defines): Rename as...
554 (b4_token_enums_defines): this.
555 (b4_token_defines): New, output only the #defines.
556 * data/yacc.c, data/glr.c: Adjust.
557 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
558 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
559 as default values.
560
dbcdae2d
AD
5612005-09-16 Akim Demaille <akim@epita.fr>
562
563 * data/lalr1.cc (yylex_): Remove, inline its code.
564 (yyreport_syntax_error_): Remove, replaced by...
565 (yysyntax_error_): this which returns a string and leaves to the
566 caller the call to the users' error function.
567 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
568 Move from members of the parser object...
569 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
570 to local variables of the parse function.
571
70d8f291
AD
5722005-09-16 Akim Demaille <akim@epita.fr>
573
574 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
575 since it's in Bison's name space.
576
b47dbebe
PE
5772005-09-15 Paul Eggert <eggert@cs.ucla.edu>
578
ae199bf1
PE
579 * data/glr.c (yyresolveValue): Add default case to pacify
580 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
581
b47dbebe
PE
582 * NEWS: Document when yyparse started to return 2.
583 * doc/bison.texinfo (Parser Function): Document when yyparse
584 returns 2.
585
586 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
587 (b4_filename_type): Renamed back from b4_file_name_type. All uses
588 changed.
589 (class position): file_name -> filename (reverting). All uses changed.
590
5912005-09-14 Paul Eggert <eggert@cs.ucla.edu>
592
593 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
594 do anything if $@ exists. This reverts part of the 2005-07-07
595 patch.
596
00292f66
PE
5972005-09-11 Paul Eggert <eggert@cs.ucla.edu>
598
599 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
600 contains obsolete information and isn't worth distributing as a
601 separate file anyway.
602 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
603 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
604 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
605 (yyparse): Abort if user code uses longjmp to throw an unexpected
606 value.
607
a420f962
PE
6082005-09-09 Paul Eggert <eggert@cs.ucla.edu>
609
00292f66
PE
610 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
611 Suggested by twlevo@xs4all.nl.
612
127287e9
PE
613 * data/glr.c (YYCHK1): Do not assume YYE is in range.
614 This avoids a diagnostic from gcc -Wswitch-enum.
615 Problem reported by twlevo@xs4all.nl.
616
a420f962
PE
617 * doc/bison.texinfo: Don't use "filename", as per GNU coding
618 standards. Use "file name" or "file" or "name", depending on
619 the context.
620 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
621 not to hack/foo.tab.c.
622 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
623 * data/glr.c: b4_filename -> b4_file_name.
624 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
625 All uses changed.
626 (class position): filename -> file_name. All uses changed.
627 * data/yacc.c: b4_filename -> b4_file_name.
628 * lib/bitset.h: filename -> file_name in local vars.
629 * lib/bitset_stats.c: Likewise.
630 * src/files.c: Likewise.
631 * src/scan-skel.l ("@output ".*\n): Likewise.
632 * src/files.c (file_name_split): Renamed from filename_split.
633 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
634
6352005-09-08 Paul Eggert <eggert@cs.ucla.edu>
636
637 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
638 to accommodate latest gnulib.
639
640 * tests/glr-regression.at (Duplicate representation of merged trees):
641 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
642
643 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
644 needed.
645
42a6501d
PE
6462005-08-26 Paul Eggert <eggert@cs.ucla.edu>
647
648 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
649 All uses changed. Invoke user destructor after an error during a
650 split parse (trivial change from Joel E. Denny).
651
652 * tests/glr-regression.at
653 (User destructor after an error during a split parse): New test case.
654 Problem reported by Joel E. Denny in:
655 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
656
ef9a1faf
PE
6572005-08-25 Paul Eggert <eggert@cs.ucla.edu>
658
5b4aaf78
PE
659 * README-cvs: Give URLs for recommended tools.
660 Mention Gzip version problem, and bootstrapping issues.
661 Remove troubleshooting section, as it's somewhat obsolete.
662
b5240ba5
PE
663 * bootstrap (no_cache): New var, to accommodate different wget
664 variants. Use it instead of '-C off'. Problem reported by
665 twlevo@xs4all.nl.
666
ef9a1faf
PE
667 * data/glr.c (yydestroyStackItem): New function.
668 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
669 debugging information. Problem reported by Joel E. Denny.
670
e6efa9da
AD
6712005-08-25 Akim Demaille <akim@epita.fr>
672
673 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
674
adc90f13
PE
6752005-08-24 Paul Eggert <eggert@cs.ucla.edu>
676
677 * data/glr.c (yyrecoverSyntaxError, yyreturn):
678 Don't invoke destructor on unresolved entries.
679 * tests/glr-regression.at
680 (User destructor for unresolved GLR semantic value): New test case.
681 Problem reported by Joel E. Denny in:
682 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
683
f9315de5
PE
6842005-08-21 Paul Eggert <eggert@cs.ucla.edu>
685
15d29c1f
PE
686 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
687 Add strnlen.c.
688 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
689 lib-prefix.m4, po.m4.
690
dd5f2af2
PE
691 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
692 in yydestruct diagnostic, since it might not be an error.
693 Problem reported by Joel Denny near end of
694 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 695 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
696 * data/yacc.c (yyreturn): Likewise.
697 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
698
699 * src/files.c: Remove obsolete FIXME comment.
700
701 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
702 with the other templates, and to fix bogus run-on messages such
703 as the one reported at the end of
704 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
705 All callers changed to avoid the newline.
706 (yyprocessOneStack): Output two lines rather than one, to accommodate
707 the above change. This changes the debug output format slightly.
708
f9315de5
PE
709 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
710 reported by Joel E. Denny in
711 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
712 (trivial change).
713 * tests/glr-regression.at (Duplicate representation of merged trees):
714 New test, from Joel E. Denny in:
715 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
716 * THANKS: Add Joel E. Denny.
717
718 * configure.ac (AC_INIT): Bump to 2.0c.
719
04098407
PE
7202005-07-24 Paul Eggert <eggert@cs.ucla.edu>
721
722 * NEWS: Version 2.0b.
723
ca5d2013
PE
724 * Makefile.am (SUBDIRS): Put examples before tests, so that
725 "make check" doesn't finish with "All 1 tests passed".
726
3d54b576
PE
727 * tests/regression.at (Token definitions): Don't rely on
728 AT_PARSER_CHECK for data that contains backslashes. It currently
729 uses 'echo', and 'echo' isn't portable if its argument contains
730 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
731 that the byte '\0xff' is not printable in the C locale; it is,
732 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
733 not printable, so use '\0x81' to test.
734
d53ae497
PE
735 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
736 version of GCC, since the macro is used with non-GCC compilers.
737
fc01665e
PE
738 Fix core dump reported by Pablo De Napoli in
739 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
740 * tests/regression.at (Invalid inputs with {}): New test.
741 * src/parse-gram.y (token_name): Translate type before using
742 it as an index.
743
04098407
PE
744 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
745 the user's name space. All uses changed to __attribute__
746 ((__unused__)).
747 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
748 Add __attribute__ ((__noreturn__)).
749
750 * etc/clcommit: Remove. We weren't using it, and it failed
751 "make maintainer-distcheck".
752 * Makefile.maint: Merge from coreutils.
753 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
754 (syntax-check-rules): Change list of rules as described below.
755 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
756 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
757 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
758 (sc_trailing_space): New rules.
759 (sc_xalloc_h_in_src): Remove.
760 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
761 (sc_space_tab, sc_error_exit_success, sc_changelog):
762 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
763 (makefile-check, po-check, author_mark_check):
764 (makefile_path_separator_check, copyright-check):
765 Use grep -n, to make it easier to find violations.
766 Use CVS_LIST and CVS_LIST_EXCEPT.
767 (header_regexp, h_re): Remove.
768 (dd_c): New macro.
769 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
770 (my-distcheck): Use more-modern GCC flags.
771 (signatures, %.asc): Remove.
772 (rel-files, announcement): Remove signatures.
773 Restore old updating code, even though we don't use it, so
774 that we're the same as coreutils.
775 (alpha, beta, major): Depend on news-date-check.
776 Make the upload commands.
777
778 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
779 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
780 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
781 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
782 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
783 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
784 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
785 * tests/sets.at: Likewise.
786
787 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
788 we comment out the Autoconf version number.
789 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
790 it's error-prone and "make maintainer-distcheck" rejects it.
791
792 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
793 Indent calls to "error" to pacify "make maintainer-distcheck",
794 when the calls are not intended to be translated.
795 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
796
797 * src/Makefile.am (DEFS): Use +=, to pacify
798 "make maintainer-distcheck".
799 (bison_SOURCES): Add scan-skel.h.
800 (sc_tight_scope): New rule, from coreutils.
801
802 * src/files.c (src_extension, header_extension):
803 Now static, not extern.
804 * src/getargs.c (short_options): Likewise.
805 * src/muscle_tab.c (muscle_table): Likewise.
806 * src/parse-gram.y (current_class, current_type, current_prec):
807 Likewise.
808 * src/reader.c (grammar_end, previous_rule_end): Likewise.
809 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
810 * src/main.c (main): Cast bindtextdomain and textdomain calls to
811 void, to avoid warning when NLS is disabled.
812 * src/output.c: Include scan-skel.h.
813 (scan_skel): Remove decl, since scan-skel.h does this.
814 (output_skeleton):
815 Indent calls to "error" to pacify "make maintainer-distcheck".
816 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
817 * src/reader.h (gram_end, gram_lineno): New decls to pacify
818 "make maintainer-distcheck".
819 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
820 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
821 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
822 (skel_lex_destroy, scan_skel): Move these decls to...
823 * src/scan-skel.h: New file.
824 * src/uniqstr.c (uniqstr_assert):
825 Indent calls to "error" to pacify "make maintainer-distcheck".
826
827 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
828 not @VAR@.
829
830 * tests/torture.at: Revamp to avoid misuse of atoi that
831 "make maintainer-distcheck" complained about.
832
833 * examples/extexi (message): Don't print a message more than once,
834 and omit line-number decoration that makes Emacs compile think
835 that informative messages are worth worrying about.
836
8372005-07-22 Paul Eggert <eggert@cs.ucla.edu>
838
839 * configure.ac: Update version number.
840
841 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
842 accidentally.
843 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
844 autogenerated by the maintainer.
845 * examples/calc++/.cvsignore: Add *.yy.
846
847 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
848 * lib/bitset_stats.c (bitset_stats_init): Likewise.
849 * lib/bitsetv.c (bitsetv_alloc): Likewise.
850
851 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
852
853 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
854 from maintainer-distcheck about casting the argument of 'free'.
855
856 * NEWS: Mention recent yytname changes.
857 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
858
859 * bootstrap: For translations that have not yet been upgraded to
860 the new runtime-po domain, prime the pump by extracting the
861 relevant strings from the obsolete translations. This code can be
862 removed once the bison-runtime domain has been translated by each
863 team.
864
865 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
866 now that token names are already quoted.
867
868 Fix problem reported by Anthony Heading.
869 * data/glr.c (YYTOKEN_TABLE): New macro.
870 (yytname): Define if YYTOKEN_TABLE.
871 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
872 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
873 (YYERROR_VERBOSE): Define the same way the other skeletons do.
874 * src/output.c (prepare_symbols): Output token_table_flag.
875
0ffda363
PE
8762005-07-21 Paul Eggert <eggert@cs.ucla.edu>
877
878 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
879 again if the first call fails.
880
881 * data/glr.c (yytnamerr): New function.
882 (yyreportSyntaxError): Use it to dequote most string literals.
883 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
884 with other skeletons. All uses changed.
885 (yytnameerr_): New function.
886 (yyreport_syntax_error): Use it to dequote most string literals.
887 * data/yacc.c (yytnamerr): New function.
888 (yyerrlab): Use it to decode most string literals.
889 * doc/bison.texinfo (Decl Summary, Calling Convention):
890 Clarify quoting convention of yytname.
891 * src/output.c (prepare_symbols): Quote all names. This undoes
892 the 2005-04-17 change, which is now accomplished (mostly) via
893 changes in the parsers as described above.
894 * tests/regression.at (Token definitions, Web2c Actions):
895 Undo most 2005-04-17 change here, too.
896
8972005-07-20 Paul Eggert <eggert@cs.ucla.edu>
898
899 Fix more problems reported by twlevo@xs4all.nl.
900 * tests/cxx-type.at: Don't pipe output of ./types through sed to
901 remove trailing spaces. This loses the exit status of ./types,
902 and isn't needed since ./types shouldn't be emitting trailing
903 spaces.
904 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
905 as the stack isn't valid in that case.
906
907 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
908 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
909 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
910 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
911 is used.
912 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
913 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
914 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
915 Likewise.
916
917 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
918 overly-picky compilers that reject 'char *foo = "bar";'.
919
920 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
921 to FILE * parameter, not to stderr. This fixes a typo introduced
922 in the 2005-07-12 change.
923
924 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
925 warnings from GCC 4.
926
927 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
928 (yyglrShiftDefer, yysplitStack):
929 Remove unused parameters b4_pure_formals. All uses changed.
930 (yyglrShift): Remove unused parameters b4_user_formals.
931 All uses changed.
932 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
933
6100a9aa
PE
9342005-07-18 Paul Eggert <eggert@cs.ucla.edu>
935
258b75ca
PE
936 Destructor cleanups and regularization among the three skeletons.
937 * NEWS: Document the behavior changes.
938 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
939 stack before failing, as the cleanup code will do it for us now.
940 * data/lalr1.cc (yyerrlab): Likewise.
941 * data/glr.c (yyparse): Pop everything off the stack before
942 freeing it, so that destructors get called properly.
943 * data/lalr1.cc (yyreturn): Likewise.
944 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
945 This is more consistent.
946 * doc/bison.texinfo (Destructor Decl): Mention more reasons
947 why destructors might be called. 1.875 -> 2.1.
948 (Destructor Decl, Decl Summary, Table of Symbols):
949 Some English-language cleanups for %destructor.
950 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
951 Add output line for destructor of start symbol.
952 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
953 because of that same extra output line.
954
1a059451
PE
955 * NEWS: Document minor wording changes in diagnostics of
956 Bison-generated parsers.
957 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
958 Remove unused formals. All uses changed.
959 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
960 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
961 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
962 Rename yyoverflowab to yyexhaustedlab.
963 When memory exhaustion occurs during syntax-error reporting,
964 report it separately rather than in a single diagnostic; this
965 eases translation.
966 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
967 (Memory Exhausted): Renamed from Parser Stack Overflow.
968 Revamp wording slightly to prefer "memory exhaustion".
969 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
970
97460c78
PE
971 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
972
30757c8c
PE
973 Add i18n support to the GLR skeleton. Partially fix the C++
974 skeleton; a C++ expert needs to finish this. Remove debugging
975 msgids; there's little point to having them translated, since they
976 can be understood only by someone who can read the
977 (English-language) source code.
978
979 Generate runtime-po/bison-runtime.pot automatically, so that we
980 don't have to worry about garbage getting in that file. We'll
981 make sure after the next official release that old msgids don't
982 get lost. See
983 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
984
985 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
986 Now auto-generated.
987 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
988 Fix typos in explanations of the runtime file.
989 * bootstrap: Change gettext keyword from YYI18N to YY_.
990 Use standard Makefile.in.in in runtime-po, since we'll arrange
991 for backward-compatible bison-runtime.po files in a different way.
992 * data/glr.c (YY_): New macro, from yacc.c.
993 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
994 Translate messages intended for users.
995 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
996 the wording in the other skeletons. We don't know that the memory
997 is virtual.
998 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
999 Use same method that yacc.c uses.
1000 Don't translate debugging messages.
1001 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
1002 it doesn't work (yet), and requires C++ expertise to fix.
1003 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
1004 Move defn to a more logical place, to be consistent with other
1005 skeletons.
1006 Don't translate debugging messages.
1007 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
1008 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
1009 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
1010 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
1011
ac8c5689
PE
1012 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
1013 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
1014 void, not int.
1015 * tests/glr-regression.at (Badly Collapsed GLR States):
1016 Likewise.
1017 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
1018 yylex should return 0 at EOF rather than aborting.
1019
6100a9aa
PE
1020 Improve tests for stack overflow in GLR parser.
1021 Problem reported by twlevo@xs4all.nl.
1022 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
1023 All uses removed.
1024 (yyStackOverflow): Just longjmp, but with value 2 so that caller
1025 can handle the problem.
1026 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
1027 (yyparse): New local variable yyresult to record the result.
1028 Use result of setjmp to set it, rather than storing itinto
1029 struct.
1030 (yyDone): Remove label.
1031 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
1032 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
1033 if YYABORT is used).
1034 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
1035 yyparse status; put status > 1 into diagnostic.
1036 Check that status==2 works.
1037 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
1038 Use exit status 3 for failure to open (which shouldn't happen).
1039
15f40952
PE
10402005-07-17 Paul Eggert <eggert@cs.ucla.edu>
1041
67fd79c4
PE
1042 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
1043 1 on syntax error; just let yyparse do its thing.
1044 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
1045 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
1046 (Exploding the Stack Size with Alloca):
1047 (Exploding the Stack Size with Malloc):
1048 Expect exit status 2, not 1, since the parser is supposed to blow
1049 its stack. Problem reported by twlevo@xs4all.nl.
1050
15f40952
PE
1051 * data/glr.c (yyparse): Don't assume that the initial calls
1052 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
1053 Print a stack-overflow message and fail instead.
1054 Initialize the line-number information before creating the stack,
1055 so that the stack-overflow message can report line zero safely.
1056
f32c66b5
PE
10572005-07-14 Paul Eggert <eggert@cs.ucla.edu>
1058
a22ff96f 1059 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
1060 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
1061 (yyuserMerge): Provide a default case if b4_mergers is empty.
1062 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
1063 * tests/glr-regression.at
1064 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 1065 Add casts to pacify C++ compilers.
1beb0b24
PE
1066 * tests/glr-regression.at (Improper merging of GLR delayed action
1067 sets): Declare yylex before using it.
f32c66b5 1068 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
1069 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
1070 test for valgrind; valgrind is independent of g++.
1071 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
1072 for compatibility with POSIX 1003.1-2001 (if running coreutils).
1073 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
1074 Use a destructor, so that we can expand the stack. Change
1075 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 1076
d741bd1b
PE
10772005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
1078
1079 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
1080 a valgrind failure. Problem reported by twlevo@xs4all.nl.
1081
0410a6e0
PE
10822005-07-13 Paul Eggert <eggert@cs.ucla.edu>
1083
1084 * PACKAGING: New file, suggested by Bruno Haible and taken from
1085 similar wording in gettext's PACKAGING file.
1086 * NEWS: Mention PACKAGING.
1087 * Makefile.am (EXTRA_DIST): Add PACKAGING.
1088
f7ab6a50
PE
10892005-07-12 Paul Eggert <eggert@cs.ucla.edu>
1090
baf785db 1091 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
1092 * bootstrap: Get runtime translations into runtime-po.
1093 Create runtime-po files automatically, if possible.
1094 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
1095 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
1096 does not infringe on the user's name space.
1097 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
1098 * doc/bison.texinfo (Internationalization): Revamp the English
1099 and Texinfo syntax a bit, to try to make it clearer.
1100 (Bison Options, Option Cross Key): Mention --print-localedir.
1101 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
1102 YYENABLE_NLS. Quote a bit more.
1103 * runtime-po/.cvsignore: New file.
1104 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
1105 * runtime-po/Rules-quot: Remove; now created by bootstrap.
1106 * runtime-po/quot.sed: Likewise.
1107 * runtime-po/boldquot.sed: Likewise.
1108 * runtime-po/en@quot.header: Likewise.
1109 * runtime-po/en@boldquot.header: Likewise.
1110 * runtime-po/insert-header.sin: Likewise.
1111 * runtime-po/remove-potcdate.sin: Likewise.
1112 * runtime-po/Makevars: Likewise.
1113 * runtime-po/LINGUAS: Likewise.
1114 * runtime-po/de.po: Likewise; we will rely on the translation project
1115 to maintain this, so "bootstrap" should get it.
0410a6e0 1116 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
1117 its value.
1118 * src/main.c (main): Bind the bison-runtime domain, too.
1119
11202005-07-12 Bruno Haible <bruno@clisp.org>
1121
1122 * data/yacc.c: Include <libintl.h> when NLS is enabled.
1123 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
1124 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
1125 * runtime-po: New directory.
1126 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
1127 $(DOMAIN).pot-update rule, so that old messages are never dropped.
1128 * runtime-po/Rules-quot: New file, copied from po/.
1129 * runtime-po/quot.sed: Likewise.
1130 * runtime-po/boldquot.sed: Likewise.
1131 * runtime-po/en@quot.header: Likewise.
1132 * runtime-po/en@boldquot.header: Likewise.
1133 * runtime-po/insert-header.sin: Likewise.
1134 * runtime-po/remove-potcdate.sin: Likewise.
1135 * runtime-po/Makevars: New file.
1136 * runtime-po/POTFILES.in: New file.
1137 * runtime-po/LINGUAS: New file.
1138 * runtime-po/bison-runtime.pot: New file.
1139 * runtime-po/de.po: New file.
1140 * m4/bison.m4: New file.
1141 * Makefile.am (SUBDIRS): Add runtime-po.
1142 (aclocaldir, aclocal_DATA): New variables.
1143 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
1144 Define aclocaldir.
1145 * src/getargs.c (usage): Document --print-localedir option.
1146 (PRINT_LOCALEDIR_OPTION): New enum item.
1147 (long_options): Add --print-localedir option.
1148 (getargs): Handle --print-localedir option.
1149 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
1150 (Internationalization): New section.
1151
22dda0f0
AD
11522005-07-12 Akim Demaille <akim@epita.fr>
1153
1154 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
1155 for consistency with the rest of the code.
1156 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
1157 Add separators.
1158
82b248ad
AD
11592005-07-12 Akim Demaille <akim@epita.fr>
1160
1161 * src/parse-gram.y: Use %printer instead of YYPRINT.
1162
fa0e9314
AD
11632005-07-12 Akim Demaille <akim@epita.fr>
1164
867a3e00
AD
1165 * src/symtab.h, src/symtab.c (symbol_print): New.
1166 * src/symlist.h, src/symlist.c (symbol_list_print): New.
1167 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
1168
11692005-07-12 Akim Demaille <akim@epita.fr>
1170
1171 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
1172 b4_at_dollar and b4_dollar_dollar.
1173
e054b190
PE
11742005-07-11 Paul Eggert <eggert@cs.ucla.edu>
1175
1176 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
1177 and Pennello's paper.
1178
34160ec4
PE
11792005-07-09 Paul Eggert <eggert@cs.ucla.edu>
1180
407d4a75
PE
1181 * data/yacc.c (yyparse): Undo previous patch. Instead,
1182 set yylsp[0] and yyvsp[0] only if the initial action
1183 sets yylloc and yylval, respectively.
1184
34160ec4
PE
1185 * data/yacc.c (yyparse): In the initial action, set
1186 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
1187 This avoids the use of undefined variables if the initial
1188 action does not set yylloc and/or yylval.
1189
c3d5a4a7
PE
11902005-07-07 Paul Eggert <eggert@cs.ucla.edu>
1191
b34d96c1
PE
1192 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
1193 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
1194 Remove from CVS. These files are automatically generated.
1195 * examples/extexi: Clarify that this file is now part of Bison,
1196 not GNU M4, and that it works with any POSIX-compatible Awk.
1197 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
1198 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
1199 so that we also get calc++-parser.yy. Geneate it.
1200 Use $(AWK), not gawk, since any conforming Awk will do.
1201 Put comment before action, since older 'make' can't handle comment
1202 in action.
1203 $(BUILT_SOURCES): List all built sources, not just some of them.
1204 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
1205 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
1206 $($(calc_sources_generated)): Remove unnecessary test for existence
1207 of target. (This had a shell syntax error anyway; a stray "x".)
1208 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
1209 calc++-parser.yy.
1210 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
1211
c3d5a4a7
PE
1212 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
1213 implied by the other modules.
1214
828c373b
AD
12152005-07-06 Akim Demaille <akim@epita.fr>
1216
1217 Bind examples/calc++ to the package.
1218 * examples/calc++/Makefile: Remove, replaced by...
1219 * examples/calc++/Makefile.am: ... this new file.
1220 * examples/calc++/test: Remove input.
1221 * examples/calc++/compile: Remove.
1222 * examples/Makefile.am: New.
1223 * configure.ac, Makefile.am: Adjust.
1224 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
1225
63cb01d6
PE
12262005-07-05 Paul Eggert <eggert@cs.ucla.edu>
1227
fd2df2ed
PE
1228 * data/glr.c (yyFail): Drastically simplify; since the format argument
1229 never had any % directives, we can simply pass it to yyerror.
1230 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
1231 be modified later, as that is the usual style in glr.c.
1232 Problems reported by Paul Hilfinger.
1233
63cb01d6
PE
1234 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
1235 and size overflow errors.
1236 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
1237 in case the user prolog sets feature-test macros like _GNU_SOURCE.
1238 (YYSIZEMAX): New macro.
1239 (yystpcpy): New function, taken from yacc.c.
1240 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
1241 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
1242 so that we don't have to maintain their signatures.
1243 (yyFail): Check for buffer overflow, by using vsnprintf rather
1244 than vsprintf. Allocate a bigger buffer if possible.
1245 Report an error if buffer allocation fails.
1246 (yyStackOverflow): New function.
1247 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
1248 the initialization was successful. It might fail if storage was
1249 exhausted.
1250 (yyexpandGLRStack): Add more checks for storage allocation failure.
1251 Use yyStackOverflow to report failures.
1252 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
1253 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
1254 Don't assume stack number fits in int.
1255 (yysplitStack): Check for storage allocation failure.
1256 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
1257 can print diagnostics on storage allocation failure. All callers
1258 changed.
1259 (yyresolveValue): Use yybool for boolean.
1260 (yyreportSyntaxError): Check for size-calculation overflow.
1261 This code is taken from yacc.c.
1262 (yyparse): Check for storage allocation errors when allocating
1263 the initial stack.
1264
1c59e0a1
AD
12652005-07-05 Akim Demaille <akim@epita.fr>
1266
1267 Extract calc++ from the documentation.
1268 * doc/bison.texinfo (Calc++): Add the extraction marks.
1269 * examples/extexi: New, from the aborted GNU Programming 2E.
1270 Separate the different paragraph of a file with empty lines.
1271 * examples/Makefile: Use it to extract the whole calc++ example.
1272
8a0adb01
AD
12732005-06-24 Akim Demaille <akim@epita.fr>
1274
1275 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
1276 class typedefs.
1277
12545799
AD
12782005-06-22 Akim Demaille <akim@epita.fr>
1279
1280 * doc/bison.texinfo (C++ Language Interface): First stab.
1281 (C++ Parsers): Remove.
1282
99be0235
AD
12832005-06-22 Akim Demaille <akim@epita.fr>
1284
1285 * data/lalr1.cc (yylex_): Honor %lex-param.
1286
0ffd4fd1
AD
12872005-06-22 Akim Demaille <akim@epita.fr>
1288
1289 Start a set of simple examples.
1290 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
1291 * examples/calc++/calc++-driver.hh,
1292 * examples/calc++/calc++-parser.yy,
1293 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
1294 * examples/calc++/compile, examples/calc++/test: New.
1295
0925ebb4
PE
12962005-06-09 Paul Eggert <eggert@cs.ucla.edu>
1297
1298 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
1299 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
1300 which stems from the 2005-05-27 patch.
1301
43d3b664
PH
13022005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1303
1304 * data/glr.c: Modify treatment of unused parameters to permit use
1305 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
1306
3062864d
PE
13072005-05-30 Paul Eggert <eggert@cs.ucla.edu>
1308
1309 Fix infringement on user name space reported by Janos Zoltan Szabo.
1310 * data/yacc.c (yyparse): strlen -> yystrlen.
1311
989b5b8e
AD
13122005-05-30 Akim Demaille <akim@epita.fr>
1313
1314 * data/lalr1.cc (_): New.
1315 Translate the various messages.
1316
bedf57f5
PE
13172005-05-27 Paul Eggert <eggert@cs.ucla.edu>
1318
1319 Fix infringement on user name space reported by Bruno Haible.
1320 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
1321 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
1322 the user's name space.
1323 (alloca): Include <stdlib.h> to get it, if it's not built in.
1324 (YYMALLOC, YYFREE): Define only if needed.
1325 (malloc, free): Declare, but only if needed, as this infringes on
1326 the user name space.
1327
4d1801f1
PE
13282005-05-25 Paul Eggert <eggert@cs.ucla.edu>
1329
1330 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
1331 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
1332 with %d format.
1333 * lib/ebitset.c (min, max): Undef before defining.
1334 * lib/vbitset.c (min, max): Likewise.
1335 * lib/subpipe.c (create_subpipe): Save local variables in case
1336 vfork clobbers them.
1337
13382005-05-24 Bruno Haible <bruno@clisp.org>
1339
1340 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
1341 error message syntax used by gcc-4.0.
1342
b94a9e1e
PE
13432005-05-23 Paul Eggert <eggert@cs.ucla.edu>
1344
85ac3861
PE
1345 * README: Mention m4 1.4.3. Remove obsolete advice about
1346 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
1347
b94a9e1e
PE
1348 * bootstrap: Remove workaround for problem I encountered with
1349 gettext 0.14.1; it seems to be fixed now.
1350
51c30d21
PE
13512005-05-22 Paul Eggert <eggert@cs.ucla.edu>
1352
009ce67d
PE
1353 * NEWS: Version 2.0a.
1354
f2a97c62
PE
1355 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
1356 the previous change.
1357
c8775f93
PE
1358 Various maintainer cleanups.
1359 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
1360 conftest*, for benefit of CVS commands run at the same time as
1361 "configure". Add build-aux, since "bootstrap" now creates it and
1362 its subfiles.
1363 * Makefile.cfg (move_if_change): Remove.
1364 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
1365 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
1366 (po_repo, do-po-update, po-update, wget_files, get-targets):
1367 (config.guess-url_prefix, config.sub-url_prefix):
1368 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
1369 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
1370 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
1371 Remove.
1372 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
1373 this is now the recommended name.
1374 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
1375 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
1376 ylwrap. These files now go into build-aux.
1377 * config/move-if-change: Remove.
1378 * config/prev-version.txt: Bump from 1.75 to 2.0.
1379
3ea5f0ec
PE
1380 * bootstrap: Add stdio-safer, unistd-safer modules.
1381 Remove m4/glibc2.m4 (introduced by latest gnulib, but
1382 we don't need it).
1383 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
1384 fopen-safer.c, stdio-safer.h, unistd-safer.h.
1385 * lib/subpipe.c: Include "unistd-safer.h".
1386 (create_subpipe): Make sure all the newly-created
1387 file descriptors are > 2, so that diagnostics don't
1388 get sent down them (which might cause Bison to hang, in theory).
1389 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
1390 * src/files.c (xfopen): Use fopen_safer, not fopen.
1391
51c30d21
PE
1392 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
1393 yesterday's yacc.c fix.
1394
cea1469d
PE
13952005-05-21 Paul Eggert <eggert@cs.ucla.edu>
1396
3ea5f0ec
PE
1397 * data/glr.c, data/lalr1.cc: Update copyright date.
1398
cea1469d
PE
1399 Fix a destructor bug reported by Wolfgang Spraul in
1400 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
1401 * data/yacc.c (yyabortlab): Don't call destructor, and
1402 don't set yychar to EMPTY.
1403 (yyoverflowlab): Don't call destructor.
1404 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
1405 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
1406 since we no longer output the message "discarding lookahead token
1407 end of input ()".
1408
5e6f62f2
PH
14092005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
1410
1411 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
1412 fix a small glitch in debugging output.
1413 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
1414 after YY_SYMBOL_PRINT where needed.
1415
1416 (struct yyGLRState): Add some comments.
1417 (struct yySemanticOption): Add some comments.
1418 (union yyGLRStackItem): Add comment.
1419
1420 (yymergeOptionSets): Correct this to properly perform the union,
1421 avoiding infinite reported by Michael Rosien.
1422 Update comment.
1423
1424 * tests/glr-regression.at: Add test for GLR merging error reported
1425 by M. Rosien.
cea1469d 1426
0fb669f9
PE
14272005-05-13 Paul Eggert <eggert@cs.ucla.edu>
1428
1429 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
1430 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
1431 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
1432 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
1433 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
1434 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
1435 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
1436 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
1437 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
1438 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
1439 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
1440 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
1441 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
1442 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
1443 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
1444 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
1445 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
1446 src/derives.h, src/files.c, src/files.h, src/getargs.c,
1447 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
1448 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
1449 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
1450 src/output.h, src/parse-gram.c, src/parse-gram.h,
1451 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
1452 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
1453 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
1454 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
1455 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
1456 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
1457 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
1458 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
1459 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
1460 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
1461 tests/reduce.at, tests/regression.at, tests/sets.at,
1462 tests/synclines.at, tests/testsuite.at, tests/torture.at:
1463 Update FSF postal mail address.
1464
51f4735e
PE
14652005-05-11 Paul Eggert <eggert@cs.ucla.edu>
1466
1467 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
1468 Problem reported by Ralf Menzel.
1469
80ce3401
PE
14702005-05-01 Paul Eggert <eggert@cs.ucla.edu>
1471
1472 * tests/actions.at: Test that stack overflow invokes destructors.
1473 From Marcus Holland-Moritz.
1474 * data/yacc.c (yyerrlab): Move the code that destroys the stack
1475 from here....
1476 (yyreturn): to here. That way, destructors are called properly
1477 even if the stack overflows, or the user calls YYACCEPT or
1478 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
1479 (yyoverflowlab): Destroy the lookahead.
1480
14812005-04-24 Paul Eggert <eggert@cs.ucla.edu>
1482
1483 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
1484
72f000b0
PE
14852005-04-17 Paul Eggert <eggert@cs.ucla.edu>
1486
1487 * NEWS: Bison-generated C parsers no longer quote literal strings
1488 associated with tokens.
1489 * src/output.c (prepare_symbols): Don't escape strings,
1490 since users don't want to see C escapes.
1491 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
1492 in diagnostics.
c19683bb 1493 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
1494 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
1495
1094323f
PE
14962005-04-16 Paul Eggert <eggert@cs.ucla.edu>
1497
1498 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
1499 the data size is known to be too small and we can't increase it.
1500 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
1501
ca407bdf
PE
15022005-04-15 Paul Eggert <eggert@cs.ucla.edu>
1503
1504 * src/parse-gram.y: Include quotearg.h.
1505 (string_as_id): Quote $1 before using it as a key, since the
1506 lexer no longer quotes it for us.
1507 (string_content): Don't strip quotes, since lexer no longer
1508 quotes it for us.
1509 * src/scan-gram.l: Include quotearg.h.
1510 ("\""): Omit quote.
1511 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
1512 a key, since the rest of the lexer doesn't quote it.
1513 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
1514 * tests/regression.at (Token definitions): Check for backslashes
1515 in token strings.
1516
1517 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
1518 (YYSIZE_T): Define to unsigned long int when using an older compiler.
1519 (yyparse): Revamp code to generate long syntax error message, to
1520 make it easier to translate, and to avoid problems with arithmetic
1521 overflow. Change "virtual memory" to "memory" in diagnostic, since
1522 we don't know whether the memory is virtual.
1523
1ce59070
PE
15242005-04-13 Paul Eggert <eggert@cs.ucla.edu>
1525
1526 * NEWS: Bison-generated C parsers now use the _ macro to
1527 translate strings.
1528 * data/yacc.c (_) [!defined _]: New macro.
1529 All English strings wrapped inside this macro.
1530 * doc/bison.texinfo (Bison Parser): Document _.
1531 * po/POTFILES.in: Include src/parse-gram.c, since it now
1532 includes translateable strings that parse-gram.y doesn't.
1533
a749a695
PE
15342005-04-12 Paul Eggert <eggert@cs.ucla.edu>
1535
1536 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
1537 reverting the 2004-10-11 change to this function.
1538 (symbol_check_alias_consistency): Don't call symbol_type_set
1539 if the type name is already correct.
1540 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
1541
8fb1053b
PE
15422005-03-25 Paul Eggert <eggert@cs.ucla.edu>
1543
1544 * tests/regression.at (Token definitions): Don't use a token named
1545 c, as that generates a "#define c ..." that runs afoul of buggy
1546 stdlib.h that uses the identifier c as a member of struct
1547 drand48_data. Problem reported by Horst Wente.
1548
ff498c4a
PE
15492005-03-21 Paul Eggert <eggert@cs.ucla.edu>
1550
1551 * bootstrap: Change translation URL from
1552 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
1553 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
1554 redirection glitches. Problem reported by twlevo@xs4all.nl.
1555
65211d70
PE
15562005-03-20 Paul Eggert <eggert@cs.ucla.edu>
1557
1558 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
1559 after operands; POSIX says this isn't portable for the c99 command.
1560
9577fb1f
PE
15612005-03-18 Paul Eggert <eggert@cs.ucla.edu>
1562
1563 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
1564 immediately if a data overrun has occurred; this may help us track
1565 down what may be a spurious failure on MacOS.
1566
78b178f7
PE
15672005-03-17 Paul Eggert <eggert@cs.ucla.edu>
1568
a2599d0f
PE
1569 Respond to problems reported by twlevo@xs4all.nl.
1570
1571 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
1572
78b178f7
PE
1573 * src/vcg.h: Comment fix.
1574 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
1575 (G_CMAX): Change to -1 instead of INT_MAX.
1576
1577 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 1578
7296e729
PE
15792005-03-15 Paul Eggert <eggert@cs.ucla.edu>
1580
1581 * src/tables.c (state_number_to_vector_number): Put it inside an
1582 "#if 0", since it's not currently used. Problem reported by
1583 Roland McGrath.
1584
05ac60f3
PE
15852005-03-06 Paul Eggert <eggert@cs.ucla.edu>
1586
1587 * src/output.c (escaped_output): Renamed from
1588 escaped_file_name_output, since we now use it for symbol tags as
1589 well. All uses changed.
1590 (symbol_destructors_output, symbol_printers_output):
1591 Escape symbol tags too.
1592 Problem reported by Matyas Forstner in
1593 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
1594
1595 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
1596 not needed.
1597 * src/output.c (user_actions_output, token_definitions_output,
1598 symbol_destructors_output, symbol_printers_output): Likewise.
1599 * src/reader.c (prologue_augment): Likewise.
1600 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
1601
1602 * src/vcg.c (output_edge): Don't quote linestyle arg.
1603 Problem reported by twlevo@xs4all.nl.
1604
7eb453ac
PE
16052005-02-28 Paul Eggert <eggert@cs.ucla.edu>
1606
1607 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
1608 example, reported by Derek M Jones. Also, make the example even
1609 more outrageous, to better illustrate how bad the problem is.
1610
4c04c52a
PE
16112005-02-24 Paul Eggert <eggert@cs.ucla.edu>
1612
1613 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
1614 putsym. Typo reported by Sebastian Piping.
1615
a61e1620
PE
16162005-02-23 Paul Eggert <eggert@cs.ucla.edu>
1617
1618 * doc/bison.texinfo (Language and Grammar): some -> same
1619 (Epilogue): int he -> in the
1620 Typos reported by Sebastian Piping via Justin Pence.
1621
9ec93868
PE
16222005-02-07 Paul Eggert <eggert@cs.ucla.edu>
1623
1624 * tests/glr-regression.at (Improper handling of embedded actions
1625 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
1626 embedded actions and $-N in GLR parsers", work around an Autoconf bug
1627 with dollar signs in test names.
1628 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
1629 for a similar reason.
1630
73ce7e7e
PE
16312005-01-28 Paul Eggert <eggert@cs.ucla.edu>
1632
1633 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
1634 wants to redefine G_VIEW.
1635
2e72b98e
PE
16362005-01-27 Paul Eggert <eggert@cs.ucla.edu>
1637
1638 * src/vcg.c (get_view_str): Remove case for normal_view.
1639 Problem reported by twlevo@xs4all.nl.
1640
e0d634e5
PE
16412005-01-24 Paul Eggert <eggert@cs.ucla.edu>
1642
ccf830a4
PE
1643 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
1644 Problem reported by twlevo@xs4all.nl.
1645
e0d634e5
PE
1646 * doc/bison.texinfo: Change @dircategory from "GNU programming
1647 tools" to "Software development". Requested by Richard Stallman
1648 via Karl Berry.
1649
7bbc8cb0
PE
16502005-01-23 Paul Eggert <eggert@cs.ucla.edu>
1651
1652 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
1653 Problem reported by twlevo@xs4all.nl.
1654
08b770bc
PE
16552005-01-21 Paul Eggert <eggert@cs.ucla.edu>
1656
1657 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
1658 keyword; it's not needed with modern compilers, and it doesn't
1659 affect correctness with older compilers. Suggested by
1660 twlevo@xs4all.nl.
1661
95f22ad2
PE
16622005-01-17 Paul Eggert <eggert@cs.ucla.edu>
1663
1664 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
1665 gcc -Wswitch-default.
1666 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
1667 * data/yacc.c (yyparse): Likewise.
1668
d229d15c
PE
16692005-01-12 Paul Eggert <eggert@cs.ucla.edu>
1670
1671 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
1672 already. Let config.h define any nonstandard values.
1673
ecadd90f
PE
16742005-01-10 Paul Eggert <eggert@cs.ucla.edu>
1675
1676 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
1677 for the benefit of slower hosts. Problem reported by
1678 Nelson H. F. Beebe.
1679
213744b5
PE
16802005-01-07 Paul Eggert <eggert@cs.ucla.edu>
1681
1682 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
1683 being defined and not used.
1684 * data/lalr1.cc (yyparse): Likewise.
1685 Use "if (false)" rather than "if (0)".
1686
249d3236
PE
16872005-01-05 Paul Eggert <eggert@cs.ucla.edu>
1688
1689 * TODO: Mention that we should allow NUL bytes in tokens.
1690
987cc1fb
PE
16912005-01-02 Paul Eggert <eggert@cs.ucla.edu>
1692
1693 * src/scan-skel.l (<<EOF>>): Don't close standard output.
1694 Problem reported by Hans Aberg.
1695
08fe02d9
PE
16962005-01-01 Paul Eggert <eggert@cs.ucla.edu>
1697
1698 * src/getargs.c (version): Happy new year; update overall
1699 program copyright date from 2004 to 2005.
1700
1701 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
1702 Problem reported by Hans Aberg.
1703 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
1704 (Output file names.): Add a test for the case when standard output
1705 is closed.
1706
010c0266
PE
17072004-12-26 Paul Eggert <eggert@cs.ucla.edu>
1708
1709 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
1710 to fix an oversight in the Bison 2.0 manual.
1711
da12206a
PE
17122004-12-25 Paul Eggert <eggert@cs.ucla.edu>
1713
1714 * NEWS: Version 2.0. Reformat the existing news items since
1715 1.875, so that related items are grouped together.
3a4734aa 1716 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
1717 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
1718
c935d934
PE
1719 * tests/torture.at (Exploding the Stack Size with Alloca): Set
1720 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
1721 otherwise, we're not testing alloca. Unfortunately there's no
1722 simple way to consult HAVE_ALLOCA here.
1723
da12206a
PE
1724 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
1725 for yymsg, too.
1726
1727 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
1728 hand. This avoids a warning about comparing int to size_t when
1729 GCC warnings are enabled.
1730
0a2c5137
PE
17312004-12-22 Paul Eggert <eggert@cs.ucla.edu>
1732
d7e14fc0
PE
1733 * NEWS: Bison-generated parsers no longer default to using the
1734 alloca function (when available) to extend the parser stack, due
1735 to widespread problems in unchecked stack-overflow detection.
1736 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
1737 responsibility to set it to a positive value. This lets the user
1738 specify a value that is not a preprocessor constant.
1739 * data/yacc.c (YYMAXDEPTH): Likewise.
1740 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
1741 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
1742 to be a compile-time constant. However, explain the constraints on it.
1743 Also, explain the constraints on YYINITDEPTH.
1744 (Table of Symbols): Explain that alloca is no longer the default.
1745 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
1746 to 1.
1747
0a2c5137
PE
1748 * doc/bison.texinfo (Location Default Action): Mention that n must
1749 be zero when k is zero. Suggested by Frank Heckenbach.
1750
e019c247
AD
17512004-12-22 Akim Demaille <akim@epita.fr>
1752
1753 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
1754 (parser::state_type, parser::semantic_type, parser::location_type):
1755 Private, not public.
1756 (parser::parse): Return ints, not bool.
1757 Returning a bool introduces a problem: 0 corresponds to false, and
1758 it seems weird to return false on success. Returning true changes
1759 the conventions for yyparse.
1760 Alternatively we could return void and send an exception.
1761 There is no clear consensus (yet?).
1762 (state_stack, semantic_stack, location_stack): Rename as...
1763 (state_stack_type, semantic_stack_type, location_stack_type): these.
1764 Private, not public.
1765 * tests/c++.at: New.
1766 * tests/testsuite.at, tests/Makefile.am: Adjust.
1767
72731bb7
AD
17682004-12-21 Akim Demaille <akim@epita.fr>
1769
1770 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
1771
9a0d8bec
AD
17722004-12-21 Akim Demaille <akim@epita.fr>
1773
1774 Don't impose std::string for filenames.
1775
1776 * data/lalr1.cc (b4_filename_type): New.
1777 (position::filename): Use it.
1778 (parser.hh): Move the inclusion of stack.hh and location.hh below
1779 the user code, so that needed headers for the filename type can be
1780 included first.
72731bb7
AD
1781 Forward declare them before the user code.
1782 * tests/Makefile.am (check-local, installcheck-local): Pass
1783 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 1784
99880de5
AD
17852004-12-20 Akim Demaille <akim@epita.fr>
1786
1787 Use more STL like names: my_class instead of MyClass.
1788
1789 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
1790 (SemanticStack, SemanticType, StateStack, StateType)
1791 (TokenNumberType, Stack, Slice, Traits, Parser::location)
1792 (Parser::value): Rename as...
1793 (location_stack, location_type, rhs_number_type, semantic_stack)
1794 (semantic_type, state_stack, state_type, token_number_type, stack)
1795 (slice, traits, parser::yylloc, parser::yylval): these.
1796
1797 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
1798
9bec482e
PE
17992004-12-19 Paul Eggert <eggert@cs.ucla.edu>
1800
1801 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
1802 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
1803
f6fbd3da
PE
18042004-12-17 Paul Eggert <eggert@cs.ucla.edu>
1805
1806 Remove uses of 'short int' and 'unsigned short int'. This raises
1807 some arbitrary limits. It uses more memory but nowadays that's
1808 not much of an issue.
1809
1810 This change does not affect the generated parsers; that's a different
1811 task, as some users will want to conserve memory there.
1812
1813 Ideally we should use size_t to represent all object counts, and
1814 something like ptrdiff_t to represent signed differences of object
1815 counts; but that will require more code-cleanup than I have the
1816 time to do right now.
1817
1818 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
1819 Use size_t, not int or short int, to count objects.
1820 * src/closure.c (nritemset, closure): Likewise.
1821 * src/closure.h (nritemset, closure): Likewise.
1822 * src/nullable.c (nullable_compute): Likewise.
1823 * src/print.c (print_core): Likewise.
1824 * src/print_graph.c (print_core): Likewise.
1825 * src/state.c (state_compare, state_hash): Likewise.
1826 * src/state.h (struct state): Likewise.
1827 * src/tables.c (default_goto, goto_actions): Likewise.
1828
1829 * src/gram.h (rule_number, rule): Use int, not short int.
1830 * src/output.c (prepare_rules): Likewise.
1831 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
1832 errs, reductions): Likewise.
1833 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
1834 Likewise.
1835 * src/tables.c (vector_number, tally, action_number,
1836 ACTION_NUMBER_MINIMUM): Likewise.
1837 * src/output.c (muscle_insert_short_int_table): Remove.
1838
efeed023
AD
18392004-12-17 Akim Demaille <akim@epita.fr>
1840
1841 * data/lalr1.cc: Extensive Doxygenation.
1842 (error_): Rename as...
1843 (error): this, since it is visible to the user.
1844 Adjust callers.
1845 (Parser::message): Now an automatic variable from...
1846 (Parser::yyreport_syntax_error_): here.
1847 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
1848 Parser::error.
1849 * tests/input.at: Escape $.
1850
bc82c5a5
PE
18512004-12-16 Paul Eggert <eggert@cs.ucla.edu>
1852
1853 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
1854 Parenthesize rhs to avoid obscure problems with mistakes like
1855 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
1856 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
1857 b4_rhs_location): Likewise.
1858 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
1859 b4_rhs_location): Likewise.
1860
fd19f271
AD
18612004-12-16 Akim Demaille <akim@epita.fr>
1862
1863 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
1864 yacc.c: be sure to stay within yycheck_.
1865 * tests/actions.at: Re-enable C++ tests.
1866
10454ea4
AD
18672004-12-16 Akim Demaille <akim@epita.fr>
1868
1869 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
1870 real.
1871
c5b95ccf
AD
18722004-12-16 Akim Demaille <akim@epita.fr>
1873
1874 Use #define to handle the %name-prefix.
1875
1876 * data/glr.c, data/yacc.c: Comment changes.
1877 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
1878 so that one can refer to yylex in the parser file, and have it
1879 renamed, as is the case with other skeletons.
1880
617a8f12
AD
18812004-12-16 Akim Demaille <akim@epita.fr>
1882
1883 Move lalr1.cc internals into yy*.
1884
1885 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
1886 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
1887 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
1888 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
1889 (empty_, final_, terror_, errcode_, ntokens_)
1890 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
1891 (looka_, ilooka_, error_range_, nerrs_):
1892 Rename as...
1893 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
1894 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
1895 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
1896 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
1897 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
1898 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
1899 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
1900 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
1901 these.
1902
1e547e6e
PE
19032004-12-15 Paul Eggert <eggert@cs.ucla.edu>
1904
1905 Fix some problems reported by twlevo at xs4all.
1906 * src/symtab.c (symbol_new): Report an error if the input grammar
1907 contains too many symbols. This is better than calling abort() later.
1908 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
1909 (struct node, struct graph):
1910 Rename member expand to stretch. All uses changed.
1911 (struct graph): Remove member layoutalgorithm. All uses removed.
1912 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
1913 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
1914 All uses changed.
1915 (N_STRETCH): Rename from N_EXPAND. All uses changed.
1916
735d6bd4
AD
19172004-12-15 Akim Demaille <akim@epita.fr>
1918
1919 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
1920 Add more Doxygen comments.
1921 (symprint_, stack_print_, reduce_print_, destruct_, pop)
1922 (report_syntax_error_, translate_): Rename as...
1923 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
1924 (yypop_, yyreport_syntax_error_, yytranslate_): this.
1925
2e1f5829
AD
19262004-12-15 Akim Demaille <akim@epita.fr>
1927
1928 * data/lalr1.cc (lex_): Rename as...
1929 (yylex_): this.
1930 Move the trace here.
1931 Take the %name-prefix into account.
1932 Reported by Alexandre Duret-Lutz.
1933
a3cb6248
AD
19342004-12-15 Akim Demaille <akim@epita.fr>
1935
1936 Simplify the C++ parser constructor.
1937
1938 * data/lalr1.cc (debug_): Rename as...
1939 (yydebug_): so that the parser's internals are always in the yy*
1940 pseudo namespace.
1941 Adjust uses.
1942 (b4_parse_param_decl): Remove the leading comma as it is now only
1943 called as unique argument list.
1944 (Parser::Parser): Remove the constructor accepting a location and
1945 an initial debugging level.
1946 Remove from the other ctor the argument for the debugging level.
1947 (debug_level_type, debug_level, set_debug_level): New.
1948
1949 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
1950 constructor calls.
1951
07fed891
AD
19522004-12-15 Akim Demaille <akim@epita.fr>
1953
1954 Remove b4_root related material: failure experiment
a3cb6248 1955 (which goal was to allow to derive from a class).
07fed891
AD
1956
1957 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
1958 definitions and uses.
1959
e603eaa5
PE
19602004-12-14 Paul Eggert <eggert@cs.ucla.edu>
1961
1962 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
1963 not 2, since it's not portable to subtract 1 from the start of an
1964 array. The new item 0 is never set or used. All uses changed.
1965
1966 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
1967 the default definition of YYLLOC_DEFAULT. Problem reported
1968 by Frank Heckenbach.
1969
fafb007d
PE
19702004-12-12 Paul Eggert <eggert@cs.ucla.edu>
1971
1972 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
1973 the normal case and one for the error case. Just use the
1974 first one uniformly. Problem reported by Frank Heckenbach.
1975 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
1976 use exactly the same macro in both places.
1977 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
1978 so that the normal-case YYRHSLOC works for the error case too.
1979 All uses changed.
1980 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
1981 (YYLLOC_DEFAULT): Use the same macro as glr.c.
1982 * doc/bison.texinfo (Location Default Action): Don't claim that
1983 we have an array of locations. Use the same macro for both glr
1984 and lalr parsers. Mention YYRHSLOC. Mention what happens when
1985 the index is 0.
1986
48814dcd
PE
19872004-12-10 Paul Eggert <eggert@cs.ucla.edu>
1988
a4e1a53b
PE
1989 * HACKING: Update email addresses to send announcements to.
1990
48814dcd
PE
1991 * configure.ac (AC_INIT): Bump version to 1.875f.
1992
337116ba
PE
19932004-12-10 Paul Eggert <eggert@cs.ucla.edu>
1994
1995 * NEWS: Version 1.875e.
1996 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
1997
1998 * src/scan-skel.l: Include "complain.h", for "fatal".
1999
2000 * src/relation.h (relation_print, relation_digraph):
2001 Relation sizes are of type relation_node, not size_t (this is
2002 merely a doc fix, since the two types are equivalent).
2003 (relation_transpose): Relation sizes are of type relation_node,
2004 not int.
2005 * src/relation.c: Likewise.
2006 (top, infinity): Now of type relation_node, not int.
2007 (traverse, relation_transpose): Use relation_node, not int.
2008
2009 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
2010 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
2011 (yyparse): Remove unused local introduced in 2004-10-25 patch.
2012
2013 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 2014 specifying whether the test should be skipped. Use it tp
337116ba 2015 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 2016 fail on some hosts, and should be skipped.
337116ba 2017
da2a7671
PE
20182004-12-08 Paul Eggert <eggert@cs.ucla.edu>
2019
2020 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
2021 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
2022 unless otherwise specified below.
2023
2024 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
2025 to allocate kernel_base, kernel_items, kernel_size, since
2026 they needn't be initialized to 0.
2027 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
2028 * src/closure.c (new_closure): Likewise, for itemset.
2029 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
2030 * src/lalr.c (set_goto_map): Likewise, for temp_map.
2031 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
2032 (build_relations): Likewise for edge, states1, includes.
2033 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
2034 * src/reader.c (packgram): Likewise, for ritem, rules.
2035 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
2036 * src/relation.c (relation_digraph): Likewise for VERTICES.
2037 (relation_transpose): Likewise for new_R, end_R.
2038 * src/symtab.c (symbols_token_translations_init): Likewise for
2039 token_translations.
2040 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
2041 (token_actions): Likewise for yydefact, actrow, conflrow,
2042 conflict_list.
2043 (save_column): Likewise for froms[symno], tos[symno].
2044 (goto_actions): Likewise for state_count.
2045 (pack_table): Likewise for base, pos, check.
2046 (tables_generate): Likewise for width.
2047
2048 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
2049 for initial core. Just have a separate core, so we needn't worry
2050 about whether kernel_size and kernel_base are initialized.
2051
2052 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
2053 kernel_size, kernel_items): Remove unnecessary initialization.
2054 * src/conflicts.c (conflicts): Likewise.
2055 * src/derives.c (derives): Likewise.
2056 * src/muscle_tablc (muscle_insert): Likewise.
2057 * src/relation.c (relation_digraph): Likewise.
2058 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
2059 conflrow, conflict_table, conflict_list, table, check):
2060 Likewise.
2061
2062 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
2063 This is because all callers pass unsigned int.
2064 * src/closure.h (new_closure): Likewise.
2065
2066 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
2067 (build_relations): Initialize includes[i] in all cases.
2068 * src/reader.c (packgram): Always initialize rules[ruleno].prec
2069 and rules[ruleno].precsym. Initialize members in order.
2070 * src/relation.c (relation_transpose): Always initialize new_R[i]
2071 and end_R[i].
2072 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
2073
2074 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
2075 conflict_list[0] was always 0, but now it isn't initialized.
2076
2077 * src/table.c (table_grow): When conflict_table grew, the grown
2078 area wasn't cleared. Fix this.
2079
2080 * lib/.cvsignore: Add strdup.c, strdup.h.
2081 * m4/.cvsignore: Add strdup.m4.
2082
00baeeac
PE
20832004-12-07 Paul Eggert <eggert@cs.ucla.edu>
2084
2085 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
2086 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
2087 GOTO_NUMBER_MAXIMUM, since we occasionally compute
2088 ngotos + 1 without checking for overflow.
2089 (build_relations): Use END_NODE, not -1, to denote end of edges.
2090 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
2091 build_relations): Use goto_number, not int, for goto numbers.
2092 * src/tables.c (save_column, default_goto): Likewise.
2093
be3d9d42
AD
20942004-11-23 Akim Demaille <akim@epita.fr>
2095
2096 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
2097 of #defining from yystype.
2098 Don't typedef yystype, C++ does not need it.
2099 This lets it possible to forward declare it as union.
2100
78e526d5
PE
21012004-11-23 Paul Eggert <eggert@cs.ucla.edu>
2102
2103 * bootstrap (gnulib_modules): Add extensions.
2104 Problem reported by Jim Meyering.
2105
afbb696d
PE
21062004-11-22 Paul Eggert <eggert@cs.ucla.edu>
2107
2108 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
2109 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
2110 src/system.h, src/tables.c: XFREE -> free, to accommodate
2111 recent change to gnulib xalloc.h.
78e526d5 2112 Problem reported by Jim Meyering.
afbb696d 2113
c1f8f16a
AD
21142004-11-17 Akim Demaille <akim@epita.fr>
2115
2116 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
2117
21182004-10-28 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
2119 Alexandre Duret-Lutz <adl@gnu.org>
2120
2121 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
2122 changes.
2123 (YYCDEBUG): Adjust.
2124 Use it instead of cdebug_.
2125 (Parser::debug_stream, Parser::set_debug_stream): New.
2126 (Parser::symprint_): Define cdebug_ for temporary backward
2127 compatibility.
2128 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
2129 debug_stream ().
2130
68e11668
AD
21312004-11-17 Akim Demaille <akim@epita.fr>
2132
2133 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
2134 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
2135 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
2136 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
2137
97cbc73e
PE
21382004-10-27 Paul Eggert <eggert@cs.ucla.edu>
2139
2140 * data/glr.c (yyloc_default): Remove; not used.
2141 Problem reported by Frank Heckenbach.
2142
e342c3be
AD
21432004-10-25 Akim Demaille <akim@epita.fr>
2144
2145 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
2146 Introduce another definition to address simple location arrays.
2147 (yyGLRStack): New member: yyerror_range.
2148 (yyrecoverSyntaxError, yyparse): Update it.
2149 (yyrecoverSyntaxError): Use it when shifting the error token to
2150 have an accurate range, equivalent to the one computed by both
2151 yacc.c and lalr1.cc.
2152 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
2153 that column numbers start at column 0, as per GNU Coding
2154 Standards, the others tests, and the doc.
2155 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
2156 Adjust to the above change (first column is 0).
2157 And adjust the location of the "<error>", now covering the whole
2158 line.
2159
93602feb 21602004-10-22 Akim Demaille <akim@epita.fr>
04098407 2161 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
2162
2163 Remove some arbitrary limits on goto numbers and relations.
2164 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
2165 initial values, since they're never used.
2166 (set_goto_map): ngotos is now unsigned, so test for overflow
2167 by seeing whether it wraps around to zero.
2168 * src/lalr.h (goto_number): Now size_t, not short int.
2169 (GOTO_NUMBER_MAXIMUM): Remove.
2170 * src/relation.c (relation_print, traverse, relation_transpose):
2171 Check for END_NODE rather than looking at sign.
2172 * src/relation.h (END_NODE): New macro.
2173 (relation_node): Now size_t, not short int.
2174
dba08b04
PE
21752004-10-22 Paul Eggert <eggert@cs.ucla.edu>
2176
2177 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
2178 keyword, not an identifier. Problem reported by Baron Schwartz in
2179 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
2180
df09ef2e
AD
21812004-10-11 Akim Demaille <akim@epita.fr>
2182
2183 * src/symtab.c (symbol_check_alias_consistency): Also check
2184 type names, destructors, and printers.
2185 Reported by Alexandre Duret-Lutz.
2186 Recode the handling of associativity and precedence in terms
2187 of symbol_precedence_set.
2188 Accept no redeclaration at all, not even equal to the previous
2189 value.
2190 (redeclaration): New.
2191 Use it to factor redeclaration complaints.
2192 (symbol_make_alias): Don't set the type of the alias, let
2193 symbol_check_alias_consistency do it as for other features.
2194 * src/symtab.h (symbol): Add new member prec_location, and
2195 type_location.
2196 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
2197 * tests/input.at (Incompatible Aliases): New.
2198
146bc99d
PE
21992004-10-09 Paul Eggert <eggert@cs.ucla.edu>
2200
2201 .cvsignore fixes to accommodate gnulib changes,
2202 and the practice of naming build directories "_build".
2203 * .cvsignore: Add "_*". Sort.
2204 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
2205 * m4/.cvsignore: Add "*_gl.m4".
2206
e503aa60
AD
22072004-10-06 Akim Demaille <akim@epita.fr>
2208
2209 * src/parse-gram.y (add_param): Fix the truncation of trailing
2210 spaces.
2211
b4a20338
AD
22122004-10-05 Akim Demaille <akim@epita.fr>
2213
2214 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
2215 whether the reducion was empty or not. This leaves room to
2216 improve the use of YYLLOC_DEFAULT in such a case.
2217 lalr1.cc is still experimental, so changing this is acceptable.
2218 And finally, there are probably not many users who changed the
2219 handling of locations in GLR, so changing is admissible too.
2220
2221 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
2222 empty reduction, set @$ to an empty location ending the previously
2223 stacked symbol.
2224 Adjust uses to make sure the code is triggered on empty
2225 reductions.
2226 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
2227 expected output: empty reductions have empty locations.
2228
f85a5e6f
AD
22292004-09-29 Akim Demaille <akim@epita.fr>
2230
2231 * data/lalr1.cc: Move towards a more standard C++ coding style
2232 for templates: Class < T > -> Class<T>.
2233
b203fc2c
AD
22342004-09-29 Akim Demaille <akim@epita.fr>
2235
2236 * data/lalr1.cc: Reinstall the former ctor, for sake of
2237 compatibility, but warn it will be removed.
2238 Move towards a more standard C++ coding style (i.e., type *var ->
2239 type* var).
2240
5b7e1e73
PE
22412004-09-27 Paul Eggert <eggert@cs.ucla.edu>
2242
3fee967f
PE
2243 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
2244 since it's less likely to work if NULs are involved in the future.
5b7e1e73 2245
0dcca5c2
AD
22462004-09-27 Akim Demaille <akim@epita.fr>
2247
2248 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
2249
6dde1c82
AD
22502004-09-27 Akim Demaille <akim@epita.fr>
2251
2252 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 2253 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
2254 and argument names.
2255 (b4_cc_constructor_call): Likewise.
2256
b233d555
AD
22572004-09-24 Akim Demaille <akim@epita.fr>
2258
2259 * src/parse-gram.y (add_param): Strip the leading and trailing
2260 blanks from a formal argument declaration.
2261 (YY_LOCATION_PRINT): New.
2262
619404e3
AD
22632004-09-24 Akim Demaille <akim@epita.fr>
2264
2265 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
2266 after the location.
2267
dd8d9022
AD
22682004-09-24 Akim Demaille <akim@epita.fr>
2269
2270 * doc/bison.texinfo (Table of Symbols): Sort.
2271
0092f063
AD
22722004-09-21 Akim Demaille <akim@epita.fr>
2273
2274 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
2275 the useless parentheses.
2276 Suggested by Paul Eggert.
2277
451364ed
AD
22782004-09-20 Akim Demaille <akim@epita.fr>
2279
2280 Let the initial-action act on the look-ahead, and use it for the
2281 "initial push" (corresponding to an hypothetical beginning-of-file).
2282 And let lalr1.cc honor %initial-action.
2283
2284 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
2285 example.
2286 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
2287 (Parser::Parser): Remove the ctor that used to initialize it.
2288 (Parser::parse): Like in the other skeletons, issue the "starting
2289 parse" message before any action.
2290 Honor %initial-action.
2291 Initialize the stacks with the lookahead.
2292 * data/yacc.c: Let $$ and @$ in %initial-action designate the
2293 look-ahead.
2294 Push them in the stacks.
2295 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
2296
18d192f0
AD
22972004-09-20 Akim Demaille <akim@epita.fr>
2298
2299 * doc/bison.texinfo (Initial Action Decl): New.
2300
b8458aa5
AD
23012004-09-20 Akim Demaille <akim@epita.fr>
2302
2303 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
2304 clearer criterion to define it.
2305 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
2306 When reducing on an empty RHS, use the latest stacked location as
2307 location.
2308 yylloc is not always available.
2309 * data/glr.c: Likewise.
2310 Also, honor initial-actions.
2311
3fc16193
AD
23122004-09-20 Akim Demaille <akim@epita.fr>
2313
2314 * data/yacc.c (YY_LOCATION_PRINT): New.
2315 Define when we know YYLTYPE's structure, i.e., when the default
2316 YYLLOC_DEFAULT is used.
2317 * data/c.m4 (b4_yysymprint_generate): Use it.
2318 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
2319 value of the result.
2320 (error_start_): Replace with...
2321 (error_range_): this location array.
2322 This allows to replace code relying on the implementation of
2323 locations by portable code.
2324 * data/yacc.c (yylerrsp): Replace with...
2325 (yyerror_range): this.
2326 Every time a token is popped, update yyerror_range[0], to have an
2327 accurate location for the error token.
2328 * data/glr.c (YY_LOCATION_PRINT): New.
2329 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
2330 deference a pointer.
2331 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
2332 report the location in %printers.
2333
2334 * src/scan-skel.l: Instead of abort, report error messages to ease
2335 understanding skeleton scanning failures.
2336
ecfe33e7
AD
23372004-09-16 Akim Demaille <akim@epita.fr>
2338
2339 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
2340 (iterator, const_iterator): these, to be more in the C++ spirit.
2341 Also, return reverse iterators so that when displaying the stack
2342 we display its bottom first.
2343 (Parser::stack_print_, Parser::reduce_print_): Match the messages
2344 from yacc.c.
2345 We should probably use vector here though.
2346
1576d44d
AD
23472004-09-16 Akim Demaille <akim@epita.fr>
2348
2349 Have more complete shift traces.
2350
2351 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
2352 to report Shifts instead of ad hoc YYDPRINTF invocations,
2353 including for the error token.
2354 * data/lalr1.cc (symprint_): Output the location.
2355 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
2356 output the location within the %printer.
2357 Activate GLR tests, at least to make sure they compile properly.
2358 They still don't pass though.
2359 * tests/calc.at: Adjust expect verbose output, since now "Entering
2360 state..." is on a different line than the "Shifting" message.
2361
9c66f418
AD
23622004-09-08 Akim Demaille <akim@epita.fr>
2363
2364 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
2365 Bison directive from the Bison file to the invocation of this
2366 macro, so that these directives are passed to
2367 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
2368 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
2369 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
2370 the extra Bison directives instead of the whole series.
2371 Change the grammar so that there are recoverable errors, and
2372 unrecoverable errors. Now we can have the parser give up before
2373 consuming the whole input. As a result we now can observe that
2374 the lookahead is freed when needed.
2375 Change the parser source to parse argv[1] instead of a hard coded
2376 string.
2377 Simplify yylex, and give a value and location to EOF.
2378 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
2379 passed directives already coded in the file.
2380 Add some tests to check the location of "error".
2381 For some tests, the C++ parser is correct, and not yacc.c.
2382 For other tests, they provide different, but unsatisfying, values,
2383 so keep the C++ value so that at least one parser is "correct"
2384 according to the test suite.
2385 (Actions after errors): Remove, this is subsumed by the
2386 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
2387
52d5733f
AD
23882004-09-06 Akim Demaille <akim@epita.fr>
2389
2390 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 2391 (Parser::pop): New.
52d5733f
AD
2392 Use it.
2393
a0e68930
AD
23942004-09-06 Akim Demaille <akim@epita.fr>
2395
2396 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
2397 argument, an informative message.
2398 Call YY_SYMBOL_PRINT.
2399 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
2400 * data/lalr1.cc (destruct_): Likewise.
2401 In addition, no longer depend on b4_yysymprint_generate and
2402 b4_yydestruct_generate to generate these functions, do it "by
2403 hand".
2404
e757bb10
AD
24052004-09-03 Akim Demaille <akim@epita.fr>
2406
2407 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
2408 invoked, yydestruct the lookahead.
2409 * tests/calc.at (Calculator $1): Update the expected lengths of
2410 traces: there is an added line for the discarded lookahead.
2411 * doc/bison.texinfo (Destructor Decl): Some rewording.
2412 Define "discarded" symbols.
2413
0fe1f06d
AD
24142004-09-02 Akim Demaille <akim@epita.fr>
2415
2416 * data/lalr1.cc (translate_, destruct_): No reason to be static.
2417
284acc8b
AD
24182004-09-02 Akim Demaille <akim@epita.fr>
2419
2420 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
2421 (YYDSYMPRINTF): Rename as...
2422 (YY_SYMBOL_PRINT): this.
2423 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
2424 two.
2425 Use it instead of direct symprint_ calls.
2426 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
2427 one.
2428
a5eb1ed2
AD
24292004-09-02 Akim Demaille <akim@epita.fr>
2430
b7c72fe1
AD
2431 * data/lalr1.cc (b4_yysymprint_generate): New.
2432 (symprint_): New member function, defined when YYDEBUG.
2433 Use it consistently instead of token/nterm debugging output by
2434 hand.
a5eb1ed2
AD
2435 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
2436 %printer calls to use cdebug_ when using lalr1.cc.
2437
417141dd
AD
24382004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
2439
2440 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
2441 with #ifdef YYDEBUG.
2442
2fa09258
AD
24432004-08-26 Akim Demaille <akim@epita.fr>
2444
2445 * doc/bison.texinfo (Implementing Loops): Rename as...
2446 (Implementing Gotos/Loops): this.
2447
9378b508
PE
24482004-08-13 Paul Eggert <eggert@cs.ucla.edu>
2449
2450 Adjust to latest gnulib.
2451 * bootstrap (gnulib_modules): Add xalloc-die.
2452 Set LC_ALL=C so that file names sort consistently.
2453 Prefer the gnulib copies of gettext.m4, glibc21.m4,
2454 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
2455 uintmax_t.m4, ulonglong.m4.
2456 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
2457 po.m4 since we are now using _gl.m4 instead.
2458
87a8ad5c
PE
24592004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
2460
2461 * src/scan-action.l: Remove. Scanning of semantic actions is
2462 handled in scan-gram.l.
2463
dca81a78
PE
24642004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
2465
2466 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
2467
2468 * src/location.h (struct): The file member is a uniqstr.
2469 (equal_boundaries): Use UNIQSTR_EQ for comparison.
2470
c9cbf7c5
PE
24712004-07-22 Paul Eggert <eggert@cs.ucla.edu>
2472
2473 Fix bug with non-%union parsers that have printers or destructors,
2474 which led to a Bison core dump. Reported by Peter Fales in
2475 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 2476
c9cbf7c5
PE
2477 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
2478 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
2479 not to our own type.
2480 * src/output.c (symbol_destructors_output, symbol_printers_output):
2481 Don't assume %union.
2482 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
2483 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
2484 UNION-FLAG. All callers changed.
2485 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
2486 Use type char, not unsigned int, when declaring an array of char;
2487 this lets us remove a cast.
2488 (Printers and Destructors): Add non-%union test cases.
2489
fa7e68c3
PE
24902004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2491
2492 * doc/bison.texinfo: Minor editorial changes, mostly to the new
2493 GLR writeups. E.g., avoid frenchspacing and the future tense,
2494 change "lookahead" to "look-ahead", and change "wrt" to "with
2495 respect to".
2fa09258 2496
fa7e68c3
PE
24972004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2498
2499 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
2500 New sections, split off from the GLR Parsers section. Put the new
2501 Simple GLR Parser near the start of the GLR section, for clarity.
2502 Rewrite connective text.
2503
99a9344e
PE
25042004-06-21 Frank Heckenbach <frank@g-n-u.de>
2505
2506 * doc/bison.texinfo (Simple GLR Parsers): New section.
2507
8dd162d3
PE
25082004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2509
2510 * NEWS, TODO, doc/bison.texinfo:
2511 Use "look-ahead" instead of "lookahead", to be consistent.
2512 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
2513 while we're fixing "look-ahead".
2514 * src/conflicts.c (shift_set): Renamed from shiftset.
2515 (look_ahead_set): Renamed from lookaheadset.
2516 * src/print.c: Likewise.
2517 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
2518 name for "lookahead".
2519 (report_types, usage): Likewise.
2520 * src/getargs.h (report_look_ahead_tokens): Renamed from
2521 report_lookaheads.
2522 * src/lalr.c (compute_look_ahead_tokens): Renamed from
2523 compute_lookaheads.
2524 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
2525 (look_ahead_tokens_print): Renamed from lookaheads_print.
2526 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
2527 state_rule_lookaheads_print.
2528 * src/state.h: Likewise.
2529 (reductions.look_ahead_tokens): Renamed from lookaheads.
2530 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
2531 AT_DATA_LOOKAHEADS_GRAMMAR.
2532
57a90331
PE
25332004-06-03 Paul Eggert <eggert@cs.ucla.edu>
2534
2535 * README: Update location of patched M4 distribution.
2536
8ed3234a
PE
25372004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
2538
2539 Don't assume the C++ compiler takes the same arguments as the C compiler
2540 (trivial change).
2541 * configure.ac (O0CXXFLAGS): New var.
2542 * tests/atlocal.in (CXXFLAGS): Use it.
2543
07971983
PE
25442004-05-29 Paul Eggert <eggert@cs.ucla.edu>
2545
2546 Fix some "make check" problems with C++ reported by
2547 Albert Chin-A-Young for Tru64 C++ in this thread:
2548 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
2549
2550 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
2551 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
2552 Output to a .cc file for C++, not to a .c file.
2553 * tests/calc.at (AT_CHECK_CALC): Likewise.
2554 * tests/regression.at (AT_CHECK_DANCER): Likewise.
2555 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
2556
29058652
PE
25572004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
2558
2559 * tests/calc.at, tests/actions.at: Workaround for SGI
2560 C++ compiler. (trivial change)
2561
62cb8a99
PE
25622004-05-27 Paul Eggert <eggert@cs.ucla.edu>
2563
fd418816
PE
2564 Spent a few hours checking out which prerequisite versions the
2565 current sources actually require. I went all the way back to
2566 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
2567 a seemingly endless set of combinations of versions more recent
2568 than that. The bottom line is that the current sources require
2569 fairly recent versions of the build tools, and it'll be some work
2570 to change this.
2571 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
2572 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
2573 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
2574 Add comments explaining why those particular versions are
2575 currently needed.
2fa09258 2576
62cb8a99
PE
2577 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
2578 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 2579 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
2580
2581 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
2582 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
2583
caa52c10
PE
25842004-05-26 Paul Eggert <eggert@cs.ucla.edu>
2585
2586 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
2587 0.11.5. Suggested by Bruno Haible.
2588 * bootstrap: Remove gettext version checking.
2589
2590 * doc/bison.texinfo (Decl Summary): Also mention that %union
2591 can depend on prerequisite types. Problem reported by Tim
2592 Van Holder.
2593
4bfd5e4e
PE
25942004-05-25 Paul Eggert <eggert@cs.ucla.edu>
2595
2cef3017
PE
2596 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
2597 * README-alpha: Don't tell people not to package this.
2598
b9c85d5c
PE
2599 * bootstrap: Don't assume $(...) works; use `...` instead.
2600 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
2601 gettext better.
2602
4bfd5e4e
PE
2603 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
2604 put into the -d output file, and mention what to do if YYSTYPE is
2605 defined as a macro.
2606
6a36ff94
PE
26072004-05-24 Paul Eggert <eggert@cs.ucla.edu>
2608
6712933e
PE
2609 Undo change made earlier today: it caused autopoint to not bring
2610 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
2611 autopoint's.
2612
2613 * bootstrap: Check that gettext version matches what's in
2614 configure.ac. Warn users to ignore robots.txt ERROR 404.
2615 * bootstrap: Undo today's earlier change (logged below).
2616 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 2617
6a36ff94
PE
2618 The gettext version checking is causing more trouble than it's
2619 curing; remove it. Problem reported by Paul Hilfinger.
2620
2621 * bootstrap: Issue a warning that one can expect a message
2622 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
2623 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
2624
209ea708
PE
26252004-05-23 Paul Eggert <eggert@cs.ucla.edu>
2626
2627 Ensure that the C++ compiler used for testing actually works on a
2628 simple test program; if not, skip the C++-related tests. Problem
2629 reported by Vin Shelton in:
161a71f3 2630 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
2631
2632 * m4/cxx.m4: New file.
2633 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
2634 * tests/atlocal.in (BISON_CXX_WORKS): Add.
2635 * tests/local.at (AT_COMPILE_CXX): Use it.
2636
41ca2549
PE
26372004-05-21 Paul Eggert <eggert@cs.ucla.edu>
2638
383e69dc
PE
2639 * data/glr.c (yylloc): Output this macro even if locations are not
2640 being generated, as the GLR parser needs it even in that case.
2641 Problem reported by Troy A. Johnson
2642 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
2643
41ca2549
PE
2644 * configure.ac (AC_INIT): Update to 1.875e.
2645
e476c87d
PE
26462004-05-21 Paul Eggert <eggert@cs.ucla.edu>
2647
2648 * NEWS: Version 1.875d.
2649 * configure.ac (AC_INIT): Likewise.
2650 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
2651
2652 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
2653 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
2654 lalr1.cc runs afoul of the first, and the last two are no longer
2655 supported by GCC 3.4.0.
2656 * README: Mention GNU m4 1.4 or later; mention m4 patches.
2657 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
2658
233a88ad
PE
26592004-05-06 Paul Eggert <eggert@cs.ucla.edu>
2660
2661 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
2662 unsigned int, for compatibility with latest gnulib hash module.
2663 * src/state.c (state_hash, state_hasher): Likewise.
2664 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
2665 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 2666
12ffdd28
PE
26672004-05-03 Paul Eggert <eggert@cs.ucla.edu>
2668
2669 * NEWS: Unescaped newlines are no longer allowed in char & strings.
2670
2671 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
2672 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
2673 character and string literals.
2674 (unexpected_end): New function.
2675 (unexpected_eof): Use it.
2676 (unexpected_newline): New function.
2677 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
2678 actions.
e476c87d 2679
12ffdd28
PE
2680 * NEWS: Document %expect-rr.
2681
2682 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
2683 Fix typo by replacing $1 with $option.
2684 Remove more 'intl'-related files.
9668e2be 2685 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
2686
2687 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
2688 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
2689 strtoul.c.
2690 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
2691 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
2692 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
2693 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
2694 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
2695 * src/.cvsignore: Add *.output.
2696
2697 * src/parse-gram.y: Put copyright notice inside %{ %} so it
2698 gets copied to the output file.
e476c87d 2699
1f65350a
PE
27002004-04-28 Paul Eggert <eggert@twinsun.com>
2701
2702 Get files from the gnulib and po repositories, instead of relying
2703 on them being in our CVS. Upgrade to latest versions of gnulib
2704 and Automake.
2705
2706 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
2707 * bootstrap: Bootstrap from gnulib and po repositories.
2708 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
2709 * README-cvs: Document these changes. Remove version numbers from
2710 mentions of build tools, since they change so often. Mention Flex.
2711
2712 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
2713 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
2714 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
2715 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 2716 does this for us.
12ffdd28
PE
2717 (AC_ISC_POSIX): Remove; we no longer support this
2718 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
2719 (AC_HEADER_STDC): Remove: we now assume C89 or better.
2720 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
2721 Do not check for C89 headers, except for locale.h which is used
2722 by the Yacc library and must port to K&R hosts.
2723 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
2724 Do not check for C89 functions, except for setlocale which is
2725 used by the Yacc library.
2726 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
2727 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
2728 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
2729 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
2730 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
2731 AM_GNU_GETTEXT): Remove; now done by:
2732 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
2733 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
2734 for us.
2735
2736 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
2737 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
2738 Define to empty, as gnulib.mk will do the rest for us.
2739 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
2740 for us.
2741 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
2742 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
2743
2744 * src/files.c: Include gnulib's xstrndup.h.
2745
2746 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
2747 (REALLOC): Use xnrealloc, for likewise.
2748 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
2749 (strnlen, memrchr): Remove decls; functions no longer used.
2750 Include <stpcpy.h>.
2751
2752 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
2753 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2754 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
2755 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
2756 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
2757 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
2758 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
2759 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
2760 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
2761 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
2762 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
2763 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
2764 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
2765 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
2766 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
2767 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
2768 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
2769 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
2770 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
2771 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
2772 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
2773 Remove, as these files are now generated automatically
2774 by bootstrap or automake.
2775
2776 * po/ChangeLog: Remove: all but one entry was a duplicate
2777 of this file, and I moved that 2000-11-02 entry here.
2778
2779 * config/.cvsignore: Add Makefile, depcomp, install-sh.
2780 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
2781 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
2782 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
2783 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
2784 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
2785 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
2786 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
2787 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
2788 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
2789 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
2790 xstrndup.h.
2791 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
2792 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
2793 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
2794 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
2795 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
2796 * src/.cvsignore: Remove *_.c.
2797
2798
2799 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
2800 support it. (The latest stable gzip doesn't.)
2801
28022004-04-27 Paul Eggert <eggert@twinsun.com>
2803
2804 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
2805 case, as stos_ is now used by destructors due to the 2004-02-09
2806 change.
2807
2808 Remove more K&R C support.
2809 * lib/libiberty.y (PARAMS): Remove. All uses removed.
2810 * lib/subpipe.c (errno): Remove decl.
2811 Include <stdlib.h> unconditionally.
2812 (EXIT_FAILURE): Remove macro.
2813 * src/complain.c (vfprintf, strerror): Remove.
2814 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
2815 unconditionally.
2816 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
2817 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
2818 (strchr, strspn, memchr): Remove decls.
2819 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
2820 unconditionally. Do not declare perror.
2821 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
2822 unconditionally.
2823
2824 * src/complain.c (_): Remove useless defn, as system.h defines this.
2825
2826 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
2827 with latest obstack.h.
2828 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
2829 to procedure types, as obstack.h now does that for us.
2830 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
2831
2832 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
2833 so that this include file can stand alone.
2834 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
2835 does this now. Include subpipe.h first after config.h, to
2836 test whether it can stand alone.
2837
2838 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
2839 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
2840 unused declaration.
2841
2842 * tests/synclines.at (%union synch line): Put a dummy member in
2843 the union, because empty unions aren't allowed in C. Caught
2844 by GCC 3.4.0.
2845
4f16766c
PE
28462004-04-13 Jim Meyering <jim@meyering.net>
2847
2848 * src/conflicts.c (conflicts_print): Correct format string typo:
2849 use `%%' to produce literal `%'. (trivial change)
2850
779e7ceb
PE
28512004-03-30 Paul Eggert <eggert@twinsun.com>
2852
2853 * src/getargs.c (version): Update copyright year to 2004.
2854
2855 * data/c.m4 (b4_int_type): Use 'short int' rather than
2856 'short', and similarly for 'long', 'unsigned', etc.
2857 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
2858 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
2859 yy_yypstack, yydumpstack): Likewise.
2860 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
2861 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
2862 Likewise.
2863 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
2864 yy_stack_print, yyparse): Likewise.
2865 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
2866 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
2867 * lib/bitset.c (bitset_print): Likewise.
2868 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
2869 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2870 * lib/bitsetv.c (bitsetv_dump): Likewise.
2871 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
2872 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
2873 Likewise.
2874 * src/LR0.c (allocate_itemsets): Likewise.
2875 * src/gram.h (rule_number, rule): Likewise.
2876 * src/lalr.h (goto_number): Likewise.
2877 * src/nullable.c (nullable_compute): Likewise.
2878 * src/output.c (prepare_rules): Likewise.
2879 * src/relation.c (relation_print, relation_digraph): Likewise.
2880 * src/relation.h (relation_node): Likewise.
2881 * src/state.h (state_number, transitions, errs, reductions,
2882 struct state): Likewise.
2883 * src/symtab.h (symbol_number, struct symbol): Likewise.
2884 * src/tables.c (vector_number, tally, action_number,
2885 default_goto, goto_actions): Likewise.
2886 * tests/existing.at (GNU Cim Grammar): Likewise.
2887 * tests/regression.at (Web2c Actions): Likewise.
2888
2889 * src/output.c (muscle_insert_short_int_table): Renamed from
2890 muscle_insert_short_table. All uses changed.
2891
d6328241
PH
28922004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2893
2894 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
2895 (declaration): Replace expected_conflicts with expected_sr_conflicts.
2896 Add %expect-rr rule.
4f16766c 2897
d6328241
PH
2898 * src/scan-gram.l: Recognize %expect-rr.
2899
4f16766c 2900 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 2901 expected_conflicts.
4f16766c 2902 (expected_rr_conflicts): Declare.
d6328241
PH
2903
2904 * src/conflicts.c (expected_sr_conflicts): Rename from
2905 expected_conflicts.
2906 (expected_rr_conflicts): Define.
2907 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
2908 for GLR parsers.
2909 Use expected_sr_conflicts in place of expected_conflicts.
2910 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 2911
d6328241 2912 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 2913
1452af69
PE
29142004-03-08 Paul Eggert <eggert@gnu.org>
2915
2916 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 2917 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
2918
2919 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
2920 in lalr1.cc.
2921 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
2922 * src/scan-gram.l (scan_integer): New function.
2923 ({int}): Use it.
2924 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
2925 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
2926 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
2927 Say "long int", not "long", for uniformity with GNU style.
2928
006d217d
PE
29292004-02-25 Paul Eggert <eggert@twinsun.com>
2930
2931 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
2932 compilers. This fixes a problem with Intel's C++ compiler being
2933 chatty, reported by Guido Trentalancia in
161a71f3 2934 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 2935
c2729758
ADL
29362004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
2937
2938 Support %destructor and merge error locations in lalr1.cc.
2939
2940 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
2941 (Parser::stos_): Define unconditionally.
2942 (Parser::destruct_): New method. Generate its body with
2943 b4_yydestruct_generate.
2944 (Parser::error_start_): New attribute.
2945 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
2946 token which are discarded.
2947 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
2948 error_start_ when erroneous token are discarded.
2949 (Parser::parse) <yyerrlab1>: Compute the location of the error
2950 token so that it covers all the discarded tokens.
2951 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
2952 it can be called with `%skeleton "lalr1.cc"', and do that.
2953
dd0e0635
PE
29542004-02-02 Paul Eggert <eggert@twinsun.com>
2955
2956 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
2957 $(top_srcdir)/lib and ../lib. This fixes a bug reported
2958 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
2959 There's no need to mention top_builddir since Automake does that
2960 for us.
2961 (INCLUDES): Remove, as Automake says it's obsolescent.
2962 Contents migrated into AM_CPPFLAGS as described above.
2963 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
2964
29652004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2966
2967 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
2968 (yyreportSyntaxError): Handle case where lookahead token is
2969 YYEMPTY.
2970
be16239b
PH
29712004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2972
2973 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
2974 resulting parsers are compilable with C++.
2975
5fa90832
PE
29762003-12-23 Paul Eggert <eggert@twinsun.com>
2977
2978 * config/depcomp, config/install-sh: Sync with Automake 1.8.
2979 * src/output.c (output_skeleton): Rename local var.
2980 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
2981 Bison tokens, as this runs afoul of the 2003-10-07 change that
2982 disallowed NUL bytes in character constants or string literals.
2983
2984 * tests/local.at: Require Autoconf 2.59's Autotest.
2985 * tests/testsuite.at: Don't include local.at, since we now assume
2986 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
2987 including it.
2988 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
2989 multiple inclusion warnings.
dd0e0635 2990
b165c324
AD
29912003-12-02 Akim Demaille <akim@epita.fr>
2992
2993 * doc/bison.texinfo (How Can I Reset the Parser): More about start
2994 conditions.
2995 From Bruno Haible.
2996
26e06a21
ADL
29972003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
2998
2999 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
3000
92ac3705
PE
30012003-10-07 Paul Eggert <eggert@twinsun.com>
3002
6a5ecb38
PE
3003 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
3004 if testsuite doesn't exist.
3005
92ac3705
PE
3006 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
3007 literals, unfortunately.
3008 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
3009 Complain about NUL bytes in character constants or string literals.
3010
91d2c560
PE
30112003-10-05 Paul Eggert <eggert@twinsun.com>
3012
3013 * NEWS: Don't document %no-default-prec, as it's still
3014 too experimental.
3015 * doc/bison.texinfo: Document %no-default-prec only if
3016 the defaultprec flag is set. Normally it's not.
3017
0cc3da3a
PE
30182003-10-04 Paul Eggert <eggert@twinsun.com>
3019
3020 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
3021 non-modifiable lvalue, instead of a modifiable one.
3022 * doc/bison.texinfo (Actions): Document that $$ can
3023 be assigned to. Do not claim that $$ and $N are
3024 array element references: user code should not rely on this.
3025
22fccf95
PE
30262003-10-01 Paul Eggert <eggert@twinsun.com>
3027
3028 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
3029 (grammar_declaration): Use it.
3030 * src/scan-gram.l: New token %no-default-prec.
3031 * tests/conflicts.at: Revamp tests to use %no-default-prec.
3032 * NEWS, doc/bison.texinfo: Document the above.
3033
fc8f2965
AD
30342003-10-01 Akim Demaille <akim@epita.fr>
3035
3036 VCG no longer supports long_straight_phase.
3037
3038 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
3039 * src/print_graph.c (print_graph): Adjust.
3040
39a06c25
PE
30412003-09-30 Frank Heckenbach <frank@g-n-u.de>
3042 and Paul Eggert <eggert@twinsun.com>
3043
3044 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
3045 Table of Symbols): Document %default-prec.
3046 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
3047 (grammar_declaration): Set default_prec on %default-prec.
3048 * src/scan-gram.l (%default-prec): New token.
3049 * src/reader.h (default_prec): New flag.
3050 * src/reader.c: Likewise.
3051 (packgram): Handle it.
3052 * tests/conflicts.at (%default-prec without %prec,
3053 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 3054
39a06c25
PE
30552003-09-30 Paul Eggert <eggert@twinsun.com>
3056
3057 * tests/testsuite.at: Include local.at, not input.at, fixing
3058 a typo in the 2003-08-25 patch.
3059
62b6aef9
AD
30602003-08-27 Akim Demaille <akim@epita.fr>
3061
3062 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
3063 GCC warnings.
3064
89e1cc61
AD
30652003-08-26 Akim Demaille <akim@epita.fr>
3066
3067 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
3068 "<\#" to avoid magic from Gnus when posting parts of this script.
3069
a08460b0
AD
30702003-08-26 Akim Demaille <akim@epita.fr>
3071
3072 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
3073 (Parser::parse): here.
3074 Adjust: nerrs and errstatus is now replaced by...
3075 (Parser::nerrs_, Parser::errstatus_): New.
3076
603f1cfd
AD
30772003-08-25 Akim Demaille <akim@epita.fr>
3078
3079 * config/announce-gen, Makefile.cfg: New.
3080 * Makefile.am: Adjust.
3081 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
3082 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
3083
cd3684cf
AD
30842003-08-25 Akim Demaille <akim@epita.fr>
3085
3086 When reducing initial empty rules, Bison parser read an initial
3087 location that is not defined. This results in garbage, and that
3088 affects Bison's own parser. Therefore we need (i) to extend Bison
3089 to support a means to initialize this location, and (ii) to use
3090 this CVS Bison to fix CVS Bison's parser.
3091
3092 * src/reader.h, reader.c (epilogue_augment): Remove, replace
3093 with...
3094 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
3095 * src/parse-gram.y: Adjust.
3096 (%initial-action): New.
3097 (%error-verbose): Since we require CVS Bison, there is no reason
3098 not to use it.
3099 * src/scan-gram.l: Adjust.
3100 * src/Makefile.am (YACC): New, to make sure we use our own parser.
3101 * data/yacc.c (yyparse): Use b4_initial_action.
3102
4e03e201
AD
31032003-08-25 Akim Demaille <akim@epita.fr>
3104
3105 * doc/bison.texinfo: Don't promote stdout for error messages.
3106
8c182d05
AD
31072003-08-25 Akim Demaille <akim@epita.fr>
3108
3109 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
3110 From Alexandre Duret-Lutz.
3111
6a60c4cf
PE
31122003-08-25 Akim Demaille <akim@epita.fr>
3113
3114 Version 1.875c.
3115
25f66e1a
AD
31162003-08-25 Akim Demaille <akim@epita.fr>
3117
3118 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
3119 Use them.
3120
5348bfbe
AD
31212003-08-25 Akim Demaille <akim@epita.fr>
3122
3123 * data/lalr1.cc (Parser::reduce_print_): New.
3124 Use it.
3125
47301314
AD
31262003-08-25 Akim Demaille <akim@epita.fr>
3127
3128 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
3129 error recovery loops. This patch is based on
161a71f3 3130 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
3131 Also, augment the similarity between lalr1.cc and yacc.c.
3132 Note: the locations of error recovery rules are not correct yet.
3133
3134 * data/lalr1.cc: Comment changes to augment the similarity between
3135 lalr1.cc and yacc.c.
3136 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
3137 (yyerrlab1): Remove, but where it used to be (now the bottom part of
3138 yyerrlab), when hitting EOF, pop the whole stack here instead of
3139 merely falling thru the default error handling mechanism.
3140 (yyerrorlab): New label, with the old contents of YYERROR,
3141 plus the following change: pop the stack of rhs corresponding
3142 to the production that invoked YYERROR. That is how Yacc
3143 behaves (required by POSIX).
3144 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
3145 fail.
3146
1f7a61ff
AD
31472003-08-25 Akim Demaille <akim@epita.fr>
3148
3149 Tune local.at so that people can "autom4te -l autotest calc.at -o
3150 calc" for instance, to extract a sub test suite.
3151
3152 * tests/testsuite.at: Move the initialization, Autotest version
3153 requirement, and AT_TESTED invocation into...
3154 * tests/local.at: here.
3155 * tests/testsuite.at: Include it for compatibility with Autoconf
3156 2.57.
3157 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
3158 be ignore.
3159
327b5b56
PE
31602003-08-04 Paul Eggert <eggert@twinsun.com>
3161
3162 Rework code slightly to avoid gcc -Wtraditional warnings.
3163 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
3164 The returned value is now stored in *YY0. All callers changed.
3165 * src/output.c (merge_output): Adjust to the above change.
3166
0051e3ed
PE
31672003-07-26 Paul Eggert <eggert@twinsun.com>
3168
3169 * data/glr.c (YYASSERT): New macro.
3170 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
3171 yyresolveStates, yyprocessOneStack):
3172 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
3173 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 3174
137437c6
PE
31752003-07-25 Paul Eggert <eggert@twinsun.com>
3176
5b620e06
PE
3177 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
3178 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 3179 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
3180 by Frank Heckenbach, though I have omitted the structure-initialization
3181 part of his glr-knr.diff patch since I recall that the Portable
3182 C Compiler didn't require that change.
3183
137437c6
PE
3184 Let the user specify how to allocate and free memory.
3185 Derived from a suggestion by Frank Heckenbach in
161a71f3 3186 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
3187 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
3188 All uses of free, malloc, realloc changed to use these macros,
3189 and unnecessary casts removed.
3190 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
3191
ddb85ca5
PE
31922003-07-06 Matthias Mann <MatthiasMann@gmx.de>
3193
3194 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
3195 use s.empty() rather than s == "" to test for empty string; see
161a71f3 3196 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
3197 (trivial change)
3198
39910e09
AD
31992003-06-25 Akim Demaille <akim@epita.fr>
3200
3201 * config/depcomp, config/install-sh: Update from masters.
3202
0ae99356
PE
32032003-06-20 Paul Eggert <eggert@twinsun.com>
3204
3205 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
3206 and return properly parenthesized result.
3207 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
3208 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
3209 Remove unnecessary parentheses from uses.
3210 * doc/bison.texinfo (Location Default Action): Describe the
3211 conventions for parentheses.
3212
cd05d13c
PE
32132003-06-19 Paul Eggert <eggert@twinsun.com>
3214
81fd08ca
PE
3215 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
3216 yyreportTree): Do not assume that size_t is the same width as int,
3217 when printing sizes. Print sizes using an unsigned format.
3218 Problem reported by Frank Heckenbach in
161a71f3 3219 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 3220
cd05d13c
PE
3221 Port to Forte Developer 7 C compiler.
3222 * data/glr.c (struct YYLTYPE): If locations are not being used,
3223 declare a single dummy member, as empty structs do not conform
3224 to the C standard.
3225 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
3226 the Forte Developer 7 C compiler complains that end-of-loop
3227 code is not reached.
3228
4dcf140b
PE
32292003-06-17 Paul Eggert <eggert@twinsun.com>
3230
3231 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
3232 avoid warnings from picky compilers about redefinition of PARAMS.
3233
8dd76bee
PE
32342003-06-17 Paul Eggert <eggert@twinsun.com>
3235
3236 Version 1.875b.
3237
3238 * NEWS: Document 1.875b.
3239
3240 * lib/bbitset.h: Do not include config.h; that's the includer's job.
3241 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
3242 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
3243 Don't use 'index' in comments, as it's a builtin fn on some hosts.
3244 * lib/bitset_stats.c: Include gettext.h unconditionally, as
3245 per recent gettext manual's suggestion.
3246 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
3247 Use prototypes, not old-style definitions.
3248 * lib/lbitset.c (lbitset_unused_clear): Likewise.
3249 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
3250 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
3251 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
3252 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
3253 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
3254 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
3255 vbitset_or_and_cmp, vbitset_copy): Likewise.
3256
3257 * lib/libiberty.h: Do not include config.h; that's the includer's job.
3258 Do not include <stdlib.h>.
3259 (PARAMS): Define unconditionally for C89.
3260 (ATTRIBUTE_NORETURN): Remove.
3261 (ATTRIBUTE_UNUSED): Define unconditionally.
3262
3263 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 3264 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
3265 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
3266 * lib/vbitset.c, lib/vbitset.h: New files.
3267 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3268 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
3269 from libbitset.
3270
3271 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
3272 `How Can I Reset @code{yyparse}', since texinfo does not allow
3273 arbitrary @ in node names.
3274
3275 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
3276 shouldn't be needed according to the gettext 0.12.1 documentation
3277 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 3278 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 3279 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 3280 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 3281
8dd76bee
PE
3282 * lib/.cvsignore: Add stdbool.h.
3283 * m4/.cvsignore: Add nls.m4, po.m4.
3284
3285 Upgrade to CVS gnulib.
3286 * stdbool_.h: File renamed from stdbool.h.in.
3287 * configure.ac (AM_STDBOOL_H): Invoke this instead of
3288 AC_HEADER_STDBOOL.
3289 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
3290 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
3291 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
3292 (MOSTLYCLEANFILES): New var.
3293 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
3294 (stdbool.h): New rule.
3295 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
3296 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
3297 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
3298 m4/quote.m4: Upgrade to today's gnulib.
3299
3300 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
3301 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
3302 the tests right now.
3303 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
3304 yyerror are declared before use; C99 requires this.
3305
25005f6a
PH
33062003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3307
3308 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
3309 first.
3310 (yyrecoverSyntaxError): Correct the logic for setting and testing
3311 yyerrState.
3312 Correct comment on handling EOF.
3313 Allow states with only a default reduction, rather than failing
8dd76bee 3314 (I can't quite reconstruct why these were not allowed before).
25005f6a 3315
137437c6 3316 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 3317 buffer overruns, corrupting state.
8dd76bee
PE
3318
3319 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
3320 definition.
3321 * src/reader.h (max_left_semantic_context): New variable declaration.
3322 * src/scan-gram.l (max_left_semantic_context): Define.
3323 (handle_action_dollar): Update max_left_semantic_context.
3324 * data/glr.c (YYMAXLEFT): New definition.
3325 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
3326 (yyresolveAction): Ditto.
3327
3328 Fixes to problems with location handling in GLR parsers reported by
3329 Frank Heckenbach (2003/06/05).
3330
3331 * data/glr.c (YYLTYPE): Make trivial if locations not used.
3332 (YYRHSLOC): Add parentheses, and define only if locations used.
3333 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
3334 locations not used.
3335 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
3336 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 3337
25005f6a
PH
3338 * tests/cxx-type.at: Exercise location information; update tests
3339 to differentiate output with and without locations.
8dd76bee 3340 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
3341 because default YYLTYPE not yet defined.
3342 Change semantic actions to compute strings, rather than printing
3343 them directly (to test proper passing of semantics values). Change
3344 output to prefix notation and update test data and expected results.
3345 (yylex): Track locations.
3346 (stmtMerge): Return value rather than printing, and include arguments
3347 in value.
8dd76bee 3348
711f40b7
PE
33492003-06-03 Paul Eggert <eggert@twinsun.com>
3350
3351 Avoid warnings generated by GCC 2.95.4 when Bison is
3352 configured with --enable-gcc-warnings.
3353 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
3354 yy::]b4_parser_class_name[::translate_,
3355 yy::Stack::operator[] (unsigned),
3356 yy::Stack::operator[] (unsigned) const,
3357 yy::Slice::operator[] (unsigned),
3358 yy::Slice::operator[] (unsigned) const):
3359 Rename local vars to avoid warnings.
3360 * tests/glr-regression.at (Improper handling of embedded actions
3361 and $-N in GLR parsers): Remove unused local variable from yylex.
3362 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
3363 (void) as arg when not pure, since we now assume C89 when building
3364 Bison. Pacify GCC by using parameter.
3365
ac695f7d
PE
33662003-06-02 Paul Eggert <eggert@twinsun.com>
3367
3368 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
3369 yy::Location::lines, yy::Location::columns): Rename arguments
3370 to avoid shadowing; this removes a warning generated by GCC 3.3.
3371
26ec81e0
PE
33722003-06-01 Paul Eggert <eggert@twinsun.com>
3373
3374 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
3375 to g++, as GCC 3.3 complains if you do it.
3376 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
3377 everything that WARNING_CFLAGS has, except omit warnings
3378 not suitable for C++.
3379 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
3380 * tests/atlocal.in (CXXFLAGS): New var.
3381 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
3382
3383 Fix a GLR parser bug I reported in February; see
161a71f3 3384 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
3385 The problem was that GLR parsers did not conform to the C standard,
3386 because actions like { $1 = $2 + $3; } expanded to expressions
3387 that invoked YYFILL in separate subexpressions, and YYFILL assigned
3388 to a local variable. The C standard says that expressions
3389 like (var = f ()) + (var = f ()) have undefined behavior.
3390 Another problem was that GCC sometimes issues warnings that
3391 yyfill and its parameters are unused.
3392
3393 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
3394 as possibly unused.
3395 (yyfill): New function.
3396 (YYFILL): Use it.
3397 (yyuserAction): Change type of yynormal to bool, so that it matches
3398 the new yyfill signature. Mark it as possibly unused.
3399
3400
3401 Follow up on a bug I reported in February, where a Bison-generated
3402 parser can loop. Provide a test case and a fix for yacc.c. I
3403 don't have a fix for lalr1.cc or for glr.c, unfortunately.
3404 The original bug report is in:
161a71f3 3405 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
3406
3407 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
3408 macro's size was becoming unwieldy.
3409 (yyerrlab): Do not discard an empty lookahead symbol, as this
3410 might destroy garbage.
3411 (yyerrorlab): New label, with the old contents of YYERROR,
3412 plus the following change: pop the stack of rhs corresponding
3413 to the production that invoked YYERROR. That is how Yacc
3414 behaves, and POSIX requires this behavior.
3415 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
3416 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
3417 Define 'alarm' to do nothing if unistd.h is not available.
3418 Add a new rule "exp: '-' error;" to test the above change to
3419 data/yacc.c. Use 'alarm' to abort any test taking longer than
3420 10 seconds, as it's probably looping.
3421 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
3422 Also, the new yacc.c generates two fewer diagnostics for an
3423 existing test.
3424
d0829076
PE
34252003-05-24 Paul Eggert <eggert@twinsun.com>
3426
c6ae27df
PE
3427 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
3428 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
3429 This fixes a problem reported by John Bowman when the Compaq/HP
3430 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
3431 -ansi -Wall -gall).
3432 * data/yacc.c (union yyalloc): Likewise.
3433 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 3434
d0829076
PE
3435 Switch from 'int' to 'bool' where that makes sense.
3436
3437 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
3438 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
3439 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
3440 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
3441 Return or accept bool, not int. All callers changed.
3442 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
3443 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
3444 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
3445 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
3446 bitset_or_and_cmp_): Likewise.
3447 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
3448 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
3449 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
3450 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
3451 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
3452 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
3453 bitset_stats_or_and_cmp): Likewise.
3454 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
3455 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
3456 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
3457 ebitset_xor_cmp): Likewise.
3458 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
3459 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
3460 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
3461 lbitset_xor_cmp): Likewise.
3462 * lib/bbitset.h: Include <stdbool.h>.
3463 (struct bitset_vtable): The following members now return bool, not
3464 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
3465 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
3466 or_and_cmp).
3467 * src/conflicts.c (count_rr_conflicts): Likewise.
3468 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
3469 All uses changed.
3470 * lib/ebitset.c (ebitset_obstack_init): Likewise.
3471 * lib/lbitset.c (lbitset_obstack_init): Likewise.
3472 * src/getargs.c (debug_flag, defines_flag, locations_flag,
3473 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3474 graph_flag): Likewise.
3475 * src/getargs.h (debug_flag, defines_flag, locations_flag,
3476 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3477 graph_flag): Likewise.
3478 * src/output.c (error_verbose): Likewise.
3479 * src/output.h (error_verbose): Likewise.
3480 * src/reader.c (start_flag, typed): Likewise.
3481 * src/reader.h (typed): Likewise.
3482 * src/getargs.c (LOCATIONS_OPTION): New constant.
3483 (long_options, getargs): Use it.
3484 * src/lalr.c (build_relations): Use bool, not int.
3485 * src/nullable.c (nullable_compute): Likewise.
3486 * src/print.c (print_reductions): Likewise.
3487 * src/tables.c (action_row, pack_vector): Likewise.
3488 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
3489 * src/output.c (prepare): Use it.
3490 * src/output.c (token_definitions_output,
3491 symbol_destructors_output, symbol_destructors_output): Use string,
3492 not boolean integer, to keep track of whether to output separator.
3493 * src/print_graph.c (print_core): Likewise.
3494 * src/state.c (state_rule_lookaheads_print): Likewise.
3495
3496 * config/install-sh: Sync from automake 1.7.5.
3497
6b2584b7
PE
34982003-05-14 Paul Eggert <eggert@twinsun.com>
3499
3500 * src/parse-gram.y (rules_or_grammar_declaration): Require a
3501 semicolon after a grammar declaration, in the interest of possible
3502 future changes to the Bison input language.
3503 Do not allow a stray semicolon at the start of the grammar.
3504 (rhses.1): Allow one or more semicolons after any rule, including
3505 just before "|" as required by POSIX.
3506 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
3507 grammar.
3508
caf37a36
ADL
35092003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
3510
3511 %parse-param support for lalr1.cc.
3512
3513 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
3514 b4_cc_constructor_calls, b4_cc_constructor_call,
3515 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
3516 definitions.
3517 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
3518 parse-param arguments.
3519 (yy::b4_parser_class_name): Declare instance variables to
3520 hold parse-param arguments.
3521 * tests/calc.at: s/value/semantic_value/ because value clashes
3522 with a member of yy::b4_parser_class_name. Adjust C++ code
3523 to handle %parse-param. Enable %parse-param test in C++.
3524
3ab37077
PE
35252003-05-12 Paul Eggert <eggert@twinsun.com>
3526
3527 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
3528 English a bit. Fix fclose typo. Change "const char" to "char
3529 const", and use ANSI C rather than K&R for "main". Suggest
3530 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
3531 and suggest yy_switch_to_buffer.
3532
35332003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
3534
3535 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
3536 C89. This avoids a diagnostic on compilers that define __STDC__
3537 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 3538 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 3539
e743727f
PE
35402003-05-03 Paul Eggert <eggert@twinsun.com>
3541
3542 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
3543 Do not overrun array bounds.
3544 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 3545 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 3546
916708d5
AD
35472003-04-29 Akim Demaille <akim@epita.fr>
3548
3549 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
3550 * src/getargs.c, src/getargs.h: here, as bool, not int.
3551 (nondeterministic_parser): New.
3552 * src/parse-gram.y, src/scan-gram.l: Support
3553 %nondeterministic-parser.
3554 * src/output.c (prepare): Use nondeterministic_parser instead
3555 of glr_parser where appropriate.
3556 * src/tables.c (conflict_row, action_row, save_row)
3557 (token_actions, token_actions, pack_vector): Ditto.
3558
a06ea4aa
AD
35592003-04-29 Akim Demaille <akim@epita.fr>
3560
3561 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
3562
211074ca
AD
35632003-04-29 Akim Demaille <akim@epita.fr>
3564
3565 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
3566 with %pure-parser and %locations to exercise the patch from Yakov
3567 Markovitch below.
3568
6175ffe3
PE
35692003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
3570
3571 * data/yacc.c: (b4_lex_param): Corrected for the case where
3572 %lex-param is provided and %pure-parser isn't.
3573
b1e95857
PE
35742003-04-27 Paul Eggert <eggert@twinsun.com>
3575
3576 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 3577 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
3578 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
3579 if it is not defined.
3580 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
3581
acda9df6
PE
35822003-04-26 Paul Eggert <eggert@twinsun.com>
3583
3470c57b
PE
3584 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
3585 Declare to be of type suitable for the ninf value itself, not of
3586 type suitable for the corresponding table, since the latter might
3587 be unsigned but the ninf value might be negative. This fixes a
3588 bug reported by Alexandre Duret-Lutz in
161a71f3 3589 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 3590
acda9df6
PE
3591 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
3592 invokes it. We shouldn't invoke it twice because it will attempt
3593 to put error.o in the archive twice. This fixes a glitch reported
3594 by Martin Mokrejs in
161a71f3 3595 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 3596
b5250f26
PE
35972003-04-21 Paul Eggert <eggert@twinsun.com>
3598
3599 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
3600 to gnulib.
3601
089ac0f1
PE
36022003-04-21 Yakov Markovitch <Markovitch@iso.ru>
3603
3604 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
3605 Fix obvious typo that results in uncompilable GLR parsers
3606 when both %pure-parser and %locations are used. (trivial change)
3607
5ededac6
PE
36082003-04-17 Paul Eggert <eggert@twinsun.com>
3609
1b8f2fff
PE
3610 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
3611 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
3612 Do not insert the expected token via unput, as this runs afoul
3613 of a POSIX-compatibility bug in flex 2.5.31.
3614 All uses changed to BEGIN the parent state,
3615 since we no longer insert the expected token via unput.
3616 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
3617 that is no longer emitted after the above change.
3618
5ededac6
PE
3619 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
3620 the first one. This change is from Paul Hilfinger, and it fixes
3621 regression reported by Werner Lemberg in
161a71f3 3622 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
3623
3624 (resolve_sr_conflict): Don't invoke state_errs_set
3625 unless one or more tokens have been explicitly made errors.
3626 Otherwise, the above change causes Bison to abort.
3627
3628 * tests/existing.at (GNU pic Grammar): New test case, taken from
3629 Lemberg's email.
3630
b8be9132
AD
36312003-03-31 Akim Demaille <akim@epita.fr>
3632
3633 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
3634
d423d460
AD
36352003-03-31 Akim Demaille <akim@epita.fr>
3636
3637 * src/output.c (prepare_symbols): Avoid trailing spaces in the
3638 output.
3639
c7e441b4
AD
36402003-03-31 Akim Demaille <akim@epita.fr>
3641
3642 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
3643 From Paul Hilfinger.
3644
231897ad
AD
36452003-03-29 Akim Demaille <akim@epita.fr>
3646
3647 * m4/error.m4: Do not put under dynamic conditions some code which
3648 expansion is under static control.
3649
5b066063
AD
36502003-03-29 Akim Demaille <akim@epita.fr>
3651
3652 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
3653
22a74fec
AD
36542003-03-29 Akim Demaille <akim@epita.fr>
3655
3656 * doc/bison.texinfo (Strings are Destroyed): New.
3657
0eee27e7
PE
36582003-03-13 Paul Eggert <eggert@twinsun.com>
3659
3660 * .cvsignore: Add configure.lineno.
3661 * src/.cvsignore: Add yacc.
3662 * tests/.cvsignore: Add testsuite.log.
3663 * doc/fdl.texi: Sync with latest FSF version.
3664
f61aad93
PE
36652003-03-12 Paul Eggert <eggert@twinsun.com>
3666
537636c7
PE
3667 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
3668 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
3669 cursor, instead of leaving it undefined. This fixes a bug
3670 reported by Tim Van Holder in
161a71f3 3671 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
3672 * tests/input.at (Torturing the Scanner): Test the scanner on
3673 an empty input file, which was Tim Van Holder's test case.
3674
3675 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
3676 <sys/resource.h> can be included, include sys/time.h and
3677 sys/times.h first, if available. This works around the SunOS
3678 4.1.4 porting bug reported by Bruce Becker in
161a71f3 3679 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
3680
3681 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
3682 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
3683 AC_HEADER_SYS_WAIT.
3684
f61aad93
PE
3685 Merge changes from gnulib. This was prompted because the CVS
3686 snapshot didn't build on Solaris 7 due to strnlen problems.
3687
3688 These changes need to be merged back into gnulib:
3689 * lib/hash.c: Include <stdbool.h> unconditionally.
3690 * m4/onceonly.m4 (m4_quote): New macro.
3691 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
3692 Quote AC_FOREACH variable-expansions properly.
3693 The 2003-01-03 obstack.h change also needs merging.
3694 {end of changes requiring merging}
5b066063 3695
f61aad93
PE
3696 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
3697 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
3698 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
3699 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
3700 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
3701 New files, imported from gnulib.
3702 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
3703 above.
3704
3705 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
3706 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
3707 gnulib sources.
3708
3709 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
3710 Add.
3711 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
3712 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
3713 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
3714 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
3715 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
3716 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
3717 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
3718 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
3719 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
3720 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
3721 (jm_PREREQ_ARGMATCH): Remove.
3722 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
3723 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
3724
3725 * src/system.h: Include <stdbool.h> unconditionally.
3726
3727 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
3728 assuming at least C89 in the bitset code for some time now.
3729
d2ffe116
AD
37302003-03-03 Akim Demaille <akim@epita.fr>
3731
3732 * ro.po: New.
3733
052826fd
AD
37342003-03-02 Akim Demaille <akim@epita.fr>
3735
3736 * doc/bison.texinfo (Table of Symbols): Reactivate the
3737 documentation for %lex-param, and %parse-param.
3738
c4749565
AD
37392003-03-02 Akim Demaille <akim@epita.fr>
3740
3741 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
3742 generate verbose error messages.
3743 Use the number of tokens as an upper bound in yytname, as it
3744 cannot be a non terminal.
3745
d5286af1
AD
37462003-03-02 Akim Demaille <akim@epita.fr>
3747
3748 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
3749 message.
3750
22e304a6
AD
37512003-03-02 Akim Demaille <akim@epita.fr>
3752
22e304a6
AD
3753 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
3754 Use them to exercise yycheck overrun.
3755 Based on Andrew Suffield's grammar.
3756
67a25fed
AD
37572003-03-02 Akim Demaille <akim@epita.fr>
3758
3759 Create tests/local.at for Bison generic testing macros.
3760
3761 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
3762 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
3763 This new file.
3764 * tests/calc.at (AT_CHECK_CALC): Adjust.
3765 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
3766 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
3767 * tests/local.at: here.
3768 (AT_COMPILE_CXX): Tags the tests using it as c++.
3769 Ignore the test if CXX is not functional.
3770
9c2b381f
PE
37712003-03-01 Paul Eggert <eggert@twinsun.com>
3772
3773 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
3774 not loc->end, since loc->end might contain garbage and this leads
3775 to undefined behavior on some platforms.
3776 (id_loc, token_start): Use (IF_LINTed) initial values that do not
3777 depend on *loc, so that the reader doesn't give the the false
3778 impression that *loc is initialized.
3779 (<INITIAL>"%%"): Do not bother setting code_start, since its value
3780 does not survive the return.
3781
0433ba88
AD
37822003-03-01 Akim Demaille <akim@epita.fr>
3783
3784 * src/scan-gram.l (code_start): Always initialize it when entering
3785 into yylex, as SC_EPILOGUE is activated *before* the corresponding
3786 yylex invocation. An alternative would be making it static, but
3787 then it starts with the second %%'s beginning, instead of its end.
3788
b305ea69
PE
37892003-02-28 Paul Eggert <eggert@twinsun.com>
3790
3791 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
3792 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 3793 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 3794
c3d25e01
PE
37952003-02-26 Paul Eggert <eggert@twinsun.com>
3796
3797 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
3798 Remove Sequent/Pyramid discussion (nobody uses them any more).
3799 Merge VMS and MS-DOS discussion; these ports may well be dead
3800 but let's keep mentioning them for now. Put <> around email
3801 addresses. Add copyright notice.
3802
c267ffbc
PE
38032003-02-24 Paul Eggert <eggert@twinsun.com>
3804
3805 * data/glr.c (yy_reduce_print): yylineno -> yylno,
3806 to avoid collision with flex use of yylineno.
3807 Problem reported by Bruce Lilly in
161a71f3 3808 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
3809 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
3810 * data/yacc.c (yy_reduce_print): Likewise.
3811
3812 * config/depcomp: Sync with Automake 1.7.3.
3813
f939fc12
AD
38142003-02-21 Akim Demaille <akim@epita.fr>
3815
3816 * data/lalr1.cc: Use temporary variables instead of casts to
3817 change integer types.
3818 Suggested by Paul Eggert.
3819
95923bd6
AD
38202003-02-21 Akim Demaille <akim@epita.fr>
3821
3822 * doc/bison.texinfo: Use "location" consistently to refer to @n,
3823 to avoid confusions with lalr1.cc's notion of Position.
3824 Suggested by Paul Eggert.
3825
2cdc240e
AD
38262003-02-20 Akim Demaille <akim@epita.fr>
3827
3828 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
3829 before initial_columns.
3830 (location.hh): Use consistent variable names when defining the
3831 operator<<.
3832 Use "last" so that we subtract from Positions, not from unsigned.
3833
5d003116
AD
38342003-02-20 Akim Demaille <akim@epita.fr>
3835
3836 * data/lalr1.cc (position.hh): New subfile, including the extended
3837 and Doxygen'ed documentation of class Position.
3838 (location.hh): Use it.
3839 Document a` la Doxygen.
ba1ecc07 3840 With the help of Benoit Perrot.
5d003116 3841
d02b25f9
AD
38422003-02-20 Akim Demaille <akim@epita.fr>
3843
3844 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
3845 AT_YACC_IF.
3846 Redefine AT_YYERROR_SEES_LOC_IF using it.
3847 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
3848 not defined.
3849 Don't use the location in yy::Parser::error_ and
3850 yy::Parser::print_ when not %locations.
3851 Activate more lalr1.cc tests.
3852
0d1c3a04
AD
38532003-02-19 Akim Demaille <akim@epita.fr>
3854
3855 * data/lalr1.cc: When displaying a line number, be sure to make it
3856 an int.
3857
60a777aa
AD
38582003-02-19 Akim Demaille <akim@epita.fr>
3859
3860 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
3861 Remove, useless.
3862 (YYABORT, YYACCEPT, YYERROR): New.
3863 * tests/calc.at: Renable the lalr1.cc test.
3864
0b86fc41
AD
38652003-02-19 Akim Demaille <akim@epita.fr>
3866
3867 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
3868 error recovery, mixing with/without pops and discarding of the
3869 lookahead.
3870 Exercise YYERROR.
3871 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
3872
da99a5dc
PE
38732003-02-17 Paul Eggert <eggert@twinsun.com>
3874
3875 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
3876 * tests/testsuite.at (AT_COMPILE): Use them.
3877 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 3878 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 3879
93b8c255
PE
38802003-02-12 Paul Eggert <eggert@twinsun.com>
3881
3882 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
3883 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 3884 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
3885 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
3886 Check for malloc failure, for consistency with yacc.c.
3887 (yytname_size): Remove, for consistency with yacc.c.
3888
3889 The bug still remains in data/lalr1.cc, as I didn't have time
3890 to fix it there.
3891
7548fed2
AD
38922003-02-06 Akim Demaille <akim@epita.fr>
3893
3894 * configure.ac (GXX): Rename as...
3895 (CXX): this, to keep the original Autoconf semantics.
3896 Require 2.57.
3897 * data/lalr1.cc: Fix b4_copyright invocations.
3898 If YYDEBUG is not defined, don't depend upon name_ being defined.
3899 (location.hh): Include string and iostream.
3900 (Position::filename): New member.
3901 (Position::Position ()): New.
3902 (operator<< (Position)): New.
3903 (operator- (Position, int)): New.
3904 (Location::first, Location::last): Rename as...
3905 (Location::begin, Location::end): these, to mock the conventional
3906 iterator names.
3907 (operator<< (Location)): New.
3908 * tests/atlocal.in (CXX): New.
3909 * tests/testsuite.at (AT_COMPILE_CXX): New.
3910 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
3911 locations in a more synthetic way.
3912 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
3913 lalr1.cc is used.
3914 Adjust the C locations to match those from Emacs: first column is
3915 column 0.
3916 Change all the expected results.
3917 Conform to the GCS: simplify the locations when applicable.
3918 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
3919 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
3920 these CPP macros with the m4 macros new defined by...
3921 (AT_CHECK_PUSHDEFS): this, i.e.:
3922 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 3923 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
3924 New macros.
3925 (AT_CHECK_POPDEFS): Undefine them.
3926 (AT_CHECK_CALC_LALR1_CC): New.
3927 Use it for the first lalr1.cc test.
3928
43a176ef
AD
39292003-02-04 Akim Demaille <akim@epita.fr>
3930
3931 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
3932 Location as is defined.
3933
fc049e9c
AD
39342003-02-04 Akim Demaille <akim@epita.fr>
3935
3936 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
3937 name_ being defined.
3938
a737b216
PE
39392003-02-03 Paul Eggert <eggert@twinsun.com>
3940
3941 * src/gram.h (start_symbol): Remove unused decl.
3942
3943 Use more-consistent naming conventions for local vars.
3944
3945 * src/derives.c (derives_compute): Change type of local var from
3946 int to rule_number.
3947 * src/gram.c (grammar_rules_partial_print): Likewise.
3948 * src/print.c (print_core): Likewise.
3949 * src/reduce.c (reduce_grammar_tables): Likewise.
3950
3951 * src/gram.c (grammar_dump): Change name of item_number *
3952 local var from r to rp.
3953 * src/nullable.c (nullable_compute): Likewise.
3954
3955 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
3956
3957 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
3958 for symbol or symbol_number var.
3959 * src/reader.c (grammar_start_symbol_set): Likewise.
3960 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
3961 Likewise.
3962 * src/state.c (transitions_to): Likewise.
3963 * src/state.h: Likewise.
3964 * src/tables.c (symbol_number_to_vector_number): Likewise.
3965
3966 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
3967 char * var.
3968
3969 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
3970 var.
3971
3972 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
3973 var.
3974
3975 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
3976 Use str, not s, for char * var. Use ch, not c, for character var.
3977 Use size for size var.
3978
3979 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
3980 char * var.
3981 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
3982 uniqstr var.
3983 * src/uniqstr.h: Likewise.
3984
3985 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
3986 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
3987 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
3988 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
3989 param to have same name as that of enum, so that we don't use
3990 "s" to stand for a non-state.
3991
68e93ad5
AD
39922003-02-02 Akim Demaille <akim@epita.fr>
3993
3994 * src/scan-skel.l: Scan more than one inert character per yylex
3995 invocation.
3996
92898986
PE
39972003-02-01 Paul Eggert <eggert@twinsun.com>
3998
3999 Version 1.875a.
4000
1d9d5d71
PE
4001 * po/LINGUAS: Add ms.
4002
0435d061
AD
40032003-01-30 Akim Demaille <akim@epita.fr>
4004
4005 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
4006
6029a57f
PH
40072003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4008
4009 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
4010 of $1.
0435d061
AD
4011
4012 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 4013 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 4014 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 4015
6029a57f
PH
4016 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
4017 (b4_rhs_location): Ditto.
0435d061 4018 (yyfill): New function to copy from stack tree into array
6029a57f 4019 incrementally.
0435d061
AD
4020 (yyuserAction): Modify to allow incremental move of semantic values
4021 to rhs array when in GLR mode.
4022 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
4023 as needed.
4024 Remove dummy use of yystack, as there is now a guaranteed use.
4025 (yydoAction): Modify to allow incremental move of semantic values
4026 to rhs array when in GLR mode.
4027 (yyresolveAction): Ditto.
4028 (yyglrShiftDefer): Update comment.
0435d061 4029 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
4030 (yyglrReduce): Ditto.
4031 (yydoAction): Ditto
0435d061 4032
6029a57f
PH
4033 * tests/glr-regr1.at: Rename to ...
4034 * tests/glr-regression.at: Add new regression test for the problems
4035 described above (adapted from S. Eken).
4036 Update copyright notice.
4037 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
4038 * tests/Makefile.am: Ditto.
4039
6cee6297
PE
40402003-01-28 Paul Eggert <eggert@twinsun.com>
4041
4042 * data/lalr1.cc: Do not use @output_header_name@ unless
4043 b4_defines_flag is set. This fixes two bugs reported by
4044 Tim Van Holder in
161a71f3
PE
4045 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
4046 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 4047
b2a836b5
PE
40482003-01-21 Paul Eggert <eggert@twinsun.com>
4049
4050 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
4051 we don't need to worry about yyerrlab1 being reported as an
4052 "unused label" by non-GCC C compilers. The downside is that if
4053 locations are used then a couple of statements are duplicated each
4054 time YYERROR is invoked, but the upside is that the warnings
4055 should vanish.
4056 (yyerrlab1): Move code to YERROR.
4057 (yyerrlab2): Remove. Change uses back to yyerrlab1.
4058 This reverts some of the 2002-12-27 change.
4059
4196b931
PE
40602003-01-17 Paul Eggert <eggert@twinsun.com>
4061
4062 * src/output.c (symbol_printers_output): Fix typo that led
4063 to core dump. Problem reported by Antonio Rus in
161a71f3 4064 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 4065
3ae831b4
AD
40662003-01-13 Akim Demaille <akim@epita.fr>,
4067 Quoc Peyrot <chojin@lrde.epita.fr>,
4068 Robert Anisko <anisko_r@lrde.epita.fr>
4069
4070 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
4071 when the stacks contain one element, as the loop would otherwise
4072 free the last state, and then use the top state (the one we just
4073 popped). This means that the initial elements will not be freed
4074 explicitly, as is the case in yacc.c; it is not a problem, as
4075 these elements have fake values.
4076
e3aa65c5
PE
40772003-01-11 Paul Eggert <eggert@twinsun.com>
4078
4079 * NEWS: %expect-violations are now just warnings, reverting
4080 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
4081 bootstrapping problem reported by Matthias Klose; see
161a71f3 4082 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
4083 * src/conflicts.c (conflicts_print): Likewise.
4084 * tests/conflicts.at (%expect not enough, %expect too much,
4085 %expect with reduce conflicts): Likewise.
4086 * doc/bison.texinfo (Expect Decl): Document this. Also mention
4087 that the warning is enabled if the number of conflicts changes
4088 (not necessarily increases).
4089
4090 * src/getargs.c (version): Update copyright year.
4091
f0057011
AD
40922003-01-09 Akim Demaille <akim@epita.fr>
4093
4094 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
4095
1ee6d2a0
PE
40962003-01-08 Paul Eggert <eggert@twinsun.com>
4097
4098 * Makefile.maint (WGETFLAGS):
4099 New macro, containing "-C off" to disable proxy caches.
4100 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
4101 (rel-check): Use $(WGET) instead of wget.
4102
d4fd77c4
PE
41032003-01-06 Paul Eggert <eggert@twinsun.com>
4104
4105 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
4106 the GLR paper of Scott, Johnstone and Hussain.
4107
464c6927
PE
41082003-01-04 Paul Eggert <eggert@twinsun.com>
4109
d600ee67
PE
4110 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
4111 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
4112 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
4113 (EXTRA_LIBRARIES): New var, for liby.a.
4114 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
4115 (EXTRA_SCRIPTS): New var, for yacc.
4116
464c6927
PE
4117 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
4118 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
4119 Problem reported by Nelson H. F. Beebe.
4120
41212003-01-03 Paul Eggert <eggert@twinsun.com>
4122
4123 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
4124 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
4125 when compiling Bison 1.875's `bitset bset = obstack_alloc
4126 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
4127
4128 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
4129 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
4130 grow to a huge size with typical invocation.
d600ee67 4131
464c6927
PE
4132 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
4133 Use the pattern recommended by Autoconf 2.57, except also protect
4134 against double-definition.
4135 * src/system.h: Likewise.
4136 Portability issues reported by Nelson H. F. Beebe.
d600ee67 4137
464c6927
PE
4138 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
4139 All uses changed. Provide a definition in both C and C++.
4140 (yytrue, yyfalse): Define even if defined (__cplusplus).
4141
4142 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
4143 Reported by Nelson H. F. Beebe.
d600ee67 4144
464c6927
PE
4145 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
4146
0f42c7d5
PE
41472003-01-02 Paul Eggert <eggert@twinsun.com>
4148
4149 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
4150 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
4151 Bug reported by Nelson H. F. Beebe.
4152
dc546b0f
PE
41532003-01-01 Paul Eggert <eggert@twinsun.com>
4154
4155 * Version 1.875.
4156
2c09b6a7
PE
41572002-12-30 Paul Eggert <eggert@twinsun.com>
4158
4159 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
4160 Moved here from...
4161 (<INITIAL>","): Here. This causes stray "," to be treated
4162 more uniformly.
4163
dc546b0f 4164 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
4165 last brace in braced code when not in Yacc mode, for compatibility
4166 with Bison 1.35. This resurrects the 2001-12-15 patch to
4167 src/reader.c.
4168
4169 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
4170 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
4171
535c0f63
PE
41722002-12-28 Paul Eggert <eggert@twinsun.com>
4173
4174 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
4175 that of SYM's type. This fixes Debian bug 168069, reported by
4176 Thomas Olsson.
d600ee67 4177
963fcc17
PE
41782002-12-28 Paul Eggert <eggert@twinsun.com>
4179
4180 Version 1.75f.
4181
4182 Switch back to the Yacc style of conflict reports, undoing some
4183 of the 2002-07-30 change.
4184 * doc/bison.texinfo (Understanding): Use Yacc style for
4185 conflict reports. Also, use new way of locating rules.
4186 * src/conflicts.c (conflict_report):
4187 Renamed from conflict_report_yacc, removing the old
4188 'conflict_report'. Translate the entire conflict report at once,
4189 so that we don't assume that "," has the same interpretation in
4190 all languages.
4191 (conflicts_output): Use Yacc-style conflict report for each state,
4192 instead of our more-complicated style.
4193 (conflicts_print): Use Yacc-style conflict report, except print
4194 the input file name when not emulating Yacc.
4195 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
4196 Conflicted Reduction, %expect not enough, %expect too much,
4197 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
4198 * tests/existing.at (GNU Cim Grammar): Likewise.
4199 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
4200
4201 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
4202 fatal): Don't invoke fflush; it's not needed and it might even be
4203 harmful for stdout, as stdout might not be open.
4204 * src/reduce.c (reduce_print): Likewise.
4205
b1efe548
PE
42062002-12-27 Paul Eggert <eggert@twinsun.com>
4207
4208 Fix a bug where error locations were not being recorded correctly.
4209 This problem was originally reported by Paul Hilfinger in
161a71f3 4210 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
4211
4212 * data/yacc.c (yyparse): New local var yylerrsp, to record the
4213 top of the location stack's error locations.
4214 (yyerrlab): Set it. When discarding a token, push its location
4215 onto yylerrsp so that we don't lose track of the error's end.
4216 (yyerrlab1): Now is only the target of YYERROR, so that we can
4217 properly record the location of the action that failed. For GCC
4218 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
4219 GCC warning about yyerrlab1 being unused if YYERROR is unused.
4220 (yyerrlab2): New label, which yyerrlab now falls through to.
4221 Compute the error's location by applying YYLLOC_DEFAULT to
4222 the locations of all the symbols that went into the error.
4223 * doc/bison.texinfo (Location Default Action): Mention that
4224 YYLLOC_DEFAULT is also invoked for syntax errors.
4225 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4226 Error locations include the locations of all the tokens that were
4227 discarded, not just the last token.
d600ee67 4228
983c5c2c
PE
42292002-12-26 Paul Eggert <eggert@twinsun.com>
4230
b1efe548
PE
4231 * src/files.c: Include quote.h.
4232 (compute_output_file_names): Warn if we detect conflicting
4233 outputs to the same file. This should catch the misunderstanding
4234 exemplified by Debian Bug 165349, reported by Bruce Stephens..
4235
4236 * src/conflicts.c (conflicts_print): If the user specifies
4237 "%expect N", report an error if there are any reduce/reduce
4238 conflicts. This is what the manual says should happen.
4239 This fixes Debian bug 130890, reported by Anthony DeRobertis.
4240 * tests/conflicts.at (%expect with reduce conflicts): New test.
4241
983c5c2c
PE
4242 Don't use m4_include on relative file names, as it doesn't work as
4243 desired if there happens to be a file with that name under ".".
d600ee67 4244
983c5c2c
PE
4245 * m4sugar/version.m4: Remove; it was included but it wasn't used.
4246 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
4247 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
4248 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
4249 * src/output.c (output_skeleton): Use full path names when
4250 specifying a file to include; don't rely on include path, as
4251 it's unreliable when the working file contains a file with
4252 that name.
d600ee67 4253
983c5c2c
PE
42542002-12-25 Paul Eggert <eggert@twinsun.com>
4255
4256 Remove obsolete references to bison.simple and bison.hairy.
4257 Problem mentioned by Aubin Mahe in
161a71f3 4258 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
4259 * data/glr.c: Comment fix.
4260 * doc/bison.1: Remove references. Also, mention "yacc".
4261
4262 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
4263 with -g option.
4264
4265 * src/parse-gram.y (declaration): Use enum "report_states" rather
4266 than its numeric value 1.
4267
4268 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
4269 opening a new one. This fixes Debian bug 165349, reported by
4270 Bruce Stephens.
4271
23f2d9dc
PE
42722002-12-24 Paul Eggert <eggert@twinsun.com>
4273
4274 Version 1.75e.
4275
4276 * Makefile.maint (cvs-update): Don't assume that the shell
4277 supports $(...), as Solaris sh doesn't.
4278
4279 * src/parse-gram.y (lloc_default): Remove test for empty
4280 nonterminals at the end, since it didn't change the result.
4281
42822002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
4283
4284 If the user does not define YYSTYPE as a macro, Bison now declares it
4285 using typedef instead of defining it as a macro. POSIX requires this.
4286 For consistency, YYLTYPE is also declared instead of defined.
4287
4288 %union directives can now have a tag before the `{', e.g., the
4289 directive `%union foo {...}' now generates the C code
4290 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
4291 The default union tag is `YYSTYPE', for compatibility with Solaris 9
4292 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
4293 instead of `yyltype'.
4294
4295 `yystype' and `yyltype' are now obsolescent macros instead of being
4296 typedefs or tags; they are no longer documented and will be
4297 withdrawn in a future release.
4298
4299 * data/glr.c (b4_location_type): Remove.
4300 (YYSTYPE): Renamed from yystype.
4301 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
4302 (struct YYLTYPE): Renamed from struct yyltype.
4303 (YYLTYPE): Renamed from yyltype.
4304 (yyltype, yystype): New (and obsolescent) macros,
4305 for backward compatibility.
4306 * data/yacc.c: Likewise.
4307
4308 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
4309 does not specify a union tag. This is for compatibility with
4310 Solaris 9 yacc.
4311
4312 * src/parse-gram.y (add_param): 2nd arg is now char * not char
4313 const *, since it is now modified by stripping surrounding { }.
4314 (current_braced_code): Remove.
4315 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
4316 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
4317 trailing " {...}". Now of type <chars>.
4318 (grammar_declaration): Adjust to bundled tokens.
4319 (code_content): Remove; stripping is now done by add_param.
4320 (print_token_value): Print contents of bundled tokens.
4321 (token_name): New function.
4322
4323 * src/reader.h (braced_code, current_braced_code): Remove.
4324 (token_name): New decl.
4325
4326 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
4327 token_type, not braced_code code_kind. All uses changed.
4328 (SC_PRE_CODE): New state, for scanning after a keyword that
4329 has (or usually has) an immediately-following braced code.
4330 (token_type): New local var, to keep track of which token type
4331 to return when scanning braced code.
4332 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 4333 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
4334 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
4335 instead of returning a token type immediately.
4336 (<INITIAL>"{"): Set token type.
4337 (<SC_BRACED_CODE>"}"): Use it.
4338 (handle_action_dollar, handle_action_at): Now returns bool
4339 indicating success. Fail if ! current_rule; this prevents a core dump.
4340 (handle_symbol_code_dollar, handle_symbol_code_at):
4341 Remove; merge body into caller.
4342 (handle_dollar, handle_at): Complain in invalid contexts.
4343
4344 * NEWS, doc/bison.texinfo: Document the above.
4345 * NEWS: Fix years and program names in copyright notice.
4346
879ca4f8
PE
43472002-12-17 Paul Eggert <eggert@twinsun.com>
4348
4349 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
4350 Reporting, Table of Symbols): Omit mentions of %lex-param and
4351 %parse-param from the documentation for now.
4352
1c5fe69d
PE
43532002-12-15 Paul Eggert <eggert@twinsun.com>
4354
4355 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
4356 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
4357 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
4358 disagreed with the Bison documentation. Bug
4359 reported by Andrew Walrond.
d600ee67 4360
1c5fe69d
PE
4361 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
4362 as the caller now does that.
4363 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
4364 (YYEMPTY): Parenthesize right hand side, since others use it.
4365 (yyparse): Don't assume that our generated code is the only code
4366 that sets yychar.
4367
d1de5372
PE
43682002-12-13 Paul Eggert <eggert@twinsun.com>
4369
4370 Version 1.75d.
4371
4372 POSIX requires a "yacc" command.
4373 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
4374 (MOSTLYCLEANFILES): Add yacc.
4375 (yacc): New rule.
1c5fe69d 4376 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
4377 as an alias for bison y.
4378
4379 * po/LINGUAS: Add da.
d600ee67 4380
d1de5372
PE
4381 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
4382 problem with latest <getopt.h>.
4383 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
4384
4385 * doc/fdl.texi: Upgrade to 1.2.
4386 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
4387 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
4388 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
4389 gnulib.
4390 * config/install-sh: Sync with autotools.
4391
4392 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 4393 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
4394 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
4395 locations are requested.
4396 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
4397 locations are requested.
4398
d0f3fe23
PE
43992002-12-12 Paul Eggert <eggert@twinsun.com>
4400
4401 Remove unportable casts and storage allocation tricks.
4402 While we're at it, remove almost all casts, since they
4403 usually aren't needed and are a sign of trouble.
4404
4405 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
4406
4407 * src/derives.c (derives_compute): Do not subtract NTOKENS from
4408 the pointer DSET returned by malloc; this isn't portable.
4409 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
4410 Similarly for DERIVES.
4411 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
4412 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
4413 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
4414
4415 * src/derives.c (derives_compute): Do not bother invoking
4416 int_of_rule_number, since rule numbers are integers.
4417
4418 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
4419 rather than XMALLOC (char, N).
4420
4421 * src/files.c (filename_split): Rewrite to avoid cast.
4422
4423 * src/gram.h (symbol_number_as_item_number,
4424 item_number_as_symbol_number, rule_number_as_item_number,
4425 item_number_as_rule_number):
4426 Now inline functions rather than macros, to avoid casts.
4427 * src/state.h (state_number_as_int): Likewise.
4428 * src/tables.c (state_number_to_vector_number,
4429 symbol_number_to_vector_number): Likewise.
4430
4431 * src/gram.h (int_of_rule_number): Remove; no longer used.
4432
4433 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
4434 since the resulting storage is always stored into.
4435
4436 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
4437 where it's needed.
4438
4439 * src/muscle_tab.c (muscle_m4_output):
4440 Now inline. Return bool, not int.
4441 * src/state.c (state_compare): Likewise.
4442 * src/symtab.c (symbol_check_defined,
4443 symbol_check_alias_consistency, symbol_pack, symbol_translation,
4444 hash_compare_symbol, hash_symbol):
4445 Likewise.
4446 * src/uniqstr.c (uniqstr_print): Likewise.
4447 * src/muscle_tab.c (muscle_m4_output_processor):
4448 New function, to avoid casts.
4449 * src/state.c (state_comparator, stage_hasher): Likewise.
4450 * src/symtab.c (symbol_check_defined_processor,
4451 symbol_check_alias_consistency_processor, symbol_pack_processor,
4452 symbol_translation_processor, hash_symbol_comparator,
4453 hash_symbol_hasher): Likewise.
4454 * src/uniqstr.c (uniqstr_print_processor): Likewise.
4455 * src/muscle_tab.c (muscles_m4_output):
4456 Use new functions instead of casting old functions unportably.
4457 * src/state.c (state_hash_new): Likewise.
4458 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
4459 symbols_token_translations_init):
4460 Likewise.
4461 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
4462
4463 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
4464 var instead of casting to long, to avoid casts.
4465 (prepare_states): Use MALLOC rather than alloca, so that we don't
4466 have to worry about alloca.
4467 * src/state.c (state_hash_lookup): Likewise.
4468
4469 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
4470 local var instead of casting to unsigned char, to avoid casts.
4471
4472 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
4473 STATE_ALLOC): Remove.
4474 (transitions_new, errs_new, reductions_new, state_new): Use malloc
4475 rather than calloc, and use offsetof to avoid allocating slightly
4476 too much storage.
4477 (state_new): Initialize all members.
4478
4479 * src/state.c (state_hash): Use unsigned accumulator, not signed.
4480
4481 * src/symtab.c (symbol_free): Remove; unused.
4482 (symbol_get): Remove cast in lhs of assignment.
4483 (symbols_do): Now static. Accept generic arguments, not
4484 hashing-related ones.
4485
4486 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
4487 (symbol_processor): Remove.
4488 (symbols_do): Remove decl; now static.
4489
4490 * src/system.h (alloca): Remove; decl no longer needed.
4491 (<stddef.h>): Include, for offsetof.
4492 (<inttypes.>, <stdint.h>): Include if available.
4493 (uintptr_t): New type, if system lacks it.
4494 (CALLOC, MALLOC, REALLOC): New macros.
4495 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
4496 new macros.
4497
4498 * src/tables.c (table_size): Now int, to pacify GCC.
4499 (table_grow, table_ninf_remap): Use signed table size.
4500 (save_row): Don't bother initializing locals when not needed.
4501 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
4502 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
4503
4504 * src/vcg.h: Correct misspellings.
4505
4506 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
4507
4508
4509 * src/getargs.c (getargs): Don't assume EOF == -1.
4510
26b4a969
PE
45112002-12-09 Paul Eggert <eggert@twinsun.com>
4512
4513 Change identifier spellings to avoid collisions with names
4514 that are reserved by POSIX.
4515
4516 Don't use names ending in _t, since POSIX reserves them.
4517 For consistency, remove _e and _s endings -- they're weren't
4518 needed to remove ambiguity. All uses changed.
4519 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
4520 turn was just renamed from struniq_t.
4521 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
4522 which in turn was just renamed from struniq_processor_t.
4523 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
4524 in turn was renamed from hash_compare_struniq_t.
4525 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
4526 (state_list): Renamed from state_list_t.
4527 * src/assoc.h (assoc): Renamed from assoc_t.
4528 * src/conflicts.c (enum conflict_resolution): Renamed from
4529 enum conflict_resolution_e.
4530 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
4531 (rule_list): Renamed from rule_list_t.
4532 * src/getargs.h (enum trace): Renamed from enum trace_e.
4533 (enum report): Renamed from enum report_e.
4534 * src/gram.h (item_number): Renamed from item_number_t.
4535 (rule_number): Renamed from rule_number_t.
4536 (struct rule_s): Remove the "rule_s" part; not used.
4537 (rule): Renamed from rule_t.
4538 (rule_filter): Renamed from rule_filter_t.
4539 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
4540 (goto_list): Renamed from goto_list_t.
4541 * src/lalr.h (goto_number): Renamed from goto_number_t.
4542 * src/location.h (location): Renamed from location_t.
4543 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
4544 and moved here from:
4545 * src/muscle_tab.h (muscle_entry_t): here.
4546 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
4547 (rule_list): Renamed from rule_list_t.
4548 * src/print_graph.c (static_graph): Renamed from graph.
4549 * src/reader.h (braced_code): Renamed from braced_code_t.
4550 Remove brace_code_e tag.
4551 * src/relation.h (relation_node): Renamed from relation_node_t.
4552 (relation_nodes): Renamed from relation_nodes_t.
4553 (relation): Renamed from relation_t.
4554 * src/state.h (state_number): Renamed from state_number_t.
4555 (struct state): Renamed from struct state_s.
4556 (state): Renamed from state_t.
4557 (transitions): Renamed from transitions_t. Unused (and
4558 misspelled) transtion_s tag removed.
4559 (errs): Renamed from errs_t. Unused errs_s tag removed.
4560 (reductions): Renamed from reductions_t. Unused tag
4561 reductions_s removed.
4562 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
4563 (struct symbol_list): Renamed from struct symbol_list_s.
4564 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
4565 (struct symbol): Renamed from struct symbol_s.
4566 (symbol): Renamed from symbol_t.
4567 * src/tables.c (vector_number): Renamed from vector_number_t.
4568 (action_number): Renamed from action_t.
4569 * src/tables.h (base_number): Renamed from base_t.
4570 * src/vcg.h (enum color): Renamed from enum color_e.
4571 (enum textmode): Renamed from enum textmode_e.
4572 (enum shape): Renamed from enum shape_e.
4573 (struct colorentry): Renamed from struct colorentry_s.
4574 (struct classname): Renamed from struct classname_s.
4575 (struct infoname): Renamed from struct infoname_s.
4576 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
4577 (enum decision): Renamed from enum decision_e.
4578 (enum orientation): Renamed from enum orientation_e.
4579 (enum alignment): Renamed from enum alignment_e.
4580 (enum arrow_mode): Renamed from enum arrow_mode_e.
4581 (enum crossing_type): Renamed from enum crossing_type_e.
4582 (enum view): Renamed from enum view_e.
4583 (struct node): Renamed from struct node_s.
4584 (node): Renamed from node_t.
4585 (enum linestyle): Renamed from enum linestyle_e.
4586 (enum arrowstyle): Renamed from enum arrowstyle_e.
4587 (struct edge): Renamed from struct edge.
4588 (edge): Renamed from edge_t.
4589 (struct graph): Renamed from struct graph_s.
4590 (graph): Renamed from graph_t.
4591 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
4592 Rename value_t -> value.
4593 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
4594 value_t_as_yystype -> value_as_yystype.
4595
4596 Don't include <errno.h> in the mainstream code, since it
4597 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
4598 * lib/get-errno.c, lib/get-errno.h: New files.
4599 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
4600 get-errno.c.
4601 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
4602 * src/output.c (output_skeleton): Likewise.
4603 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
4604 instead of errno.
4605 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
4606 Likewise.
4607 (handle_action_dollar, handle_action_at): Likewise.
4608 * src/system.h: Do not include <errno.h>.
4609 (TAB_EXT): Renamed from EXT_TAB.
4610 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
4611
4612 Avoid str[a-z]*, since <string.h> reserves that name space.
4613 Change all instances of "struniq" in names to "uniqstr", and
4614 likewise for "STRUNIQ" and "UNIQSTR".
4615 * src/uniqstr.c: Renamed from src/struniq.c.
4616 * src/uniqstr.h: Renamed from src/struniq.h.
4617 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
4618 * src/files.c (strsuffix): Remove; unused.
4619 (concat2): Renamed from stringappend. Now static.
4620 * src/files.h (strsuffix, stringappend): Remove; unused.
4621 * src/parse-gram.y (<chars>): Renamed from <string>.
4622 (<uniqstr>): Renamed from <struniq>.
4623 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
4624 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
4625 (struct graph_s.expand): Renamed from struct graph_s.stretch.
4626 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
4627 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
4628 (N_EXPAND): Renamed from N_STRETCH.
4629
4630 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
4631 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
4632 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
4633 Remove; unused.
4634 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
4635 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
4636 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
4637 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
4638 (BASE_MAXIMUM): Renamed from BASE_MAX.
4639 (BASE_MINIMUM): Renamed from BASE_MIN.
4640 (ACTION_MAX): Remove; unused.
4641 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
4642 Unnecessary casts removed from above defines.
4643
4644
4645 Fix misspelling in names.
4646 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
4647 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
4648 G_NODE_ALIGNEMENT.
4649
4650
4651 * lib/timevar.c (timevar_report): Renamed from time_report,
4652 for consistency with other names.
4653 * lib/timevar.h (timevar_report): New decl.
4654 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
4655
4656
4657 Sort include-file uses.
4658
4659 Reorder all include files under src to be in the order "system.h".
4660 then the ../lib include files in angle brackets (alphabetized),
4661 then the . include files in double-quotes (alphabetized). Fix
4662 dependency breakages encountered in this process, as follows:
4663 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
4664 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
4665 * src/state.h: Include "symtab.h".
4666
996b1c7e
PE
46672002-12-08 Paul Eggert <eggert@twinsun.com>
4668
4669 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
4670 since this causes problems when __file__ contains character
4671 sequences like "@" that are treated specially by src/scan-skel.l.
4672 Instead, just use the file's basename. This fixes the bug
4673 reported by Martin Mokrejs in
161a71f3 4674 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 4675
e19c4e5d
PE
46762002-12-06 Paul Eggert <eggert@twinsun.com>
4677
4678 Add support for rules that do not have trailing semicolons, as
4679 POSIX requires. Improve the quality of locations in Bison
4680 diagnostics.
26b4a969 4681
e19c4e5d
PE
4682 * src/location.c: Include <quotearg.h>.
4683 (empty_location): Now const.
4684 (location_print): New function. Follow the recommendation of the
4685 GNU Coding Standards for locations that span file boundaries.
4686 * src/location.h: Do not include <quotearg.h>; no longer needed.
4687 (boundary): New type.
4688 (location_t): Use it. This allows locations to span file boundaries.
4689 All member uses changed: file -> start.file or end.file (as needed),
4690 first_line -> start.line, first_column -> start.column,
4691 last_line -> end.line, last_column -> end.column.
4692 (equal_boundaries): New function.
4693 (LOCATION_RESET, LOCATION_STEP): Remove.
4694 (LOCATION_PRINT): Remove. All callers changed to use location_print.
4695 (empty_location): Now const.
4696 (location_print): New decl.
4697 * src/parse-gram.y (lloc_default): New function, which handles
4698 empty locations more accurately.
4699 (YYLLOC_DEFAULT): Use it.
4700 (%token COLON): Remove.
4701 (%token ID_COLON): New token.
26b4a969 4702 (rules): Use it.
e19c4e5d
PE
4703 (declarations, rules): Remove trailing semicolon.
4704 (declaration, rules_or_grammar_declaration):
4705 Allow empty (";") declaration.
4706 (symbol_def): Remove empty actions; no longer needed.
4707 (rules_or_grammar_declaration): Remove trailing semicolon.
4708 (semi_colon.opt): Remove.
4709 * src/reader.h: Include location.h.
4710 (scanner_cursor): New decl.
4711 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
4712 rolling our own.
4713 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
4714 of *loc.
4715 (STEP): Remove. No longer needed, now that adjust_location does
4716 the work. All uses removed.
4717 (scanner_cursor): New var.
4718 (adjust_location): Renamed from extend_location. It now sets
4719 *loc and adjusts the scanner cursor. All uses changed.
4720 Don't bother testing for CR.
4721 (handle_syncline): Remove location arg; now updates scanner cursor.
4722 All callers changed.
4723 (unexpected_end_of_file): Now accepts start boundary of token or
4724 comment, not location. All callers changed. Update scanner cursor,
4725 not the location.
4726 (SC_AFTER_IDENTIFIER): New state.
4727 (context_state): Renamed from c_context. All uses changed.
4728 (id_loc, code_start, token_start): New local vars.
4729 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
4730 processing of Yacc white space and equivalents here.
4731 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
4732 instead of returning ID immediately, since we need to search for
4733 a subsequent colon.
4734 (<INITIAL>"'", "\""): Save token_start.
4735 (<INITIAL>"%{", "{", "%%"): Save code_start.
4736 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
4737 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
4738 BEGIN context_state at end, not INITIAL.
4739 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
4740 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
4741 Return correct token start.
4742 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
4743 the start of a character, string or multiline comment is found.
4744 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
4745 Reduction): Adjust reported locations to match the more-precise
4746 results now expected.
4747 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
4748 * tests/reduce.at (Useless Rules, Reduced Automaton,
4749 Underivable Rules): Likewise.
4750 * tests/regression.at (Invalid inputs): No longer `expecting ";"
4751 or "|"' now that so many other tokens are allowed by the new grammar.
4752
4753 * src/complain.h (current_file): Remove duplicate decl;
4754 current_file is now owned by files.h.
4755 * src/complain.c, src/scan-gram.l: Include files.h.
4756
47572002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 4758
e19c4e5d
PE
4759 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
4760 promotes to int; it might be unsigned int.
4761 * data/yacc.c (yy_reduce_print): Likewise.
4762
4763 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
4764 be #defined in the prologue, not in the Bison declarations.
4765 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 4766
b64755e3
PE
47672002-12-02 Paul Eggert <eggert@twinsun.com>
4768
4769 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
4770 * lib/strtoul.c: New file, from gnulib.
4771 This fixes a porting bug reported by Peter Klein in
161a71f3 4772 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 4773
6e746484
PE
47742002-11-30 Paul Eggert <eggert@twinsun.com>
4775
b64755e3
PE
4776 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
4777 and put only a forward declaration in the prologue. This is for
4778 consistency with the other scanner helper functions.
4779
6ba55592
PE
4780 Type clashes now generate warnings, not errors, since it
4781 appears that POSIX may allow some grammars with type clashes.
4782 * src/reader.c (grammar_current_rule_check): Warn about
4783 type clashes instead of complaining.
4784 * tests/input.at (Type Clashes): Expect warnings, not complaints.
4785
6e746484
PE
4786 Add Yacc library, since POSIX requires it.
4787 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
4788 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
4789 * lib/main.c, lib/yyerror.c: New files.
4790
4791 gram_error can be static; it need not be extern.
4792 * src/reader.h (gram_error): Remove decl.
4793 * src/parse-gram.y (gram_error): Now static. Add static decl.
4794 (print_token_value): Omit parameter names from forward decl,
4795 for consistency.
4796
88510f9c
PE
47972002-11-29 Paul Eggert <eggert@twinsun.com>
4798
6e746484
PE
4799 * doc/bison.texinfo: Emphasize that yylex and yyerror must
4800 be declared before being used. E.g., one should typically
4801 declare them in the prologue. Use GNU coding style in examples.
4802 Put "const" consistently after the type it modifies. Mention
4803 that C99 supports "inline". Mention that yyerror traditionally
4804 returns "int".
4805
88510f9c
PE
4806 %parse-param and %lex-param now take just one argument, the
4807 declaration; the argument name is deduced from the declaration.
4808
4809 * doc/bison.texinfo (Parser Function, Pure Calling, Error
4810 Reporting, Table of Symbols): Document this.
4811 * src/parse-gram.y (add_param): New function.
4812 (COMMA): Remove.
4813 (declaration): Implement new rule for %parse-param and %lex-param.
4814 * src/scan-gram.l: "," now elicits a warning, rather than being
4815 a token; this is more compatible with byacc.
4816 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
4817
bb92250c
PE
48182002-11-27 Paul Eggert <eggert@twinsun.com>
4819
4820 Rename identifiers to avoid real and potential collisions.
4821
4822 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
4823 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 4824 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
4825 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4826 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
4827 * src/parse-gram.y (print_token_value): Renamed from yyprint.
4828 All uses changed.
4829 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
4830 The name "yycontrol" violates the name space rules, and this stuff
4831 wasn't being used anyway.
4832 (input): Remove action; this stuff wasn't being used.
4833 (gram_error): Rename local variable yylloc -> loc.
4834 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
4835 (YY_DECL): Don't use "yy" at start of local variables.
4836 All uses changed, e.g., yylloc -> loc.
4837 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
4838 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
4839 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
4840 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
4841
4842 * src/parse-gram.y (gram_error): loc is now const *.
4843 * src/reader.h (gram_error): Likewise.
4844
3af4feb2
PE
48452002-11-24 Paul Eggert <eggert@twinsun.com>
4846
4847 Version 1.75c.
4848
4849 * tests/actions.at (Actions after errors): Use an output format
4850 more similar to that of the Printers and Destructors test.
4851 Test the position of the ';' token too.
4852 (Printers and Destructors): Likewise.
4853 (Printers and Destructors: %glr-parser): Remove for now, to avoid
4854 unnecessarily alarming people when the test fails.
4855
4856 * data/yacc.c (yyerrlab1): Move this label down, so that the
4857 parser does not discard the lookahead token if the user code
4858 invokes YYERROR. This change is required for POSIX conformance.
4859
4860 * lib/error.c: Sync with gnulib.
4861
48622002-11-22 Paul Eggert <eggert@twinsun.com>
4863
4864 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
4865 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
4866 * lib/xmalloc.c: Likewise.
26b4a969 4867
58004308
PE
48682002-11-20 Paul Eggert <eggert@twinsun.com>
4869
4870 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
4871
48722002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 4873
58004308
PE
4874 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
4875 should use `if (! x) abort ();' rather than `assert (x);', and
4876 anyway it's one less thing to worry about configuring.
4877
4878 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
4879 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
4880 and replace all instances of assert with abort.
4881 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
4882 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
4883
4884 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
4885 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
4886 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
4887 hash_find_entry, hash_rehash, hash_insert): Likewise.
4888 * src/conflicts.c (resolve_sr_conflict): Likewise.
4889 * src/lalr.c (set_goto_map, map_goto): Likewise.
4890 * src/nullable.c (nullable_compute): Likewise.
4891 * src/output.c (prepare_rules, token_definitions_output): Likewise.
4892 * src/reader.c (packgram, reader): Likewise.
4893 * src/state.c (state_new, state_free, state_transitions_set,
4894 state_reduction_find): Likewise.
4895 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
4896 symbol_pack): Likewise.
4897 * src/tables.c (conflict_row, pack_vector): Likewise.
4898 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
4899 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
4900 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
4901 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
4902
4903 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
4904 (ARGMATCH_CONSTRAINT): New macro.
4905 (ARGMATCH_ASSERT): Use it.
4906
4907 * src/system.h (verify): New macro.
4908 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
4909 rather than assert.
4910 * src/tables.c (tables_generate): Likewise.
4911
4912 * src/struniq.c (struniq_assert): Now returns void, and aborts
4913 if the assertion is false.
4914 (struniq_assert_p): Remove.
4915 * src/struniq.h: Likewise.
4916
76ae8198
PE
49172002-11-18 Paul Eggert <eggert@twinsun.com>
4918
4919 * data/glr.c (yygetLRActions): Replace `yyindex' with
4920 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
4921 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 4922 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 4923
d3c4e709
AD
49242002-11-18 Akim Demaille <akim@epita.fr>
4925
4926 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
4927 space.
4928 From Tim Van Holder.
4929
8d8a7238
PE
49302002-11-17 Paul Eggert <eggert@twinsun.com>
4931
4932 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
4933 to "SyntaxError" for consistency with my 2002-11-15 change.
4934
4935 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
4936 not define to {}, since this breaks the common use of `YYDPRINTF
4937 ((...));' if a single statement is desired (e.g. before `else').
4938 Work around GCC warnings by surrounding corresponding calls with
4939 {} if needed.
4940 (yyhasResolvedValue): Remove unused function.
4941 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
4942 loop body.
4943 (yyreportSyntaxError): Renamed from yyreportParseError.
4944 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
4945 All uses changed.
4946 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
4947 extern when possible. Remove unused initializations.
4948
b0937b22
AD
49492002-11-16 Akim Demaille <akim@epita.fr>
4950
4951 Augment the similarity between GLR and LALR traces.
4952
4953 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
4954 (YY_REDUCE_PRINT): New.
4955 (yyparse): Use them.
4956 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
4957 YYDPRINT here.
4958 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
4959 state reached after the reduction/recovery, since...
4960 (yyparse, yyprocessOneStack): Report the state we are entering in.
4961
c5e3e510
AD
49622002-11-16 Akim Demaille <akim@epita.fr>
4963
4964 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
4965 Add support for --trace=skeleton.
4966 * src/scan-skel.l: %option debug.
4967 Scan strings of non-@ or \n instead of character by character.
4968 (scan_skel): Handle trace_skeleton.
4969 (QPUTS): New.
4970 (@output_parser_name@, @output_header_name@): ``Restore'' their
4971 support (used to be M4 macros).
4972 * data/yacc.c: Quote larger chunks, a la glr.c.
4973 * data/lalr1.cc: Likewise.
4974 The header guards are no longer available, so use some other
4975 string than `YYLSP_NEEDED'.
4976
4c6cc1db
AD
49772002-11-16 Akim Demaille <akim@epita.fr>
4978
4979 Make the ``Printers and Destructors'' test more verbose, taking
4980 `yacc.c''s behavior as (possibly wrong) reference.
4981
4982 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
4983 instead of fprint on stdout.
4984 Set and report the last_line of the symbols.
4985 Consistently display values and locations.
4986
6d9e8019
PE
49872002-11-16 Paul Eggert <eggert@twinsun.com>
4988
4989 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
4990
6e649e65
PE
49912002-11-15 Paul Eggert <eggert@twinsun.com>
4992
b25d88f6
PE
4993 * tests/actions.at (Actions after errors): New test case.
4994
6e649e65
PE
4995 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
4996 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
4997 tests/action.at, tests/calc.at, tests/conflicts.at,
4998 tests/cxx-type.at, tests/regression.at:
4999 "parse error" -> "syntax error" for POSIX compatibility.
5000 "parsing stack overflow..." -> "parser stack overflow" so
5001 that code matches Bison documentation.
5002
0f39aab9
AD
50032002-11-15 Akim Demaille <akim@epita.fr>
5004
5005 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
5006 take two BRACED_CODE, not two string_content.
5007 Free the scanner's obstack when we are done.
5008 (code_content): New.
5009 * tests/calc.at: Adjust.
5010 * doc/bison.texinfo: Adjust.
5011 Also, make sure to include the `,' for these declarations.
5012
761c1926
AD
50132002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
5014
5015 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
5016 definition; avoids potential autoreconf problems.
5017
b0f98b10
AD
50182002-11-15 Akim Demaille <akim@epita.fr>
5019
5020 Always check the value returned by yyparse.
5021
5022 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
5023 returned by yyparse.
5024 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
5025 Adjust calls.
5026 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
5027 returned by yyparse.
5028
970785f1
PH
50292002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5030
5031 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
5032 on input.at test.
5033
8fcc7db1
PE
50342002-11-14 Paul Eggert <eggert@twinsun.com>
5035
7ec1b48e
PE
5036 * src/output.c (output_skeleton): Call xfopen instead of
5037 duplicating xfopen's body.
5038
cfff7583 5039 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 5040 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 5041
8fcc7db1
PE
5042 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
5043 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
5044 Group compiler. Instead, use "$CC -E bar.c". Include the .h
5045 file twice in the grammar, as an extra check.
5046
5047 * tests/input.at (Torturing the Scanner): Surround the
5048 backslash-newline tests with "#if 0", to make it less likely that
5049 we'll run into compiler bugs. Bring back solitary \ inside
5050 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 5051 test backslash-newline in C character constant.
8fcc7db1 5052
4e8d992c
AD
50532002-11-14 Akim Demaille <akim@epita.fr>
5054
5055 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
5056 status of the compiler.
f32b346d 5057 Calling `exit 1' is no longer needed.
4e8d992c
AD
5058 Reported by Nelson H. F. Beebe.
5059
9501dc6e
AD
50602002-11-14 Akim Demaille <akim@epita.fr>
5061
5062 * tests/atlocal.in (CPPFLAGS): We have config.h.
5063 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
5064 New.
5065 * tests/actions.at, tests/calc.at, tests/conflicts.at,
5066 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
5067 * tests/regression.at, tests/torture.at: Use them for all the
5068 grammars that are to be compiled.
5069 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
5070 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
5071 * doc/bison.texinfo (GLR Parsers): Document `inline'.
5072
18b519c0
AD
50732002-11-14 Akim Demaille <akim@epita.fr>
5074
5075 * doc/bison.texinfo: Various formatting changes (alignments in
5076 samples, additional @group/@end group, GCS in samples.
5077 Use @deffn instead of simple @table to define the directives,
5078 macros, variables etc.
5079
9a86cdb9
PE
50802002-11-13 Paul Eggert <eggert@twinsun.com>
5081
daa33def 5082 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 5083 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 5084
daa33def 5085 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 5086 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
5087 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
5088 * tests/headers.at (export YYLTYPE): Likewise.
5089
5090 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 5091 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 5092
9a86cdb9
PE
5093 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
5094 comments, since they're not portable. Use GNU coding style.
5095
9c1e26bd
AD
50962002-11-13 Akim Demaille <akim@epita.fr>
5097
5098 * data/yacc.c: Leave bigger chunks of quoted text.
5099 (YYDSYMPRINTF): New.
5100 Use it to report symbol activities.
5101 * data/glr.c (YYDSYMPRINTF): New.
5102 Use it.
5103
87f721cc
PE
51042002-11-12 Paul Eggert <eggert@twinsun.com>
5105
5106 Version 1.75b.
5107
5108 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
5109 (yyglrReduce): Return yyok, not 0.
5110 This should avoid the enumerated-type warnings reported
464c6927 5111 by Nelson H. F. Beebe in
161a71f3 5112 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
5113
5114 * lib/bbitset.h (BITSET_INLINE): Remove.
5115 * lib/bitset.h [! BITSET_INLINE]: Remove.
5116 (bitset_set, bitset_reset, bitset_test): Rename local vars
5117 to avoid shadowing warnings by GCC.
5118
5119 * data/glr.c (inline): Remove #define. It's the user's
5120 responsibility to #define it away, just like 'const'.
464c6927 5121 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 5122 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 5123
87f721cc
PE
5124 * Makefile.maint (po-check): Scan .l and .y files instead of the
5125 .c and the .h files that they generate. This fixes the bug
5126 reported by Tim Van Holder in:
161a71f3 5127 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
5128 Look for N_ as well as for _. Try to avoid matching #define for
5129 N_ and _.
5130 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
5131 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
5132 * src/scan-gram.l: Revamp regular expressions so that " and '
5133 do not confuse xgettext.
5134
5135 * src/struniq.h (struniq_new): Do not declare the return type
5136 to be 'const'; this violates the C standard.
5137 * src/struniq.c (struniq_new): Likewise.
5138
be14ade5
AD
51392002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
5140
5141 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
5142 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
5143 linker.
5144
05291fbc
AD
51452002-11-12 Akim Demaille <akim@epita.fr>
5146
5147 * Makefile.maint: Sync with Autoconf:
5148 (local_updates): New.
5149
1f5fd52e
AD
51502002-11-12 Akim Demaille <akim@epita.fr>
5151
5152 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
5153
283f1e64
AD
51542002-11-12 Akim Demaille <akim@epita.fr>
5155
5156 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
5157 locations.
5158
886b69d1
AD
51592002-11-12 Akim Demaille <akim@epita.fr>
5160
5161 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
5162 not yyvalue.
5163
3df37415
AD
51642002-11-12 Akim Demaille <akim@epita.fr>
5165
5166 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
5167 Use it to test the GLR parser.
5168
7bd6c77e
AD
51692002-11-12 Akim Demaille <akim@epita.fr>
5170
5171 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
5172 defines it.
5173 * data/glr.c (yystos): New.
5174 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
5175 (YYDSYMPRINT): New.
5176 (yyval): Don't define it, it is handled via M4.
5177 (yyrecoverParseError): Free verbosely the discarded symbols.
5178 * data/yacc.c (yysymprint): Remove, rather...
5179 (b4_yysymprint_generate): invoke.
5180 * data/c.m4 (b4_yysymprint_generate): New.
5181 Accept pointers as arguments, as opposed to the version from
5182 yacc.c.
5183 (b4_yydestruct_generate): Likewise.
5184 * tests/cations.at (Printers and Destructors): Use Bison directives
5185 instead of CPP macros.
5186 Don't rely on internal details.
5187
b0400cc6
AD
51882002-11-12 Akim Demaille <akim@epita.fr>
5189
5190 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
5191 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
5192 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
5193 it against YYEMPTY and so forth), work on yytoken (i.e., set
5194 it to YYEMPTY etc.).
5195 (yydestruct): Replace with a b4_yydestruct_generate invocation.
5196 (b4_symbol_actions): Remove.
5197 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
5198 for 0, end-of-input.
5199
72f889cc
AD
52002002-11-12 Akim Demaille <akim@epita.fr>
5201
5202 * doc/bison.texinfo (Destructor Decl): New.
5203
b1ae9233
AD
52042002-11-12 Akim Demaille <akim@epita.fr>
5205
5206 * src/tables.c (tables_generate): Use free for pointers that
5207 cannot be NULL, not XFREE.
5208 (pack_vector): Use assert, not fatal, for bound violations.
5209 * src/state.c (state_new): Likewise.
5210 * src/reader.c (reader): Likewise.
5211 * src/lalr.c (set_goto_map): Likewise.
72f889cc 5212 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
5213 the file name.
5214
7ec2d4cd
AD
52152002-11-12 Akim Demaille <akim@epita.fr>
5216
5217 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
5218 Restore.
5219 * src/scan-gram.l (last_string): Is global to the file, not to
5220 yylex.
5221 * src/parse-gram.y (input): Don't append the epilogue here,
5222 (epilogue.opt): do it here, and free the scanner's obstack.
5223 * src/reader.c (epilogue_set): Rename as...
5224 (epilogue_augment): this.
5225 * data/c.m4 (b4_epilogue): Defaults to empty.
5226
573a6cd3
AD
52272002-11-12 Akim Demaille <akim@epita.fr>
5228
5229 * src/getargs.c (long_options): Remove duplicates.
5230 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
5231 Remove.
5232 * doc/bison.rnh: Remove.
5233 * doc/bison.texinfo (VMS Invocation): Remove.
5234
95612cfa
AD
52352002-11-12 Akim Demaille <akim@epita.fr>
5236
5237 * src/struniq.h, src/struniq.c (struniq_t): Is const.
5238 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
5239
5240 Use struniq for symbols.
5241
5242 * src/symtab.h (symbol_t): The tag member is a struniq.
5243 (symbol_type_set): Adjust.
5244 * src/symtab.c (symbol_new): Takes a struniq.
5245 (symbol_free): Don't free the tag member.
5246 (hash_compare_symbol_t, hash_symbol_t): Rename as...
5247 (hash_compare_symbol, hash_symbol): these.
5248 Use the fact that tags as struniqs.
5249 (symbol_get): Use struniq_new.
5250 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
5251 Returns a strniq.
5252 * src/reader.h (merger_list, grammar_currentmerge_set): The name
5253 and type members are struniqs.
5254 * src/reader.c (get_merge_function)
5255 (grammar_current_rule_merge_set): Adjust.
5256 (TYPE, current_type): Are struniq.
5257
5258 Use struniq for file names.
5259
5260 * src/files.h, src/files.c (infile): Split into...
5261 (grammar_file, current_file): these.
5262 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
5263 * src/reduce.c (reduce_print): Likewise.
5264 * src/getargs.c (getargs): Likewise.
5265 * src/complain.h, src/complain.c: Likewise.
5266 * src/main.c (main): Call struniqs_new early enough to use it for
5267 file names.
5268 Don't free the input file name.
5269
3e6656f9
AD
52702002-11-12 Akim Demaille <akim@epita.fr>
5271
5272 * src/symtab.c (symbol_free): Remove dead deactivated code:
5273 type_name are properly removed.
5274 Don't use XFREE to free items that cannot be NULL.
5275 * src/struniq.h, src/struniq.c: New.
5276 * src/main.c (main): Initialize/free struniqs.
5277 * src/parse-gram.y (%union): Add astruniq member.
5278 (yyprint): Adjust.
5279 * src/scan-gram.l (<{tag}>): Return a struniq.
5280 Free the obstack bit that used to store it.
5281 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
5282
7672019c
PE
52832002-11-11 Paul Eggert <eggert@twinsun.com>
5284
5285 Revamp to fix many (but not all) of the C- and M4-related quoting
5286 problems. Among other things, this fixes the Bison bug reported
5287 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 5288 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
5289
5290 Use new @ escapes consistently. Represent brackets with @{ and @}
5291 rather than @<:@ and @:>@, since this works a bit better with dumb
5292 editors like vi. Represent @ with @@, since @ is now consistently
5293 an escape. Use @oline@ and @ofile@ rather than __oline__ and
5294 __ofile__, to avoid unexpected expansions. Similarly, use @output
5295 rather than #output.
5296
5297 * data/c.m4 (b4_copyright): Omit file name from comment, since
5298 the file name could contain "*/".
5299 (b4_synclines_flag): Don't quote the 2nd argument; it should already
5300 be quoted. All uses changed.
5301
5302 * data/glr.c: Use new @ escapes consistently.
5303 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
5304 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
5305 Remove, since they couldn't handle arbitrary characters in file
5306 names.
5307 * data/lalr1.cc: Likewise.
5308 * data/yacc.c: Likewise.
5309
5310 * src/files.c (output_infix): Remove; all uses removed.
5311 * src/files.h: Likewise.
5312
5313 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
5314 mishandled funny characters in file names, and anyway it isn't
5315 needed any more.
5316 * data/yacc.c: Likewise.
5317 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
5318
5319 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
5320 * data/yacc.c: Likewise.
5321
5322 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
5323 strings now.
5324 (muscle_init): Quote filename as a C string.
5325 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
5326 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
5327 * src/output.c (escaped_file_name_output): New function.
5328 (prepare_symbols): Quote tokens for M4.
5329 (prepare): Don't insert output_infix, output_prefix,
5330 output_parser_name, output_header_name; this is now down by scan-skel.
5331 Insert skeleton as a C string.
5332
5333 * src/output.c (user_actions_output, symbol_destructors_output,
5334 symbol_printers_output): Quote filenames for C and M4.
5335 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5336
5337 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
5338 escapes other than \\ and \'; this simplifies the code.
5339 (<SC_STRING>): Likewise, for \\ and \".
5340 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
5341 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
5342 Use new escapes @{ and @} for [ and ].
5343
5344 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
5345 them with auto vars.
5346 Switch to new escape scheme, where @ is the escape character uniformly.
5347 Abort if a stray escape character is found. Avoid unbounded input
5348 buffer when parsing non-escaped text.
5349
5350 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
5351 __oline__, #output, $@, and @{ do not have unintended meanings.
5352
acea4f3b
PE
53532002-11-09 Paul Eggert <eggert@twinsun.com>
5354
5355 Fix the test failure due to GCC warnings described in
161a71f3 5356 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
5357 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
5358 evaluate to 0 if it's impossible for NINF to be in the respective
5359 table.
5360 (yygetLRActions, yyrecoverParseError): Use them.
5361
5362 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
5363 counted in the token inserted at end of file. Now takes
5364 location_t *, not location_t, so that the location can be
5365 adjusted. All uses changed.
5366
5367 * tests/regression.at (Invalid inputs): Adjust wording in
5368 diagnostic to match the new behavior.
5369
5370 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
5371 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
5372 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
5373 abort ();'. This reduces the runtime of the "Many lookaheads"
5374 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
5375 GCC 3.2.
5376
20ef1ad5
PE
53772002-11-07 Paul Eggert <eggert@twinsun.com>
5378
5379 * src/parse-gram.y (CHARACTER): Remove unused token.
5380 All uses removed.
5381
5382 * src/scan-gram.l: Remove stack option. We no longer use the
5383 stack, since the stack was never deeper than 1; instead, use the
5384 new auto var c_context to record the stacked value.
5385
5386 Remove nounput option. At an unexpected end of file, we now unput
5387 the minimal input necessary to end cleanly; this simplifies the
5388 code.
5389
5390 Avoid unbounded token sizes where this is easy.
5391
5392 (unexpected_end_of_file): New function.
5393 Use it to systematize the error message on unexpected EOF.
5394 (last-string): Now auto, not static.
5395 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
5396 (scanner_last_string_free): Remove; not used.
5397 (percent_percent_count): Move decl to just before use.
5398 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
5399 not the (never otherwised-used) CHARACTER.
5400
93724f13
AD
54012002-11-07 Akim Demaille <akim@epita.fr>
5402
5403 Let yyerror always receive the msg as last argument, so that
5404 yyerror can be variadic.
5405
5406 * data/yacc.c (b4_yyerror_args): New.
5407 Use it when calling yyerror.
5408 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
5409 Use it when calling yyerror.
5410 * doc/bison.texinfo (Error Reporting): Adjust.
5411 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
5412 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
5413
6e40b4eb
AD
54142002-11-06 Akim Demaille <akim@epita.fr>
5415
5416 #line should have quoted strings.
5417 Ideally, this should be done by m4_quotearg.
5418
5419 * src/scan-skel.l: Include quotearg.h.
5420 Quote __ofile__.
5421 * src/output.c (symbol_printers_output)
5422 (symbol_destructors_output): Quote the file name.
5423
2dfbfc12
AD
54242002-11-06 Akim Demaille <akim@epita.fr>
5425
5426 * tests/regression.at (Invalid inputs): Adjust to the recent
5427 messages.
5428
437c2d80
AD
54292002-11-06 Akim Demaille <akim@epita.fr>
5430
5431 Restore --no-lines.
5432 Reported by Jim Kent.
5433
5434 * data/c.m4 (b4_syncline): New.
5435 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
5436 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
5437 * src/output.c (user_actions_output): Likewise.
5438 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 5439 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 5440
900c5db5
AD
54412002-11-06 Akim Demaille <akim@epita.fr>
5442
5443 * src/main.c (main): Free `infile'.
5444 * src/scan-gram.l (handle_syncline): New.
5445 Recognize `#line'.
5446 * src/output.c (user_actions_output, symbol_destructors_output)
5447 (symbol_printers_output): Use the location's file name, not
5448 infile.
5449 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5450
e183b123 54512002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 5452
e183b123 5453 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 5454 either has GLR conflict entries.
e183b123 5455
193eb6b7
PE
54562002-11-05 Paul Eggert <eggert@twinsun.com>
5457
e183b123
PE
5458 * src/scan-gram.l: Use more accurate diagnostics, e.g.
5459 "integer out of range" rather than "invalid value".
5460 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
5461 accordingly.
5462
193eb6b7
PE
5463 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
5464 Also, remove one static variable in the scanner.
5465
5466 * src/scan-gram.l (braces_level): Now auto, not static.
5467 Initialize to zero if the compiler is being picky.
5468 (INITIAL): Clear braces_level instead of incrementing it.
5469 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
5470 as POSIX 1003.1-2001 requires.
5471 * src/system.h (IF_LINT): New macro, taken from coreutils.
5472 * configure.ac: Define "lint" if --enable-gcc-warnings.
5473
29c01725
AD
54742002-11-05 Akim Demaille <akim@epita.fr>
5475
5476 * src/scan-gram.l: When it starts with `%', complain about the
5477 whole directive, not just that `invalid character: %'.
5478
8aeac3ca
AD
54792002-11-04 Akim Demaille <akim@epita.fr>
5480
5481 * Makefile.maint: Update from Autoconf.
5482 (update, cvs-update, po-update, do-po-update): New.
5483
793a58bb
AD
54842002-11-04 Akim Demaille <akim@epita.fr>
5485
5486 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
5487 and yyerror.
5488 Have yyerror `use' its arguments.
5489 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
5490 returns true when location & yacc & pure & parse-param.
5491 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
5492
c4d720cd
AD
54932002-11-04 Akim Demaille <akim@epita.fr>
5494
5495 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
5496 clashes.
5497 * src/scan-gram.l: Use [\'] instead of ['] to pacify
5498 font-lock-mode.
5499 Use complain_at.
5500 Use quote, not quote_n since LOCATION_PRINT no longer uses the
5501 slot 0.
5502
613a0dc5
PE
55032002-11-03 Paul Eggert <eggert@twinsun.com>
5504
5505 * src/reader.c (get_merge_function, grammar_current_rule_check):
5506 Use consistent diagnostics for reporting type name clashes.
5507 Quote the types with <>, for consistency with Yacc.
5508 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
5509
2a8d363a
AD
55102002-11-03 Akim Demaille <akim@epita.fr>
5511
5512 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
5513 New.
5514 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
5515 (b4_parse_param): Remove.
5516 Use b4_identification.
5517 Propagate b4_pure_args where needed to pass them to yyerror.
5518 * data/glr.m4 (b4_parse_param): Remove.
5519 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
5520 (b4_lpure_formals): New.
5521 Use b4_identification.
5522 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
5523 b4_user_formals and b4_user_args.
5524 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
5525 (yyreportAmbiguity): When using a pure parser, also need
5526 the location, and the parse-params.
5527 Adjust callers.
5528 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
5529 When using a pure parser, also need the parse-params.
5530 Adjust callers.
5531 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
5532 (%pure-parser + %parse-param) LALR and GLR parsers.
5533 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
5534 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
5535 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
5536 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
5537 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
5538 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
5539 * doc/bison.texinfo: Untabify the whole file.
5540 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
5541 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
5542 (Error Reporting): Adjust to these new directives.
5543 Document %error-verbose, deprecate YYERROR_VERBOSE.
5544
9e32add8
AD
55452002-11-03 Akim Demaille <akim@epita.fr>
5546
5547 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
5548 AT_CHECK_CALC_GLR invocations to use % directives, instead of
5549 command line options.
5550 * tests/cxx-type.at: Formatting changes.
5551
b02d90a5
PE
55522002-11-03 Paul Eggert <eggert@twinsun.com>
5553
5554 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
5555 to count columns correctly, and to check for invalid inputs.
9e32add8 5556
b02d90a5
PE
5557 Use mbsnwidth to count columns correctly. Account for tabs, too.
5558 Include mbswidth.h.
5559 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
5560 (extend_location): New function.
5561 (YY_LINES): Remove.
5562
5563 Handle CRLF in C code rather than in Lex code.
5564 (YY_INPUT): New macro.
5565 (no_cr_read): New function.
5566
5567 Scan UCNs, even though we don't fully handle them yet.
5568 (convert_ucn_to_byte): New function.
5569
5570 Handle backslash-newline correctly in C code.
5571 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
5572 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
5573 all uses changed.
5574 (tag, splice): New EREs. Do not allow NUL or newline in tags.
5575 Use {splice} wherever C allows backslash-newline.
5576 YY_STEP after space, newline, vertical-tab.
5577 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 5578
b02d90a5
PE
5579 (letter, id): Don't assume ASCII; e.g., spell out a-z.
5580
5581 ({int}, handle_action_dollar, handle_action_at): Check for integer
5582 overflow.
9e32add8 5583
b02d90a5
PE
5584 (YY_STEP): Omit trailing semicolon, so that it's more like C.
5585
5586 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
5587 as well as \000. Check for UCHAR_MAX, not 255.
5588 Allow \x with an arbitrary positive number of digits, as in C.
5589 Check for overflow here.
5590 Allow \? and UCNs, for compatibility with C.
5591
5592 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
5593 with quote slot used by complain_at.
5594
5595 * tests/input.at: Add tests for backslash-newline, m4 quotes
5596 in symbols, long literals, and funny escapes in strings.
5597
5598 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
5599 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
5600 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
5601 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
5602 * m4/mbswidth.m4: New file, from GNU coreutils.
5603
5604 * doc/bison.texinfo (Grammar Outline): Document // comments.
5605 (Symbols): Document that trigraphs have no special meaning in Bison,
5606 nor is backslash-newline allowed.
5607 (Actions): Document that trigraphs have no special meaning.
5608
5609 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
5610 no longer used.
5611
56122002-11-02 Paul Eggert <eggert@twinsun.com>
5613
5614 * src/reader.c: Don't include quote.h; not needed.
5615 (get_merge_function): Reword warning to be consistent with
5616 type clash diagnostic in grammar_current_rule_check.
5617
5618 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
5619 bug in trigraph handling.
5620
5621 * src/output.c (prepare_symbols): When printing token names,
5622 escape "[" as "@<:@" and likewise for "]".
5623
5624 * src/system.h (errno): Remove declaration, as we are now
5625 assuming C89 or better, and C89 guarantees errno.
5626
762b212b
PE
56272002-10-30 Paul Eggert <eggert@twinsun.com>
5628
5629 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
5630 Check for close failures.
5631 * src/files.h (xfclose): Return void, not int, since it always
5632 returned zero.
5633 * src/files.c (xfclose): Likewise. Report I/O error if ferror
5634 indicates one.
5635 * src/output.c (output_skeleton): Use xfclose rather than fclose
5636 and ferror. xfclose now checks ferror.
5637
5638 * data/glr.c (YYLEFTMOST_STATE): Remove.
5639 (yyreportTree): Use a stack-based leftmost state. This avoids
5640 our continuing battles with bogus warnings about initializers.
5641
56100c60
AD
56422002-10-30 Akim Demaille <akim@epita.fr>
5643
5644 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
5645 #if.
5646
51b4a04c
PH
56472002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5648
5649 * tests/glr-regr1.at: New test for reported regressions.
5650 * tests/testsuite.at: Add glr-regr1.at test.
5651 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 5652
bf1ebda2
PE
56532002-10-24 Paul Eggert <eggert@twinsun.com>
5654
5c16c6b1
PE
5655 Version 1.75a.
5656
bf1ebda2
PE
5657 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
5658 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
5659 we use malloc. Don't assume 'A' through 'Z' are contiguous.
5660 Don't assume strdup exists; POSIX says its an XSI extension.
5661 Check for buffer overflow on input.
5662
b526ee61
AD
56632002-10-24 Akim Demaille <akim@epita.fr>
5664
5665 * src/output.c (output_skeleton): Don't disable M4sugar comments
5666 too soon: it results in comments being expanded.
5667 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
5668 first output.
5669
f1886bb2
AD
56702002-10-24 Akim Demaille <akim@epita.fr>
5671
5672 * data/yacc.c (m4_int_type): New.
5673 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
5674 char' as only yacc.c wants K&R portability.
5675 * data/glr.c (yysigned_char): Remove.
5676 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
5677 Reported by Quoc Peyrot.
5678
c5576256
PE
56792002-10-23 Paul Eggert <eggert@twinsun.com>
5680
5681 * src/main.c (main): With --trace=time, report times even if a
5682 non-fatal error occurs. Formerly, the times were reported in some
5683 such cases but not in others.
5684 * src/reader.c (reader): Just return if a complaint has been issued,
5685 instead of exiting, so that 'main' can report times.
5686
27b0ffea
AD
56872002-10-22 Akim Demaille <akim@epita.fr>
5688
5689 * src/system.h: Include sys/types.
5690 Reported by Bert Deknuydt.
5691
223a7883
PE
56922002-10-23 Paul Eggert <eggert@twinsun.com>
5693
5694 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
5695 Suggested by Art Haas.
5696
56972002-10-22 Paul Eggert <eggert@twinsun.com>
5698
5699 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
5700 decl; not needed any more.
5701 * src/main.c (main): Use return to exit, undoing yesterday's change.
5702 The last OS that we could find where this wouldn't work is
5703 SunOS 3.5, and that's too old to worry about now.
5704
5705 * data/glr.c (struct yyltype): Define members even when not
5706 doing locations. This is more consistent with yacc.c, and it
5707 works around the following bug reports:
161a71f3
PE
5708 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
5709 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 5710
223a7883
PE
5711 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
5712 @acronym consistently. Standardize on "Yacc" instead of "YACC",
5713 "Algol" instead of "ALGOL". Give a bit more history about BNF.
5714
8b76775a
AD
57152002-10-22 Akim Demaille <akim@epita.fr>
5716
5717 * data/README: New.
5718
6db10d14
PE
57192002-10-21 Paul Eggert <eggert@twinsun.com>
5720
5721 Be consistent about 'bool'; the old code used an enum in one
5722 module and an int in another, and this violates the C standard.
5723 * m4/stdbool.m4: New file, from coreutils 4.5.3.
5724 * configure.ac (AC_HEADER_STDBOOL): Add.
5725 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
5726 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
5727 * src/symtab.c (hash_compare_symbol_t): Likewise.
5728 * src/system.h (bool, false, true): Use a definition consistent
5729 with ../lib/hash.c. All uses changed.
5730
5731 * src/complain.c (warning_issued): Renamed from warn_message_count,
5732 so that we needn't worry about integer overflow (!).
5733 Now of type bool. All uses changed.
5734 (complaint_issued): Renamed from complain_message_count; likewise.
5735
5736 * src/main.c (main): Use exit to exit with failure.
27b0ffea 5737
6db10d14
PE
5738 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
5739 rather than 1 and 0.
5740 * src/main.c (main): Likewise.
5741 * src/getargs.c (getargs): Likewise.
5742 * src/reader.c (reader): Likewise.
5743
5744 * src/getarg.c (getargs): Remove duplicate code for
5745 "Try `bison --help'".
5746
5747 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
5748 What was that "2" for?
5749
5750 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
5751 * src/getargs.c (usage): Likewise.
5752
5753 * src/getargs.c (getargs): When there are too few operands, report
5754 the last one. When there are too many, report the first extra
5755 one. This is how diffutils does it.
5756
92a060fd
PE
57572002-10-20 Paul Eggert <eggert@twinsun.com>
5758
5759 Remove K&R vestiges.
5760 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
5761 * src/complain.c (VA_START): Remove. Assume prototypes.
5762 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
5763 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
5764 fatal): Assume prototypes.
5765 * src/complain.h: Assume prototypes.
5766 * src/system.h (PARAMS): Remove.
5767 Include <limits.h> unconditionally, since it's guaranteeed even
5768 for a freestanding C89 compiler.
5769 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
5770 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 5771
e7cb57c0
AD
57722002-10-20 Akim Demaille <akim@epita.fr>
5773
5774 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
5775 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
5776 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
5777 (yyresolveStates, yyresolveAction, yyresolveStack)
5778 (yyprocessOneStack): Use them.
5779 (yy_reduce_print): New.
5780 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
5781
0245f82d
AD
57822002-10-20 Akim Demaille <akim@epita.fr>
5783
5784 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
5785 arguments and output `void'.
5786 (b4_c_function): Rename as...
5787 (b4_c_function_def): this.
5788 (b4_c_function_decl, b4_c_ansi_function_def)
5789 (b4_c_ansi_function_decl): New.
5790 Change the interpretation of the arguments: before `int, foo', now
5791 `int foo, foo'.
5792 * data/yacc.c (yyparse): Prototype and define thanks to these.
5793 Adjust b4_c_function_def uses.
5794 * data/glr.c (yyparse): Likewise, but ANSI only.
5795
39912f52
AD
57962002-10-20 Akim Demaille <akim@epita.fr>
5797
5798 * src/output.c (prepare): Move the definition of `tokens_number',
5799 `nterms_number', `undef_token_number', `user_token_number_max'
5800 to...
5801 (prepare_tokens): Here.
5802 (prepare_tokens): Rename as...
5803 (prepare_symbols): this.
5804 (prepare): Move the definition of `rules_number' to...
5805 (prepare_rules): here.
5806 (prepare): Move the definition of `last', `final_state_number',
5807 `states_number' to...
5808 (prepare_states): here.
5809 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
5810
20c1e2ad
AD
58112002-10-20 Akim Demaille <akim@epita.fr>
5812
5813 * src/tables.h, src/tables.c, src/output.c: Comment changes.
5814
21964f43
AD
58152002-10-20 Akim Demaille <akim@epita.fr>
5816
5817 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
5818 * data/c.m4: here.
5819
66d30cd4
AD
58202002-10-20 Akim Demaille <akim@epita.fr>
5821
5822 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
5823 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
5824 `pair'.
5825 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
5826 `name' to...
5827 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
5828 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
5829 These.
5830
95f2c9fe
PE
58312002-10-19 Paul Eggert <eggert@twinsun.com>
5832
5833 Do not create a temporary file, as that involves security and
5834 cleanup headaches. Instead, use a pair of pipes.
5835 Derived from a suggestion by Florian Krohm.
5836 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
5837 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
5838 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
5839 (BISON_PREREQ_SUBPIPE): Add.
5840 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
5841 Add subpipe.h, subpipe.c.
5842 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
5843 * po/POTFILES.in: Add lib/subpipe.c.
5844 * src/output.c: Include "subpipe.h".
5845 (m4_invoke): Remove decl.
5846 (scan_skel): New decl.
5847 (output_skeleton): Use pipe rather than temporary file for m4 input.
5848 Check that m4sugar.m4 is readable, to avoid deadlock.
5849 Check for pipe I/O error.
5850 * src/scan-skel.l (readpipe): Remove decl.
5851 (scan_skel): New function, to be used in place of m4_invoke.
5852 Read from stream rather than file.
66d30cd4 5853
95f2c9fe
PE
5854 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
5855 float, as this generates a warning on Solaris 8 + GCC 3.2 with
5856 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
5857 this generates a more-accurate value anyway.
5858
5859 * lib/timevar.c (timervar_accumulate): Rename locals to
5860 avoid confusion with similarly-named more-global.
5861 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
5862
5863 * src/output.c (prepare): Use xstrdup to convert char const *
5864 to char *, to avoid GCC warning.
5865
c19988b7
AD
58662002-10-19 Akim Demaille <akim@epita.fr>
5867
5868 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
5869 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
5870 Use them to have `calc.y' ready for %pure-parser.
5871 * data/yacc.c (YYLEX): Pass a yylex return type to
5872 b4_c_function_call.
5873
ae7453f2
AD
58742002-10-19 Akim Demaille <akim@epita.fr>
5875
5876 Prototype support of %lex-param and %parse-param.
5877
5878 * src/parse-gram.y: Add the definition of the %lex-param and
5879 %parse-param tokens, plus their rules.
5880 Drop the `_' version of %glr-parser.
5881 Add the "," token.
5882 * src/scan-gram.l (INITIAL): Scan them.
5883 * src/muscle_tab.c: Comment changes.
5884 (muscle_insert, muscle_find): Rename `pair' as `probe'.
5885 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
5886 (muscle_entry_s): The `value' member is no longer const.
5887 Adjust all dependencies.
5888 * src/muscle_tab.c (muscle_init): Adjust: use
5889 MUSCLE_INSERT_STRING.
5890 Initialize the obstack earlier.
5891 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
5892 (muscle_pair_list_grow): New.
5893 * data/c.m4 (b4_c_function_call, b4_c_args): New.
5894 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
5895 * tests/calc.at: Use %locations, not --locations.
5896 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
5897
0e575721
AD
58982002-10-19 Akim Demaille <akim@epita.fr>
5899
5900 * src/getargs.c (usage): Take status as argument and exit
5901 accordingly.
5902 Report the traditional `Try ... --help' message when status != 0.
5903 (usage, version): Don't take a FILE * as arg, it is pointless.
5904 (getargs): When there is an incorrect number of arguments, make it
5905 an error, and report it GNUlically thanks to `usage ()'.
5906
724ce7f5
PE
59072002-10-18 Paul Eggert <eggert@twinsun.com>
5908
3a781eb2
PE
5909 * data/glr.c (yyreportParseError): Don't assume that sprintf
5910 yields the length of the printed string, as this is not true
5911 on SunOS 4.1.4. Reported by Peter Klein.
5912
724ce7f5
PE
5913 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
5914 * tests/conflicts.at (%nonassoc and eof): Likewise.
5915 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
5916
473d0a75
AD
59172002-10-17 Akim Demaille <akim@epita.fr>
5918
5919 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
5920 * src/getargs.c (trace_types, trace_args): Adjust.
5921 * src/reader.c (grammar_current_rule_prec_set)
5922 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
5923 Standardize error messages.
5924 And s/@prec/%prec/!
5925 (reader): Use trace_flag to enable scanner/parser debugging,
5926 instead of an adhoc scheme.
5927 * src/scan-gram.l: Remove trailing debugging code.
5928
e76d2469
PE
59292002-10-16 Paul Eggert <eggert@twinsun.com>
5930
93e2236a
PE
5931 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
5932 MUSCLE_TAB_H.
5933
e76d2469
PE
5934 * NEWS: Officially drop support for building Bison with K&R C,
5935 since it didn't work anyway and it's not worth worrying about.
5936 * Makefile.maint (wget_files): Remove ansi2knr.c.
5937 (ansi2knr.c-url_prefix): Remove.
5938 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
5939 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5940 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5941
5bd1c419
PE
59422002-10-15 Paul Eggert <eggert@twinsun.com>
5943
5944 Stop using the "enum_" trick for K&R-style function definitions;
5945 it confused me, and I was the author! Instead, assume that people
5946 who want to use K&R C compilers (when using these modules in GCC,
5947 perhaps?) will run ansi2knr.
5948
5949 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
5950 All uses of "enum_" changed to "enum ".
5951 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
5952 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 5953
5bd1c419
PE
5954 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
5955 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
5956 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
5957 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
5958 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
5959 abitset_not, abitset_ones, abitset_or, abitset_or_and,
5960 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
5961 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
5962 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
5963 Use function prototypes; this removes the need for declaring
5964 static functions simply to provide their prototypes.
5965 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
5966 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
5967 bitset_count_, bitset_create, bitset_dump, bitset_first,
5968 bitset_free, bitset_init, bitset_last, bitset_next,
5969 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
5970 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
5971 bitset_print, bitset_release_memory, bitset_toggle_,
5972 bitset_type_choose, bitset_type_get, bitset_type_name_get,
5973 debug_bitset): Likewise.
5974 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
5975 * lib/bitset_stats.c (bitset_log_histogram_print,
5976 bitset_percent_histogram_print, bitset_stats_and,
5977 bitset_stats_and_cmp, bitset_stats_and_or,
5978 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
5979 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
5980 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
5981 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
5982 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
5983 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
5984 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
5985 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
5986 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
5987 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
5988 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
5989 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
5990 bitset_stats_zero): Likewise.
5991 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
5992 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
5993 bitsetv_dump, debug_bitsetv): Likewise.
5994 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
5995 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
5996 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
5997 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
5998 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
5999 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
6000 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
6001 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
6002 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
6003 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
6004 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
6005 Likewise.
6006 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
6007 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
6008 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
6009 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
6010 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
6011 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
6012 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
6013 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
6014 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
6015 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
6016 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 6017
ae26e1f0
AD
60182002-10-14 Akim Demaille <akim@epita.fr>
6019
6020 Version 1.75.
6021
d43baf71
AD
60222002-10-14 Akim Demaille <akim@epita.fr>
6023
6024 * tests/Makefile.am (maintainer-check-posix): New.
6025
7ebc83e3
AD
60262002-10-14 Akim Demaille <akim@epita.fr>
6027
6028 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
6029 member.
6030
05846dae
AD
60312002-10-14 Akim Demaille <akim@epita.fr>
6032
6033 * src/tables.c (table_ninf_remap): base -> tab.
6034 Reported by Matt Rosing.
6035
1318e37d
PE
60362002-10-14 Paul Eggert <eggert@twinsun.com>
6037
447fbb17
PE
6038 * tests/action.at, tests/calc.at, tests/conflicts.at,
6039 tests/cxx-type.at, tests/headers.at, tests/input.at,
6040 tests/regression.at, tests/synclines.at, tests/torture.at:
6041 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
6042 so that the tests still work even if POSIXLY_CORRECT is set.
6043 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 6044
1318e37d
PE
6045 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
6046 for portability to K&R hosts. Fix typo: signed char is guaranteed
6047 only to 127, not to 128.
6048 * data/glr.c (yysigned_char): New type.
6049 * data/yacc.c (yysigned_char): Likewise.
6050 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
6051
cc0f0794
PE
60522002-10-13 Paul Eggert <eggert@twinsun.com>
6053
5038f418
PE
6054 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
6055 true due to limited range of data type" warning from GCC.
6056
cc0f0794
PE
6057 * data/c.m4 (b4_token_defines): Protect against double-inclusion
6058 by wrapping enum yytokentype's definition inside #ifndef
6059 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
6060
6fed0802
AD
60612002-10-13 Akim Demaille <akim@epita.fr>
6062
6063 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
6064 Un yy- yyrhs to avoid the name clash with the global YYRHS.
6065
32f0598d
AD
60662002-10-13 Akim Demaille <akim@epita.fr>
6067
6068 * Makefile.maint: Update from Autoconf 2.54.
6069 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
6070
7ea9a33f
AD
60712002-10-13 Akim Demaille <akim@epita.fr>
6072
6073 * src/print.c (print_state): Separate the list of solved conflicts
6074 from the other items.
6075 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
6076
ea99527d
AD
60772002-10-13 Akim Demaille <akim@epita.fr>
6078
6079 Let nondeterministic skeletons be usable with deterministic
6080 tables.
6081
6082 With the patch, GAWK compiled by GCC without -O2 passes its test
6083 suite using a GLR parser driven by LALR tables. It fails with -O2
6084 because `struct stat' gives two different answers on my machine:
6085 88 (definition of an auto var) and later 96 (memset on this var).
6086 Hence the stack is badly corrumpted. The headers inclusion is to
6087 blame: if I move the awk.h inclusion before GLR's system header
6088 inclusion, the two struct stat have the same size.
6089
6090 * src/tables.c (pack_table): Always create conflict_table.
6091 (token_actions): Always create conflict_list.
6092 * data/glr.c (YYFLAG): Remove, unused.
6093
f377f69f
AD
60942002-10-13 Akim Demaille <akim@epita.fr>
6095
6096 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
6097 (O0FLAGS): New.
6098 (VALGRIND, GXX): New.
6099 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
6100 * tests/bison.in: Run $PREBISON a pre-command.
6101 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
6102 (maintainer-check-g++): New.
6103 * Makefile.am (maintainer-check): New.
6104
2a1fe6ed
AD
61052002-10-13 Akim Demaille <akim@epita.fr>
6106
6107 * data/glr.c: Formatting changes.
6108 Tweak some trace messages to match yacc.c's.
6109
f50adbbd
AD
61102002-10-13 Akim Demaille <akim@epita.fr>
6111
6112 GLR parsers sometimes raise parse errors instead of performing the
6113 default reduction.
6114 Reported by Charles-Henry de Boysson.
6115
6116 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 6117 check the length of the traces when %glr.
f50adbbd
AD
6118 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
6119 GLR's traces.
6120 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
6121 Test GLR parsers.
6122 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
6123 (yyltype): Remove the yy prefix from the member names.
6124 (yytable): Complete its comment.
6125 (yygetLRActions): Map error action number from YYTABLE from
6126 YYTABLE_NINF to 0.
6127 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
6128 (which was a bug: it should have been YYTABEL_NINF, and yet it was
6129 not satisfying as we could compare an YYACTION computed from
6130 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
6131 only value for error actions.
6132 (yyreportParseError): In verbose parse error messages, don't issue
6133 `error' in the list of expected tokens.
6134 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
6135 next action to perform to match glr.c's decoding.
6136 (yytable): Complete its comment.
6137
bcbad5b9
PE
61382002-10-13 Paul Eggert <eggert@twinsun.com>
6139
6140 Fix problem reported by Henrik Grubbstroem in
161a71f3 6141 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
6142 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
6143 because the Bison parser reads the second action before reducing
6144 the first one.
6145 * src/scan-gram.l (rule_length): New static var.
6146 Use it to keep track of the rule length in the scanner, since
6147 we can't expect the parser to be in lock-step sync with the scanner.
6148 (handle_action_dollar, handle_action_at): Use this var.
6149 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 6150
14904b89
PE
61512002-10-12 Paul Eggert <eggert@twinsun.com>
6152
1fe611e5
PE
6153 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
6154 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
6155 Include <sys/time.h> when checking for clock_t and struct tms.
6156 Use same include order as source.
6157 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 6158 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 6159
1fe611e5
PE
6160 * lib/timevar.c: Update copyright date and clarify comments.
6161 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 6162
1fe611e5
PE
6163 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
6164 GCC version as of today, then merge Bison's changes.
6165 Change "GCC" to "Bison" in copyright notice. timevar.def's
6166 author is Akim, so change that too.
6167
98194095
PE
6168 * src/reader.c (grammar_current_rule_check):
6169 Don't worry about the default action if $$ is untyped.
6170 Prevents bogus warnings reported by Jim Gifford in
161a71f3 6171 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 6172
14904b89
PE
6173 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
6174 * data/glr.c, data/lalr1.cc, data/yacc.c:
6175 Output token definitions before the first part of user declarations.
6176 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 6177 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 6178
ff6dca18
PE
61792002-10-11 Paul Eggert <eggert@twinsun.com>
6180
6181 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
6182 (yyparse): here. This undoes some of the 2002-07-25 change.
6183 Compatibility problem reported by Ralf S. Engelschall with
6184 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
6185
eb714592
AD
61862002-10-11 Akim Demaille <akim@epita.fr>
6187
6188 * tests/regression.at Characters Escapes): New.
6189 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
6190 characters.
6191 Reported by Jan Nieuwenhuizen.
6192
b7195100
AD
61932002-10-11 Akim Demaille <akim@epita.fr>
6194
6195 * po/id.po: New.
6196
f28a0f2d
PE
61972002-10-10 Paul Eggert <eggert@twinsun.com>
6198
6199 Portability fixes for bitsets; this also avoids several GCC
6200 warnings.
6201
6202 * lib/abitset.c: Include <stddef.h>, for offsetof.
6203 * lib/lbitset.c: Likewise.
6204
6205 * lib/abitset.c (abitset_bytes): Return a size that is aligned
6206 properly for vectors of objects. Do not assume that adding a
6207 header size to a multiple of a word size yields a value that is
6208 properly aligned for the whole union.
6209 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6210
6211 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
6212 unique names for structures.
6213 * lib/ebitset.c (ebitset_bytes): Likewise.
6214 * lib/lbitset.c (lbitset_bytes): Likewise.
6215
6216 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
6217 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
6218 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
6219 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
6220 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
6221 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
6222 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
6223 to improve the type-checking that GCC can do.
6224 * lib/bitset.c (bitset_op4_cmp): Likewise.
6225 * lib/bitset_stats.c (bitset_stats_count,
6226 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
6227 bitset_stats_copy, bitset_stats_disjoint_p,
6228 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
6229 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
6230 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
6231 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
6232 bitset_stats_and_or_cmp, bitset_stats_andn_or,
6233 bitset_stats_andn_or_cmp, bitset_stats_or_and,
6234 bitset_stats_or_and_cmp): Likewise.
6235 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
6236 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
6237 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
6238 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
6239
6240 * lib/abitset.h: Include bitset.h, not bbitset.h.
6241 * lib/ebitset.h: Likewise.
6242 * lib/lbitset.h: Likewise.
6243
6244 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
6245 All instances of parameters of type enum bitset_opts are now of
6246 type enum_bitset_opts, to conform to the C Standard, and similarly
6247 for enum_bitset_type.
6248 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
6249 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
6250
6251 Do not use "struct bitset_struct" to mean different things in
6252 different modules. Not only is this confusing, it violates
6253 the C Standard, which requires that structure types in different
6254 modules must be compatible if one is to be passed to the other.
6255 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
6256 All instances of "struct bitset_struct *" replaced with "bitset".
6257 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
6258 (union bitset_union, struct abitset_struct, struct ebitset_struct,
6259 struct lbitset_struct, struct bitset_stats_struct): New types.
6260 All uses of struct bitset_struct changed to union bitset_union,
6261 etc.
ba0fe3c7 6262 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
6263 struct bitset_struct): Remove.
6264 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
6265 struct bitset_struct): Remove.
6266 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
6267 bitset_struct): Remove.
6268 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
6269 Likewise.
6270
6271 Do not call a function of type T using a call that assumes the
6272 function is of a different type U. Standard C requires that a
6273 function must be called with a type that is compatible with its
6274 definition.
6275 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6276 New decls.
6277 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6278 New functions.
6279 * lib/ebitset.c (PFV): Remove.
6280 * lib/lbitset.c (PFV): Likewise.
6281 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
6282 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
6283 decls.
6284 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
6285 (ebitset_vtable): Use them.
6286 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
6287 lbitset_xor): New functions.
6288 (lbitset_vtable): Use them.
6289
6290 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
6291 Declare.
6292
6293 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
6294 GCC warning.
6295 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
6296 Use offsetof, for simplicity.
6297
6fbe4984
PE
62982002-10-06 Paul Eggert <eggert@twinsun.com>
6299
6300 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
6301 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 6302 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
6303 which was inadvertently undone by the 2002-09-30 patch.
6304 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
6305 the same width as int.
6306
420f93c8
PE
63072002-10-04 Paul Eggert <eggert@twinsun.com>
6308
6309 Version 1.50.
6310
6311 * configure.ac (AC_INIT), NEWS: Increment version number.
6312
6313 * doc/bison.texinfo: Minor spelling, grammar, and white space
6314 fixes.
6315 (Symbols): Mention that any negative value returned from yylex
6316 signifies end-of-input. Warn about negative chars. Mention
6317 the portable Standard C character set.
6318
6319 The GNU coding standard says CFLAGS and YFLAGS are reserved
6320 for the installer to set.
6321 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
6322 * src/Makefile.am (AM_CFLAGS): Likewise.
6323 (AM_YFLAGS): Renamed from YFLAGS.
6324
6325 Fix some MAX and MIN problems.
6326 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
6327 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
6328 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
6329 * src/reader.c (reader): Use it.
6330
6331 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
6332 POSIX 1003.1-2001 has removed fgrep.
6333
63342002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
6335
6336 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
6337 interpreted as signed.
6338 * lib/ebitset.c (ebitset_list): Fix bug.
6339
ff68026d
PE
63402002-10-01 Paul Eggert <eggert@twinsun.com>
6341
6342 More fixes for 64-bit hosts and large bitsets.
6343
6344 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
6345 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
6346 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
6347 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
6348 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
6349 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
6350 bitset_count_): Likewise.
6351 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
6352 bitset_first, bitset_last): Likewise.
6353 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
6354 bitset_stats_list_reverse, bitset_stats_size,
6355 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
6356 Likewise.
6357 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6358 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
6359 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
6360 bitsetv_reflexive_transitive_closure): Likewise.
6361 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
6362 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
6363 Likewise.
6364 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
6365 Likewise.
420f93c8 6366
ff68026d
PE
6367 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
6368 Use size_t, not unsigned int, to count bytes.
6369 * lib/abitset.h (abitset_bytes): Likewise.
6370 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
6371 Likewise.
6372 * lib/bitset.h (bitset_bytes): Likewise.
6373 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
6374 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
6375 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6376 * lib/ebitset.c (ebitset_bytes): Likewise.
6377 * lib/ebitset.h (ebitset_bytes): Likewise.
6378 * lib/lbitset.c (lbitset_bytes): Likewise.
6379 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 6380
ff68026d
PE
6381 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
6382 abitset_subset_p, abitset_disjoint_p, abitset_and,
6383 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
6384 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
6385 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
6386 abitset_or_and, abitset_or_and_cmp):
6387 Use bitset_windex instead of unsigned int.
6388 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6389 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
6390 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
6391 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
6392 Likewise.
6393 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 6394
ff68026d
PE
6395 * lib/bitset.c (bitset_print):
6396 Use proper printf formats for widths of integer types.
6397 * lib/bitset_stats.c (bitset_percent_histogram_print,
6398 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
6399 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6400 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6401 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 6402
ff68026d
PE
6403 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
6404 BITSET_SIZE_MAX): New macros.
6405 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
6406 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
6407 to BITSET_WINDEX_MAX.
6408
6409 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
6410 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
6411 since we now return the bitset_bindex type (not int).
6412
6413 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
6414 when computing sizes.
6415 * lib/ebitset.c (ebitset_elts_grow): Likewise.
6416
6417 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
6418 and avoid cast to unsigned.
6419
6aa452a6
AD
64202002-09-30 Akim Demaille <akim@epita.fr>
6421
6422 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6423 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
6424 Updates from Michael Hayes.
6425
927f7817
AD
64262002-09-30 Art Haas <ahaas@neosoft.com>
6427
6428 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
6429 invocations.
6430 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
6431 defined.
6432
9738f41e
AD
64332002-09-27 Akim Demaille <akim@epita.fr>
6434
6435 Version 1.49c.
6436
a5c75d7f
AD
64372002-09-27 Akim Demaille <akim@epita.fr>
6438
6439 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
6440 (Because of AC_LIBSOURCE).
6441
8280e179
AD
64422002-09-27 Akim Demaille <akim@epita.fr>
6443
6444 Playing with Autoscan.
6445
6446 * configure.ac: Remove the old LIBOBJ tweaks.
6447 (AC_REPLACE_FUNCS): Add strrchr and strtol.
6448 * lib/strrchr.c: New.
6449 * lib/strtol.c: New, from the Coreutils 4.5.1.
6450
ae64af35
AD
64512002-09-27 Akim Demaille <akim@epita.fr>
6452
6453 Playing with Autoscan.
6454
6455 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
6456 * lib/Makefile.am (libbison_a_SOURCES): No longer include
6457 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
6458 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
6459 Coreutils 4.5.1.
6460
d1a1114f
AD
64612002-09-24 Akim Demaille <akim@epita.fr>
6462
6463 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
6464 (Frequently Asked Questions, Parser Stack Overflow): New.
6465
b906441c
AD
64662002-09-13 Akim Demaille <akim@epita.fr>
6467
6468 Playing with autoscan.
6469
6470 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
6471 * src/files.c (skeleton_find): Remove, unused.
6472 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
6473 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
6474
bd701811
AD
64752002-09-13 Akim Demaille <akim@epita.fr>
6476
6477 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
6478 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
6479
e0a13e7b
AD
64802002-09-13 Akim Demaille <akim@epita.fr>
6481
6482 * configure.ac: Require 2.54.
6483 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
6484 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
6485 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
6486 Remove, provided by Autoconf macros.
6487
c97011bf
AD
64882002-09-12 Akim Demaille <akim@epita.fr>
6489
6490 * m4/prereq.m4: Update, from Coreutils 4.5.1.
6491
d862b1be
AD
64922002-09-12 Akim Demaille <akim@epita.fr>
6493
6494 * m4/prereq.m4: Update, from Fileutils 4.1.5.
6495 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
6496 Reported by Martin Mokrejs.
6497
3d38c03a
AD
64982002-09-10 Akim Demaille <akim@epita.fr>
6499
6500 * src/parse-gram.y: Associate a human readable string to each
6501 token type.
6502 * tests/regression.at (Invalid inputs): Adjust.
6503
b6347355
AD
65042002-09-10 Gary V. Vaughan <gary@gnu.org>
6505
6506 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
6507 with an Autoconf-2.5x style configure.ac.
6508
09ba4ab2
PE
65092002-09-06 Paul Eggert <eggert@twinsun.com>
6510
6511 * doc/bison.texinfo (Conditions): Make explicit that the GPL
6512 exception applies only to yacc.c. This is a modification of a
6513 patch originally suggested by Akim Demaille.
6514
21846f69
AD
65152002-09-06 Akim Demaille <akim@epita.fr>
6516
09ba4ab2
PE
6517 * data/c.m4 (b4_copyright): Move the GPL exception comment from
6518 here to...
6519 * data/yacc.c: here.
6520
21846f69
AD
6521 * data/lalr1.cc (struct yyltype): Don't define it, since we use
6522 LocationType.
6523 (b4_ltype): Default to yy::Location from location.hh.
6524
c0ad8bf3
AD
65252002-09-04 Jim Meyering <jim@meyering.net>
6526
6527 * data/yacc.c: Guard the declaration of yytoknum also with
6528 `#ifdef YYPRINT', so it is declared only when used.
6529
3a93251e
AD
65302002-09-04 Akim Demaille <akim@epita.fr>
6531
6532 * configure.in: Rename as...
6533 * configure.ac: this.
6534 Bump to 1.49c.
6535
427c0dda
AD
65362002-09-04 Akim Demaille <akim@epita.fr>
6537
6538 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
6539 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
6540 translate maintainer only messages.
6541
6a254321
PE
65422002-08-12 Paul Eggert <eggert@twinsun.com>
6543
645e30d1
PE
6544 Version 1.49b.
6545
6a254321
PE
6546 * Makefile.am (SUBDIRS): Remove intl.
6547 (DISTCLEANFILES): Remove.
6548 * NEWS: Mention that GNU M4 is now required. Clarify what is
6549 meant by "larger grammars". Mention the pt_BR translation.
6550 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
6551 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
6552 Bump version from 0.11.2 to 0.11.5.
6553 (BISON_PREREQ_STAGE): Remove.
6554 (AM_GNU_GETTEXT): Use external gettext.
6555 (AC_OUTPUT): Remove intl/Makefile.
6556
6557 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
6558
6559 * data/glr.c: Include string.h, for strlen.
6560 (yyreportParseError): Use size_t for yysize.
6561 (yy_yypstack): No longer nested inside yypstates, as nested
6562 functions are not portable. Do not assume size_t is the
6563 same width as int.
6564 (yypstates): Do not assume that ptrdiff_t is the same width
6565 as int, and similarly for yyposn and YYINDEX.
6566
6567 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
6568
6569 * lib/Makefile.am (INCLUDES): Do not include from the intl
6570 directory, which has been removed.
6571 * src/Makefile.am (INCLUDES): Likewise.
6572
6573 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
6574 (bitsets_sources, additional_bitsets_sources, timevars_sources):
6575 New vars.
6576
6577 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
6578 * tests/Makefile.am (EXTRA_DIST): Likewise.
6579
6580 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
6581 Do not assume that bitset_windex is the same width as unsigned.
6582
6583 * lib/abitset.c (abitset_unused_clear): Do not assume that
6584 bitset_word is the same width as int.
6585 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
6586 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
6587 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
6588 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
6589 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
6590
6591 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
6592 portability to one's complement hosts!).
6593 * lib/ebitset.c (ebitset_op1): Likewise.
6594 * lib/lbitset.c (lbitset_op1): Likewise.
6595
6596 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
6597 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
6598 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
6599 Sync with fileutils.
6600 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
6601 lib/gettext.h: Sync with diffutils.
6602
6603 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
6604 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
6605
6606 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
6607 PROTOTYPES to check for prototypes, and "defined __STDC__" to
6608 check for void *.
6609
6610 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
6611 size_t; the old version tried to do this but casted improperly.
6612 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
6613 (bitset_test): Now returns int, not unsigned long.
6614
6615 * lib/bitset_stats.c: Include "gettext.h".
6616 (_): New macro.
6617 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
6618 name locals "index", as it generates unnecessary warnings on some
6619 hosts that have an "index" function.
6620
6621 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
6622 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
6623 they need translation.
6624 * src/LR0.c (state_list_append, new_itemsets, get_state,
6625 append_states, generate_states): Likewise.
6626 * src/assoc.c (assoc_to_string): Likewise.
6627 * src/closure.c (print_closure, set_firsts, closure): Likewise.
6628 * src/gram.c (grammar_dump): Likewise.
6629 * src/injections.c (injections_compute): Likewise.
6630 * src/lalr.c (lookaheads_print): Likewise.
6631 * src/relation.c (relation_transpose): Likewise.
6632 * src/scan-gram.l: Likewise.
6633 * src/tables.c (table_grow, pack_vector): Likewise.
6634
6635 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
6636 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
6637 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
6638 * m4/mbstate_t.m4: Sync with fileutils.
6639 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
6640
6641 * po/LINGUAS: Add pt_BR.
6642 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
6643 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
6644 lib/timevar.c.
6645 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
6646 manual recommends.
6647 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
6648
6649 * src/complain.c (strerror_r): Remove decl; not needed.
6650 (strerror): Use same pattern as ../lib/error.c.
6651
6652 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
6653
6654 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
6655
6656 * src/main.c (main): Cast result of bindtextdomain and textdomain
6657 to void, to avoid a GCC warning when --disable-nls is in effect.
6658
6659 * src/scan-gram.l: Use strings rather than escapes when possible,
6660 to minimize the number of warnings from xgettext.
6661 (handle_action_dollar, handle_action_at): Don't use isdigit,
6662 as it mishandles negative chars and it may not work as expected
6663 outside the C locale.
6664
6665 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
6666 this is a GCC extension and is not portable to other compilers.
6667
6668 * src/system.h (alloca): Use same pattern as ../lib/error.c.
6669 Do not include <ctype.h>; no longer needed.
6670 Do not include <malloc.h>; no longer needed (and generates
6671 warnings on OpenBSD 3.0).
6672
6673 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
6674 it's not portable.
6675
6676 * tests/regression.at: Do not use 'cc -c input.c -o input';
6677 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
6678
6679 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
6680 exit status as failure, not just exit status 1. Sun C exits
6681 with status 2 sometimes.
6682
6683 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
6684 Use it for the two large tests.
6685
c8f002c7
AD
66862002-08-02 Akim Demaille <akim@epita.fr>
6687
6688 * src/conflicts.c (conflicts_output): Don't output rules never
6689 reduced here, since anyway that computation doesn't work.
6690 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
6691 (rule_useless_p, rule_never_reduced_p): New.
6692 (grammar_rules_partial_print): Use a filter instead of a range.
6693 Display the title only if needed.
6694 (grammar_rules_print): Adjust.
6695 (grammar_rules_never_reduced_report): New.
6696 * src/tables.c (action_row): Move the computation of rules never
6697 reduced to...
6698 (token_actions): here.
6699 * src/main.c (main): Make the parser before making the report, so
6700 that rules never reduced are computed.
6701 Call grammar_rules_never_reduced_report.
6702 * src/print.c (print_results): Report rules never reduced.
6703 * tests/conflicts.at, tests/reduce.at: Adjust.
6704
cd08e51e
AD
67052002-08-01 Akim Demaille <akim@epita.fr>
6706
6707 Instead of attaching lookaheads and duplicating the rules being
6708 reduced by a state, attach the lookaheads to the reductions.
6709
6710 * src/state.h (state_t): Remove the `lookaheads',
6711 `lookaheads_rule' member.
6712 (reductions_t): Add a `lookaheads' member.
6713 Use a regular array for the `rules'.
6714 * src/state.c (reductions_new): Initialize the lookaheads member
6715 to 0.
6716 (state_rule_lookaheads_print): Adjust.
6717 * src/state.h, src/state.c (state_reductions_find): New.
6718 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
6719 (count_rr_conflicts): Adjust.
6720 * src/lalr.c (LArule): Remove.
6721 (add_lookback_edge): Adjust.
6722 (state_lookaheads_count): New.
6723 (states_lookaheads_initialize): Merge into...
6724 (initialize_LA): this.
6725 (lalr_free): Adjust.
6726 * src/main.c (main): Don't free nullable and derives too early: it
6727 is used by --verbose.
6728 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
6729
bb0027a9
AD
67302002-08-01 Akim Demaille <akim@epita.fr>
6731
6732 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
6733 `rule_number_t**'.
6734 (set_derives, free_derives): Rename as...
6735 (derives_compute, derives_free): this.
6736 Adjust all dependencies.
6737 * src/nullable.c (set_nullable, free_nullable): Rename as...
6738 (nullable_compute, nullable_free): these.
6739 (rule_list_t): Store rule_t *, not rule_number_t.
6740 * src/state.c (state_rule_lookaheads_print): Directly compare rule
6741 pointers, instead of their numbers.
6742 * src/main.c (main): Call nullable_free, and derives_free earlier,
6743 as they were lo longer used.
6744
3325ddc4
AD
67452002-08-01 Akim Demaille <akim@epita.fr>
6746
6747 * lib/timevar.c (get_time): Include children time.
6748 * src/lalr.h (LA, LArule): Don't export them: used with the
6749 state_t.
6750 * src/lalr.c (LA, LArule): Static.
6751 * src/lalr.h, src/lalr.c (lalr_free): New.
6752 * src/main.c (main): Call it.
6753 * src/tables.c (pack_vector): Check whether loc is >= to the
6754 table_size, not >.
6755 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
6756 (tables_generate): do it, since that's also it which allocates
6757 them.
6758 Don't free LA and LArule, main does.
6759
c6f1a33c
AD
67602002-07-31 Akim Demaille <akim@epita.fr>
6761
6762 Separate parser tables computation and output.
6763
6764 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
6765 (conflict_list, conflict_list_cnt, table, check, table_ninf)
6766 (yydefgoto, yydefact, high): Move to...
6767 * src/tables.h, src/tables.c: here.
6768 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
6769 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
6770 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
6771 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
6772 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
6773 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
6774 (action_row, save_row, token_actions, save_column, default_goto)
6775 (goto_actions, sort_actions, matching_state, pack_vector)
6776 (table_ninf_remap, pack_table, prepare_actions): Move to...
6777 * src/tables.c: here.
6778 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
6779 * src/output.c (token_actions, output_base, output_conflicts)
6780 (output_check): Merge into...
6781 (prepare_actions): this.
6782 (actions_output): Rename as...
6783 (user_actions_output): this.
6784 * src/main.c (main): Call tables_generate and tables_free.
6785
1509d42f
AD
67862002-07-31 Akim Demaille <akim@epita.fr>
6787
6788 Steal GCC's --time-report support.
6789
6790 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
6791 stolen/adjusted from GCC.
6792 * m4/stage.m4: Remove time related checks.
6793 * m4/timevar.m4: New.
6794 * configure.in: Adjust.
6795 * src/system.h: Adjust to using timevar.h.
6796 * src/getargs.h, src/getargs.c: Support trace_time for
6797 --trace=time.
6798 * src/main.c (stage): Remove.
6799 (main): Replace `stage' invocations with timevar calls.
6800 * src/output.c: Insert pertinent timevar calls.
6801
273a74fa
AD
68022002-07-31 Akim Demaille <akim@epita.fr>
6803
6804 Let --trace have arguments.
6805
6806 * src/getargs.h (enum trace_e): New.
6807 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
6808 (long_options, short_options): --trace/-T takes an optional
6809 argument.
6810 Change all the uses of trace_flag to reflect the new flags.
6811 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
6812
6813 Strengthen `stage' portability.
6814
6815 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
6816 * configure.in: Use it.
6817 Don't check for malloc.h and sys/times.h.
6818 * src/system.h: Include them when appropriate.
6819 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
6820 times and struct tms are available.
6821
217598da
AD
68222002-07-30 Akim Demaille <akim@epita.fr>
6823
6824 In verbose parse error message, don't report `error' as an
6825 expected token.
6826 * tests/actions.at (Printers and Destructors): Adjust.
6827 * tests/calc.at (Calculator $1): Adjust.
6828 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
6829 error message, do not report the parser accepts the error token in
6830 that state.
6831
52489d44
AD
68322002-07-30 Akim Demaille <akim@epita.fr>
6833
6834 Normalize conflict related messages.
6835
6836 * src/complain.h, src/complain.c (warn, complain): New.
6837 * src/conflicts.c (conflicts_print): Use them.
6838 (conflict_report_yacc): New, extracted from...
6839 (conflicts_print): here.
6840 * tests/conflicts.at, tests/existing.at: Adjust.
6841
e8832397
AD
68422002-07-30 Akim Demaille <akim@epita.fr>
6843
6844 Report rules which are never reduced by the parser: those hidden
6845 by conflicts.
6846
6847 * src/LR0.c (save_reductions): Don't make the final state too
6848 different: save its reduction (accept) instead of having a state
6849 without any action (no shift or goto, no reduce).
6850 Note: the final state is now a ``regular'' state, i.e., the
6851 parsers now contain `reduce 0' as default reduction.
6852 Nevertheless, since they decide to `accept' when yystate =
6853 final_state, they still will not reduce rule 0.
6854 * src/print.c (print_actions, print_reduction): Adjust.
6855 * src/output.c (action_row): Track reduced rules.
6856 (token_actions): Report rules never reduced.
6857 * tests/conflicts.at, tests/regression.at: Adjust.
6858
caf23d24
AD
68592002-07-30 Akim Demaille <akim@epita.fr>
6860
6861 `stage' was accidently included in a previous patch.
6862 Initiate its autoconfiscation.
6863
6864 * configure.in: Look for malloc.h and sys/times.h.
6865 * src/main.c (stage): Adjust.
6866 Report only when trace_flag.
6867
640748ee
AD
68682002-07-29 Akim Demaille <akim@epita.fr>
6869
6870 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
6871 state_number_t.
6872 (errs_t): symbol_t*, not symbol_number_t.
6873 (reductions_t): rule_t*, not rule_number_t.
6874 (FOR_EACH_SHIFT): New.
6875 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
6876 * src/print.c, src/print_graph.c: Adjust.
6877
88bce5a2
AD
68782002-07-29 Akim Demaille <akim@epita.fr>
6879
6880 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
6881
6882 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
6883 (endtoken, accept): these.
6884 * src/reader.c (reader): Set endtoken's default tag to "$end".
6885 Set undeftoken's tag to "$undefined" instead of "$undefined.".
6886 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
6887 Adjust.
6888
1bfb97db
AD
68892002-07-29 Akim Demaille <akim@epita.fr>
6890
6891 * src/reduce.c (reduce_grammar): When the language is empty,
6892 complain about the start symbol, not the axiom.
6893 Use its location.
6894 * tests/reduce.at (Empty Language): New.
6895
fc5734fe
AD
68962002-07-26 Akim Demaille <akim@epita.fr>
6897
6898 * src/reader.h, src/reader.c (gram_error): ... can't get
6899 yycontrol without making too strong assumptions on the parser
6900 itself.
6901 * src/output.c (prepare_tokens): Use the real 0th value of
6902 token_translations instead of `0'.
6903 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
6904 visible here.
6905 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
6906 for the time being: %locations ought to provide it to yyerror.
6907
3650b4b8
AD
69082002-07-25 Akim Demaille <akim@epita.fr>
6909
6910 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
6911 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
6912 * tests/regression.at (Web2c Actions): Adjust.
6913
4b3d3a8e
AD
69142002-07-25 Akim Demaille <akim@epita.fr>
6915
6916 Stop storing rules from 1 to nrules + 1.
6917
6918 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
6919 * src/nullable.c, src/output.c, src/print.c, src/reader.c
6920 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
6921 Iterate from 0 to nrules.
6922 Use rule_number_as_item_number and item_number_as_rule_number.
6923 Adjust to `derive' now containing possibly 0.
6924 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
6925 Handle the `- 1' part in rule numbers from/to item numbers.
6926 * src/conflicts.c (log_resolution): Fix the message which reversed
6927 shift and reduce.
6928 * src/output.c (action_row): Initialize default_rule to -1.
6929 (token_actions): Adjust.
6930 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
6931 expected output.
6932 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
6933
4a2a22f4
AD
69342002-07-25 Akim Demaille <akim@epita.fr>
6935
6936 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
6937 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
6938 (b4_c_knr_arg_decl): New.
6939 * data/yacc.c: Use it to define yysymprint, yydestruct, and
6940 yyreport_parse_error.
6941
b8df3223
AD
69422002-07-25 Akim Demaille <akim@epita.fr>
6943
6944 * data/yacc.c (yyreport_parse_error): New, extracted from...
6945 (yyparse): here.
6946 (yydestruct, yysymprint): Move above yyparse.
6947 Be K&R compliant.
6948
a762e609
AD
69492002-07-25 Akim Demaille <akim@epita.fr>
6950
6951 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
6952 replace...
6953 (b4_sint_type, b4_uint_type): these.
6954 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
6955 * tests/regression.at (Web2c Actions): Adjust.
6956
12b0043a
AD
69572002-07-25 Akim Demaille <akim@epita.fr>
6958
6959 * src/gram.h (TIEM_NUMBER_MAX): New.
6960 (item_number_of_rule_number, rule_number_of_item_number): Rename
6961 as...
6962 (rule_number_as_item_number, item_number_as_rule_number): these.
6963 Adjust dependencies.
6964 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
6965 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
6966 (symbol_number_to_vector_number): New.
6967 (order): Of vector_number_t* type.
6968 (base_t, BASE_MAX, BASE_MIN): New.
6969 (froms, tos, width, pos, check): Of base_t type.
6970 (action_number_t, ACTION_MIN, ACTION_MAX): New.
6971 (actrow): Of action_number_t type.
6972 (conflrow): Of unsigned int type.
6973 (table_ninf, base_ninf): New.
6974 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
6975 (muscle_insert_int_table, muscle_insert_base_table)
6976 (muscle_insert_rule_number_table): New.
6977 (prepare_tokens): Output `toknum' as int_table.
6978 (action_row): Returns a rule_number_t.
6979 Use ACTION_MIN, not SHRT_MIN.
6980 (token_actions): yydefact is rule_number_t*.
6981 (table_ninf_remap): New.
6982 (pack_table): Use it for `base' and `table'.
6983 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
6984 replaced with...
6985 (YYPACT_NINF, YYTABLE_NINF): these.
6986 (yypact, yytable): Compute their types instead of hard-coded
6987 `short'.
6988 * tests/regression.at (Web2c Actions): Adjust.
6989
5dde258a
AD
69902002-07-19 Akim Demaille <akim@epita.fr>
6991
6992 * src/scan-gram.l (id): Can start with an underscore.
6993
a945ec39
AD
69942002-07-16 Akim Demaille <akim@epita.fr>
6995
6996 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
6997 Adjust all former `associativity' dependencies.
6998 * src/symtab.c (symbol_new): Default associativity is `undef', not
6999 `right'.
7000 (symbol_check_alias_consistence): Adjust.
7001
fae437e8
AD
70022002-07-09 Akim Demaille <akim@epita.fr>
7003
7004 * doc/bison.texinfo: Properly set the ``header'' part.
7005 Use @dircategory ``GNU programming tools'' as per Texinfo's
7006 documentation.
7007 Use @copying.
7008
1a715ef2
AD
70092002-07-09 Akim Demaille <akim@epita.fr>
7010
7011 * lib/quotearg.h: Protect against multiple inclusions.
7012 * src/location.h (location_t): Add a `file' member.
7013 (LOCATION_RESET, LOCATION_PRINT): Adjust.
7014 * src/complain.c (warn_at, complain_at, fatal_at): Drop
7015 `error_one_per_line' support.
7016
a5d50994
AD
70172002-07-09 Akim Demaille <akim@epita.fr>
7018
7019 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
7020 * src/reader.c (lineno): Remove.
7021 Adjust all dependencies.
7022 (get_merge_function): Take a location and use complain_at.
7023 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
7024 * tests/regression.at (Invalid inputs, Mixing %token styles):
7025 Adjust.
7026
b275314e
AD
70272002-07-09 Akim Demaille <akim@epita.fr>
7028
7029 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
7030 recovery rule, and forbid extensions when --yacc.
7031 (gram_error): Use complain_at.
7032 * src/reader.c (reader): Exit if there were parse errors.
7033
865b9df1
AD
70342002-07-09 Akim Demaille <akim@epita.fr>
7035
7036 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
7037 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
7038 Reported by R Blake <blakers@mac.com>.
7039
c76e14da
AD
70402002-07-09 Akim Demaille <akim@epita.fr>
7041
7042 * data/yacc.c: Output the copyright notive in the header.
7043
7db2ed2d
AD
70442002-07-03 Akim Demaille <akim@epita.fr>
7045
7046 * src/output.c (froms, tos): Are state_number_t.
7047 (save_column): sp, sp1, and sp2 are state_number_t.
7048 (prepare): Rename `final' as `final_state_number', `nnts' as
7049 `nterms_number', `nrules' as `rules_number', `nstates' as
7050 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
7051 unused.
7052 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
7053 * data/lalr1.cc (nsym_): Remove, unused.
7054
e68e0410
AD
70552002-07-03 Akim Demaille <akim@epita.fr>
7056
7057 * src/lalr.h, src/lalr.c (goto_number_t): New.
7058 * src/lalr.c (goto_list_t): New.
7059 Propagate them.
7060 * src/nullable.c (rule_list_t): New.
7061 Propagate.
7062 * src/types.h: Remove.
7063
e1a4f3a4
AD
70642002-07-03 Akim Demaille <akim@epita.fr>
7065
7066 * src/closure.c (print_fderives): Use rule_rhs_print.
7067 * src/derives.c (print_derives): Use rule_rhs_print.
7068 (rule_list_t): New, replaces `shorts'.
7069 (set_derives): Add comments.
7070 * tests/sets.at (Nullable, Firsts): Adjust.
7071
536545f3
AD
70722002-07-03 Akim Demaille <akim@epita.fr>
7073
7074 * src/output.c (prepare_actions): Free `tally' and `width'.
7075 (prepare_actions): Allocate and free `order'.
7076 * src/symtab.c (symbols_free): Free `symbols'.
7077 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
7078 * src/output.c (m4_invoke): Move to...
7079 * src/scan-skel.l: here.
7080 (<<EOF>>): Close yyout, and free its name.
7081
8b752b00
AD
70822002-07-03 Akim Demaille <akim@epita.fr>
7083
7084 Fix some memory leaks, and fix a bug: state 0 was examined twice.
7085
7086 * src/LR0.c (new_state): Merge into...
7087 (state_list_append): this.
7088 (new_states): Merge into...
7089 (generate_states): here.
7090 (set_states): Don't ensure a proper `errs' state member here, do it...
7091 * src/conflicts.c (conflicts_solve): here.
7092 * src/state.h, src/state.c: Comment changes.
7093 (state_t): Rename member `shifts' as `transitions'.
7094 Adjust all dependencies.
7095 (errs_new): For consistency, also take the values as argument.
7096 (errs_dup): Remove.
7097 (state_errs_set): New.
7098 (state_reductions_set, state_transitions_set): Assert that no
7099 previous value was assigned.
7100 (state_free): New.
7101 (states_free): Use it.
7102 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
7103 temporary storage: use `errs' and `nerrs' as elsewhere.
7104 (set_conflicts): Allocate and free this `errs'.
7105
613f5e1a
AD
71062002-07-02 Akim Demaille <akim@epita.fr>
7107
7108 * lib/libiberty.h: New.
7109 * lib: Update the bitset implementation from upstream.
7110 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
7111 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
7112 * src/main.c: Adjust bitset stats calls.
7113
26e0cadc
PE
71142002-07-01 Paul Eggert <eggert@twinsun.com>
7115
7116 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
7117 char, so that negative chars don't collide with $.
7118
1154cced
AD
71192002-06-30 Akim Demaille <akim@epita.fr>
7120
7121 Have the GLR tests be `warning' checked, and fix the warnings.
7122
7123 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
7124 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
7125 (yyremoveDeletes): `yyi' and `yyj' are size_t.
7126 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
7127 (yyaddDeferredAction): static.
7128 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
7129 (yyreportParseError): yyprefix is const.
7130 yytokenp is used only when verbose.
7131 (yy__GNUC__): Replace with __GNUC__.
7132 (yypdumpstack): yyi is size_t.
7133 (yypreference): Un-yy local variables and arguments, to avoid
7134 clashes with `yyr1'. Anyway, we are not in the user name space.
7135 (yytname_size): be an int, as is compared with ints.
7136 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
7137 Use them.
7138 * tests/cxx-gram.at: Use quotation to protect $1.
7139 Use AT_COMPILE to enable warnings hunts.
7140 Prototype yylex and yyerror.
7141 `Use' argc.
7142 Include `string.h', not `strings.h'.
7143 Produce and prototype stmtMerge only when used.
7144 yylex takes a location.
7145
97650f4e
AD
71462002-06-30 Akim Demaille <akim@epita.fr>
7147
7148 We spend a lot of time in quotearg, in particular when --verbose.
7149
7150 * src/symtab.c (symbol_get): Store a quoted version of the key.
7151 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
7152 Adjust all callers.
7153
d2576365
AD
71542002-06-30 Akim Demaille <akim@epita.fr>
7155
7156 * src/state.h (reductions_t): Rename member `nreds' as num.
7157 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
7158 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
7159
ccaf65bc
AD
71602002-06-30 Akim Demaille <akim@epita.fr>
7161
7162 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
7163 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
7164 (shifts_to): Rename as...
7165 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
7166 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
7167 (TRANSITION_IS_DISABLED, transitions_to): these.
7168
87675353
AD
71692002-06-30 Akim Demaille <akim@epita.fr>
7170
7171 * src/print.c (print_shifts, print_gotos): Merge into...
7172 (print_transitions): this.
7173 (print_transitions, print_errs, print_reductions): Align the
7174 lookaheads columns.
7175 (print_core, print_transitions, print_errs, print_state,
7176 print_grammar): Output empty lines separator before, not after.
7177 (state_default_rule_compute): Rename as...
7178 (state_default_rule): this.
7179 * tests/conflicts.at (Defaulted Conflicted Reduction),
7180 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
7181 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
7182
ce4ccb4b
AD
71832002-06-30 Akim Demaille <akim@epita.fr>
7184
7185 Display items as we display rules.
7186
7187 * src/gram.h, src/gram.c (rule_lhs_print): New.
7188 * src/gram.c (grammar_rules_partial_print): Use it.
7189 * src/print.c (print_core): Likewise.
7190 * tests/conflicts.at (Defaulted Conflicted Reduction),
7191 (Unresolved SR Conflicts): Adjust.
7192 (Unresolved SR Conflicts): Adjust and rename as...
7193 (Resolved SR Conflicts): this, as was meant.
7194 * tests/regression.at (Web2c Report): Adjust.
7195
bc933ef1
AD
71962002-06-30 Akim Demaille <akim@epita.fr>
7197
7198 * src/print.c (state_default_rule_compute): New, extracted from...
7199 (print_reductions): here.
7200 Pessimize, but clarify the code.
7201 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
7202
53d4308d
AD
72032002-06-30 Akim Demaille <akim@epita.fr>
7204
7205 * src/output.c (action_row): Let default_rule be always a rule
7206 number.
7207
574fb2d5
AD
72082002-06-30 Akim Demaille <akim@epita.fr>
7209
7210 * src/closure.c (print_firsts, print_fderives, closure):
7211 Use BITSET_EXECUTE.
7212 * src/lalr.c (lookaheads_print): Likewise.
7213 * src/state.c (state_rule_lookaheads_print): Likewise.
7214 * src/print_graph.c (print_core): Likewise.
7215 * src/print.c (print_reductions): Likewise.
7216 * src/output.c (action_row): Likewise.
7217 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
7218
05811fd7
AD
72192002-06-30 Akim Demaille <akim@epita.fr>
7220
7221 * src/print_graph.c: Use report_flag.
7222
0e4d5753
AD
72232002-06-30 Akim Demaille <akim@epita.fr>
7224
7225 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
7226 to...
7227 * src/relation.h, src/relation.c (traverse, relation_digraph)
7228 (relation_print, relation_transpose): New.
7229
24c7d800
AD
72302002-06-30 Akim Demaille <akim@epita.fr>
7231
7232 * src/state.h, src/state.c (shifts_to): New.
7233 * src/lalr.c (build_relations): Use it.
7234
9222837b
AD
72352002-06-30 Akim Demaille <akim@epita.fr>
7236
7237 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
7238 (item_number_of_rule_number, rule_number_of_item_number): New.
7239 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
7240 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7241 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
7242 Propagate their use.
7243 Much remains to be done, in particular wrt `shorts' from types.h.
7244
260008e5
AD
72452002-06-30 Akim Demaille <akim@epita.fr>
7246
7247 * src/symtab.c (symbol_new): Initialize the `printer' member.
7248
8a731ca8
AD
72492002-06-30 Akim Demaille <akim@epita.fr>
7250
7251 * src/LR0.c (save_reductions): Remove, replaced by...
7252 * src/state.h, src/state.c (state_reductions_set): New.
7253 (reductions, errs): Rename as...
7254 (reductions_t, errs_t): these.
7255 Adjust all dependencies.
7256
32e1e0a4
AD
72572002-06-30 Akim Demaille <akim@epita.fr>
7258
7259 * src/LR0.c (state_list_t, state_list_append): New.
7260 (first_state, last_state): Now symbol_list_t.
7261 (this_state): Remove.
7262 (new_itemsets, append_states, save_reductions): Take a state_t as
7263 argument.
7264 (set_states, generate_states): Adjust.
7265 (save_shifts): Remove, replaced by...
7266 * src/state.h, src/state.c (state_shifts_set): New.
7267 (shifts): Rename as...
7268 (shifts_t): this.
7269 Adjust all dependencies.
7270 * src/state.h (state_t): Remove the `next' member.
7271
e5fb6710
AD
72722002-06-30 Akim Demaille <akim@epita.fr>
7273
7274 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
7275 escaped in slot 0.
7276
c7ca99d4
AD
72772002-06-30 Akim Demaille <akim@epita.fr>
7278
7279 Use hash.h for the state hash table.
7280
7281 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
7282 (allocate_storage): Use state_hash_new.
7283 (free_storage): Use state_hash_free.
7284 (new_state, get_state): Adjust.
7285 * src/lalr.h, src/lalr.c (states): Move to...
7286 * src/states.h (state_t): Remove the `link' member, no longer
7287 used.
7288 * src/states.h, src/states.c: here.
7289 (state_hash_new, state_hash_free, state_hash_lookup)
7290 (state_hash_insert, states_free): New.
7291 * src/states.c (state_table, state_compare, state_hash): New.
7292 * src/output.c (output_actions): Do not free states now, since we
7293 still need to know the final_state number in `prepare', called
7294 afterwards. Do it...
7295 * src/main.c (main): here: call states_free after `output'.
7296
df0e7316
AD
72972002-06-30 Akim Demaille <akim@epita.fr>
7298
7299 * src/state.h, src/state.c (state_new): New, extracted from...
7300 * src/LR0.c (new_state): here.
7301 * src/state.h (STATE_ALLOC): Move to...
7302 * src/state.c: here.
7303 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
7304 * src/state.h, src/state.c: here.
7305
39f41916
AD
73062002-06-30 Akim Demaille <akim@epita.fr>
7307
7308 * src/reader.c (gensym): Rename as...
7309 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
7310 (getsym): Rename as...
7311 (symbol_get): this.
7312
d57650a5
AD
73132002-06-30 Akim Demaille <akim@epita.fr>
7314
7315 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
7316 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
7317 * src/output.c, src/print.c, src/print_graph.c: Propagate.
7318 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
7319
5a08f1ce
AD
73202002-06-30 Akim Demaille <akim@epita.fr>
7321
7322 Make the test suite pass with warnings checked.
7323
7324 * tests/actions.at (Printers and Destructors): Improve.
7325 Avoid unsigned vs. signed issues.
7326 * tests/calc.at: Don't exercise the scanner here, do it...
7327 * tests/input.at (Torturing the Scanner): here.
7328
720623af
PH
73292002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7330
88e7e941 7331 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
7332 reorganize first lines parallel to yacc.c.
7333
fb8135fa
AD
73342002-06-28 Akim Demaille <akim@epita.fr>
7335
7336 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
7337 (b4_token_enum, b4_token_defines): New, factored from...
7338 * data/lalr1.cc, data/yacc.c, glr.c: here.
7339
41442480
AD
73402002-06-28 Akim Demaille <akim@epita.fr>
7341
7342 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
7343 unused variables.
7344 * src/output.c (merger_output): static.
7345
e0e5bf84
AD
73462002-06-28 Akim Demaille <akim@epita.fr>
7347
ba0fe3c7 7348 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
7349 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
7350 pacify GCC.
7351 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 7352
676385e2
PH
73532002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7354
7355 Accumulated changelog for new GLR parsing features.
7356
6a254321 7357 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
7358 conflicts_total_count.
7359 * src/conflicts.h: Ditto.
7360 * src/output.c (token_actions): Use the new name.
7361 (output_conflicts): Change conflp => conflict_list_heads, and
7362 confl => conflict_list for better readability.
7363 * data/glr.c: Use the new names.
7364 * NEWS: Add self to GLR announcement.
e0e5bf84 7365
676385e2
PH
7366 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
7367
7368 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
7369 Akim Demaille.
7370
7371 * data/bison.glr: Change name to glr.c
7372 * data/glr.c: Renamed from bison.glr.
7373 * data/Makefile.am: Add glr.c
e0e5bf84
AD
7374
7375 * src/getargs.c:
7376
676385e2 7377 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 7378 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 7379
676385e2
PH
7380 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7381
7382 * data/bison.glr: Be sure to restore the
7383 current #line when returning to the skeleton contents after having
7384 exposed the input file's #line.
7385
7386 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7387
7388 * data/bison.glr: Bring up to date with changes to bison.simple.
7389
7390 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7391
7392 * data/bison.glr: Correct definitions that use b4_prefix.
7393 Various reformatting.
7394 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
7395 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
7396 yytokenp argument; now part of stack.
7397 (yychar): Define to behave as documented.
7398 (yyclearin): Ditto.
e0e5bf84 7399
676385e2
PH
7400 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7401
7402 * src/reader.h: Add declaration for free_merger_functions.
7403
7404 * src/reader.c (merge_functions): New variable.
7405 (get_merge_function): New function.
7406 (free_merger_functions): New function.
7407 (readgram): Check for %prec that is not followed by a symbol.
7408 Handle %dprec and %merge declarations.
7409 (packgram): Initialize dprec and merger fields in rules array.
7410
7411 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
7412 conflict_list_cnt, conflict_list_free): New variables.
7413 (table_grow): Also grow conflict_table.
e0e5bf84 7414 (prepare_rules): Output dprec and merger tables.
676385e2 7415 (conflict_row): New function.
e0e5bf84 7416 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
7417 default reduction in conflicted states for GLR parser so that there
7418 are spaces for the conflict lists.
7419 (save_row): Also save conflict information.
7420 (token_actions): Allocate conflict list.
7421 (merger_output): New function.
7422 (pack_vector): Pack conflict table, too.
7423 (output_conflicts): New function to output yyconflp and yyconfl.
7424 (output_check): Allocate conflict_tos.
7425 (output_actions): Output conflict tables, also.
7426 (output_skeleton): Output b4_mergers definition.
7427 (prepare): Output b4_max_rhs_length definition.
7428 Use 'bison.glr' as default skeleton for GLR parsers.
7429
7430 * src/gram.c (glr_parser): New flag.
7431 (grammar_free): Call free_merger_functions.
7432
7433 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
7434 all pairs of conflicting reductions, rather than just all tokens
7435 causing conflicts. Needed to size conflict tables.
e0e5bf84 7436 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
7437 interface.
7438 (conflicts_print): Ditto.
7439 (count_total_conflicts): New function.
7440
7441 * src/reader.h (merger_list): New type.
7442 (merge_functions): New variable.
7443
7444 * src/lex.h (tok_dprec, tok_merge): New token types.
7445
7446 * src/gram.h (rule_s): Add dprec and merger fields.
7447 (glr_parser): New flag.
7448
7449 * src/conflicts.h (count_total_conflicts): New function.
7450
7451 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
7452
7453 * doc/bison.texinfo (Generalized LR Parsing): New section.
7454 (GLR Parsers): New section.
7455 (Language and Grammar): Mention GLR parsing.
7456 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
7457 Correct typo ("tge" -> "the").
7458
7459 * data/bison.glr: New skeleton for GLR parsing.
7460
7461 * tests/cxx-gram.at: New tests for GLR parsing.
7462
7463 * tests/testsuite.at: Include cxx-gram.at.
7464
7465 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 7466
676385e2
PH
7467 * src/parse-gram.y:
7468
7469 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
7470
7471 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 7472
b5480d74 74732002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
7474
7475 * src/options.h, src/options.c: Remove.
7476 * src/getargs.c (short_options, long_options): New.
7477
60491a94
AD
74782002-06-27 Akim Demaille <akim@epita.fr>
7479
7480 * data/bison.simple, data/bison.c++: Rename as...
7481 * data/yacc.c, data/lalr1.cc: these.
7482 * doc/bison.texinfo (Environment Variables): Remove.
7483
9be0c25b
AD
74842002-06-25 Raja R Harinath <harinath@cs.umn.edu>
7485
7486 * src/getargs.c (report_argmatch): Initialize strtok().
7487
1ae72863
AD
74882002-06-20 Akim Demaille <akim@epita.fr>
7489
7490 * data/bison.simple (b4_symbol_actions): New, replaces...
7491 (b4_symbol_destructor, b4_symbol_printer): these.
7492 (yysymprint): Be sure to call YYPRINT only for tokens, and using
7493 user token numbers.
7494
87542d29
AD
74952002-06-20 Akim Demaille <akim@epita.fr>
7496
7497 * data/bison.simple (yydestructor): Rename as...
7498 (yydestruct): this.
7499
1a31ed21
AD
75002002-06-20 Akim Demaille <akim@epita.fr>
7501
7502 * src/symtab.h, src/symtab.c (symbol_type_set)
7503 (symbol_destructor_set, symbol_precedence_set): The location is
7504 the last argument.
7505 Adjust all callers.
7506
e776192e
AD
75072002-06-20 Akim Demaille <akim@epita.fr>
7508
7509 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
7510 internals.
7511 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
7512 Takes a location.
7513 * src/symtab.h, src/symtab.c (symbol_class_set)
7514 (symbol_user_token_number_set): Likewise.
7515 Adjust all callers.
7516 Promote complain_at.
7517 * tests/input.at (Type Clashes): Adjust.
7518
5c1180b3
AD
75192002-06-20 Akim Demaille <akim@epita.fr>
7520
7521 * data/bison.simple (YYLEX): Fix the declaration when
7522 %pure-parser.
7523
e3170060
AD
75242002-06-20 Akim Demaille <akim@epita.fr>
7525
7526 * data/bison.simple (yysymprint): Don't print the token number,
7527 just its name.
7528 * tests/actions.at (Destructors): Rename as...
7529 (Printers and Destructors): this.
7530 Also exercise %printer.
7531
253862fd
AD
75322002-06-20 Akim Demaille <akim@epita.fr>
7533
7534 * data/bison.simple (YYDSYMPRINT): New.
7535 Use it to remove many of the #if YYDEBUG/if (yydebug).
7536
366eea36
AD
75372002-06-20 Akim Demaille <akim@epita.fr>
7538
7539 * src/symtab.h, src/symtab.c (symbol_t): printer and
7540 printer_location are new members.
7541 (symbol_printer_set): New.
7542 * src/parse-gram.y (PERCENT_PRINTER): New token.
7543 Handle its associated rule.
7544 * src/scan-gram.l: Adjust.
7545 (handle_destructor_at, handle_destructor_dollar): Rename as...
7546 (handle_symbol_code_at, handle_symbol_code_dollar): these.
7547 * src/output.c (symbol_printers_output): New.
7548 (output_skeleton): Call it.
7549 * data/bison.simple (yysymprint): New. Cannot be named yyprint
7550 since there are already many grammar files with a user `yyprint'.
7551 Replace the calls to YYPRINT to calls to yysymprint.
7552 * tests/calc.at: Adjust.
7553 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
7554 taking advantage of parser very internal details (stack size!).
7555
4f25ebb0
AD
75562002-06-20 Akim Demaille <akim@epita.fr>
7557
7558 * src/scan-gram.l: Complete the scanner with the missing patterns
7559 to pacify Flex.
7560 Use `quote' and `symbol_tag_get' where appropriate.
7561
93b68a0e
AD
75622002-06-19 Akim Demaille <akim@epita.fr>
7563
7564 * tests/actions.at (Destructors): Augment to test locations.
7565 * data/bison.simple (yydestructor): Pass it the current location
7566 if locations are enabled.
7567 Prototype only when __STDC__ or C++.
7568 Change the argument names to move into the yy name space: there is
7569 user code here.
7570
58612f1d
AD
75712002-06-19 Akim Demaille <akim@epita.fr>
7572
74310291
AD
7573 * data/bison.simple (b4_pure_if): New.
7574 Use it instead of #ifdef YYPURE.
7575
75762002-06-19 Akim Demaille <akim@epita.fr>
7577
7578 * data/bison.simple (b4_location_if): New.
58612f1d
AD
7579 Use it instead of #ifdef YYLSP_NEEDED.
7580
f25bfb75
AD
75812002-06-19 Akim Demaille <akim@epita.fr>
7582
7583 Prepare @$ in %destructor, but currently don't bind it in the
7584 skeleton, as %location use is not cleaned up yet.
7585
7586 * src/scan-gram.l (handle_dollar, handle_destructor_at)
7587 (handle_action_at): New.
7588 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
7589 a braced_code_t and a location as additional arguments.
7590 (handle_destructor_dollar): Instead of requiring `b4_eval', just
7591 unquote one when outputting `b4_dollar_dollar'.
7592 Adjust callers.
7593 * data/bison.simple (b4_eval): Remove.
7594 (b4_symbol_destructor): Adjust.
7595 * tests/input.at (Invalid @n): Adjust.
7596
c732d2c6
AD
75972002-06-19 Zack Weinberg <zack@codesourcery.com>
7598
7599 * doc/bison.texinfo: Document ability to have multiple
7600 prologue sections.
7601
8c165d89
AD
76022002-06-18 Akim Demaille <akim@epita.fr>
7603
7604 * src/files.c (compute_base_names): When computing the output file
7605 names from the input file name, strip the directory part.
7606
ca98bf57
AD
76072002-06-18 Akim Demaille <akim@epita.fr>
7608
7609 * data/bison.simple.new: Comment changes.
7610 Reported by Andreas Schwab.
7611
0bfb02ff
AD
76122002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
7613
7614 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
7615 there are no `label `yyoverflowlab' defined but not used' warnings
7616 when yyoverflow is defined.
7617
24c0aad7
AD
76182002-06-18 Akim Demaille <akim@epita.fr>
7619
7620 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
7621 new member.
7622 (symbol_destructor_set): Adjust.
7623 * src/output.c (symbol_destructors_output): Output the destructor
7624 locations.
7625 Output the symbol name.
7626 * data/bison.simple (b4_symbol_destructor): Adjust.
7627
5719c109
AD
76282002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
7629 and Akim Demaille <akim@epita.fr>
7630
7631 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
7632 what's left on the stack when the error recovery hits EOF.
7633 * tests/actions.at (Destructors): Complete to exercise this case.
7634
9280d3ef
AD
76352002-06-17 Akim Demaille <akim@epita.fr>
7636
7637 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
7638 arguments is really empty, not only equal to `[]'.
7639 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
7640 member.
7641 (symbol_destructor_set): New.
7642 * src/output.c (symbol_destructors_output): New.
7643 * src/reader.h (brace_code_t, current_braced_code): New.
7644 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
7645 (handle_dollar): Rename as...
7646 (handle_action_dollar): this.
7647 (handle_destructor_dollar): New.
7648 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
7649 (grammar_declaration): Use it.
7650 * data/bison.simple (yystos): Is always defined.
7651 (yydestructor): New.
7652 * tests/actions.at (Destructors): New.
7653 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
7654
dafdc66f
AD
76552002-06-17 Akim Demaille <akim@epita.fr>
7656
7657 * src/symlist.h, src/symlist.c (symbol_list_length): New.
7658 * src/scan-gram.l (handle_dollar, handle_at): Compute the
7659 rule_length only when needed.
7660 * src/output.c (actions_output, token_definitions_output): Output
7661 the full M4 block.
7662 * src/symtab.c: Don't access directly to the symbol tag, use
7663 symbol_tag_get.
7664 * src/parse-gram.y: Use symbol_list_free.
7665
56c47203
AD
76662002-06-17 Akim Demaille <akim@epita.fr>
7667
7668 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
7669 (symbol_list_prepend, get_type_name): Move to...
7670 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
7671 (symbol_list_prepend, symbol_list_n_type_name_get): here.
7672 Adjust all callers.
7673 (symbol_list_free): New.
7674 * src/scan-gram.l (handle_dollar): Takes a location.
7675 * tests/input.at (Invalid $n): Adjust.
7676
1e0bab92
AD
76772002-06-17 Akim Demaille <akim@epita.fr>
7678
7679 * src/reader.h, src/reader.c (symbol_list_new): Export it.
7680 (symbol_list_prepend): New.
7681 * src/parse-gram.y (%union): `list' is a new member.
7682 (symbols.1): New, replaces...
7683 (terms_to_prec.1, nterms_to_type.1): these.
7684 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
7685 Take a location as additional argument.
7686 Adjust all callers.
7687
04e60654
AD
76882002-06-15 Akim Demaille <akim@epita.fr>
7689
7690 * src/parse-gram.y: Move %token in the declaration section so that
7691 we don't depend upon CVS Bison.
7692
10e5b8bd
AD
76932002-06-15 Akim Demaille <akim@epita.fr>
7694
7695 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
7696 * src/print.c (print_core): Use it.
7697
9801d40c
AD
76982002-06-15 Akim Demaille <akim@epita.fr>
7699
7700 * src/conflicts.c (log_resolution): Accept the rule involved in
7701 the sr conflicts instead of the lookahead number that points to
7702 that rule.
7703 (flush_reduce): Accept the current lookahead vector as argument,
7704 instead of the index in LA.
7705 (resolve_sr_conflict): Accept the current number of lookahead
7706 bitset to consider for the STATE, instead of the index in LA.
7707 (set_conflicts): Adjust.
7708 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
7709
c0263492
AD
77102002-06-15 Akim Demaille <akim@epita.fr>
7711
7712 * src/state.h (state_t): Replace the `lookaheadsp' member, a
7713 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
7714 Adjust all dependencies.
7715 * src/lalr.c (initialize_lookaheads): Split into...
7716 (states_lookaheads_count, states_lookaheads_initialize): these.
7717 (lalr): Adjust.
7718
9757c359
AD
77192002-06-15 Akim Demaille <akim@epita.fr>
7720
7721 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
7722 out of...
7723 (grammar_rules_print): here.
7724 * src/reduce.c (reduce_output): Use it.
7725 * tests/reduce.at (Useless Rules, Reduced Automaton)
7726 (Underivable Rules): Adjust.
7727
6b98e4b5
AD
77282002-06-15 Akim Demaille <akim@epita.fr>
7729
7730 Copy BYacc's nice way to report the grammar.
7731
7732 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
7733 New.
7734 Don't print the rules' location, it is confusing and useless.
7735 (rule_print): Use grammar_rhs_print.
7736 * src/print.c (print_grammar): Use grammar_rules_print.
7737
6b98e4b5
AD
77382002-06-15 Akim Demaille <akim@epita.fr>
7739
7740 Complete and rationalize `useless thing' warnings.
7741
7742 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
7743 (symbol_tag_print): New.
7744 Use them everywhere in place of accessing directly the tag member.
7745 * src/gram.h, src/gram.c (rule_print): New.
7746 Use it where a rule used to be printed `by hand'.
7747 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
7748 (reduce_grammar_tables): Report the useless rules.
7749 (reduce_print): Useless things are a warning, not an error.
7750 Report it as such.
7751 * tests/reduce.at (Useless Nonterminals, Useless Rules):
7752 (Reduced Automaton, Underivable Rules): Adjust.
7753 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
7754 * tests/conflicts.at (Unresolved SR Conflicts)
7755 (Solved SR Conflicts): Adjust.
7756
ee000ba4
AD
77572002-06-15 Akim Demaille <akim@epita.fr>
7758
7759 Let symbols have a location.
7760
7761 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
7762 (getsym): Adjust.
7763 Adjust all callers.
7764 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
7765 Use location_t, not int.
7766 * src/symtab.c (symbol_check_defined): Take advantage of the
7767 location.
7768 * tests/regression.at (Invalid inputs): Adjust.
7769
8efe435c
AD
77702002-06-15 Akim Demaille <akim@epita.fr>
7771
7772 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
7773 (input): Don't try to initialize yylloc here, do it in the
7774 scanner.
7775 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
7776 * src/gram.h (rule_t): Change line and action_line into location
7777 and action_location, of location_t type.
7778 Adjust all dependencies.
7779 * src/location.h, src/location.c (empty_location): New.
7780 * src/reader.h, src/reader.c (grammar_start_symbol_set)
7781 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
7782 (grammar_current_rule_symbol_append)
7783 (grammar_current_rule_action_append): Expect a location as argument.
7784 * src/reader.c (grammar_midrule_action): Adjust to attach an
7785 action's location as dummy symbol location.
7786 * src/symtab.h, src/symtab.c (startsymbol_location): New.
7787 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
7788 the line numbers.
7789
1921f1d7
AD
77902002-06-14 Akim Demaille <akim@epita.fr>
7791
7792 Grammar declarations may be found in the grammar section.
7793
7794 * src/parse-gram.y (rules_or_grammar_declaration): New.
7795 (declarations): Each declaration may end with a semicolon, not
7796 just...
7797 (grammar_declaration): `"%union"'.
7798 (grammar): Branch to rules_or_grammar_declaration.
7799
4515534c
AD
78002002-06-14 Akim Demaille <akim@epita.fr>
7801
7802 * src/main.c (main): Invoke scanner_free.
7803
f958596b
AD
78042002-06-14 Akim Demaille <akim@epita.fr>
7805
7806 * src/output.c (m4_invoke): Extracted from...
7807 (output_skeleton): here.
7808 Free tempfile.
7809
2c569025
AD
78102002-06-14 Akim Demaille <akim@epita.fr>
7811
7812 * src/parse-gram.y (directives, directive, gram)
7813 (grammar_directives, precedence_directives, precedence_directive):
7814 Rename as...
7815 (declarations, declaration, grammar, grammar_declaration)
7816 (precedence_declaration, precedence_declarator): these.
7817 (symbol_declaration): New.
7818
592e8d4d
AD
78192002-06-14 Akim Demaille <akim@epita.fr>
7820
7821 * src/files.c (action_obstack): Remove, unused.
7822 (output_obstack): Remove it, and all its dependencies, as it is no
7823 longer needed.
7824 * src/reader.c (epilogue_set): Build the epilogue in the
7825 muscle_obstack.
7826 * src/output.h, src/output.c (muscle_obstack): Move to...
7827 * src/muscle_tab.h, src/muscle_tab.h: here.
7828 (muscle_init): Initialize muscle_obstack.
7829 (muscle_free): New.
7830 * src/main.c (main): Call it.
7831
0c15323d
AD
78322002-06-14 Akim Demaille <akim@epita.fr>
7833
7834 * src/location.h: New, extracted from...
7835 * src/reader.h: here.
7836 * src/Makefile.am (noinst_HEADERS): Merge into
7837 (bison_SOURCES): this.
7838 Add location.h.
7839 * src/parse-gram.y: Use location_t instead of Bison's.
7840 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
7841 Use location_t instead of ints.
7842
e96c9728
AD
78432002-06-14 Akim Demaille <akim@epita.fr>
7844
7845 * data/bison.simple, data/bison.c++: Be sure to restore the
7846 current #line when returning to the skeleton contents after having
7847 exposed the input file's #line.
7848
75d1fe16
AD
78492002-06-12 Akim Demaille <akim@epita.fr>
7850
7851 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
7852 eager.
7853 * tests/actions.at (Exotic Dollars): New.
7854
6c35d22c
AD
78552002-06-12 Akim Demaille <akim@epita.fr>
7856
7857 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
7858 ['"/] too eagerly.
7859 * tests/input.at (Torturing the Scanner): New.
7860
1d6412ad
AD
78612002-06-11 Akim Demaille <akim@epita.fr>
7862
7863 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
7864 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
7865 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
7866 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
7867 * src/reader.c (reader): Use it.
7868
4cdb01db
AD
78692002-06-11 Akim Demaille <akim@epita.fr>
7870
7871 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
7872 Adjust all callers.
7873 (scanner_last_string_free): New.
7874
44995b2e
AD
78752002-06-11 Akim Demaille <akim@epita.fr>
7876
7877 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
7878 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
7879 (last_string, YY_OBS_FREE): New.
7880 Use them when returning an ID.
7881
e9955c83
AD
78822002-06-11 Akim Demaille <akim@epita.fr>
7883
7884 Have Bison grammars parsed by a Bison grammar.
7885
7886 * src/reader.c, src/reader.h (prologue_augment): New.
7887 * src/reader.c (copy_definition): Remove.
7888
7889 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
7890 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
7891 (grammar_current_rule_prec_set, grammar_current_rule_check)
7892 (grammar_current_rule_symbol_append)
7893 (grammar_current_rule_action_append): Export.
7894 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
7895 (symbol_list_action_append): Remove.
7896 Hook the routines from reader.
7897 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
7898 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
7899
7900 * src/reader.c (read_declarations): Remove, unused.
7901
7902 * src/parse-gram.y: Handle the epilogue.
7903 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
7904 (grammar_start_symbol_set): this.
7905 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
7906 * src/reader.c (readgram): Remove, unused.
7907 (reader): Adjust to insert eoftoken and axiom where appropriate.
7908
7909 * src/reader.c (copy_dollar): Replace with...
7910 * src/scan-gram.h (handle_dollar): this.
7911 * src/parse-gram.y: Remove `%thong'.
7912
7913 * src/reader.c (copy_at): Replace with...
7914 * src/scan-gram.h (handle_at): this.
7915
7916 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
7917 New.
7918
7919 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
7920 time being.
7921
7922 * src/reader.h, src/reader.c (grammar_rule_end): New.
7923
7924 * src/parse.y (current_type, current_class): New.
7925 Implement `%nterm', `%token' support.
7926 Merge `%term' into `%token'.
7927 (string_as_id): New.
7928 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
7929 type name.
7930
7931 * src/parse-gram.y: Be sure to handle properly the beginning of
7932 rules.
7933
7934 * src/parse-gram.y: Handle %type.
7935 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
7936
7937 * src/parse-gram.y: More directives support.
7938 * src/options.c: No longer handle source directives.
7939
7940 * src/parse-gram.y: Fix %output.
7941
7942 * src/parse-gram.y: Handle %union.
7943 Use the prologue locations.
7944 * src/reader.c (parse_union_decl): Remove.
7945
7946 * src/reader.h, src/reader.c (epilogue_set): New.
7947 * src/parse-gram.y: Use it.
7948
7949 * data/bison.simple, data/bison.c++: b4_stype is now either not
7950 defined, then default to int, or to the contents of %union,
7951 without `union' itself.
7952 Adjust.
7953 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
7954
7955 * src/output.c (actions_output): Don't output braces, as they are
7956 already handled by the scanner.
7957
7958 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
7959 characters to themselves.
7960
7961 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
7962 that the epilogue has a proper #line.
7963
7964 * src/parse-gram.y: Handle precedence/associativity.
7965
7966 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
7967 a terminal.
7968 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
7969 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
7970 at all to define terminals that cannot be emitted.
7971
7972 * src/scan-gram.l: Escape M4 characters.
7973
7974 * src/scan-gram.l: Working properly with escapes in user
7975 strings/characters.
7976
7977 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
7978 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
7979 grammar.
7980 Use more modest sizes, as for the time being the parser does not
7981 release memory, and therefore the process swallows a huge amount
7982 of memory.
7983
7984 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
7985 stricter %token grammar.
7986
7987 * src/symtab.h (associativity): Add `undef_assoc'.
7988 (symbol_precedence_set): Do nothing when passed an undef_assoc.
7989 * src/symtab.c (symbol_check_alias_consistence): Adjust.
7990
7991 * tests/regression.at (Invalid %directive): Remove, as it is now
7992 meaningless.
7993 (Invalid inputs): Adjust to the new error messages.
7994 (Token definitions): The new grammar doesn't allow too many
7995 eccentricities.
7996
7997 * src/lex.h, src/lex.c: Remove.
7998 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
7999 (copy_character, copy_string2, copy_string, copy_identifier)
8000 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
8001 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
8002 (parse_action): Remove.
8003 * po/POTFILES.in: Adjust.
8004
2e047461
AD
80052002-06-11 Akim Demaille <akim@epita.fr>
8006
cd05d13c 8007 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
8008 rule's action member: return the action as a string.
8009 Don't require `rule_length' as an argument: compute it.
8010 (grammar_current_rule_symbol_append)
8011 (grammar_current_rule_action_append): New, eved out from
8012 (readgram): here.
8013 Remove `action_flag', `rulelength', unused now.
8014
9af3fbce
AD
80152002-06-11 Akim Demaille <akim@epita.fr>
8016
8017 * src/reader.c (grammar_current_rule_prec_set).
8018 (grammar_current_rule_check): New, eved out from...
8019 (readgram): here.
8020 Remove `xaction', `first_rhs': useless.
8021 * tests/input.at (Type clashes): New.
8022 * tests/existing.at (GNU Cim Grammar): Adjust.
8023
1485e106
AD
80242002-06-11 Akim Demaille <akim@epita.fr>
8025
8026 * src/reader.c (grammar_midrule_action): New, Eved out from
8027 (readgram): here.
8028
da4160c3
AD
80292002-06-11 Akim Demaille <akim@epita.fr>
8030
8031 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
8032 New.
8033 (readgram): Use them as replacement of inlined code, crule and
8034 crule1.
8035
f6d0f937
AD
80362002-06-11 Akim Demaille <akim@epita.fr>
8037
8038 * src/reader.c (grammar_end, grammar_symbol_append): New.
8039 (readgram): Use them.
8040 Make the use of `p' as local as possible.
8041
69078d4b
AD
80422002-06-10 Akim Demaille <akim@epita.fr>
8043
8044 GCJ's parser requires the tokens to be defined before the prologue.
8045
8046 * data/bison.simple: Output the token definition before the user's
8047 prologue.
8048 * tests/regression.at (Braces parsing, Duplicate string)
8049 (Mixing %token styles): Check the output from bison.
8050 (Early token definitions): New.
8051
5e424082
AD
80522002-06-10 Akim Demaille <akim@epita.fr>
8053
8054 * src/symtab.c (symbol_user_token_number_set): Don't complain when
8055 assigning twice the same user number to a token, so that we can
8056 use it in...
8057 * src/lex.c (lex): here.
8058 Also use `symbol_class_set' instead of hand written code.
8059 * src/reader.c (parse_assoc_decl): Likewise.
8060
44536b35
AD
80612002-06-10 Akim Demaille <akim@epita.fr>
8062
8063 * src/symtab.c, src/symtab.c (symbol_class_set)
8064 (symbol_user_token_number_set): New.
8065 * src/reader.c (parse_token_decl): Use them.
8066 Use a switch instead of ifs.
8067 Use a single argument.
8068
8b9f2372
AD
80692002-06-10 Akim Demaille <akim@epita.fr>
8070
8071 Remove `%thong' support as it is undocumented, unused, duplicates
8072 `%token's job, and creates useless e-mail traffic with people who
8073 want to know what it is, why it is undocumented, unused, and
8074 duplicates `%token's job.
8075
8076 * src/reader.c (parse_thong_decl): Remove.
8077 * src/options.c (option_table): Remove "thong".
8078 * src/lex.h (tok_thong): Remove.
8079
3ae2b51f
AD
80802002-06-10 Akim Demaille <akim@epita.fr>
8081
8082 * src/symtab.c, src/symtab.c (symbol_type_set)
8083 (symbol_precedence_set): New.
8084 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
8085 (value_components_used): Remove, unused.
8086
2f1afb73
AD
80872002-06-09 Akim Demaille <akim@epita.fr>
8088
8089 Move symbols handling code out of the reader.
8090
8091 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
8092 (axiom): Move to...
8093 * src/symtab.h, src/symtab.c: here.
8094
8095 * src/gram.c (start_symbol): Remove: use startsymbol->number.
8096 * src/reader.c (startval): Rename as...
8097 * src/symtab.h, src/symtab.c (startsymbol): this.
8098 * src/reader.c: Adjust.
8099
8100 * src/reader.c (symbol_check_defined, symbol_make_alias)
8101 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
8102 (token_translations_init)
8103 Move to...
8104 * src/symtab.c: here.
8105 * src/reader.c (packsymbols): Move to...
8106 * src/symtab.h, src/symtab.c (symbols_pack): here.
8107 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
8108 argument.
8109
e9bca3ad
AD
81102002-06-03 Akim Demaille <akim@epita.fr>
8111
8112 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
8113 then statements.
8114
86eff183
AD
81152002-06-03 Akim Demaille <akim@epita.fr>
8116
8117 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
8118 structs with non literals.
8119 * src/scan-skel.l: never-interactive.
8120 * src/conflicts.c (enum conflict_resolution_e): No trailing
8121 comma.
8122 * src/getargs.c (usage): Split long literal strings.
8123 Reported by Hans Aberg.
8124
717be197
AD
81252002-05-28 Akim Demaille <akim@epita.fr>
8126
8127 * data/bison.c++: Use C++ ostreams.
8128 (cdebug_): New member.
8129
670ddffd
AD
81302002-05-28 Akim Demaille <akim@epita.fr>
8131
8132 * src/output.c (output_skeleton): Be sure to allocate enough room
8133 for `/' _and_ for `\0' in full_skeleton.
8134
769b430f
AD
81352002-05-28 Akim Demaille <akim@epita.fr>
8136
8137 * data/bison.c++: Catch up with bison.simple:
8138 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8139 and Paul Eggert <eggert@twinsun.com>: `error' handing.
8140 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
8141 and popping traces.
8142
7067cb36
PH
81432002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8144
8145 * src/output.c (output_skeleton): Put an explicit path in front of
8146 the skeleton file name, rather than relying on the -I directory,
8147 to partially alleviate effects of having a skeleton file lying around
8148 in the current directory.
769b430f 8149
4a713ec2
PH
81502002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8151
769b430f 8152 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
8153 obstack_printf should be obstack_fgrow1.
8154
b408954b
AD
81552002-05-26 Akim Demaille <akim@epita.fr>
8156
8157 * src/state.h (state_t): `solved_conflicts' is a new member.
8158 * src/LR0.c (new_state): Set it to 0.
8159 * src/conflicts.h, src/conflicts.c (print_conflicts)
8160 (free_conflicts, solve_conflicts): Rename as...
8161 (conflicts_print, conflicts_free, conflicts_solve): these.
8162 Adjust callers.
8163 * src/conflicts.c (enum conflict_resolution_e)
8164 (solved_conflicts_obstack): New, used by...
8165 (log_resolution): this.
8166 Adjust to attach the conflict resolution to each state.
8167 Complete the description with the precedence/associativity
8168 information.
8169 (resolve_sr_conflict): Adjust.
8170 * src/print.c (print_state): Output its solved_conflicts.
8171 * tests/conflicts.at (Unresolved SR Conflicts)
8172 (Solved SR Conflicts): Exercise --report=all.
8173
a49aecd5
AD
81742002-05-26 Akim Demaille <akim@epita.fr>
8175
8176 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8177 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
8178 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
8179 (token_number_t, item_number_as_token_number)
8180 (token_number_as_item_number, muscle_insert_token_number_table):
8181 Rename as...
8182 (symbol_number_t, item_number_as_symbol_number)
8183 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
8184 these, since it is more appropriate.
8185
5504898e
AD
81862002-05-26 Akim Demaille <akim@epita.fr>
8187
8188 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
8189 `Error:' lines.
8190 * data/bison.simple (yystos) [YYDEBUG]: New.
8191 (yyparse) [YYDEBUG]: Display the symbols which are popped during
8192 error recovery.
8193 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
8194
ec3bc396
AD
81952002-05-25 Akim Demaille <akim@epita.fr>
8196
8197 * doc/bison.texinfo (Debugging): Split into...
8198 (Tracing): this new section, its former contents, and...
8199 (Understanding): this new section.
8200 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
8201 by...
8202 (report_flag): this.
8203 Adjust all dependencies.
8204 (report_args, report_types, report_argmatch): New.
8205 (usage, getargs): Report/support -r, --report.
8206 * src/options.h
8207 (struct option_table_struct): Rename as..,
8208 (struct option_table_s): this.
8209 Rename the `set_flag' member to `flag' to match with getopt_long's
8210 struct.
8211 * src/options.c (option_table): Split verbose into an entry for
8212 %verbose, and another for --verbose.
8213 Support --report/-r, so remove -r from the obsolete --raw.
8214 * src/print.c: Attach full item sets and lookaheads reports to
8215 report_flag instead of trace_flag.
8216 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
8217
78df8250
PE
82182002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8219 and Paul Eggert <eggert@twinsun.com>
769b430f 8220
78df8250
PE
8221 * data/bison.simple (yyparse): Correct error handling to conform to
8222 POSIX and yacc. Specifically, after syntax error is discovered,
8223 do not reduce further before shifting the error token.
8224 Clean up the code a bit by removing the labels yyerrdefault,
8225 yyerrhandle, yyerrpop.
8226 * NEWS: Document the above.
8227
c0c9ea05
PH
82282002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8229
8230 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
8231 type; it isn't always big enough, since it doesn't necessarily
8232 include non-terminals.
769b430f 8233 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
8234 the latter can be removed.
8235 (yy_token_number_type): Remove, only one use.
8236 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
8237 don't use TokenNumberType as element type.
769b430f 8238
c0c9ea05
PH
8239 * tests/regression.at: Modify expected output to agree with change
8240 to yyr1 and yytranslate.
769b430f 8241
6390a83f
FK
82422002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
8243
8244 * src/reader.c (parse_action): Use copy_character instead of
8245 obstack_1grow.
8246
db7c8e9a
AD
82472002-05-13 Akim Demaille <akim@epita.fr>
8248
8249 * tests/regression.at (Token definitions): Prototype yylex and
8250 yyerror.
8251
fcc61800
PH
82522002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8253
158c687b 8254 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
8255 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
8256 32-bit arithmetic.
8257 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
8258
5683e9b2
AD
82592002-05-07 Akim Demaille <akim@epita.fr>
8260
8261 * tests/synclines.at: Be sure to prototype yylex and yyerror to
8262 avoid GCC warnings.
8263
0c2d3f4c
AD
82642002-05-07 Akim Demaille <akim@epita.fr>
8265
8266 Kill GCC warnings.
8267
8268 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
8269 over the RHS of each rule.
8270 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
8271 * src/state.h (state_t): Member `nitems' is unsigned short.
8272 * src/LR0.c (get_state): Adjust.
8273 * src/reader.c (packgram): Likewise.
8274 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
8275 `Type'.
8276 (muscle_insert_int_table): Remove, unused.
8277 (prepare_rules): Remove `max'.
8278
1565b720
AD
82792002-05-06 Akim Demaille <akim@epita.fr>
8280
8281 * src/closure.c (print_firsts): Display of the symbol tags.
8282 (bitmatrix_print): Move to...
8283 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
8284 here.
8285 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
8286
cfaee611
AD
82872002-05-06 Akim Demaille <akim@epita.fr>
8288
8289 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
8290 hash_do_for_each.
8291
458be8e0
AD
82922002-05-06 Akim Demaille <akim@epita.fr>
8293
8294 * src/LR0.c (new_state, get_state): Instead of using the global
8295 `kernel_size' and `kernel_base', have two new arguments:
8296 `core_size' and `core'.
8297 Adjust callers.
8298
a900a624
AD
82992002-05-06 Akim Demaille <akim@epita.fr>
8300
8301 * src/reader.c (packgram): No longer end `ritem' with a 0
8302 sentinel: it is not used.
8303
d4e7d3a1
AD
83042002-05-05 Akim Demaille <akim@epita.fr>
8305
8306 New experimental feature: display the lookaheads in the report and
8307 graph.
8308
8309 * src/print (print_core): When --trace-flag, display the rules
8310 lookaheads.
8311 * src/print_graph.c (print_core): Likewise.
8312 Swap the arguments.
8313 Adjust caller.
8314
39ceb25b
AD
83152002-05-05 Akim Demaille <akim@epita.fr>
8316
8317 * tests/torture.at (Many lookaheads): New test.
8318
5372019f
AD
83192002-05-05 Akim Demaille <akim@epita.fr>
8320
8321 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
8322 (GENERATE_MUSCLE_INSERT_TABLE): this.
8323 (output_int_table, output_unsigned_int_table, output_short_table)
8324 (output_token_number_table, output_item_number_table): Replace with...
8325 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
8326 (muscle_insert_short_table, muscle_insert_token_number_table)
8327 (muscle_insert_item_number_table): these.
8328 Adjust all callers.
8329 (prepare_tokens): Don't free `translations', since...
8330 * src/reader.h, src/reader.c (grammar_free): do it.
8331 Move to...
8332 * src/gram.h, src/gram.c (grammar_free): here.
8333 * data/bison.simple, data/bison.c++: b4_token_number_max is now
8334 b4_translate_max.
8335
5df5f6d5
AD
83362002-05-05 Akim Demaille <akim@epita.fr>
8337
8338 * src/output.c (output_unsigned_int_table): New.
8339 (prepare_rules): `i' is unsigned.
8340 `prhs', `rline', `r2' are unsigned int.
8341 Rename muscle `rhs_number_max' as `rhs_max'.
8342 Output muscles `prhs_max', `rline_max', and `r2_max'.
8343 Free rline and r1.
8344 * data/bison.simple, data/bison.c++: Adjust to use these muscles
8345 to compute types instead of constant types.
8346 * tests/regression.at (Web2c Actions): Adjust.
8347
b87f8b21
AD
83482002-05-04 Akim Demaille <akim@epita.fr>
8349
8350 * src/symtab.h (SALIAS, SUNDEF): Rename as...
8351 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
8352 Adjust dependencies.
8353 * src/output.c (token_definitions_output): Be sure not to output a
8354 `#define 'a'' when fed with `%token 'a' "a"'.
8355 * tests/regression.at (Token definitions): New.
8356
8bb936e4
PE
83572002-05-03 Paul Eggert <eggert@twinsun.com>
8358
8359 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
8360 for K&R C.
8361
83622002-05-03 gettextize <bug-gnu-gettext@gnu.org>
8363
8364 * Makefile.am (SUBDIRS): Remove intl.
8365 (EXTRA_DIST): Add config/config.rpath.
8366
53c71a12
AD
83672002-05-03 Akim Demaille <akim@epita.fr>
8368
8369 * data/bison.simple (m4_if): Don't output empty enums.
8370 And actually, output valid enum definitions :(.
8371
289dd0cf
AD
83722002-05-03 Akim Demaille <akim@epita.fr>
8373
8374 * configure.bat: Remove, completely obsolete.
8375 * Makefile.am (EXTRA_DIST): Adjust.
8376 Don't distribute config.rpath...
8377 * config/Makefile.am (EXTRA_DIST): Do it.
8378
db85e524
AD
83792002-05-03 Akim Demaille <akim@epita.fr>
8380
8381 * configure.in (GETTEXT_VERSION): New.
8382 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
8383
83ccf991
AD
83842002-05-03 Akim Demaille <akim@epita.fr>
8385
8386 * data/bison.simple (b4_token_enum): New.
8387 (b4_token_defines): Use it to output tokens both as #define and
8388 enums.
8389 Suggested by Paul Eggert.
8390 * src/output.c (token_definitions_output): Don't output spurious
8391 white spaces.
8392
1f418995
AD
83932002-05-03 Akim Demaille <akim@epita.fr>
8394
8395 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
8396
45119f04
RA
83972002-05-02 Robert Anisko <robert@lrde.epita.fr>
8398
8399 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
8400 Update the stack class, give a try to deque as the default container.
8401
b2d52318
AD
84022002-05-02 Akim Demaille <akim@epita.fr>
8403
8404 * data/bison.simple (yyparse): Do not implement @$ = @1.
8405 (YYLLOC_DEFAULT): Adjust to do it.
8406 * doc/bison.texinfo (Location Default Action): Fix.
8407
3a8b4109
AD
84082002-05-02 Akim Demaille <akim@epita.fr>
8409
8410 * src/reader.c (parse_braces): Merge into...
8411 (parse_action): this.
8412
84614e13
AD
84132002-05-02 Akim Demaille <akim@epita.fr>
8414
8415 * configure.in (ALL_LINGUAS): Remove.
8416 * po/LINGUAS, hr.po: New.
8417
fdbcd8e2
AD
84182002-05-02 Akim Demaille <akim@epita.fr>
8419
8420 Remove the so called hairy (semantic) parsers.
8421
8422 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
8423 * src/gram.h, src/gram.c (semantic_parser): Remove.
8424 (rule_t): Remove the guard and guard_line members.
8425 * src/lex.h (token_t): remove tok_guard.
8426 * src/options.c (option_table): Remove %guard and %semantic_parser
8427 support.
8428 * src/output.c, src/output.h (guards_output): Remove.
8429 (prepare): Adjust.
8430 (token_definitions_output): Don't output the `T'
8431 tokens (???).
8432 (output_skeleton): Don't output the guards.
8433 * src/files.c, src/files.c (attrsfile): Remove.
8434 * src/reader.c (symbol_list): Remove the guard and guard_line
8435 members.
8436 Adjust dependencies.
8437 (parse_guard): Remove.
8438 * data/bison.hairy: Remove.
8439 * doc/bison.texinfo (Environment Variables): Remove occurrences of
8440 BISON_HAIRY.
8441
82b6cb3f
AD
84422002-05-02 Akim Demaille <akim@epita.fr>
8443
8444 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
8445 (parse_guard): Rename the formal argument `stack_offset' as
8446 `rule_length', which is more readable.
8447 Adjust callers.
8448 (copy_at, copy_dollar): Instead of outputting the hard coded
8449 values of $$, $n and so forth, output invocation to b4_lhs_value,
8450 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
8451 Note: this patch partially drops `semantic-parser' support: it
8452 always does `rule_length - n', where semantic parsers ought to
8453 always use `-n'.
82b6cb3f
AD
8454 * data/bison.simple, data/bison.c++ (b4_lhs_value)
8455 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
8456
6cbfbcc5
AD
84572002-05-02 Akim Demaille <akim@epita.fr>
8458
8459 * configure.in (AC_INIT): Bump to 1.49b.
8460 (AM_INIT_AUTOMAKE): Short invocation.
8461
b8548114
AD
84622002-05-02 Akim Demaille <akim@epita.fr>
8463
8464 Version 1.49a.
8465
c20cd1fa
AD
84662002-05-01 Akim Demaille <akim@epita.fr>
8467
8468 * src/skeleton.h: Remove.
8469
8a9566d4
AD
84702002-05-01 Akim Demaille <akim@epita.fr>
8471
8472 * src/skeleton.h: Fix the #endif.
8473 Reported by Magnus Fromreide.
8474
8c6d399a
PE
84752002-04-26 Paul Eggert <eggert@twinsun.com>
8476
8477 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
8478 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 8479 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 8480
2b7ed18a
RA
84812002-04-25 Robert Anisko <robert@lrde.epita.fr>
8482
8483 * src/scan-skel.l: Postprocess quadrigraphs.
8484
8485 * src/reader.c (copy_character): New function, used to output
8486 single characters while replacing `[' and `]' with quadrigraphs, to
8487 avoid troubles with M4 quotes.
8488 (copy_comment): Output characters with copy_character.
8489 (read_additionnal_code): Likewise.
8490 (copy_string2): Likewise.
8491 (copy_definition): Likewise.
8492
8493 * tests/calc.at: Exercise M4 quoting.
8494
34a89c50
AD
84952002-04-25 Akim Demaille <akim@epita.fr>
8496
8497 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
8498 between `!' and the command.
8499 Reported by Paul Eggert.
8500
0dd1580a
RA
85012002-04-24 Robert Anisko <robert@lrde.epita.fr>
8502
8503 * tests/calc.at: Exercise prologue splitting.
8504
8505 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
8506 `b4_post_prologue' instead of `b4_prologue'.
8507
8508 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
8509 muscles.
8510 (output): Free pre_prologue_obstack and post_prologue_obstack.
8511 * src/files.h, src/files.c (attrs_obstack): Remove.
8512 (pre_prologue_obstack, post_prologue_obstack): New.
8513 * src/reader.c (copy_definition): Add a parameter to specify the
8514 obstack to fill, instead of using attrs_obstack unconditionally.
8515 (read_declarations): Pass pre_prologue_obstack to copy_definition if
8516 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
8517
83c1796f
PE
85182002-04-23 Paul Eggert <eggert@twinsun.com>
8519
8520 * data/bison.simple: Remove unnecessary commentary and white
8521 space differences from 1_29-branch.
8522 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
8523
8524 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
8525 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
8526 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
8527 constructors or destructors.
8528
8529 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
8530
1207eeac
AD
85312002-04-23 Akim Demaille <akim@epita.fr>
8532
8533 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
8534 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
8535 location with columns.
8536 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
8537 All reported by Paul Eggert.
8538
78ab8f67
AD
85392002-04-22 Akim Demaille <akim@epita.fr>
8540
8541 * src/reduce.c (dump_grammar): Move to...
8542 * src/gram.h, src/gram.c (grammar_dump): here.
8543 Be sure to separate long item numbers.
8544 Don't read the members of a rule's prec if its nil.
8545
133c20e2
AD
85462002-04-22 Akim Demaille <akim@epita.fr>
8547
8548 * src/output.c (table_size, table_grow): New.
8549 (MAXTABLE): Remove, replace uses with table_size.
8550 (pack_vector): Instead of dying when the table is too big, grow it.
8551
9515e8a7
AD
85522002-04-22 Akim Demaille <akim@epita.fr>
8553
8554 * data/bison.simple (yyr1): Its type is that of a token number.
8555 * data/bison.c++ (r1_): Likewise.
8556 * tests/regression.at (Web2c Actions): Adjust.
8557
23c5a174
AD
85582002-04-22 Akim Demaille <akim@epita.fr>
8559
8560 * src/reader.c (token_translations_init): 256 is now the default
8561 value for the error token, i.e., it will be assigned another
8562 number if the user assigned 256 to one of her tokens.
8563 (reader): Don't force 256 to error.
8564 * doc/bison.texinfo (Symbols): Adjust.
8565 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
8566 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
8567 etc. instead of 10, 20, 30 (which was used to `jump' over error
8568 (256) and undefined (2)).
8569
5fbb0954
AD
85702002-04-22 Akim Demaille <akim@epita.fr>
8571
8572 Propagate more token_number_t.
8573
8574 * src/gram.h (token_number_as_item_number)
8575 (item_number_as_token_number): New.
8576 * src/output.c (GENERATE_OUTPUT_TABLE): New.
8577 Use it to create output_item_number_table and
8578 output_token_number_table.
8579 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8580 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
8581 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
8582 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
8583
4f940944
AD
85842002-04-22 Akim Demaille <akim@epita.fr>
8585
8586 * src/output.h, src/output.c (get_lines_number): Remove.
8587
3ded9a63
AD
85882002-04-19 Akim Demaille <akim@epita.fr>
8589
8590 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
8591 as Lex/Flex'.
8592 (Debugging): More details about enabling the debugging features.
8593 (Table of Symbols): Describe $$, $n, @$, and @n.
8594 Suggested by Tim Josling.
8595
e0c471a9
AD
85962002-04-19 Akim Demaille <akim@epita.fr>
8597
8598 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
8599
fecc10cd
AD
86002002-04-10 Akim Demaille <akim@epita.fr>
8601
8602 * src/system.h: Rely on HAVE_LIMITS_H.
8603 Suggested by Paul Eggert.
8604
51dec47b
AD
86052002-04-09 Akim Demaille <akim@epita.fr>
8606
8607 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
8608 full stderr, and strip it according to the bison options, instead
8609 of composing the error message from different bits.
8610 This makes it easier to check for several error messages.
8611 Adjust all the invocations.
8612 Add an invocation exercising the error token.
8613 Add an invocation demonstrating a stupid error message.
8614 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
8615 Adjust the tests.
8616 Error message are for stderr, not stdout.
8617
007a50a4
AD
86182002-04-09 Akim Demaille <akim@epita.fr>
8619
8620 * src/gram.h, src/gram.c (error_token_number): Remove, use
8621 errtoken->number.
8622 * src/reader.c (reader): Don't specify the user token number (2)
8623 for $undefined, as it uselessly prevents using it.
8624 * src/gram.h (token_number_t): Move to...
8625 * src/symtab.h: here.
8626 (state_t.number): Is a token_number_t.
8627 * src/print.c, src/reader.c: Use undeftoken->number instead of
8628 hard coded 2.
8629 (Even though this 2 is not the same as above: the number of the
8630 undeftoken remains being 2, it is its user token number which
8631 might not be 2).
8632 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
8633 `user_token_number_max'.
8634 Output `undef_token_number'.
8635 * data/bison.simple, data/bison.c++: Use them.
8636 Be sure to map invalid yylex return values to
8637 `undef_token_number'. This saves us from gratuitous SEGV.
8638
8639 * tests/conflicts.at (Solved SR Conflicts)
8640 (Unresolved SR Conflicts): Adjust.
8641 * tests/regression.at (Web2c Actions): Adjust.
8642
06446ccf
AD
86432002-04-08 Akim Demaille <akim@epita.fr>
8644
8645 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
8646 Adding #line.
8647 Remove the duplicate `typedefs'.
8648 (RhsNumberType): Fix the declaration and various other typos.
8649 Use __ofile__.
8650 * data/bison.simple: Use __ofile__.
8651 * src/scan-skel.l: Handle __ofile__.
8652
62a3e4f0
AD
86532002-04-08 Akim Demaille <akim@epita.fr>
8654
8655 * src/gram.h (item_number_t): New, the type of item numbers in
8656 RITEM. Note that it must be able to code symbol numbers as
8657 positive number, and the negation of rule numbers as negative
8658 numbers.
8659 Adjust all dependencies (pretty many).
8660 * src/reduce.c (rule): Remove this `short *' pointer: use
8661 item_number_t.
8662 * src/system.h (MINSHORT, MAXSHORT): Remove.
8663 Include `limits.h'.
8664 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
8665 (shortcpy): Remove.
8666 (MAXTABLE): Move to...
8667 * src/output.c (MAXTABLE): here.
8668 (prepare_rules): Use output_int_table to output rhs.
8669 * data/bison.simple, data/bison.c++: Adjust.
8670 * tests/torture.at (Big triangle): Move the limit from 254 to
8671 500.
8672 * tests/regression.at (Web2c Actions): Ajust.
8673
8674 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
8675 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
8676 passes, but produces negative #line number, once fixed, GCC is
8677 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
8678 C), it passes.
8679 * src/state.h (state_h): Code input lines on ints, not shorts.
8680
bb88b0fc
AD
86812002-04-08 Akim Demaille <akim@epita.fr>
8682
8683 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
8684 and then the grammar.
8685
9a636f47
AD
86862002-04-08 Akim Demaille <akim@epita.fr>
8687
8688 * src/system.h: No longer using strndup.
8689
680e8701
AD
86902002-04-07 Akim Demaille <akim@epita.fr>
8691
8692 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
8693 * src/output.c (output_table_data): Return the longest number.
8694 (prepare_tokens): Output `token_number_max').
8695 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
8696 New.
8697 Use them to define yy_token_number_type/TokenNumberType.
8698 Use this type for yytranslate.
8699 * tests/torture.at (Big triangle): Push the limit from 124 to
8700 253.
8701 * tests/regression.at (Web2c Actions): Adjust.
8702
817e9f41
AD
87032002-04-07 Akim Demaille <akim@epita.fr>
8704
8705 * tests/torture.at (Big triangle): New.
8706 (GNU AWK Grammar, GNU Cim Grammar): Move to...
8707 * tests/existing.at: here.
8708
5123689b
AD
87092002-04-07 Akim Demaille <akim@epita.fr>
8710
8711 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
8712 nritems.
8713 Adjust dependencies.
8714
f3849179
AD
87152002-04-07 Akim Demaille <akim@epita.fr>
8716
8717 * src/reader.c: Normalize increments to prefix form.
8718
bd02036a
AD
87192002-04-07 Akim Demaille <akim@epita.fr>
8720
8721 * src/reader.c, symtab.c: Remove debugging code.
8722
db8837cb
AD
87232002-04-07 Akim Demaille <akim@epita.fr>
8724
8725 Rename all the `bucket's as `symbol_t'.
8726
8727 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
8728 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
8729 * src/symtab.c, src/symtab.h (bucket): Rename as...
8730 (symbol_t): this.
8731 (symbol_list_new, bucket_check_defined, bucket_make_alias)
8732 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
8733 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
8734 (buckets_new, buckets_free, buckets_do): Rename as...
8735 (symbol_list_new, symbol_check_defined, symbol_make_alias)
8736 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
8737 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
8738 (symbols_new, symbols_free, symbols_do): these.
8739
72a23c97
AD
87402002-04-07 Akim Demaille <akim@epita.fr>
8741
8742 Use lib/hash for the symbol table.
8743
8744 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
8745 EOF.
8746 * src/lex.c (lex): Set the `number' member of new terminals.
8747 * src/reader.c (bucket_check_defined, bucket_make_alias)
8748 (bucket_check_alias_consistence, bucket_translation): New.
8749 (reader, grammar_free, readgram, token_translations_init)
8750 (packsymbols): Adjust.
8751 (reader): Number the predefined tokens.
8752 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
8753 for predefined tokens.
8754 * src/symtab.h (bucket): Remove all the hash table related
8755 members.
8756 * src/symtab.c (symtab): Replace by...
8757 (bucket_table): this.
8758 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
8759 (buckets_new, buckets_do): New.
8760
280a38c3
AD
87612002-04-07 Akim Demaille <akim@epita.fr>
8762
8763 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
8764 (start_symbol, max_user_token_number, semantic_parser)
8765 (error_token_number): Initialize.
8766 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
8767 Initialize.
8768 (reader): Don't.
8769 (errtoken, eoftoken, undeftoken, axiom): Extern.
8770
03b31c0c
AD
87712002-04-07 Akim Demaille <akim@epita.fr>
8772
8773 * src/gram.h (rule_s): prec and precsym are now pointers
8774 to the bucket giving the priority/associativity.
8775 Member `associativity' removed: useless.
8776 * src/reduce.c, src/conflicts.c: Adjust.
8777
8b3df748
AD
87782002-04-07 Akim Demaille <akim@epita.fr>
8779
8780 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
8781 Properly escape the symbols' TAG when outputting them.
8782
e601aa1d
AD
87832002-04-07 Akim Demaille <akim@epita.fr>
8784
8785 * src/lalr.h (LA): Is a bitsetv, not bitset*.
8786
b0299a2e
AD
87872002-04-07 Akim Demaille <akim@epita.fr>
8788
8789 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
8790 (LArule): this, which is an array to rule_t*.
8791 * src/print.c, src/conflicts.c: Adjust.
8792
d7e1f00c
AD
87932002-04-07 Akim Demaille <akim@epita.fr>
8794
8795 * src/gram.h (rule_t): Rename `number' as `user_number'.
8796 `number' is a new member.
8797 Adjust dependencies.
8798 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
8799
cc9305dd
AD
88002002-04-07 Akim Demaille <akim@epita.fr>
8801
8802 As a result of the previous patch, it is no longer needed
8803 to reorder ritem itself.
8804
8805 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
8806
b0940840
AD
88072002-04-07 Akim Demaille <akim@epita.fr>
8808
8809 Be sure never to walk through RITEMS, but use only data related to
8810 the rules themselves. RITEMS should be banished.
8811
8812 * src/output.c (output_token_translations): Rename as...
8813 (prepare_tokens): this.
8814 In addition to `translate', prepare the muscles `tname' and
8815 `toknum', which were handled by...
8816 (output_rule_data): this.
8817 Remove, and move the remainder of its outputs into...
8818 (prepare_rules): this new routines, which also merges content from
8819 (output_gram): this.
8820 (prepare_rules): Be sure never to walk through RITEMS.
8821 (output_stos): Rename as...
8822 (prepare_stos): this.
8823 (output): Always invoke prepare_states, after all, just don't use it
8824 in the output if you don't need it.
8825
643a5994
AD
88262002-04-07 Akim Demaille <akim@epita.fr>
8827
8828 * src/LR0.c (new_state): Display `nstates' as the name of the
8829 newly created state.
8830 Adjust to initialize first_state and last_state if needed.
8831 Be sure to distinguish the initial from the final state.
8832 (new_states): Create the itemset of the initial state, and use
8833 new_state.
8834 * src/closure.c (closure): Now that the initial state has its
8835 items properly set, there is no need for a special case when
8836 creating `ruleset'.
8837
8838 As a result, now the rule 0, reducing to $axiom, is visible in the
8839 outputs. Adjust the test suite.
8840
8841 * tests/conflicts.at (Solved SR Conflicts)
8842 (Unresolved SR Conflicts): Adjust.
8843 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
8844 * tests/conflicts.at (S/R in initial): New.
8845
b4c4ccc2
AD
88462002-04-07 Akim Demaille <akim@epita.fr>
8847
8848 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
8849 the RHS of the rules.
8850 * src/output.c (output_gram): Likewise.
8851
bba97eb2
AD
88522002-04-07 Akim Demaille <akim@epita.fr>
8853
8854 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
8855 bucket.
8856 Adjust all dependencies.
8857 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
8858 `number' of the buckets too.
8859 * src/gram.h: Include `symtab.h'.
8860 (associativity): Move to...
8861 * src/symtab.h: here.
8862 No longer include `gram.h'.
8863
c3b407f4
AD
88642002-04-07 Akim Demaille <akim@epita.fr>
8865
8866 * src/gram.h, src/gram.c (rules_rhs_length): New.
8867 (ritem_longest_rhs): Use it.
8868 * src/gram.h (rule_t): `number' is a new member.
8869 * src/reader.c (packgram): Set it.
8870 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
8871 the end of `rules', and count them out of `nrules'.
8872 (reduce_output, dump_grammar): Adjust.
8873 * src/print.c (print_grammar): It is no longer needed to check for
8874 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
8875 * tests/reduce.at (Reduced Automaton): New test.
8876
11652ab3
AD
88772002-04-07 Akim Demaille <akim@epita.fr>
8878
8879 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
8880 lacking `+ 1' to nrules, Bison reported as useless a token if it
8881 was used solely to set the precedence of the last rule...
8882
26b23c1a
AD
88832002-04-07 Akim Demaille <akim@epita.fr>
8884
8885 * data/bison.c++, data/bison.simple: Don't output the current file
8886 name in #line, to avoid useless diffs between two identical
8887 outputs under different names.
8888
18bcecb0
AD
88892002-04-07 Akim Demaille <akim@epita.fr>
8890
8891 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
8892 Normalize loops to using `< nrules + 1', not `<= nrules'.
8893
fa770c86
AD
88942002-04-07 Akim Demaille <akim@epita.fr>
8895
8896 * TODO: Update.
8897
d9b739c3
AD
88982002-04-07 Akim Demaille <akim@epita.fr>
8899
8900 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
8901 bucket.value as bucket.number.
8902
99013900
AD
89032002-04-07 Akim Demaille <akim@epita.fr>
8904
8905 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
8906 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
8907 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
8908 RHS, instead of being an index in RITEMS.
8909
e966383b
PE
89102002-04-04 Paul Eggert <eggert@twinsun.com>
8911
8912 * doc/bison.texinfo: Update copyright date.
8913 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
8914 (Symbols): Warn about running Bison in one character set,
8915 but compiling and/or running in an incompatible one.
8916 Warn about character code 256, too.
8917
89182002-04-03 Paul Eggert <eggert@twinsun.com>
8919
8920 * src/bison.data (YYSTACK_ALLOC): Depend on whether
8921 YYERROR_VERBOSE is nonzero, not whether it is defined.
8922
8923 Merge changes from bison-1_29-branch.
c307773e 8924
8d6c48b9
PE
89252002-03-20 Paul Eggert <eggert@twinsun.com>
8926
8927 Merge fixes from Debian bison_1.34-1.diff.
8928
8929 * configure.in (AC_PREREQ): 2.53.
8930
e53c6322
AD
89312002-03-20 Akim Demaille <akim@epita.fr>
8932
8933 * src/conflicts.c (log_resolution): Argument `resolution' is const.
8934
9ffbeca7
PE
89352002-03-19 Paul Eggert <eggert@twinsun.com>
8936
21db0b2a
PE
8937 * src/bison.simple (YYCOPY): New macro.
8938 (YYSTACK_RELOCATE): Use it.
8939 Remove Type arg; no longer needed. All callers changed.
8940 (yymemcpy): Remove; no longer needed.
8941
9ffbeca7
PE
8942 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
8943 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8944
642cb8f8
AD
89452002-03-19 Akim Demaille <akim@epita.fr>
8946
8947 Test and fix the #line outputs.
8948
8949 * tests/atlocal.at (GCC): New.
8950 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 8951 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
8952 (Action synch line, Epilogue synch line): New tests.
8953 * src/reader.c (parse_union_decl): Define the muscle stype_line.
8954 * data/bison.simple, data/bison.c++: Use it.
8955
3c31a486
AD
89562002-03-19 Akim Demaille <akim@epita.fr>
8957
8958 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
8959 (Solved SR Conflicts, %expect not enough, %expect right)
8960 (%expect too much): Move to...
8961 * tests/conflicts.at: this new file.
8962
0d8bed56
AD
89632002-03-19 Akim Demaille <akim@epita.fr>
8964
8965 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
8966 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
8967 that we can move to enums for instance.
8968 * src/output.c (token_definitions_output): Output a list of
8969 `token-name, token-number' instead of the #define.
8970 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
8971
9208d17f
AD
89722002-03-14 Akim Demaille <akim@epita.fr>
8973
8974 Use Gettext 0.11.1.
8975
af27eacb
RA
89762002-03-09 Robert Anisko <robert@lrde.epita.fr>
8977
8978 * data/bison.c++: Make the user able to add members to the generated
8979 parser by subclassing.
8980
9101a310
RA
89812002-03-05 Robert Anisko <robert@lrde.epita.fr>
8982
8983 * src/reader.c (read_additionnal_code): `c' should be an integer, not
8984 a character.
8985 Reported by Nicolas Tisserand and Nicolas Burrus.
8986
fff9bf0b
RA
89872002-03-04 Robert Anisko <robert@lrde.epita.fr>
8988
8989 * src/reader.c: Warn about lacking semi-colons, do not complain.
8990
64dba31e
RA
89912002-03-04 Robert Anisko <robert@lrde.epita.fr>
8992
8993 * data/bison.c++: Remove a debug line.
8994
374f5a14
RA
89952002-03-04 Robert Anisko <robert@lrde.epita.fr>
8996
8997 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
8998 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
8999 provide a default implementation.
9000
bfcf1f3a
AD
90012002-03-04 Akim Demaille <akim@epita.fr>
9002
9003 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
9004 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
9005 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
9006 * tests/semantic.at (Parsing Guards): Similarly.
9007 * src/reader.at (readgram): Complain if the last rule is not ended
9008 with a semi-colon.
9009
65ccf9fc
AD
90102002-03-04 Akim Demaille <akim@epita.fr>
9011
9012 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
9013 * src/closure.c: here.
9014 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
9015 RTC.
9016 * src/warshall.h, src/warshall.c: Remove.
9017 * tests/sets.at (Broken Closure): Adjust.
9018
d0039cbc
AD
90192002-03-04 Akim Demaille <akim@epita.fr>
9020
9021 * src/output.c (output_skeleton): tempdir is const.
9022 bytes_read is unused.
9023
345cea78
AD
90242002-03-04 Akim Demaille <akim@epita.fr>
9025
9026 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
9027 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
9028 Update.
9029 From Michael Hayes.
9030
564801f7
AD
90312002-03-04 Akim Demaille <akim@epita.fr>
9032
9033 * src/closure.c (closure): `r' is unused.
9034
e5352bc7
AD
90352002-03-04 Akim Demaille <akim@epita.fr>
9036
9037 * tests/sets.at (Broken Closure): Add the ending `;'.
9038 * src/reader.at (readgram): Complain if a rule is not ended with a
9039 semi-colon.
9040
914feea9
AD
90412002-03-04 Akim Demaille <akim@epita.fr>
9042
9043 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
9044 (count_sr_conflicts): Use bitset_count.
9045 * src/reduce.c (inaccessable_symbols): Ditto.
9046 (bits_size): Remove.
9047 * src/warshall.h, src/warshall.c: Convert to bitsetv.
9048
f0250de6
AD
90492002-03-04 Akim Demaille <akim@epita.fr>
9050
9051 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
9052 * src/reduce.c: Remove the `bitset_zero's following the
9053 `bitset_create's, as now it is performed by the latter.
9054
ef017502
AD
90552002-03-04 Akim Demaille <akim@epita.fr>
9056
9057 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
9058 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
9059 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
9060 latest sources from Michael.
9061
76514394
AD
90622002-03-04 Akim Demaille <akim@epita.fr>
9063
9064 * src/output.c (output): Don't free the grammar.
9065 * src/reader.c (grammar_free): New.
9066 * src/main.c (main): Call it and don't free symtab here.
9067
55024580
AD
90682002-03-04 Akim Demaille <akim@epita.fr>
9069
9070 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
9071 before returning.
9072 Reported by Benoit Perrot.
9073
f9abaa2c
AD
90742002-03-04 Akim Demaille <akim@epita.fr>
9075
9076 Use bitset operations when possible, not loops over bits.
9077
9078 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
9079 bitset_or.
9080 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
9081 * src/reduce.c (useless_nonterminals): Formatting changes.
9082 * src/warshall.c (TC): Use bitset_or.
9083
0e721e75
AD
90842002-03-04 Akim Demaille <akim@epita.fr>
9085
9086 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
9087 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
9088 Ditto.
9089
0fb1ffb1
AD
90902002-03-04 Akim Demaille <akim@epita.fr>
9091
9092 * src/lalr.c (F): Now a bitset*.
9093 Adjust all dependencies.
9094
b86796bf
AD
90952002-03-04 Akim Demaille <akim@epita.fr>
9096
9097 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
9098 Adjust all dependencies.
9099
602bbf31
AD
91002002-03-04 Akim Demaille <akim@epita.fr>
9101
9102 * src/L0.c, src/LR0.h (nstates): Be size_t.
9103 Adjust comparisons (signed vs unsigned).
9104 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
9105 bitset*.
9106 Adjust all dependencies.
9107
d8a0245c
AD
91082002-03-04 Akim Demaille <akim@epita.fr>
9109
9110 * src/closure.c (firsts): Now, also a bitset.
9111 Adjust all dependencies.
9112 (varsetsize): Remove, now unused.
9113 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
9114
34ba9743
AD
91152002-03-04 Akim Demaille <akim@epita.fr>
9116
9117 * src/print.c: Convert to use bitset.h, not hand coded iterations
9118 over ints.
9119
ed86e78c
AD
91202002-03-04 Akim Demaille <akim@epita.fr>
9121
9122 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
9123
dfdb1797
AD
91242002-03-04 Akim Demaille <akim@epita.fr>
9125
9126 * src/closure.c (ruleset): Be a bitset.
9127 (rulesetsize): Remove.
9128
7086e707
AD
91292002-03-04 Akim Demaille <akim@epita.fr>
9130
9131 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
9132 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
9133 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
9134 * src/closure.c (fderives): Be an array of bitsets.
9135
98254360
RA
91362002-02-28 Robert Anisko <robert@lrde.epita.fr>
9137
9138 * data/bison.c++: Merge the two generated headers. Insert a copyright
9139 notice in each output file.
9140
a75c057f
AD
91412002-02-28 Akim Demaille <akim@epita.fr>
9142
9143 * data/bison.c++: Copy the prologue of bison.simple to fetch
9144 useful M4 definitions, such as b4_header_guard.
9145
06b00abc
AD
91462002-02-25 Akim Demaille <akim@epita.fr>
9147
9148 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
9149 translator friendly scheme for the bgr
9150 copyright notice.
06b00abc 9151
70e7d534
AD
91522002-02-25 Akim Demaille <akim@epita.fr>
9153
9154 * src/output.c (header_output): Remove, now handled completely via
9155 M4.
9156
abe017f6
AD
91572002-02-25 Akim Demaille <akim@epita.fr>
9158
9159 * m4/m4.m4: New, from CVS Autoconf.
9160 * configure.in: Invoke it.
9161 * src/output.c (output_skeleton): Use its result instead of the
9162 hard coded name.
9163
381fb12e
AD
91642002-02-25 Akim Demaille <akim@epita.fr>
9165
9166 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
9167 Fileutils 4.1.5.
9168 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
9169 * src/output.c (output_skeleton): Use mkstemp to create a real
9170 temporary file.
9171 Move the filling of `skeleton' and its muscle to...
9172 (prepare): here.
9173 (output): Move the definition of the prologue muscle to...
9174 (prepare): here.
9175 * src/system.h (DEFAULT_TMPDIR): New.
9176
6f38107f
PE
91772002-02-14 Paul Eggert <eggert@twinsun.com>
9178
9179 Remove the support for C++ namespace cleanliness; it was
9180 causing more problems than it was curing, since it didn't work
9181 properly on some nonstandard C++ compilers. This can wait
9182 for a proper C++ parser.
9183
9184 * NEWS: Document this.
9185 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
9186 of C++, as it's treated like C now.
9187 * src/bison.simple (YYSTD): Remove.
9188 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
9189 Treat C++ just like Standard C instead of trying to support
9190 namespace cleanliness.
9191
80cce3da
AD
91922002-02-14 Akim Demaille <akim@epita.fr>
9193
9194 * tests/regression.at (else): Adjust to Andreas' change.
9195
842e8679
AD
91962002-02-14 Akim Demaille <akim@epita.fr>
9197
9198 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
9199
4bda3f10
AD
92002002-02-13 Andreas Schwab <schwab@suse.de>
9201
9202 * src/output.c (output_rule_data): Don't output NULL, it might
9203 not be defined yet.
9204
4162fa07 92052002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 9206
4162fa07
RA
9207 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
9208 (Copyright notice): Update.
b418ecd8 9209
bd16a5dc
AD
92102002-02-11 Akim Demaille <akim@epita.fr>
9211
9212 * tests/regression.at (%nonassoc and eof): Don't include
9213 nonportable headers.
9214
8d69a1a3
RA
92152002-02-08 Robert Anisko <robert@lrde.epita.fr>
9216
9217 * data/bison.c++: Correct error recovery. Make the user able to
9218 initialize the starting location.
9219
9b2d0677
AD
92202002-02-07 Akim Demaille <akim@epita.fr>
9221
9222 * tests/input.at: New.
9223
69e2658b
RA
92242002-02-07 Robert Anisko <robert@lrde.epita.fr>
9225
9226 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 9227 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
9228 directives around tables only needed for debugging.
9229
4aacc3a7
RA
92302002-02-07 Robert Anisko <robert@lrde.epita.fr>
9231
9232 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
9233 C++ parsers.
9234 (yy::b4_name::parse): Use print_.
9235
762a801e
RA
92362002-02-07 Robert Anisko <robert@lrde.epita.fr>
9237
9238 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
9239
4bb2bc3f
RA
92402002-02-07 Robert Anisko <robert@lrde.epita.fr>
9241
9242 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
9243 C++ parsers.
9244 (yy::b4_name::parse): Build verbose error messages, and use error_.
9245
6b45a3ca
RA
92462002-02-06 Robert Anisko <robert@lrde.epita.fr>
9247
9248 * data/bison.c++: Fix m4 quoting in comments.
9249
50997c6e
RA
92502002-02-06 Robert Anisko <robert@lrde.epita.fr>
9251
9252 * data/bison.c++: Adjust the parser code. Fix some muscles that were
9253 not expanded by m4.
9254
3f3eed27
AD
92552002-02-05 Akim Demaille <akim@epita.fr>
9256
9257 * data/bison.c++: Adjust to the M4 back end.
9258 More is certainly needed.
9259
be2a1a68
AD
92602002-02-05 Akim Demaille <akim@epita.fr>
9261
9262 Give a try to M4 as a back end.
9263
9264 * lib/readpipe.c: New, from wdiff.
9265 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
9266 BISON_HAIRY.
9267 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
9268 specific values. Now it is m4 that performs the lookup.
9269 * src/parse-skel.y: Remove.
9270 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
9271 * src/output.c (actions_output, guards_output)
9272 (token_definitions_output): No longer keeps track of the output
9273 line number, hence remove the second argument.
9274 (guards_output): Check against the guard member of a rule, not the
9275 action member.
9276 Adjust callers.
9277 (output_skeleton): Don't look for the skeleton location, let m4 do
9278 that.
9279 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
9280 file will be used.
9281 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
9282 (prepare): Given that for the time being changesyntax is not
9283 usable in M4, rename the muscles using `-' to `_'.
9284 Define `defines_flag', `output_parser_name' and `output_header_name'.
9285 * src/output.h (actions_output, guards_output)
9286 (token_definitions_output): Adjust prototypes.
9287 * src/scan-skel.l: Instead of scanning the skeletons, it now
9288 processes the output of m4: `__oline__' and `#output'.
9289 * data/bison.simple: Adjust to be used by M4(sugar).
9290 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
9291 to date.
9292 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
9293 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
9294 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
9295 shamelessly stolen from CVS Autoconf.
9296
beda758b
AD
92972002-02-05 Akim Demaille <akim@epita.fr>
9298
9299 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
9300 * configure.in: Check for the declarations of free and malloc.
9301 * src/muscle_tab.c: Adjust.
9302
5ece6d43
AD
93032002-02-05 Akim Demaille <akim@epita.fr>
9304
9305 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
9306 which have no values.
9307
5bb18f9a
AD
93082002-02-05 Akim Demaille <akim@epita.fr>
9309
9310 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
9311 * data/: here.
9312
894dd62e
PE
93132002-01-29 Paul Eggert <eggert@twinsun.com>
9314
9315 * src/bison.simple (YYSIZE_T): Do not define merely because
9316 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
9317 On some platforms, <alloca.h> does not declare YYSTD (size_t).
9318
82841af7
AD
93192002-01-27 Akim Demaille <akim@epita.fr>
9320
9321 Fix `%nonassoc and eof'.
9322
9323 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
9324 which were not properly copied! Replace
9325 memcpy (res->errs, src->errs, src->nerrs);
9326 with
9327 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
9328 !!!
9329 * tests/regression.at (%nonassoc and eof): Adjust to newest
9330 Autotest: `.' is not in the PATH.
9331
318b76e9
AD
93322002-01-27 Akim Demaille <akim@epita.fr>
9333
9334 * tests/sets.at (AT_EXTRACT_SETS): New.
9335 (Nullable): Use it.
9336 (Firsts): New.
9337
30d2f3d5
AD
93382002-01-26 Akim Demaille <akim@epita.fr>
9339
9340 * tests/actions.at, tests/calc.at, tests/headers.at,
9341 * tests/torture.at: Adjust to the newest Autotest which no longer
9342 forces `.' in the PATH.
9343
30f8c395
AD
93442002-01-25 Akim Demaille <akim@epita.fr>
9345
9346 * tests/regression.at (%nonassoc and eof): New.
9347 Suggested by Robert Anisko.
9348
29ae55f1
AD
93492002-01-24 Akim Demaille <akim@epita.fr>
9350
9351 Bison dumps core when trying to complain about broken input files.
9352 Reported by Cris van Pelt.
9353
9354 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
9355 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
9356 into...
9357 (Invalid inputs): Strengthen: exercise parse_percent_token.
9358
2b548aa6
RA
93592002-01-24 Robert Anisko <robert.anisko@epita.fr>
9360
9361 * src/Makefile.am: Add bison.c++.
9362 * src/bison.c++: New skeleton.
9363
bb0146c2
AD
93642002-01-21 Paolo Bonzini <bonzini@gnu.org>
9365
9366 * po/it.po: New.
9367
bec30531
AD
93682002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
9369
9370 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
9371
fc6edc45
MA
93722002-01-20 Marc Autret <marc@gnu.org>
9373
9374 * src/files.c (compute_output_file_names): Fix
9375
5e5d5415
MA
93762002-01-20 Marc Autret <marc@gnu.org>
9377
9378 * tests/output.at: New test.
9379 * src/files.c (compute_base_names): Don't map extensions when
9380 the YACC flag is set, use defaults.
9381 Reported by Evgeny Stambulchik.
9382
44ea3fbd
MA
93832002-01-20 Marc Autret <marc@gnu.org>
9384
ba0fe3c7
PE
9385 * src/system.h: Need to define __attribute__ away for non-GCC
9386 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
9387 Suggested by Albert Chin-A-Young.
9388
338963d1
TVH
93892002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
9390
9391 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
9392 canonical definition.
9393 * src/system.h: Use the canonical definition for PARAMS (avoids
9394 a conflict with the macro from lib/hash.h).
9395
c57b2479
AD
93962002-01-11 Akim Demaille <akim@epita.fr>
9397
9398 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 9399 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 9400
b85810ae
AD
94012002-01-09 Akim Demaille <akim@epita.fr>
9402
9403 * src/files.c, src/files.h (output_infix): New.
9404 (tab_extension): Remove.
9405 (compute_base_names): Compute the former, drop the latter.
9406 * src/output.c (prepare): Insert the muscles `output-infix', and
9407 `output-suffix'.
9408 * src/parse-skel.y (string, string.1): New.
9409 (section.header): Use it.
9410 (section.yacc): Remove.
9411 (prefix): Remove too.
9412 * src/scan-skel.l: Adjust.
9413 * src/bison.simple, src/bison.hairy: Adjust.
9414
cae60122
AD
94152002-01-09 Akim Demaille <akim@epita.fr>
9416
9417 * configure.in (WERROR_CFLAGS): Compute it.
9418 * src/Makefile.am (CFLAGS): Pass it.
9419 * tests/atlocal.in (CFLAGS): Idem.
9420 * src/files.c: Fix a few warnings.
9421 (get_extension_index): Remove, unused.
9422
ae404801
AD
94232002-01-08 Akim Demaille <akim@epita.fr>
9424
9425 * src/getargs.c (AS_FILE_NAME): New.
9426 (getargs): Use it to convert DOSish file names.
9427 * src/files.c (base_name): Rename as full_base_name to avoid
9428 clashes with `base_name ()'.
9429 (filename_split): New.
9430 (compute_base_names): N-th rewrite, using filename_split.
9431
22312b71
AD
94322002-01-08 Akim Demaille <akim@epita.fr>
9433
9434 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
9435 New, stolen from the Fileutils 4.1.
9436 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
9437 * configure.in: Check for the presence of memrchr, and of its
9438 prototype.
9439
a67cef01
TVH
94402002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
9441
9442 * lib/hash.h (__P): Added definition for this macro.
9443 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
9444 BUILT_SOURCES, to ensure they are generated first.
9445 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
9446 %error-verbose to allow bootstrapping with bison 1.30x.
9447
2b25d624
AD
94482002-01-06 Akim Demaille <akim@epita.fr>
9449
9450 * src/reader.c (parse_braces): Don't fetch the next char, the
9451 convention is to fetch on entry.
9452 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
9453 'switch' without a following semicolon.
9454 * tests/regression.at (braces parsing): New.
9455
3460813b
AD
94562002-01-06 Akim Demaille <akim@epita.fr>
9457
9458 Bison is dead wrong in its RR conflict reports.
9459
9460 * tests/torture.at (GNU Cim Grammar): New.
9461 * src/conflicts.c (count_rr_conflicts): Fix.
9462
73784c64
AD
94632002-01-06 Akim Demaille <akim@epita.fr>
9464
9465 Creating package.m4 from configure.ac causes too many problems.
9466
9467 * tests/Makefile.am (package.m4): Create it by hand,
9468 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
9469
25d81090
AD
94702002-01-06 Akim Demaille <akim@epita.fr>
9471
9472 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
9473 skeleton.h.
9474
a9b8959e
PE
94752002-01-04 Paul Eggert <eggert@twinsun.com>
9476
9477 * doc/bison.texinfo (Debugging):
9478 Remove YYSTDERR; it's no longer defined or used.
9479 Also, s/cstdio.h/cstdio/.
9480
25d81090
AD
94812002-01-03 Akim Demaille <akim@epita.fr>
9482
9483 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
9484
1109455c
AD
94852002-01-03 Akim Demaille <akim@epita.fr>
9486
9487 * src/parse-skel.y (process_skeleton): Don't bind the parser's
9488 tracing code to --trace, wait for a better --trace option, with
9489 args.
9490
7ea5e977
AD
94912002-01-03 Akim Demaille <akim@epita.fr>
9492
9493 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
9494 The ISO C++ standard is extremely clear about it: stderr is
9495 considered a macro, not a regular symbol (see table 94 `Header
9496 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
9497 Therefore std:: does not apply to it. It still does with fprintf.
9498 Also, s/cstdio.h/cstdio/.
9499
fab5b110
AD
95002002-01-03 Akim Demaille <akim@epita.fr>
9501
9502 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
9503 for non system headers.
9504
aed7fd9b
AD
95052002-01-02 Akim Demaille <akim@epita.fr>
9506
9507 Equip the skeleton chain with location tracking, runtime trace,
9508 pure parser and scanner.
9509
9510 * src/parse-skel.y: Request a pure parser, locations, and prefix
9511 renaming.
9512 (%union): Having several members with the same type does not help
9513 type mismatches, simplify.
9514 (YYPRINT, yyprint): New.
9515 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
9516 (skel_error): this.
9517 Handle locations.
9518 * src/scan-skel.l: Adjust to these changes.
9519 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
9520 (LOCATION_PRINT, skel_control_t): New.
9521
24fad99e
AD
95222001-12-30 Akim Demaille <akim@epita.fr>
9523
9524 * src/parse-skel.y: Get rid of the shift/reduce conflict:
9525 replace `gb' with BLANKS.
9526 * src/scan-skel.l: Adjust.
9527
a4b36db4
AD
95282001-12-30 Akim Demaille <akim@epita.fr>
9529
9530 * src/system.h: We don't need nor want bcopy.
9531 Throw away MS-DOS crap: we don't need getpid.
9532 * configure.in: We don't need strndup. It was even causing
9533 problems: because Flex includes the headers *before* us,
9534 _GNU_SOURCE is not defined by config.h, and therefore strndup was
9535 not visible.
9536 * lib/xstrndup.c: New.
9537 * src/scan-skel.l: Use it.
9538 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
9539 * src/parse-skel.y: Use %directives instead of #defines.
9540
1239777d
AD
95412001-12-30 Akim Demaille <akim@epita.fr>
9542
9543 * src/skeleton.h: New.
9544 * src/output.c (output_parser, output_master_parser): Remove, dead
9545 code.
9546 * src/output.h (get_lines_number, actions_output, guards_output)
9547 (token_definitions_output): Prototype them.
9548 * src/parse-skel.y: Add the license notice.
9549 Include output.h and skeleton.h.
9550 (process_skeleton): Returns void, and takes a single parameter.
9551 * src/scan-skel.l: Add the license notice.
9552 Include skeleton.h.
9553 Don't use %option yylineno: it seems that then Flex imagines
9554 REJECT has been used, and therefore it won't reallocate its
9555 buffers (which makes no other sense to me than a bug). It results
9556 in warnings for `unused: yy_flex_realloc'.
9557
9b3add5b
RA
95582001-12-30 Robert Anisko <robert.anisko@epita.fr>
9559
9560 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9561 (MUSCLE_INSERT_PREFIX): ...to there.
9562 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9563 (MUSCLE_INSERT_PREFIX): Move from here...
9564
9565 * src/bison.hairy: Add a section directive. Put braces around muscle
9566 names. This parser skeleton is still broken, but Bison should not
9567 choke on a bad muscle 'syntax'.
9568 * src/bison.simple: Add a section directive. Put braces around muscle
9569 names.
9570
9571 * src/files.h (strsuffix, stringappend): Add declarations.
9572 (tab_extension): Add declaration.
9573 (short_base_name): Add declaration.
9574
9575 * src/files.c (strsuffix, stringappend): No longer static. These
9576 functions are used in the skeleton parser.
9577 (tab_extension): New.
9578 (compute_base_names): Use the computations done in this function
fab5b110 9579 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
9580 names.
9581 (short_base_name): No longer static.
9582
9583 * src/output.c (output_skeleton): New.
9584 (output): Disable call to output_master_parser, and give a try to
9585 a new skeleton handling system.
9586 (guards_output, actions_output): No longer static.
9587 (token_definitions_output, get_lines_number): No longer static.
9588
9589 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
9590
fab5b110 9591 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
9592 parse-skel.y.
9593
9594 * src/parse-skel.y: New file.
9595 * src/scan-skel.l: New file.
9596
b5b61c61
AD
95972001-12-29 Akim Demaille <akim@epita.fr>
9598
9599 %name-prefix is broken.
9600
9601 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
9602 Adjust all dependencies.
9603 * tests/headers.at (export YYLTYPE): Strengthen this test: use
9604 %name-prefix.
9605
9606 Renaming yylval but not yylloc is not consistent. Now we do.
9607
9608 * src/bison.simple: Prefix yylloc if used.
9609 * doc/bison.texinfo (Decl Summary): Document that.
9610
8c9a50be
AD
96112001-12-29 Akim Demaille <akim@epita.fr>
9612
9613 * doc/bison.texinfo: Promote `%long-directive' over
9614 `%long_directive'.
9615 Remove all references to fixed-output-files, yacc is enough.
9616
d99361e6
AD
96172001-12-29 Akim Demaille <akim@epita.fr>
9618
9619 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
9620 user prologue. These are defaults.
9621 * tests/actions.at (Mid-rule actions): Make sure the user can
9622 define YYDEBUG and YYERROR_VERBOSE.
9623
b9cecb91
AD
96242001-12-29 Akim Demaille <akim@epita.fr>
9625
9626 * src/output.c (header_output): Don't forget to export YYLTYPE and
9627 yylloc.
9628 * tests/headers.at (export YYLTYPE): New, make sure it does.
9629 * tests/regression.at (%union and --defines, Invalid CPP headers):
9630 Move to...
9631 * tests/headers.at: here.
9632
aea13e97
AD
96332001-12-29 Akim Demaille <akim@epita.fr>
9634
9635 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
9636
931394cb
AD
96372001-12-29 Akim Demaille <akim@epita.fr>
9638
9639 * tests/actions.at (Mid-rule actions): Output on a single line
9640 instead of several.
9641
704a47c4
AD
96422001-12-29 Akim Demaille <akim@epita.fr>
9643
9644 * doc/bison.texinfo: Formatting changes.
9645
091e20bb
AD
96462001-12-29 Akim Demaille <akim@epita.fr>
9647
9648 Don't store the token defs in a muscle, just be ready to output it
9649 on command. Now possible via `symbols'. Fixes a memory leak.
9650
9651 * src/output.c (token_definitions_output): New.
9652 (output_parser, header_output): Use it.
9653 * src/reader.c (symbols_save): Remove.
9654
cce71710
AD
96552001-12-29 Akim Demaille <akim@epita.fr>
9656
9657 * src/bison.simple: Do not provide a default for YYSTYPE and
9658 YYLTYPE before the user's prologue. Otherwise it's hardly... a
9659 default.
9660
82c035a8
AD
96612001-12-29 Akim Demaille <akim@epita.fr>
9662
9663 Mid-rule actions are simply... ignored!
9664
9665 * src/reader.c (readgram): Be sure to attach mid-rule actions to
9666 the empty-rule associated to the dummy symbol, not to the host
9667 rule.
9668 * tests/actions.at (Mid-rule actions): New.
9669
8419d367
AD
96702001-12-29 Akim Demaille <akim@epita.fr>
9671
9672 Memory leak.
9673
9674 * src/reader.c (reader): Free grammar.
9675
375d5806
AD
96762001-12-29 Akim Demaille <akim@epita.fr>
9677
9678 Memory leak.
9679
9680 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
9681 since it allocates it for each state, although only one is needed.
9682 (allocate_storage): Do it here.
9683
f51cb8ff
AD
96842001-12-29 Akim Demaille <akim@epita.fr>
9685
9686 * src/options.h, src/options.c (create_long_option_table): Rename
9687 as...
9688 (long_option_table_new): this, with a clearer prototype.
9689 (percent_table): Remove, unused,
9690 * src/getargs.c (getargs): Adjust.
9691
29e88316
AD
96922001-12-29 Akim Demaille <akim@epita.fr>
9693
9694 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
9695 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
9696 as states.
9697
b9f71f19
AD
96982001-12-29 Akim Demaille <akim@epita.fr>
9699
9700 * src/lalr.c (build_relations): Rename `states' as `states1'.
9701 Sorry, I don't understand exactly what it is, no better name...
9702
1a2b5d37
AD
97032001-12-29 Akim Demaille <akim@epita.fr>
9704
9705 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
9706 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
9707 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
9708 as rules.
9709
1cca533e
AD
97102001-12-29 Akim Demaille <akim@epita.fr>
9711
9712 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
9713 ago.
9714
c03ae966
AD
97152001-12-29 Akim Demaille <akim@epita.fr>
9716
9717 * src/reader.c, src/reader.h (user_toknums): Remove.
9718 Adjust all users to use symbols[i]->user_token_number.
9719
5a670b1e
AD
97202001-12-29 Akim Demaille <akim@epita.fr>
9721
9722 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
9723 Adjust all users to use symbols[i]->prec or ->assoc.
9724
ad949da9
AD
97252001-12-29 Akim Demaille <akim@epita.fr>
9726
9727 * src/reader.c, src/reader.h (tags): Remove.
9728 Adjust all users to use symbols[i]->tag.
9729
0e78e603
AD
97302001-12-29 Akim Demaille <akim@epita.fr>
9731
9732 * src/gram.h, src/gram.c (symbols): New, similar to state_table
9733 and rule_table.
9734 * src/reader.c (packsymbols): Fill this table.
9735 Drop sprec.
9736 * src/conflicts.c (resolve_sr_conflict): Adjust.
9737 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
9738 single table.
9739 Use symbols[i]->tag instead of tags[i].
9740
213e640e
AD
97412001-12-29 Akim Demaille <akim@epita.fr>
9742
9743 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
9744 In addition, put a comment in there, to replace...
9745 * tests/regression.at (%union and C comments): Remove.
9746
e7b8bef1
AD
97472001-12-29 Akim Demaille <akim@epita.fr>
9748
9749 * tests/regression.at (Web2c Actions): Blindly move the actual
9750 output as expected output. The contents *seem* right to me, but I
9751 can't pretend reading perfectly parser tables... Nonetheless, all
9752 the other tests pass correctly, the table look OK, even though the
9753 presence of `$axiom' is to be noted: AFAICS it is useless (but
9754 harmless).
9755
b68e7744
AD
97562001-12-29 Akim Demaille <akim@epita.fr>
9757
9758 * src/reader.c (readgram): Don't add the rule 0 if there were no
9759 rules read. In other words, add it _after_ having performed
9760 grammar sanity checks.
9761 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
9762
78d5bae9
AD
97632001-12-29 Akim Demaille <akim@epita.fr>
9764
9765 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
9766 visible, and some states have now a different number.
9767
ff442794
AD
97682001-12-29 Akim Demaille <akim@epita.fr>
9769
9770 * src/reader.c (readgram): Bind the initial rule's lineno to that
9771 of the first rule.
9772 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
9773 (Solved SR Conflicts): Adjust rule 0's line number.
9774
610ab194
AD
97752001-12-29 Akim Demaille <akim@epita.fr>
9776
9777 Fix the `GAWK Grammar' failure.
9778
9779 * src/LR0.c (final_state): Initialize to -1 so that we do compute
9780 the reductions of the first state which was mistakenly confused
9781 with the final state because precisely final_state was initialized
9782 to 0.
9783 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
9784 now noticed by Bison.
9785 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
9786 have a reduction on $default.
9787
29d29c8f
AD
97882001-12-29 Akim Demaille <akim@epita.fr>
9789
9790 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
9791 rule line numbers.
9792 * src/closure.c (print_closure): Likewise.
9793 * src/derives.c (print_derives): Likewise.
9794 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
9795 now.
9796
7c6b64d0
AD
97972001-12-29 Akim Demaille <akim@epita.fr>
9798
9799 * src/lalr.c (lookaheads_print): New.
9800 (lalr): Call it when --trace-flag.
9801 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
9802 are dumped.
9803
3d4daee3
AD
98042001-12-29 Akim Demaille <akim@epita.fr>
9805
9806 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
9807 when walking through ritem, even via rule->rhs.
9808 * src/reduce.c (dump_grammar, useful_production, reduce_output)
9809 (useful_production, useless_nonterminals): Likewise.
9810 (reduce_grammar_tables): Likewise, plus update nritems.
9811 * src/nullable.c (set_nullable): Likewise.
9812 * src/lalr.c (build_relations): Likewise.
9813 * tests/sets.at (Nullable): Adjust.
9814 Fortunately, now, the $axiom is no longer nullable.
9815
9e7f6bbd
AD
98162001-12-29 Akim Demaille <akim@epita.fr>
9817
9818 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
9819 the 0-sentinel.
9820 * src/gram.c (ritem_longest_rhs): Likewise.
9821 * src/reduce.c (nonterminals_reduce): Likewise.
9822 * src/print_graph.c (print_graph): Likewise.
9823 * src/output.c (output_rule_data): Likewise.
9824 * src/nullable.c (set_nullable): Likewise.
9825
255ef638
AD
98262001-12-29 Akim Demaille <akim@epita.fr>
9827
9828 * src/output.c: Comment changes.
9829
0d8a7363
AD
98302001-12-27 Paul Eggert <eggert@twinsun.com>
9831
9832 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
9833 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
9834 Sparc, as they were causing more porting problems than the
9835 (minor) performance improvement was worth.
9836
9837 Also, catch up with 1.31's YYSTD.
9838
3db472b9
AD
98392001-12-27 Akim Demaille <akim@epita.fr>
9840
9841 * src/output.c (output_gram): Rely on nritems, not the
9842 0-sentinel. See below.
9843 Use -1 as separator, not 0.
9844 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
9845 Rely on -1 as separator in yyrhs, instead of 0.
9846 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
9847 twice `Now at end of input', therefore there are two lines less to
9848 expect.
9849
b365aa05
AD
98502001-12-27 Akim Demaille <akim@epita.fr>
9851
9852 * tests/regression.at (Unresolved SR Conflicts):
9853 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
9854 below.
9855
30171f79
AD
98562001-12-27 Akim Demaille <akim@epita.fr>
9857
9858 * src/LR0.c (new_state): Recognize the final state by the fact it
9859 is reached by eoftoken.
9860 (insert_start_shifting_state, insert_eof_shifting_state)
9861 (insert_accepting_state, augment_automaton): Remove, since now
9862 these states are automatically computed from the initial state.
9863 (generate_states): Adjust.
9864 * src/print.c: When reporting a rule number to the user, substract
9865 1, so that the axiom rule is rule 0, and the first user rule is 1.
9866 * src/reduce.c: Likewise.
9867 * src/print_graph.c (print_core): For the time being, just as for
9868 the report, depend upon --trace-flags to dump the full set of
9869 items.
9870 * src/reader.c (readgram): Once the grammar read, insert the rule
9871 0: `$axiom: START-SYMBOL $'.
9872 * tests/set.at: Adjust: rule 0 is now displayed, and since the
9873 number of the states has changed (the final state is no longer
9874 necessarily the last), catch up.
9875
75142d45
AD
98762001-12-27 Akim Demaille <akim@epita.fr>
9877
9878 Try to make the use of the eoftoken valid. Given that its value
9879 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
9880 is used instead of > 0 where appropriate, (ii), depend upon nritems
9881 instead of the 0-sentinel.
9882
9883 * src/gram.h, src/gram.c (nritems): New.
9884 Expected to be duplication of nitems, but for the time being...
9885 * src/reader.c (packgram): Assert nritems and nitems are equal.
9886 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
9887 * src/closure.c (print_closure, print_fderives): Likewise.
9888 * src/gram.c (ritem_print): Likewise.
9889 * src/print.c (print_core, print_grammar): Likewise.
9890 * src/print_graph.c: Likewise.
9891
b7c49edf
AD
98922001-12-27 Akim Demaille <akim@epita.fr>
9893
9894 * src/main.c (main): If there are complains after grammar
9895 reductions, then output the report anyway if requested, then die.
9896 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
9897 * src/reader.c (eoftoken): New.
9898 (parse_token_decl): If the token being defined has value `0', it
9899 is the eoftoken.
9900 (packsymbols): No longer hack `tags' to insert `$' by hand.
9901 Be sure to preserve the value of the eoftoken.
9902 (reader): Make sure eoftoken is defined.
9903 Initialize nsyms to 0: now eoftoken is created just like the others.
9904 * src/print.c (print_grammar): Don't special case the eof token.
9905 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
9906 lie anyway, albeit pleasant.
9907 * tests/calc.at: Exercise error messages with eoftoken.
9908 Change the grammar so that empty input is invalid.
9909 Adjust expectations.
9910 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
9911
ec2da99f
AD
99122001-12-27 Akim Demaille <akim@epita.fr>
9913
9914 * configure.in: Check the protos of strchr ans strspn.
9915 Replace strchr if needed.
9916 * src/system.h: Provide the protos of strchr, strspn and memchr if
9917 missing.
9918 * lib/strchr.c: New.
9919 * src/reader.c (symbols_save): Use strchr.
9920
8adfa272
AD
99212001-12-27 Akim Demaille <akim@epita.fr>
9922
9923 * src/print.c, src/print_graph.c (escape): New.
9924 Use it to quote the TAGS outputs.
9925 * src/print_graph.c (print_state): Now errors are in red, and
9926 reductions in green.
9927 Prefer high to wide: output the state number on a line of its own.
9928
80dac38c
AD
99292001-12-27 Akim Demaille <akim@epita.fr>
9930
9931 * src/state.h, src/state.c (reductions_new): New.
9932 * src/LR0.c (set_state_table): Let all the states have a
9933 `reductions', even if reduced to 0.
9934 (save_reductions): Adjust.
9935 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
9936 * src/print.c (print_reductions, print_actions): Adjust.
9937 * src/output.c (action_row): Adjust.
9938
2cec70b9
AD
99392001-12-27 Akim Demaille <akim@epita.fr>
9940
9941 * src/state.h, src/state.c (errs_new, errs_dup): New.
9942 * src/LR0.c (set_state_table): Let all the states have an errs,
9943 even if reduced to 0.
9944 * src/print.c (print_errs, print_reductions): Adjust.
9945 * src/output.c (output_actions, action_row): Adjust.
9946 * src/conflicts.c (resolve_sr_conflict): Adjust.
9947
13ca549a
AD
99482001-12-27 Akim Demaille <akim@epita.fr>
9949
9950 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
9951
5092aba5
AD
99522001-12-27 Akim Demaille <akim@epita.fr>
9953
9954 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
9955 * src/print.c: here.
9956 (lookaheadset, shiftset): New, used as additional storage by
9957 print_reductions.
9958 (print_results): Adjust.
9959 (print_shifts, print_gotos, print_errs): New, extracted from...
9960 (print_actions): here.
9961 * src/print_graph.c (print_actions): Remove dead code.
9962
11e2beca
AD
99632001-12-27 Akim Demaille <akim@epita.fr>
9964
9965 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
9966 `$n' and `@n'.
9967
dac3c910
AD
99682001-12-27 Akim Demaille <akim@epita.fr>
9969
9970 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
9971 (build_relations): Adjust.
9972
d0b0fefa
AD
99732001-12-27 Akim Demaille <akim@epita.fr>
9974
9975 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
9976 duplication.
9977
adc8c848
AD
99782001-12-27 Akim Demaille <akim@epita.fr>
9979
9980 * src/reader.c (packgram): Catch nitems overflows.
9981
14d293ac
AD
99822001-12-27 Akim Demaille <akim@epita.fr>
9983
9984 * src/files.c, src/files.h (guard_obstack): Remove.
9985 * src/output.c (output): Adjust.
9986 * src/reader.c (parse_braces): New, factoring...
9987 (copy_action, copy_guard): these two which are renamed as...
9988 (parse_action, parse_guard): these.
9989 As a voluntary consequence, using braces around guards is now
9990 mandatory.
9991
f499b062
AD
99922001-12-27 Akim Demaille <akim@epita.fr>
9993
9994 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
9995 * src/reader.c (symbol_list): `guard' and `guard_line' are new
9996 members.
9997 (symbol_list_new): Adjust.
9998 (copy_action): action_line is the first line, not the last.
9999 (copy_guard): Just as for actions, store the `action' only, not
10000 the switch/case/break flesh.
10001 Don't parse the user action that might follow the guard, let...
10002 (readgram): do it, i.e., now, there can be an action after a
10003 guard.
10004 In other words the guard is just explicitly optional.
10005 (packgram): Adjust.
10006 * src/output.c (guards_output): New.
10007 (output_parser): Call it when needed.
10008 (output): Also free the guard and attrs obstacks.
10009 * src/files.c, src/files.h (obstack_save): Remove.
10010 (output_files): Remove.
10011 As a result, if one needs the former `.act' file, using an
10012 appropriate skeleton which requires actions and guards is now
10013 required.
10014 * src/main.c (main): Adjust.
10015 * tests/semantic.at: New.
10016 * tests/regression.at: Use `input.y' as input file name.
10017 Avoid 8+3 problems by requiring input.c when the test needs the
10018 parser.
10019
d945f5cd
AD
100202001-12-27 Akim Demaille <akim@epita.fr>
10021
10022 * src/reader.c (symbol_list_new): Be sure to initialize all the
10023 fields.
10024
d200e455
AD
100252001-12-27 Akim Demaille <akim@epita.fr>
10026
10027 All the hacks using a final pseudo state are now useless.
10028
10029 * src/LR0.c (set_state_table): state_table holds exactly nstates.
10030 * src/lalr.c (nLA): New.
10031 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
10032 instead of lookaheadsp from the pseudo state (nstate + 1).
10033
f9507c28
AD
100342001-12-27 Akim Demaille <akim@epita.fr>
10035
10036 * src/output.c (action_row, token_actions): Use a state_t instead
10037 of a integer, and nlookaheads instead of the following state's
10038 lookaheadsp.
10039
065fbd27
AD
100402001-12-27 Akim Demaille <akim@epita.fr>
10041
10042 * src/conflicts.c (log_resolution, flush_shift)
10043 (resolve_sr_conflict, set_conflicts, solve_conflicts)
10044 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
10045 (conflicts_print, print_reductions): Use a state_t instead of an
10046 integer when referring to a state.
10047 As much as possible, depend upon nlookaheads, instead of the
10048 `lookaheadsp' member of the following state (since lookaheads of
10049 successive states are successive, the difference between state n + 1
10050 and n served as the number of lookaheads for state n).
10051 * src/lalr.c (add_lookback_edge): Likewise.
10052 * src/print.c (print_core, print_actions, print_state)
10053 (print_results): Likewise.
10054 * src/print_graph.c (print_core, print_actions, print_state)
10055 (print_graph): Likewise.
10056 * src/conflicts.h: Adjust.
10057
1b177bd7
AD
100582001-12-27 Akim Demaille <akim@epita.fr>
10059
10060 * src/bison.hairy: Formatting/comment changes.
10061 ANSIfy.
10062 Remove `register' indications.
10063 Add plenty of `static'.
10064
7742ddeb
AD
100652001-12-27 Akim Demaille <akim@epita.fr>
10066
10067 * src/output.c (prepare): Drop the muscle `ntbase' which
10068 duplicates ntokens.
10069 * src/bison.simple: Formatting/comment changes.
10070 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
10071 is an undocumented synonym.
10072
1fa14068
AD
100732001-12-22 Akim Demaille <akim@epita.fr>
10074
10075 * src/output.c (output_table_data): Change the prototype to use
10076 `int' for array ranges: some invocations do pass an int, not a
10077 short.
10078 Reported by Wayne Green.
10079
b9752825
AD
100802001-12-22 Akim Demaille <akim@epita.fr>
10081
10082 Some actions of web2c.y are improperly triggered.
10083 Reported by Mike Castle.
10084
10085 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
10086 * tests/regression.at (Web2c): Rename as...
10087 (Web2c Report): this.
10088 (Web2c Actions): New.
10089
776209d6
AD
100902001-12-22 Akim Demaille <akim@epita.fr>
10091
10092 Reductions in web2c.y are improperly reported.
10093 Reported by Mike Castle.
10094
10095 * src/conflicts.c (print_reductions): Fix.
10096 * tests/regression.at (Web2c): New.
10097
275fc3ad
AD
100982001-12-18 Akim Demaille <akim@epita.fr>
10099
10100 Some host fail on `assert (!"foo")', which expands to
10101 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
10102 Reported by Nelson Beebee.
10103
10104 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
10105 `#define it_succeeded 0' and `assert (it_succeeded)'.
10106
897668ee
MA
101072001-12-17 Marc Autret <autret_m@epita.fr>
10108
10109 * src/bison.simple: Don't hard code the skeleton line and filename.
10110 * src/output.c (output_parser): Rename 'line' as 'output_line'.
10111 New line counter 'skeleton_line' (skeleton-line muscle).
10112
ab3399e0
PE
101132001-12-17 Paul Eggert <eggert@twinsun.com>
10114
10115 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
10116 YYDEBUG must be defined to a nonzero value.
10117
10118 * src/bison.simple (yytname): Do not assume that the user defines
10119 YYDEBUG to a properly parenthesized expression.
10120
3877f72b
AD
101212001-12-17 Akim Demaille <akim@epita.fr>
10122
10123 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
10124 nlookaheads is a new member.
10125 Adjust all users.
10126 * src/lalr.h (nlookaheads): Remove this orphan declaration.
10127 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
10128 state.
776209d6 10129
331dbc1b
AD
101302001-12-17 Akim Demaille <akim@epita.fr>
10131
10132 * src/files.h, src/files.c (open_files, close_files): Remove.
10133 * src/main.c (main): Don't open/close files, nor invoke lex_free,
10134 let...
10135 * src/reader.c (reader): Do it.
776209d6 10136
be750e4c
AD
101372001-12-17 Akim Demaille <akim@epita.fr>
10138
10139 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 10140
709ae8c6
AD
101412001-12-17 Akim Demaille <akim@epita.fr>
10142
10143 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
10144 (flush_reduce): New.
10145 (resolve_sr_conflict): Adjust.
776209d6 10146
f87685c3
AD
101472001-12-17 Akim Demaille <akim@epita.fr>
10148
10149 * src/output.c (output_obstack): Be static and rename as...
10150 (format_obstack): this, to avoid any confusion with files.c's
10151 output_obstack.
10152 * src/reader.h (muscle_obstack): Move to...
10153 * src/output.h: here, since it's defined in output.c.
10154
837491d8
AD
101552001-12-17 Akim Demaille <akim@epita.fr>
10156
10157 * src/output.c (action_row, save_column, default_goto)
10158 (sort_actions, matching_state, pack_vector): Better variable
10159 locality.
10160
796d61fb
AD
101612001-12-17 Akim Demaille <akim@epita.fr>
10162
10163 * src/output.c: Various formatting changes.
776209d6 10164
64d15509
AD
101652001-12-17 Akim Demaille <akim@epita.fr>
10166
10167 * src/files.c (output_files): Free the output_obstack.
10168 * src/main.c (main): Call print and print_graph conditionally.
10169 * src/print.c (print): Work unconditionally.
10170 * src/print_graph.c (print_graph): Work unconditionally.
10171 * src/conflicts.c (log_resolution): Output only if verbose_flag.
10172
fbc8ecb7
MA
101732001-12-16 Marc Autret <autret_m@epita.fr>
10174
10175 * src/output.c (actions_output): Fix. When we use %no-lines,
10176 there is one less line per action.
10177
f0440388
MA
101782001-12-16 Marc Autret <autret_m@epita.fr>
10179
10180 * src/bison.simple: Remove a useless #line directive.
10181 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
10182 * src/output.c (get_lines_number): New.
776209d6 10183 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
10184 output muscles.
10185 Fix line numbering.
10186 (actions_output): Computes the number of lines taken by actions.
10187 (output_master_parser): Insert new skeleton which is the name of
10188 the output parser file name.
10189
a79986b8
MA
101902001-12-15 Marc Autret <autret_m@epita.fr>
10191
10192 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
10193
4ec8e00f
MA
101942001-12-15 Marc Autret <autret_m@epita.fr>
10195
10196 * src/output.c (output_gram): Keep track of the hairy one.
10197
1a4648ff
AD
101982001-12-15 Akim Demaille <akim@epita.fr>
10199
10200 Make `make distcheck' work.
10201
10202 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
10203 system.h which uses libgettext.h.
10204
9c2c67e6
AD
102052001-12-15 Akim Demaille <akim@epita.fr>
10206
10207 * src/nullable.c (set_nullable): Useless rules must be skipped,
10208 otherwise, since we range over their symbols, we might look at a
10209 nonterminal which no longer ``exists'', i.e., it is not counted in
10210 `nvars', hence we overflow our arrays.
10211
93ede233
AD
102122001-12-15 Akim Demaille <akim@epita.fr>
10213
10214 The header can also be produced directly, without any obstack!
10215 Yahoo!
10216
10217 * src/files.c, src/files.h (defines_obstack): Remove.
10218 (compute_header_macro): Global.
10219 (defines_obstack_save): Remove.
10220 * src/reader.c (parse_union_decl): No longer output to
10221 defines_obstack: its content can be found in the `stype' muscle
10222 anyway.
10223 (output_token_translations): Merge into...
10224 (symbols_output): this.
10225 Rename as...
10226 (symbols_save): this.
10227 (reader): Adjust.
10228 * src/output.c (header_output): New.
10229 (output): Call it.
10230
2666f928
AD
102312001-12-15 Akim Demaille <akim@epita.fr>
10232
10233 * src/reader.c (parse_union_decl): Instead of handling two obstack
10234 simultaneously, use one to define the `stype' muscle, and use the
10235 value of the latter to fill defines_obstack.
10236 (copy_comment): Remove.
10237 (copy_comment2): Work for a single obstack.
10238 Rename as...
10239 (copy_comment): this.
10240
428046f8
AD
102412001-12-15 Akim Demaille <akim@epita.fr>
10242
10243 * src/lex.c, src/lex.h (xgetc): No longer static.
10244 * src/reader.c (parse_union_decl): Revamp.
10245
ea52d706
AD
102462001-12-15 Akim Demaille <akim@epita.fr>
10247
10248 Still making progress in separating Bison into (i) input, (ii)
10249 process, (iii) output: now we can directly output the parser file
10250 without using table_obstack at all.
10251
10252 * src/files.c, src/files.h (table_obstack): Bye bye.
10253 (parser_file_name): New.
10254 * src/files.c (compute_output_file_names): Compute it.
10255 * src/output.c (actions_output, output_parser)
10256 (output_master_parser): To a file instead of an obstack.
10257
3f96f4dc
AD
102582001-12-15 Akim Demaille <akim@epita.fr>
10259
10260 Attach actions to rules, instead of pre-outputting them to
10261 actions_obstack.
10262
10263 * src/gram.h (rule_t): action and action_line are new members.
10264 * src/reader.c (symbol_list): Likewise.
10265 (copy_action): Save the actions within the rule.
10266 (packgram): Save them in rule_table.
10267 * src/output.c (actions_output): New.
10268 (output_parser): Use it on `%%actions'.
10269 (output_rule_data): Don't free rule_table.
10270 (output): Do it.
10271 (prepare): Don't save the `action' muscle.
10272 * src/bison.simple: s/%%action/%%actions/.
10273
51576fb3
AD
102742001-12-15 Akim Demaille <akim@epita.fr>
10275
10276 * src/reader.c (copy_action): When --yacc, don't append a `;'
10277 to the user action: let it fail if lacking.
dee049eb 10278 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 10279
2648a72d
AD
102802001-12-14 Akim Demaille <akim@epita.fr>
10281
10282 * src/lex.c (literalchar): Simply return the char you decoded, non
10283 longer mess around with obstacks and int pointers.
10284 Adjust all callers.
10285
92790e5b
AD
102862001-12-14 Akim Demaille <akim@epita.fr>
10287
10288 * src/lex.c (literalchar): Don't escape the special characters,
10289 just decode them, and keep them as char (before, eol was output as
10290 the 2 char string `\n' etc.).
10291 * src/output.c (output_rule_data): Use quotearg to output the
10292 token strings.
10293
927c1557
PE
102942001-12-13 Paul Eggert <eggert@twinsun.com>
10295
10296 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
10297 Do not infringe on the global user namespace when using C++.
10298 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
10299 All uses of `fprintf' and `stderr' changed.
10300
10301 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
10302
ed8e1f68
AD
103032001-12-13 Akim Demaille <akim@epita.fr>
10304
10305 The computation of nullable is broken: it doesn't handle empty
10306 RHS's properly.
10307
10308 * tests/torture.at (GNU AWK Grammar): New.
10309 * tests/sets.at (Nullable): New.
10310 * src/nullable.c (set_nullable): Instead of blindly looping over
10311 `ritems', loop over the rules, and then over their rhs's.
10312
10313 Work around Autotest bugs.
10314
10315 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
10316 frame, because Autotest understand lines starting with a `+' as
10317 traces from the shell. Then, they are not processed properly.
10318 Admittedly an Autotest bug, but we don't have time to wait for
10319 Autotest to catch up.
10320 * tests/regression.at (Broken Closure): Adjust to the new table
10321 frames.
10322 Move to...
10323 * tests/sets.at: here.
10324
cb581495
AD
103252001-12-13 Akim Demaille <akim@epita.fr>
10326
10327 * src/closure.c (closure): Use nrules instead of playing tricks
10328 with BITS_PER_WORD.
10329
2e729273
AD
103302001-12-13 Akim Demaille <akim@epita.fr>
10331
10332 * src/print.c (print_actions): Output the handling of `$' as the
10333 traces do: shifting the token EOF. Before EOF was treated as a
10334 nonterminal.
10335 * tests/regression.at: Adjust some tests.
10336 * src/print_graph.c (print_core): Complete the set of items via
10337 closure. The next-to-final and final states are still unsatisfying,
10338 but that's to be addressed elsewhere.
10339 No longer output the rule numbers, but do output the state number.
10340 A single loop for the shifts + gotos is enough, but picked a
10341 distinct color for each.
10342 (print_graph): Initialize and finalize closure.
10343
107f7dfb
AD
103442001-12-13 Akim Demaille <akim@epita.fr>
10345
10346 * src/reader.c (readgram): Remove dead code, an strip useless
10347 braces.
10348 (get_type): Remove, unused.
10349
9b53a24f
AD
103502001-12-12 Akim Demaille <akim@epita.fr>
10351
10352 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
10353 on that of lib/error.c.
10354
dbfb6dcd
AD
103552001-12-12 Akim Demaille <akim@epita.fr>
10356
10357 Some hosts don't like `/' in includes.
10358
10359 * src/system.h: Include libgettext.h without qualifying the path.
10360 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
10361 $(top_srcdir).
10362
c25fb648
MA
103632001-12-11 Marc Autret <autret_m@epita.fr>
10364
10365 * src/output.c (output_parser): Remove useless muscle.
10366
710ddc4f
MA
103672001-12-11 Marc Autret <autret_m@epita.fr>
10368
10369 * src/bison.simple: Remove #line just before %%epilogue. It
10370 is now handled in ...
10371 * src/reader.c (read_additionnal_code): Add the output of a
10372 #line for the epilogue.
10373
e83d80b8
MA
103742001-12-10 Marc Autret <autret_m@epita.fr>
10375
927c1557 10376 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
10377 replace precedent remove.
10378 * src/bison.simple: Remove #line before %%prologue because
10379 %%input-line is wrong at this time.
10380
971d5158
MA
103812001-12-10 Marc Autret <autret_m@epita.fr>
10382
10383 * src/reader.c (symbols_output): Clean up.
927c1557 10384 * src/output.c (output_gram, output): Clean up.
971d5158 10385
5edafffd
AD
103862001-12-10 Akim Demaille <akim@epita.fr>
10387
10388 * src/lalr.c (initialize_lookaheads): New. Extracted from...
10389 * src/LR0.c (set_state_table): here.
10390 * src/lalr.c (lalr): Call it.
10391
0279f8e9
AD
103922001-12-10 Akim Demaille <akim@epita.fr>
10393
10394 * src/state.h (shifts): Remove the `number' member: shifts are
10395 attached to state, hence no longer need to be labelled with a
10396 state number.
10397
190c4f5f
AD
103982001-12-10 Akim Demaille <akim@epita.fr>
10399
10400 Now that states have a complete set of members, the linked list of
10401 shifts is useless: just fill directly the state's shifts member.
10402
10403 * src/state.h (shifts): Remove the `next' member.
10404 * src/LR0.c (first_state, last_state): Remove.
10405 Adjust the callers.
10406 (augment_automaton): Don't look for the shifts that must be added
10407 a shift on EOF: it is those of the state we looked for! But now,
10408 since shifts are attached, it is no longer needed to looking
10409 merely by its id: its number.
10410
2a73b93d
AD
104112001-12-10 Akim Demaille <akim@epita.fr>
10412
10413 * src/LR0.c (augment_automaton): Better variable locality.
10414 Remove an impossible branch: if there is a state corresponding to
10415 the start symbol being shifted, then there is shift for the start
10416 symbol from the initial state.
10417
74392f6a
AD
104182001-12-10 Akim Demaille <akim@epita.fr>
10419
10420 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
10421 only when appropriate: when insert_start_shifting_state' is not
10422 invoked.
10423 * tests/regression.at (Rule Line Numbers): Adjust.
10424
37c82725
AD
104252001-12-10 Akim Demaille <akim@epita.fr>
10426
10427 * src/LR0.c (augment_automaton): Now that all states have shifts,
10428 merge the two cases addition shifts to the initial state.
10429
6a164e0c
AD
104302001-12-10 Akim Demaille <akim@epita.fr>
10431
10432 * src/lalr.c (set_state_table): Move to...
10433 * src/LR0.c: here.
10434 * src/lalr.c (lalr): Don't call it...
10435 * src/LR0.c (generate_states): do it.
10436 * src/LR0.h (first_state): Remove, only the table is used.
10437
7215de24
AD
104382001-12-10 Akim Demaille <akim@epita.fr>
10439
10440 * src/LR0.h (first_shift, first_reduction): Remove.
10441 * src/lalr.c: Don't use first_shift: find shifts through the
10442 states.
10443
80e25d4d
AD
104442001-12-10 Akim Demaille <akim@epita.fr>
10445
10446 * src/LR0.c: Attach shifts to states as soon as they are
10447 computed.
10448 * src/lalr.c (set_state_table): Instead of assigning shifts to
10449 state, just assert that the mapping was properly done.
10450
0ab3728b
AD
104512001-12-10 Akim Demaille <akim@epita.fr>
10452
10453 * src/LR0.c (insert_start_shift): Rename as...
10454 (insert_start_shifting_state): this.
10455 (insert_eof_shifting_state, insert_accepting_state): New.
10456 (augment_automaton): Adjust.
10457 Better locality of the variables.
10458 When looking if the start_symbol is shifted from the initial
10459 state, using `while (... symbol != start_symbol ...)' sounds
10460 better than `while (... symbol < start_symbol ...)': If fail
10461 to see how the order between symbols could be relevant!
10462
78af9bbc
AD
104632001-12-10 Akim Demaille <akim@epita.fr>
10464
10465 * src/getargs.h: Don't declare `spec_name_prefix' and
10466 `spec_file_prefix', declared by src/files.h.
10467 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
10468 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
10469 * src/output.c (prepare): Adjust.
10470 * src/reader.c (symbols_output): Likewise.
10471 * src/vmsgetargs.c: Vaguely adjust, but who cares?
10472
bdef2a41
AD
104732001-12-10 Akim Demaille <akim@epita.fr>
10474
10475 * src/muscle_tab.c (muscle_init): NULL is a better default than
10476 `"0"'.
10477
3735969c
AD
104782001-12-10 Akim Demaille <akim@epita.fr>
10479
10480 * src/reader.c (reader): Calling symbols_output once is enough.
10481
49701457
AD
104822001-12-10 Akim Demaille <akim@epita.fr>
10483
10484 Now that states have a complete set of members, the linked list of
10485 reductions is useless: just fill directly the state's reductions
10486 member.
10487
10488 * src/state.h (struct reductions): Remove member `number' and
10489 `next'.
10490 * src/LR0.c (first_reduction, last_reduction): Remove.
10491 (save_reductions): Don't link the new reductions, store them in
10492 this_state.
10493 * src/lalr.c (set_state_table): No need to attach reductions to
10494 states, it's already done.
10495 * src/output.c (output_actions): No longer free the shifts, then
10496 the reductions, then the states: free all the states and their
10497 members.
10498
0edad749
AD
104992001-12-10 Akim Demaille <akim@epita.fr>
10500
10501 * src/options.c (OPTN, DRTV, BOTH): New.
10502 (option_table): Use them.
10503
0edad749
AD
10504 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
10505 the job of system.h.
10506 * src/options.c: Don't include stdio.h and xalloc.h for the same
10507 reasons.
10508
5449dd0f
AD
105092001-12-10 Akim Demaille <akim@epita.fr>
10510
10511 * src/output.c (output, prepare): Make sure the values of the
10512 muscles `action' and `prologue' are 0-terminated.
10513
a870c567
AD
105142001-12-10 Akim Demaille <akim@epita.fr>
10515
10516 Clean up GCC warnings.
10517
10518 * src/reader.c (copy_action): `buf' is not used.
10519 (parse_skel_decl): Be static.
10520 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
10521 * src/options.h (create_long_option_table): Have a real prototype.
10522 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
10523 (hash_delete_at): Return const void *.
10524 Adjust casts to preserve the const.
10525
80df8768
AD
105262001-12-10 Akim Demaille <akim@epita.fr>
10527
10528 * configure.in: Require 2.52g.
10529 M4 is not needed, but AUTOM4TE is.
10530 * m4/m4.m4: Remove.
10531 * tests/Makefile.am: Adjust.
10532
f693ad14
AD
105332001-12-10 Akim Demaille <akim@epita.fr>
10534
10535 One structure for states is enough, even though theoretically
10536 there are LR(0) states and LALR(1) states.
10537
10538 * src/lalr.h (state_t): Remove.
10539 (state_table): Be state_t **, not state_t *.
10540 * src/state.h (core, CORE_ALLOC): Rename as...
10541 (state_t, STATE_ALLOC): this.
10542 Add the LALR(1) members: shifts, reductions, errs.
10543 * src/LR0.c (state_table): Rename as...
10544 (state_hash): this, to avoid name clashes with the global
10545 `state_table'.
10546 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
10547 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
10548
74ffbcb6
AD
105492001-12-10 Akim Demaille <akim@epita.fr>
10550
10551 Bison dumps core on bash.y.
10552 Reported by Pascal Bart.
10553
10554 * src/warshall.c (bitmatrix_print): New.
10555 (TC): Use it.
ba0fe3c7 10556 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
10557 j must be the outer loop.
10558 * tests/regression.at (Broken Closure): New.
10559
07708e19
AD
105602001-12-05 Akim Demaille <akim@epita.fr>
10561
10562 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
10563 its argument.
ba1ecc07 10564 Reported by Peter Hamorsky.
07708e19 10565
92b16366
AD
105662001-12-05 Akim Demaille <akim@epita.fr>
10567
10568 * src/conflicts.c (err_table): Remove.
10569 (resolve_sr_conflict): Adjust.
10570 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
10571 Rename as...
10572 (state_t.reductions, state_t.shifts): this.
10573
076ab033
AD
105742001-12-05 Akim Demaille <akim@epita.fr>
10575
10576 * src/reduce.c (reduce_grammar_tables): No longer disable the
10577 removal of useless rules via CPP but via `if (0)', so that the
10578 compiler still check the code is valid.
10579 For instance, it should have noticed `rline' no longer exists: use
10580 the `line' member of rule_t.
10581 * src/gram.c (dummy, rline): Remove, unused.
10582
3843c413
AD
105832001-12-05 Akim Demaille <akim@epita.fr>
10584
10585 * src/output.c (pack_vector): Use assert, not berror.
10586 * src/main.c (berror): Remove, unused.
10587
43168960
AD
105882001-12-05 Akim Demaille <akim@epita.fr>
10589
10590 New experimental feature: if --verbose --trace output all the
10591 items of a state, not only its kernel.
10592
10593 * src/print.c (print_core): If `trace_flag', then invoke closure
10594 before outputting the items of the state (print_core is no longer
10595 a correct name them).
10596 (print_results): Invoke new_closure/free_closure if needed.
10597
b2872512
AD
105982001-12-05 Akim Demaille <akim@epita.fr>
10599
10600 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
10601 * src/closure.c, src/closure.h (itemsetsize): Rename as...
10602 (nitemset): for consistency with the rest of the project.
10603
23cbcc6c
AD
106042001-12-05 Akim Demaille <akim@epita.fr>
10605
10606 * src/closure.c (print_closure): Improve.
10607 (closure): Use it for printing input and output.
10608
03ec521c
AD
106092001-12-05 Akim Demaille <akim@epita.fr>
10610
10611 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
10612 indexed by nonterminals.
10613
3a7456dd
AD
106142001-12-05 Akim Demaille <akim@epita.fr>
10615
10616 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
10617 what it was!).
10618 * src/warshall.h: Remove accidental duplication of the content.
10619
1cbcf2e7
AD
106202001-12-05 Akim Demaille <akim@epita.fr>
10621
10622 * src/closure.c (set_fderives): De-obfuscate.
10623
84182270
AD
106242001-12-05 Akim Demaille <akim@epita.fr>
10625
10626 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
10627
3f6f053c
AD
106282001-12-05 Akim Demaille <akim@epita.fr>
10629
10630 * src/closure.c (set_firsts): De-obfuscate.
10631
7a5350ba
AD
106322001-12-05 Akim Demaille <akim@epita.fr>
10633
10634 * src/output.c (action_row): De-obfuscate
10635 using the good o' techniques: arrays not pointers, variable
10636 locality, BITISSET, RESETBIT etc.
10637
d954473d
AD
106382001-12-05 Akim Demaille <akim@epita.fr>
10639
10640 Pessimize the code to simplify it: from now on, all the states
10641 have a valid SHIFTS, which NSHIFTS is possibly 0.
10642
10643 * src/LR0.c (shifts_new): Be global and move to..
10644 * src/state.c, src/state.h: here.
10645 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
10646 * src/print_graph: Adjust.
10647
9839bbe5
AD
106482001-12-05 Akim Demaille <akim@epita.fr>
10649
10650 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
10651 * src/conflicts.c: Use it.
10652 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
10653 incorrectly ``simplified''.
10654
9f136c07
AD
106552001-12-05 Akim Demaille <akim@epita.fr>
10656
10657 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
10658 using the good o' techniques: arrays not pointers, variable
10659 locality, BITISSET, RESETBIT etc.
10660
b608206e
AD
106612001-12-05 Akim Demaille <akim@epita.fr>
10662
10663 * src/state.h (SHIFT_SYMBOL): New.
10664 * src/conflicts.c: Use it to deobfuscate.
10665
52afa962
AD
106662001-12-05 Akim Demaille <akim@epita.fr>
10667
10668 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
10669 (print_reductions): De-obfuscate using the good o' techniques:
10670 arrays not pointers, variable locality, BITISSET.
10671
e74dc321
AD
106722001-12-05 Akim Demaille <akim@epita.fr>
10673
10674 * src/conflicts.c (print_reductions): Arrays, not pointers.
10675 Use BITISSET.
10676
768fca83
AD
106772001-12-05 Akim Demaille <akim@epita.fr>
10678
10679 * src/conflicts.c (print_reductions): Pessimize, but clarify.
10680
a17e599f
AD
106812001-12-05 Akim Demaille <akim@epita.fr>
10682
10683 * src/conflicts.c (print_reductions): Improve variable locality.
10684
a04bc341
AD
106852001-12-05 Akim Demaille <akim@epita.fr>
10686
10687 * src/conflicts.c (print_reductions): Pessimize, but clarify.
10688
c8ea038e
AD
106892001-12-05 Akim Demaille <akim@epita.fr>
10690
10691 * src/conflicts.c (print_reductions): Improve variable locality.
10692
aa2aab3c
AD
106932001-12-05 Akim Demaille <akim@epita.fr>
10694
10695 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
10696 * src/lalr.c: Use them.
10697
b178c8cc
AD
106982001-12-05 Akim Demaille <akim@epita.fr>
10699
10700 * src/LR0.c (augment_automaton): Formatting changes.
10701 Better variable locality.
10702
f67d13aa
AD
107032001-12-05 Akim Demaille <akim@epita.fr>
10704
10705 * src/lalr.c (matrix_print): New.
10706 (transpose): Use it.
10707 Use arrays instead of pointers.
10708
c2713865
AD
107092001-12-05 Akim Demaille <akim@epita.fr>
10710
10711 * src/lalr.c (maxrhs): Move to...
10712 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
10713 * src/lalr.c (build_relations): Adjust.
10714
9887c18a
AD
107152001-12-05 Akim Demaille <akim@epita.fr>
10716
10717 * src/lalr.c (transpose): Free the memory allocated to the
10718 argument, as it is replaced by the results by the unique caller.
10719 (build_relations): Merely invoke transpose: it handles the memory
10720 deallocation.
10721 Improve variable locality.
10722 Avoid variables used as mere abbreviations.
10723 (compute_lookaheads): Use arrays instead of pointers.
10724
4d4f699c
AD
107252001-12-05 Akim Demaille <akim@epita.fr>
10726
10727 * src/lalr.c (initialize_F): Improve variable locality.
10728 Avoid variables used as mere abbreviations.
10729
80a69750
AD
107302001-12-05 Akim Demaille <akim@epita.fr>
10731
10732 * src/derives.c (print_derives): Display the ruleno.
10733 * src/lalr.c (initialize_F, transpose): Better variable locality
10734 to improve readability.
10735 Avoid variables used as mere abbreviations.
10736
fe961097
AD
107372001-12-05 Akim Demaille <akim@epita.fr>
10738
10739 * src/lalr.c (traverse): Use arrays instead of pointers.
10740
e3e4e814
AD
107412001-12-05 Akim Demaille <akim@epita.fr>
10742
10743 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
10744 the handling of squeue.
10745 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
10746
630e182b
AD
107472001-12-05 Akim Demaille <akim@epita.fr>
10748
10749 Because useless nonterminals are now kept alive (instead of being
10750 `destroyed'), we now sometimes examine them, and store information
10751 related to them. Hence we need to know their number, and adjust
10752 memory allocations.
10753
10754 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
10755 static.
10756 * src/LR0.c (allocate_itemsets): The memory allocated to
10757 `symbol_count' was used for two different purpose: once to count
10758 the number of occurrences of each symbol, and later reassigned to
10759 `shift_symbol', containing the symbol that can be shifted from a
10760 given state.
10761 Deobfuscate, i.e., allocate, use and free `symbol_count' here
10762 only, and...
10763 (new_itemsets): Allocate `shift_symbol' here.
10764 (allocate_itemsets): symbol_count includes useless nonterminals.
10765 Make room for them.
10766 (free_storage): Use `free', not `XFREE', for pointers that cannot
10767 be null.
10768
81b51460
AD
107692001-12-05 Akim Demaille <akim@epita.fr>
10770
10771 * src/nullable.c (set_nullable): Deobfuscate the handling of
10772 ritem.
10773 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
10774
3067fbef
AD
107752001-12-05 Akim Demaille <akim@epita.fr>
10776
10777 * src/gram.c, src/gram.h (ritem_print): New.
10778 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
10779 (This useless function was defined only to work around VMS linkers
10780 that can't handle compilation units with variables only).
10781 * src/reduce.c (dump_grammar): Use it to trace the construction of
10782 ritem.
10783
c2bea5f9
PE
107842001-12-04 Paul Eggert <eggert@twinsun.com>
10785
7d27c823
PE
10786 * src/bison.simple (union yyalloc): Change member names
10787 to be the same as the stack names.
10788 (yyparse): yyptr is now union yyalloc *, not char *.
10789 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
10790 and may generate better code on some machines.
c2bea5f9
PE
10791 (yystpcpy): Use prototype if __STDC__ is defined, not just
10792 if __cplusplus is defined.
35687a9d 10793
2c8a9dfa
AD
107942001-11-30 Akim Demaille <akim@epita.fr>
10795
10796 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
10797 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
10798 Gettext doesn't compile cleanly, and dies with -Werror.
10799 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
10800 Include WARNING_CFLAGS here.
10801 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
10802 before being defined.
10803
f4e421e6
AD
108042001-11-27 Paul Eggert <eggert@twinsun.com>
10805
10806 * lib/quotearg.h (quotearg_n, quotearg_n_style):
10807 First arg is int, not unsigned.
10808 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
10809 (SIZE_MAX, UINT_MAX): New macros.
10810 (quotearg_n_options): Abort if N is negative.
10811 Avoid overflow check on hosts where size_t is 64 bits and int
10812 is 32 bits, as overflow is impossible there.
10813 Fix off-by-one typo that caused unnecessary reallocation.
10814
7093d0f5
AD
108152001-11-29 Paul Eggert <eggert@twinsun.com>
10816
10817 Name space cleanup in generated parser.
10818
10819 * doc/bison.texinfo (Bison Parser): Discuss system headers
10820 and their effect on the user name space.
10821
10822 * src/bison.simple:
10823 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
10824 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
10825 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
10826
10827 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
10828 on user names when possible.
10829
10830 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
10831 Simplify test for whather <alloca.h> exists.
10832
10833 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
10834
10835 (<stdio.h>): Include if YYDEBUG.
10836
10837 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
10838 ! defined (yyoverflow) && ! defined (yymemcpy).
10839
10840 (yymemcpy, yyparse): Rename local variables as needed so that
10841 they all begin with 'yy'.
10842
10843 (yystrlen, yystpcpy): New functions.
10844
10845 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
10846 All uses changed.
10847
10848 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
10849 instead of relying on string.h functions. Use YYSTACK_ALLOC
10850 and YYSTACK_FREE instead of malloc and free.
10851
fd51e5ff
AD
108522001-11-30 Akim Demaille <akim@epita.fr>
10853
10854 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
10855 before their first uses.
10856 (YYBISON, YYPURE): Move to the top of the output.
10857
7d13ff5f
AD
108582001-11-30 Akim Demaille <akim@epita.fr>
10859
10860 * tests/reduce.at (Useless Nonterminals): Fix.
10861
892a3995
AD
108622001-11-30 Akim Demaille <akim@epita.fr>
10863
10864 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
10865 if body instead of `;' to pacify GCC's warnings.
10866
68f1e3ed
AD
108672001-11-30 Akim Demaille <akim@epita.fr>
10868
10869 Instead of mapping the LHS of unused rules to -1, keep the LHS
10870 valid, but flag the rules as invalid.
10871
10872 * src/gram.h (rule_t): `useful' is a new member.
10873 * src/print.c (print_grammar): Adjust.
10874 * src/derives.c (set_derives): Likewise.
10875 * src/reader.c (packgram, reduce_output): Likewise.
10876 * src/reduce.c (reduce_grammar_tables): Likewise.
10877 * tests/reduce.at (Underivable Rules, Useless Rules): New.
10878
d2d1b42b
AD
108792001-11-30 Akim Demaille <akim@epita.fr>
10880
10881 * src/reduce.c (reduce_output): Formatting changes.
10882 * src/print.c (print_results, print_grammar): Likewise.
10883 * tests/regression.at (Rule Line Numbers)
10884 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
10885
760b53a8
AD
108862001-11-30 Akim Demaille <akim@epita.fr>
10887
10888 * src/reduce.c (nonterminals_reduce): Instead of throwing away
10889 useless nonterminals, move them at the end of the symbol arrays.
10890 (reduce_output): Adjust.
10891 * tests/reduce.at (Useless Nonterminals): Adjust.
10892
00238958
AD
108932001-11-30 Akim Demaille <akim@epita.fr>
10894
10895 * src/reduce.c: Various comment/formatting changes.
10896 (nonterminals_reduce): New, extracted from...
10897 (reduce_grammar_tables): here.
10898 (reduce_grammar): Call nonterminals_reduce.
10899
396452de
PE
109002001-11-29 Paul Eggert <eggert@twinsun.com>
10901
10902 * src/bison.simple (YYSTACK_REALLOC): Remove.
10903 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
10904 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
10905 New macros.
10906 (union yyalloc): New type.
10907 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
10908 an arbitrary restriction on hosts where size_t is wider than int.
10909
10910 (yyparse): Don't dump core if alloca or malloc fails; instead, report
10911 a parser stack overflow. Allocate just one block of memory for all
10912 three stacks, instead of allocating three blocks; this typically is
10913 faster and reduces fragmentation.
10914
10915 Do not limit the number of items in the stack to a value that fits
10916 in 'int', as this is an arbitrary limit on hosts with 64-bit
10917 size_t and 32-bit int.
10918
147e184c
MA
109192001-11-29 Marc Autret <autret_m@epita.fr>
10920
10921 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
10922 of defining YYERROR_VERBOSE.
10923 [AT_DATA]: $4 is now out of C declarations in the prologue.
10924
426cf563
MA
109252001-11-28 Marc Autret <autret_m@epita.fr>
10926
10927 * src/reader.c (parse_dquoted_param): New.
10928 (parse_skel_decl): Use it.
10929 * src/lex.h: Add its prototype.
10930 * src/lex.c (literalchar): Become not static.
10931
c7925b99
MA
109322001-11-28 Marc Autret <autret_m@epita.fr>
10933
10934 * src/output.h: And put its extern declaration here.
10935 * src/output.c (error_verbose): Define here.
10936 (prepare): Echo name modification.
10937 * src/getargs.h: Clean its extern declaration.
10938 * src/getargs.c (error_verbose_flag): Remove.
10939 (getargs): Remove case 'e'.
10940 * src/options.c (option_table): 'error-verbose' is now seen as simple
10941 percent option.
10942 Include output.h.
10943
10944 * src/reader.c (read_declarations): Remove case tok_include.
10945 (parse_include_decl): Remove.
10946 * src/lex.h (token_t): Remove tok_include.
10947 * src/options.c (option_table): 'include' is now a simple command line
10948 option.
10949
5b5d1929
MA
109502001-11-28 Marc Autret <autret_m@epita.fr>
10951
10952 * src/bison.simple: Adjust muscle names.
10953 * src/muscle_tab.c (muscle_init): Also rename the muscles.
10954 * src/output.c (prepare): s/_/-/ for the muscles names.
10955 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
10956
8850be4b
MA
109572001-11-28 Marc Autret <autret_m@epita.fr>
10958
10959 * src/bison.simple: Fix debug.
10960 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
10961
4a38e613
AD
109622001-11-28 Akim Demaille <akim@epita.fr>
10963
10964 * src/LR0.c (shifts_new): New.
10965 (save_shifts, insert_start_shift, augment_automaton): Use it.
10966
4b35e1c1
AD
109672001-11-28 Akim Demaille <akim@epita.fr>
10968
10969 * src/closure.c (closure): `b' and `ruleno' denote the same value:
10970 keep ruleno only.
10971
d2b04478
AD
109722001-11-28 Akim Demaille <akim@epita.fr>
10973
10974 * src/closure.c (closure): Instead of looping over word in array
10975 then bits in words, loop over bits in array.
10976
2c4c30aa
AD
109772001-11-28 Akim Demaille <akim@epita.fr>
10978
10979 * src/closure.c (closure): No longer optimize the special case
10980 where all the bits of `ruleset[r]' are set to 0, to make the code
10981 clearer.
10982
576890b7
AD
109832001-11-28 Akim Demaille <akim@epita.fr>
10984
10985 * src/closure.c (closure): `r' and `c' are new variables, used to
10986 de-obfuscate accesses to RULESET and CORE.
10987
cb487d7d
AD
109882001-11-28 Akim Demaille <akim@epita.fr>
10989
10990 * src/reduce.c (reduce_print): Use ngettext.
10991 (dump_grammar): Improve the trace accuracy.
10992
6013d43f
AD
109932001-11-28 Akim Demaille <akim@epita.fr>
10994
10995 * src/reduce.c (dump_grammar): Don't translate trace messages.
10996
cb4956ee
AD
109972001-11-28 Akim Demaille <akim@epita.fr>
10998
10999 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
11000 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
11001 as all tags are free'ed afterwards.
11002 From Enrico Scholz.
11003
648185ab
PE
110042001-11-27 Paul Eggert <eggert@twinsun.com>
11005
11006 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
11007 use alloca when we didn't want to, and vice versa.
11008
68254a03
MA
110092001-11-27 Marc Autret <autret_m@epita.fr>
11010
9113b58f
AD
11011 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
11012 initialization.
68254a03
MA
11013 * src/output.c (prepare): Remove its update.
11014
04d843a2
MA
110152001-11-27 Marc Autret <autret_m@epita.fr>
11016
11017 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
11018 Use %error-verbose.
11019
d2079671 110202001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
11021
11022 * src/bison.simple: Remove YYERROR_VERBOSE using.
11023 Use %%error_verbose.
11024 (yyparse): Likewise.
11025 * src/output.c (prepare): Give its final value.
11026 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
11027 * src/getargs.h: Add its extern declaration.
11028 * src/getargs.c (error_verbose_flag): New int.
11029 (getargs): Update to catch new case.
11030 * src/options.c (option_table): 'error-verbose' is a new option.
11031 (shortopts): Update.
11032
e0327bc8
AD
110332001-11-27 Akim Demaille <akim@epita.fr>
11034
11035 * src/system.h: Use intl/libgettext.h.
11036 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
11037
000f1a3c
AD
110382001-11-27 Akim Demaille <akim@epita.fr>
11039
11040 * tests/torture.at (Exploding the Stack Size with Malloc):
11041 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
11042
26cfe0be
AD
110432001-11-27 Akim Demaille <akim@epita.fr>
11044
11045 * src/files.c: Include error.h.
11046 Reported by Hans Aberg.
11047
f6bd5427
MA
110482001-11-26 Marc Autret <autret_m@epita.fr>
11049
d2079671 11050 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
11051 (read_declarations): Add case tok_include.
11052 * src/getargs.h (include): Add its extern definition.
11053 * src/getargs.c (include): New const char *.
11054 (getargs): Add case '-I'.
11055 * src/options.c (option_table): Add include as command line and
11056 percent option.
11057 * src/lex.h (token_t): Add tok_include.
11058
2ca209c1
AD
110592001-11-26 Akim Demaille <akim@epita.fr>
11060
11061 * src/reader.c (readgram): Make sure rules for mid-rule actions
11062 have a lineno equal to that of their host rule.
11063 Reported by Hans Aberg.
11064 * tests/regression.at (Rule Line Numbers): New.
11065
0e41b407
AD
110662001-11-26 Akim Demaille <akim@epita.fr>
11067
11068 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
11069 size_ts.
11070
110712001-11-26 Akim Demaille <akim@epita.fr>
11072
11073 * src/complain.c, src/complain.h (error): Remove, provided by
11074 lib/error.[ch].
11075
e0c40012
AD
110762001-11-26 Akim Demaille <akim@epita.fr>
11077
11078 * src/reader.c (read_declarations): Don't abort on tok_illegal,
11079 issue an error message.
11080 * tests/regression.at (Invalid %directive): New.
11081 Reported by Hans Aberg.
11082
5e147124
AD
110832001-11-26 Akim Demaille <akim@epita.fr>
11084
11085 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
11086 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11087
a034c8b8
AD
110882001-11-26 Akim Demaille <akim@epita.fr>
11089
11090 * src/conflicts.c (conflicts_print): Don't complain at all when
11091 there are no reduce/reduce conflicts, and as many shift/reduce
11092 conflicts as expected.
11093 * tests/regression.at (%expect right): Adjust.
11094
c64a20f3
AD
110952001-11-23 Akim Demaille <akim@epita.fr>
11096
11097 * lib/alloca.c: Update, from fileutils.
11098
5b0d29bb
AD
110992001-11-23 Akim Demaille <akim@epita.fr>
11100
11101 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
11102
722c4bfe
AD
111032001-11-23 Akim Demaille <akim@epita.fr>
11104
11105 * src/system.h: Include alloca.h.
11106 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
11107
6255b435
AD
111082001-11-23 Akim Demaille <akim@epita.fr>
11109
11110 * src/print_graph.c (print_actions): Remove `rule', unused.
11111 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
11112 pacify GCC's signed < unsigned warnings.
11113 * src/closure.c (itemsetsize): Likewise.
11114 * src/reader.c (symbol_list_new): Static.
11115
b29b2ed5
AD
111162001-11-23 Akim Demaille <akim@epita.fr>
11117
11118 Attaching lineno to buckets is stupid, since only one copy of each
11119 symbol is kept, only the line of the first occurrence is kept too.
11120
11121 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
11122 * src/reader.c (rline_allocated): Remove, unused.
11123 (symbol_list): Have a `line' member.
11124 (symbol_list_new): New.
11125 (readgram): Use it.
11126 * src/print.c (print_grammar): Output the rule line numbers.
11127 * tests/regression.at (Solved SR Conflicts)
11128 (Unresolved SR Conflicts): Adjust.
11129 Reported by Hans Aberg.
11130
a81b1d4a
MA
111312001-11-22 Marc Autret <autret_m@epita.fr>
11132
11133 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
11134
c1ecb3c1
MA
111352001-11-22 Marc Autret <autret_m@epita.fr>
11136
11137 * src/muscle_tab.c (muscle_init): Remove initialization of
11138 skeleton muscle.
11139 * src/output.c (output_master_parser): Do it here.
11140
fbe01355
AD
111412001-11-20 Akim Demaille <akim@epita.fr>
11142
11143 * po/sv.po: New.
11144 * configure.in (ALL_LINGUAS): Adjust.
11145 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
11146 longer contains strings to translate.
11147
81e895c0
AD
111482001-11-19 Akim Demaille <akim@epita.fr>
11149
11150 * src/conflicts.c (conflicts_print): Add a missing \n.
11151
6bb1878b
AD
111522001-11-19 Akim Demaille <akim@epita.fr>
11153
11154 * src/nullable.c (nullable_print): New.
11155 (set_nullable): Call it when tracing.
11156 Better locality of variables.
11157
d9ec2d07
AD
111582001-11-19 Akim Demaille <akim@epita.fr>
11159
11160 * src/print.c (print_actions): Better locality of variables.
11161
720e5c1b
AD
111622001-11-19 Akim Demaille <akim@epita.fr>
11163
11164 * src/derives.c (print_derives): Fix and enrich.
11165 * src/closure.c (print_fderives): Likewise.
11166
fb908786
AD
111672001-11-19 Akim Demaille <akim@epita.fr>
11168
11169 * src/closure.c (itemsetend): Remove, replaced with...
11170 (itemsetsize): new.
11171
125ecb56
AD
111722001-11-19 Akim Demaille <akim@epita.fr>
11173
11174 * src/LR0.c (kernel_end): Remove, replaced with...
11175 (kernel_size): new.
11176
d8cf039f
AD
111772001-11-19 Akim Demaille <akim@epita.fr>
11178
11179 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
11180 to clarify.
11181
7bec0760
AD
111822001-11-19 Akim Demaille <akim@epita.fr>
11183
11184 * src/closure.c (closure): Use arrays instead of pointers to clarify.
11185
c87d4863
AD
111862001-11-19 Akim Demaille <akim@epita.fr>
11187
11188 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
11189 trace messages.
11190 * src/LR0.c: Likewise.
11191 (allocate_itemsets): Use arrays instead of pointers to clarify.
11192
9bfe901c
AD
111932001-11-19 Akim Demaille <akim@epita.fr>
11194
11195 * src/getargs.c (statistics_flag): Replace with...
11196 (trace_flag): New.
11197 (longopts): Accept --trace instead of --statistics.
11198 * src/getargs.h, src/options.c: Adjust.
11199 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
11200 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
11201
97db7bd4
AD
112022001-11-19 Akim Demaille <akim@epita.fr>
11203
cc72668c 11204 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
11205 pointers to clarify the code.
11206 (save_reductions, save_shifts): Factor common parts of alternatives.
11207
2c5f66ed
AD
112082001-11-19 Akim Demaille <akim@epita.fr>
11209
11210 * src/LR0.c (new_state, get_state): Complete TRACE code.
11211 * src/closure.c: Include `reader.h' to get `tags', needed by the
11212 trace code.
11213 Rename the conditional DEBUG as TRACE.
11214 Output consistently TRACEs to stderr, not stdout.
11215 * src/derives.c: Likewise.
11216 * src/reduce.c: (inaccessable_symbols): Using if is better style
11217 than goto.
11218 Use `#if TRACE' instead of `#if 0' for tracing code.
11219
300f275f
AD
112202001-11-19 Akim Demaille <akim@epita.fr>
11221
11222 * src/system.h (LIST_FREE, shortcpy): New.
11223 * src/LR0.c: Use them.
11224 * src/output.c (free_itemsets, free_reductions, free_shifts):
11225 Remove, replaced by LIST_FREE.
11226
f59c437a
AD
112272001-11-19 Akim Demaille <akim@epita.fr>
11228
11229 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
11230 (REDUCTIONS_ALLOC): New.
11231 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
11232 allocation.
11233
6986fd9e
AD
112342001-11-19 Akim Demaille <akim@epita.fr>
11235
11236 * src/LR0.c (new_state): Complete trace code.
11237 * src/nullable.c (set_nullable): Don't translate traces.
11238
4bc30f78
AD
112392001-11-19 Akim Demaille <akim@epita.fr>
11240
11241 * src/print_graph.c (print_core): Better locality of variables.
11242 * src/print.c (print_core): Likewise.
11243
08a946e0
AD
112442001-11-19 Akim Demaille <akim@epita.fr>
11245
11246 * src/vcg.c: You do the output, so you are responsible of the
11247 handling of VCG syntax, in particular: use quotearg.
11248 * src/print_graph.c: Don't.
11249 (print_actions): Don't output the actions as part of the nodes,
11250 since that's the job of the edges.
11251 (print_state): Don't output by hand: fill the node description,
9bfe901c 11252 and ask for its output.
08a946e0 11253
f0473484
AD
112542001-11-19 Akim Demaille <akim@epita.fr>
11255
cc72668c
AD
11256 * src/bison.simple (yyparse): When verbosely reporting an error,
11257 no longer put additional quotes around token names.
f0473484
AD
11258 * tests/calc.at: Adjust.
11259
e41dc700
AD
112602001-11-19 Akim Demaille <akim@epita.fr>
11261
11262 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
11263 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
11264 * src/output.c: Adjust.
11265
652a871c
AD
112662001-11-19 Akim Demaille <akim@epita.fr>
11267
11268 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
11269 (rule_t): this.
11270 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
11271
b2ed6e58
AD
112722001-11-19 Akim Demaille <akim@epita.fr>
11273
11274 * src/gram.h (rule_t): New.
11275 (rule_table): New.
11276 (rrhs, rlhs): Remove, part of state_t.
11277 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
11278 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
11279 * src/reader.c, src/reduce.c: Adjust.
11280
edad7067
AD
112812001-11-19 Akim Demaille <akim@epita.fr>
11282
11283 * src/reader.c (symbols_output): New, extracted from...
11284 (packsymbols): Here.
11285 (reader): Call it.
11286
3feec034
AD
112872001-11-19 Akim Demaille <akim@epita.fr>
11288
11289 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
11290 (maxrhs): this new function.
11291
ddcd5fdf
AD
112922001-11-19 Akim Demaille <akim@epita.fr>
11293
cc72668c 11294 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
11295 Adjust.
11296
bb527fc2
AD
112972001-11-19 Akim Demaille <akim@epita.fr>
11298
cc72668c 11299 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
11300 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11301 * src/lalr.c: Adjust.
11302
a845a697
AD
113032001-11-19 Akim Demaille <akim@epita.fr>
11304
11305 * src/lalr.c (initialize_LA): Only initialize LA. Let...
11306 (set_state_table): handle the `lookaheads' members.
11307
f004bf6a
AD
113082001-11-19 Akim Demaille <akim@epita.fr>
11309
cc72668c
AD
11310 * src/lalr.h (lookaheads): Removed array, whose contents is now
11311 a member of...
f004bf6a
AD
11312 (state_t): this structure.
11313 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11314 Adjust.
11315
de326cc0
AD
113162001-11-19 Akim Demaille <akim@epita.fr>
11317
cc72668c
AD
11318 * src/lalr.h (consistent): Removed array, whose contents is now
11319 a member of...
de326cc0
AD
11320 (state_t): this structure.
11321 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11322 Adjust.
11323
90b4416b
AD
113242001-11-19 Akim Demaille <akim@epita.fr>
11325
cc72668c
AD
11326 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
11327 contents are now members of...
90b4416b
AD
11328 (state_t): this structure.
11329 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11330 Adjust.
11331
9703cc49
AD
113322001-11-19 Akim Demaille <akim@epita.fr>
11333
11334 * src/lalr.h (state_t): New.
11335 (state_table): Be a state_t * instead of a core **.
11336 (accessing_symbol): Remove, part of state_t.
11337 * src/lalr.c: Adjust.
11338 (set_accessing_symbol): Merge into...
11339 (set_state_table): this.
11340 * src/print_graph.c, src/conflicts.c: Adjust.
11341
d803322e
AD
113422001-11-14 Akim Demaille <akim@epita.fr>
11343
11344 * tests/calc.at, tests/output.at, tests/regression.at,
11345 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
11346 now the tests are run in private dirs, therefore AC_CLEANUP and
11347 family can be simplified to 0-ary.
11348 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
11349 use abs. path to find config.h.
11350 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
11351 stderr, there can be way too much random noise.
11352 Instead pass -Werror to GCC and rely on the exit status.
11353 Reported by Wolfram Wagner.
11354
3d76b07d
AD
113552001-11-14 Akim Demaille <akim@epita.fr>
11356
11357 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
11358 defined only if yyoverflow is defined, to avoid `warning: unused
11359 variable `yyvs1''.
11360 Reported by The Test Suite.
11361
09b503c8
AD
113622001-11-14 Akim Demaille <akim@epita.fr>
11363
11364 * src/print.c: Include reduce.h.
11365 Reported by Hans Aberg.
11366
113672001-11-14 Akim Demaille <akim@epita.fr>
11368
11369 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
11370 Revert a previous patch: these are really const.
11371 * src/conflicts.c (conflict_report): Additional useless pair of
11372 braces to pacify GCC's warnings for `if () if () {} else {}'.
11373 * src/lex.c (parse_percent_token): Replace equal_offset with
11374 arg_offset.
11375 arg is const.
11376 Be sure to strdup `arg' when used, since there is no reason for
11377 token_buffer not to change.
11378
0f37a994
AD
113792001-11-14 Akim Demaille <akim@epita.fr>
11380
11381 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
11382 definition.
11383 * src/main.c (main): Use them.
11384 Suggested by Hans Aberg.
11385
d39d93b8
AD
113862001-11-12 Akim Demaille <akim@epita.fr>
11387
11388 * src/system.h (ngettext): Now that we use ngettext, be sure to
11389 provide a default definition when NLS are not used.
11390
9edcd895
AD
113912001-11-12 Akim Demaille <akim@epita.fr>
11392
11393 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
11394 Use @kbd to denote user input.
11395 (Language and Grammar): ANSIfy the example.
11396 Adjust its layout for info/notinfo.
11397 (Location Tracking Calc): Output error messages to stderr.
11398 Output locations in a more GNUtically correct way.
11399 Fix a couple of Englishos.
11400 Adjust @group/@end group pairs.
11401
7da99ede
AD
114022001-11-12 Akim Demaille <akim@epita.fr>
11403
e3aa65c5 11404 %expect was not functioning at all.
7da99ede
AD
11405
11406 * src/conflicts.c (expected_conflicts): Set to -1.
11407 (conflict_report): Use ngettext.
11408 (conflicts_print): Check %expect and make its violation an error.
11409 * doc/bison.texinfo (Expect Decl): Adjust.
11410 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
11411 * tests/regression.at (%expect not enough, %expect right)
11412 (%expect too much): New.
11413
ba9dda1a
AD
114142001-11-12 Akim Demaille <akim@epita.fr>
11415
11416 * tests/regression.at (Conflicts): Rename as...
11417 (Unresolved SR Conflicts): this.
11418 (Solved SR Conflicts): New.
11419
337c5bd1
AD
114202001-11-12 Akim Demaille <akim@epita.fr>
11421
11422 * src/reduce.c (print_results): Rename as...
11423 (reduce_output): This.
11424 Output to OUT, passed as argument, instead of output_obstack.
11425 (dump_grammar): Likewise.
11426 (reduce_free): New.
11427 Also free V1.
11428 (reduce_grammar): No longer call reduce_output, since...
11429 * src/print.c (print_results): do it.
11430 * src/main.c (main): Call reduce_free;
11431
c73a41af
AD
114322001-11-12 Akim Demaille <akim@epita.fr>
11433
11434 * src/conflicts.c (print_reductions): Accept OUT as argument.
11435 Output to it, not to output_obstack.
11436 * src/print.c (print_actions): Adjust.
11437
0df87bb6
AD
114382001-11-12 Akim Demaille <akim@epita.fr>
11439
11440 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
11441 the result instead of using...
11442 (src_total, rrc_total, src_count, rrc_count): Remove.
11443 (any_conflicts): Remove.
11444 (print_conflicts): Split into...
11445 (conflicts_print, conflicts_output): New.
11446 * src/conflicts.h: Adjust.
11447 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 11448 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
11449 * tests/regression.at (Conflicts): New.
11450 Reported by Tom Lane.
11451
e4d3d4de
AD
114522001-11-12 Akim Demaille <akim@epita.fr>
11453
11454 * tests/regression.at (Invalid input): Remove, duplicate with
11455 ``Invalid input: 1''.
11456
6d7d248e
AD
114572001-11-12 Akim Demaille <akim@epita.fr>
11458
11459 * tests/torture.at (AT_DATA_STACK_TORTURE)
11460 (Exploding the Stack Size with Alloca)
11461 (Exploding the Stack Size with Malloc): New.
11462
e9e4c321
AD
114632001-11-12 Akim Demaille <akim@epita.fr>
11464
11465 * src/bison.simple (YYSTACK_REALLOC): New.
11466 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 11467 Reported by Per Allansson.
e9e4c321 11468
5f7e0832
AD
114692001-11-12 Pascal Bart <pascal.bart@epita.fr>
11470
11471 * src/bison.simple: Define type yystype instead of YYSTYPE, and
11472 define CPP macro, which substitute YYSTYPE by yystype.
11473 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
11474 with yyltype/YYLTYPE. This allows inclusion of the generated
11475 header within the parser if the compiler, such as GGC, accepts
11476 multiple equivalent #defines.
11477 From Akim.
11478
e3f1699f
AD
114792001-11-05 Akim Demaille <akim@epita.fr>
11480
11481 * src/reader.c (symbols_output): New, extracted from...
11482 (packsymbols): here.
11483 (reader): Adjust.
11484
65be0866
AD
114852001-11-05 Akim Demaille <akim@epita.fr>
11486
11487 * src/lex.c (parse_percent_token): s/quotearg/quote/.
11488
e4d910bf
AD
114892001-11-05 Akim Demaille <akim@epita.fr>
11490
11491 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
11492 pattern.
11493
951366c1
AD
114942001-11-05 Akim Demaille <akim@epita.fr>
11495
11496 * src/options.h (struct option_table_struct): set_flags is void*.
11497 * src/options.c (longopts): Support `--output' and `%output'.
11498 (usage): Adjust.
11499 * src/lex.h (tok_setopt): Remove, replaced with...
11500 (tok_intopt, tok_stropt): these new guys.
11501 * src/lex.c (getopt.h): Not needed.
11502 (token_buffer, unlexed_token_buffer): Not const.
11503 (percent_table): Promote `-' over `_' in directive names.
11504 Active `%name-prefix', `file-prefix', and `output'.
11505 (parse_percent_token): Accept possible arguments to directives.
11506 Promote `-' over `_' in directive names.
11507
d8988b2f
AD
115082001-11-04 Akim Demaille <akim@epita.fr>
11509
11510 * doc/bison.texinfo (Decl Summary): Split the list into
11511 `directives for grammars' and `directives for bison'.
11512 Sort'em.
11513 Add description of `%name-prefix', `file-prefix', and `output'.
11514 Promote `-' over `_' in directive names.
11515 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
11516 Simplify the description of `--name-prefix'.
11517 Promote `-' over `_' in directive names.
11518 Promote `--output' over `--output-file'.
11519 Fix the description of `--defines'.
11520 * tests/output.at: Exercise %file-prefix and %output.
11521
6468d18e
AD
115222001-11-02 Akim Demaille <akim@epita.fr>
11523
11524 * doc/refcard.tex: Update.
11525
6b7e85b9
AD
115262001-11-02 Akim Demaille <akim@epita.fr>
11527
11528 * src/symtab.h (SUNDEF): New.
11529 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
11530 stand for `uninitialized', instead of 0.
11531 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
11532 * src/lex.c (lex): Adjust.
11533
11534 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
11535 Number it 0.
11536 Let yylex return it instead of a plain 0.
11537 Reported by Dick Streefland.
11538
cd5aafcf
AD
115392001-11-02 Akim Demaille <akim@epita.fr>
11540
11541 * tests/regression.at (Mixing %token styles): New test.
11542
037ca2f1
AD
115432001-11-02 Akim Demaille <akim@epita.fr>
11544
11545 * src/reader.c (parse_thong_decl): Formatting changes.
11546 (token_translations_init): New, extracted from...
11547 (packsymbols): Here.
11548 Adjust.
11549
270a173c
AD
115502001-11-01 Akim Demaille <akim@epita.fr>
11551
11552 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
11553 Check that `9foo.y' produces correct cpp guards.
11554 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
11555 guards.
11556 Reported by Wwp.
11557
561f9a30
AD
115582001-11-01 Akim Demaille <akim@epita.fr>
11559
11560 * tests/regression.at (Invalid input: 2): New.
11561 * src/lex.c (unlexed_token_buffer): New.
11562 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
11563 too.
11564 Reported by Wwp.
11565
f987e9d2
AD
115662001-11-01 Akim Demaille <akim@epita.fr>
11567
11568 * tests/calc.at: Catch up with 1.30.
11569 * configure.in: Bump to 1.49a.
11570 Adjust to newer Autotest.
11571
0846f581
PB
115722001-10-19 Pascal Bart <pascal.bart@epita.fr>
11573
11574 * src/conflicts.c: Move global variables rrc_total and src_total ...
11575 (print_conflicts): here.
11576 * src/output.c (output): Free global variable user_toknums.
11577 * src/lex.c (token_obstack): Become static.
11578
3c1a79b3
AD
115792001-10-18 Akim Demaille <akim@epita.fr>
11580
11581 * tests/atlocal.in (GCC): Add.
11582 * tests/calc.at: s/m4_match/m4_bmatch/.
11583 s/m4_patsubst/m4_bpatsubst/.
11584 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
11585 * configure.in: AC_SUBST(GCC).
11586
5d52e7d0
MA
115872001-10-14 Marc Autret <autret_m@epita.fr>
11588
11589 * src/options.c (create_long_option_table): Fix.
11590
631aa1d3
AD
115912001-10-10 Akim Demaille <akim@epita.fr>
11592
11593 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
11594
f6ec6d13
AD
115952001-10-04 Akim Demaille <akim@epita.fr>
11596
11597 * src/reader.c (parse_union_decl): Push the caracters in
11598 union_obstack, not attrs_obstack.
11599
342b8b6e
AD
116002001-10-04 Akim Demaille <akim@epita.fr>
11601
11602 Merge in the branch 1.29.
11603
11604 * src/reader.c (packsymbols): Use a temporary obstack for
11605 `%%tokendef', since output_stack is already used elsewhere.
11606
11607 2001-10-02 Akim Demaille <akim@epita.fr>
11608
11609 Bump 1.29d.
11610
11611 2001-10-02 Akim Demaille <akim@epita.fr>
11612
11613 Version 1.29c.
11614
11615 2001-10-02 Akim Demaille <akim@epita.fr>
11616
11617 * tests/regression.at (Invalid CPP headers): New.
11618 From Alexander Belopolsky.
11619 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
11620
11621 2001-10-02 Akim Demaille <akim@epita.fr>
11622
11623 * tests/regression.at (Invalid input): New.
11624 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
11625 Reported by Shura.
11626
11627 2001-10-02 Akim Demaille <akim@epita.fr>
11628
11629 * tests/calc.at: Now that --debug works, the tests must be adjusted.
11630
11631 2001-10-02 Akim Demaille <akim@epita.fr>
11632
11633 * src/output.c (output_parser): Assert `skeleton'.
11634 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
11635 systems.
11636 From Shura.
11637
11638 2001-10-01 Marc Autret <autret_m@epita.fr>
11639
11640 * src/lex.h: Echo modifications.
11641 * src/lex.c (unlex): Parameter is now token_t.
11642 From Hans Aberg.
11643
11644 2001-10-01 Marc Autret <autret_m@epita.fr>
11645
11646 * src/main.c: Include lex.h.
11647 From Hans Aberg.
11648
11649 2001-09-29 Akim Demaille <akim@epita.fr>
11650
11651 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
11652
11653 2001-09-28 Akim Demaille <akim@epita.fr>
11654
11655 * tests/testsuite.at: Update to newer Autotest.
11656 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
11657
11658 2001-09-27 Akim Demaille <akim@epita.fr>
11659
11660 Position independent wrapper.
11661
11662 * tests/bison: Remove.
11663 * tests/bison.in: New.
11664 * configure.in: Adjust.
11665
11666 2001-09-27 Paul Eggert <eggert@twinsun.com>
11667
11668 Port quotearg fixes from tar 1.13.24.
11669
11670 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
11671 tm to be declared.
11672 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
11673 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
11674
11675 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
11676 * m4/mbrtowc.m4: New file.
11677 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
11678 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
11679
11680 2001-09-27 Akim Demaille <akim@epita.fr>
11681
11682 Bump to 1.29c.
11683
11684 2001-09-27 Akim Demaille <akim@epita.fr>
11685
11686 Version 1.29b.
11687
11688 2001-09-25 Akim Demaille <akim@epita.fr>
11689
11690 * src/system.h: Include `xalloc.h'.
11691 Remove it from the C files.
11692 * src/files.c (output_files): Free the obstacks.
11693 * src/lex.c (init_lex): Rename as...
11694 (lex_init): this.
11695 (lex_free): New.
11696 * src/main.c (main): Use it.
11697
11698 2001-09-24 Marc Autret <autret_m@epita.fr>
11699
11700 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
11701 to output informations in fout (FILE*).
11702 (open_graph, close_graph): Likewise.
11703 (output_graph, output_edge, output_node): Likewise.
11704 * src/vcg.h: Update function prototypes.
11705 * src/print_graph.c (print_graph): Open output graph file.
11706 (print_actions): Adjust.
11707 * src/files.h: Remove extern declaration.
11708 * src/files.c: Remove graph_obstack declaration.
11709 (open_files): Remove graph_obstack initialization.
11710 (output_files): Remove graph_obstack saving.
11711
11712 2001-09-24 Marc Autret <autret_m@epita.fr>
11713
11714 * src/files.c (compute_output_file_names): Fix.
11715
11716 2001-09-24 Marc Autret <autret_m@epita.fr>,
11717 Akim Demaille <akim@epita.fr>
11718
11719 * src/reader.c (reader): Remove call to free_symtab ().
11720 * src/main.c (main): Call it here.
11721 Include symtab.h.
11722 * src/conflicts.c (initialize_conflicts): Rename as...
11723 (solve_conflicts): this.
11724 * src/print.c (print_core, print_actions, print_state)
11725 (print_grammar): Dump to a file instead a `output_obstack'.
11726 (print_results): Dump `output_obstack', and then proceed with the
11727 FILE *.
11728 * src/files.c (compute_output_file_names, close_files): New.
11729 (output_files): Adjust.
11730 * src/main.c (main): Adjust.
11731
11732 2001-09-23 Marc Autret <autret_m@epita.fr>
11733
11734 * src/files.c (compute_header_macro): Computes header macro name
11735 from spec_defines_file when given.
11736
11737 2001-09-23 Marc Autret <autret_m@epita.fr>
11738
11739 * src/files.c (output_files): Add default extensions.
11740
11741 2001-09-22 Akim Demaille <akim@epita.fr>
11742
11743 * src/conflicts.c (finalize_conflicts): Rename as...
11744 (free_conflicts): this.
11745
11746 2001-09-22 Akim Demaille <akim@epita.fr>
11747
11748 * src/gram.c (gram_free): Rename back as...
11749 (dummy): this.
11750 (output_token_translations): Free `token_translations'.
11751 * src/symtab.c (free_symtab): Free the tag field.
11752
11753 2001-09-22 Akim Demaille <akim@epita.fr>
11754
11755 Remove `translations' as it is always set to true.
11756
11757 * src/gram.h: Adjust.
11758 * src/reader.c (packsymbols, parse_token_decl): Adjust
11759 * src/print.c (print_grammar): Adjust.
11760 * src/output.c (output_token_translations): Adjust.
11761 * src/lex.c (lex): Adjust.
11762 * src/gram.c: Be sure the set pointers to NULL.
11763 (dummy): Rename as...
11764 (gram_free): this.
11765
11766 2001-09-22 Akim Demaille <akim@epita.fr>
11767
11768 * configure.in: Invoke AM_LIB_DMALLOC.
11769 * src/system.h: Use dmalloc.
11770 * src/LR0.c: Be sure to have pointers initialized to NULL.
11771 (allocate_itemsets): Allocate kernel_items only if needed.
11772
11773 2001-09-22 Akim Demaille <akim@epita.fr>
11774
11775 * configure.in: Bump to 1.29b.
11776 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
11777 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
11778 need xmalloc.c in calc.y.
11779 From Pascal Bart.
11780
11781 2001-09-21 Akim Demaille <akim@epita.fr>
11782
11783 Version 1.29a.
11784 * Makefile.maint, config/config.guess, config/config.sub,
11785 * config/missing: Update from masters.
11786 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
11787 upon package.m4.
11788 * configure.in (ALL_LINGUAS): Add `tr'.
11789
11790 2001-09-21 Akim Demaille <akim@epita.fr>
11791
11792 * tests/Makefile.am (package.m4): Move to...
11793 ($(srcdir)/$(TESTSUITE)): here.
11794
11795 2001-09-20 Akim Demaille <akim@epita.fr>
11796
11797 * src/complain.c: No longer try to be standalone: use system.h.
11798 Don't assume __STDC__ is defined to 1. Just test if it is defined.
11799 * src/complain.h: Likewise.
11800 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
11801 Remove the unused variable `n'.
11802 From Albert Chin-A-Young.
11803
11804 2001-09-18 Marc Autret <autret_m@epita.fr>
11805
11806 * doc/bison.1: Update.
11807 * doc/bison.texinfo (Bison Options): Update --defines and --graph
11808 descriptions.
11809 (Option Cross Key): Update.
11810 Add --graph.
11811
11812 2001-09-18 Marc Autret <autret_m@epita.fr>
11813
11814 * tests/regression.at: New test (comment in %union).
11815
11816 2001-09-18 Marc Autret <autret_m@epita.fr>
11817
11818 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
11819 do that.
11820 Reported by Keith Browne.
11821
11822 2001-09-18 Marc Autret <autret_m@epita.fr>
11823
11824 * tests/output.at: Add tests for --defines and --graph.
11825
11826 2001-09-18 Marc Autret <autret_m@epita.fr>
11827
11828 * tests/output.at: Removes tests of %{header,src}_extension features.
11829
11830 2001-09-18 Akim Demaille <akim@epita.fr>
11831
11832 * tests/Makefile.am (package.m4): New.
11833 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
11834 (_AT_CHECK_CALC_ERROR): Likewise.
11835 Factor the `, ' part of verbose error messages.
11836
11837 2001-09-18 Marc Autret <autret_m@epita.fr>
11838
11839 * src/getargs.c (longopts): Declare --defines and --graph as options
11840 with optional arguments.
11841 * src/files.h: Add extern declarations.
11842 * src/files.c (spec_graph_file, spec_defines_file): New.
11843 (output_files): Update.
11844 Remove CPP-outed code.
11845
11846 2001-09-18 Marc Autret <autret_m@epita.fr>
11847
11848 Turn off %{source,header}_extension feature.
11849
11850 * src/files.c (compute_exts_from_gf): Update.
11851 (compute_exts_from_src): Update.
11852 (output_files): CPP-out useless code.
11853 * src/files.h: Remove {header,source}_extension extern declarations.
11854 * src/reader.c (parse_dquoted_param): CPP-out.
11855 (parse_header_extension_decl): Remove.
11856 (parse_source_extension_decl): Remove.
11857 (read_declarations): Remove cases tok_{hdrext,srcext}.
11858 * src/lex.c (percent_table): Remove {header,source}_extension entries.
11859 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
11860
11861 2001-09-10 Akim Demaille <akim@epita.fr>
11862
11863 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
11864 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
11865 (AT_CHECK_OUTPUT): this.
11866 Merely check ls' exit status, its output is useless.
11867
11868 2001-09-10 Akim Demaille <akim@epita.fr>
11869
11870 * tests/calc.at: Use m4_match.
11871 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
11872
11873 2001-09-10 Marc Autret <autret_m@epita.fr>,
11874 Akim Demaille <akim@epita.fr>
11875
11876 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
11877 enum color_e.
11878 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
11879 to `normal'.
11880 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
11881 * src/lex.h: Adjust prototype.
11882 (token_t): Add `tok_undef'.
11883 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
11884 (parse_percent_token): Now returns token_t.
11885 Add default statement in switch.
11886 (lex): Separate `c' as an input variable, from the token_t result
11887 part.
11888 (unlexed): Is a token_t.
11889
11890 2001-09-10 Akim Demaille <akim@epita.fr>
11891
11892 * configure.in: Bump to 1.29a.
11893
11894 2001-09-07 Akim Demaille <akim@epita.fr>
11895
11896 Version 1.29.
11897
11898 2001-08-30 Akim Demaille <akim@epita.fr>
11899
11900 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
11901 * m4/atconfig.m4: Remove.
11902 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
11903 * tests/bison: New.
11904 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
11905 m4_if, m4_patsubst, and m4_regexp.
11906 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
11907 `input' file instead of echo.
11908
11909 2001-08-29 Akim Demaille <akim@epita.fr>
11910
11911 Bump to 1.28e.
11912
11913 2001-08-29 Akim Demaille <akim@epita.fr>
11914
11915 Version 1.28d.
11916
11917 2001-08-29 Paul Eggert <eggert@twinsun.com>
11918
11919 * src/bison.simple (yyparse): Don't take the address of an
11920 item before the start of an array, as that doesn't conform to
11921 the C Standard.
11922
11923 2001-08-29 Robert Anisko <anisko_r@epita.fr>
11924
11925 * doc/bison.texinfo (Location Tracking Calc): New node.
11926
11927 2001-08-29 Paul Eggert <eggert@twinsun.com>
11928
11929 * src/output.c (output): Do not define const, as this now
11930 causes more problems than it cures.
11931
11932 2001-08-29 Akim Demaille <akim@epita.fr>
11933
11934 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
11935 the nodes.
11936 Be sure to tag the `detailmenu'.
11937
11938 2001-08-29 Akim Demaille <akim@epita.fr>
11939
11940 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
11941 download in a tmp dir.
11942
11943 2001-08-28 Marc Autret <autret_m@epita.fr>
11944
11945 * config/depcomp: New file.
11946
11947 2001-08-28 Marc Autret <autret_m@epita.fr>
11948
11949 * doc/bison.1 (mandoc): Adjust.
11950 From Juan Manuel Guerrero.
11951
11952 2001-08-28 Marc Autret <autret_m@epita.fr>
11953
11954 * src/print_graph.c (print_state): Fix.
11955
11956 2001-08-27 Marc Autret <autret_m@epita.fr>
11957
11958 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
11959 char * members.
11960 Echo modifications to the functions prototypes.
11961 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
11962
11963 2001-08-27 Marc Autret <autret_m@epita.fr>
11964
11965 * src/vcg.c: Include `xalloc.h'.
11966 (add_colorentry): New.
11967 (add_classname): New.
11968 (add_infoname): New.
11969 * src/vcg.h: Add new prototypes.
11970
11971 2001-08-27 Akim Demaille <akim@epita.fr>
11972
11973 * Makefile.maint: Sync. again with CVS Autoconf.
11974
11975 2001-08-27 Akim Demaille <akim@epita.fr>
11976
11977 * Makefile.maint: Formatting changes.
11978 (po-update, cvs-update, update): New targets.
11979 (AMTAR): Remove.
11980
11981 2001-08-27 Akim Demaille <akim@epita.fr>
11982
11983 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
11984 * Makefile.maint: Sync. with CVS Autoconf.
11985
11986 2001-08-27 Marc Autret <autret_m@epita.fr>
11987
11988 * src/vcg.h (struct infoname_s): New.
11989 (struct colorentry_s): New.
11990 (graph_s): New fields {vertical,horizontal}_order in structure.
11991 Add `infoname' field.
11992 Add `colorentry' field;
11993 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
11994 (G_HORIZONTAL_ORDER): New.
11995 (G_INFONAME): New.
11996 (G_COLORENTRY): New.
11997 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
11998 Add output of `infoname'.
11999 Add output of `colorentry'.
12000
12001 2001-08-27 Marc Autret <autret_m@epita.fr>
12002
12003 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
12004 This one shadowed a global parameter.
12005
12006 2001-08-24 Marc Autret <autret_m@epita.fr>
12007
12008 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
12009 instead of `unsigned'.
12010 (print_state): Do not call obstack_object_size () in obstack_grow ()
12011 to avoid macro variables shadowing.
12012
12013 2001-08-23 Marc Autret <autret_m@epita.fr>
12014
12015 * src/lex.c (percent_table): Typo: s/naem/name/.
12016 Add graph option.
12017 Normalize new options declarations.
12018
12019 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
12020
12021 * tests/suite.at: Exercise %header_extension and %source_extension.
12022
12023 2001-08-16 Marc Autret <autret_m@epita.fr>
12024
12025 * src/reader.c (parse_dquoted_param): New.
12026 (parse_header_extension_decl): Use it.
12027 (parse_source_extension_decl): Likewise.
12028
12029 2001-08-16 Marc Autret <autret_m@epita.fr>
12030
12031 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
12032 (get_xxxx_str): Use assert () instead of complain ().
12033 Remove return invokations in default cases.
12034 (get_decision_str): Modify default behaviour. Remove second argument.
12035 Echo modifications on calls.
12036 (output_graph): Fix.
12037
12038 2001-08-16 Marc Autret <autret_m@epita.fr>
12039
12040 * src/getargs.c (usage): Update with ``-g, --graph''.
12041
12042 2001-08-16 Marc Autret <autret_m@epita.fr>
12043
12044 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
12045 (Option Cross Key): Likewise.
12046 * doc/bison.1: Update.
12047
1c8c2190
PB
120482001-09-25 Pascal Bart <pascal.bart@epita.fr>
12049
12050 * src/output.c (output_master_parser): Don't finish action_obstack.
12051 (output_parser): Don't care about the muscle action, here.
12052 (prepare): Copy the action_obstack in the action muscle.
12053 (output): Free action_obstack.
12054
180d45ba
PB
120552001-09-23 Pascal Bart <pascal.bart@epita.fr>
12056
12057 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
12058 will contain `%union' declaration.
12059 (parse_union_decl): Delete #line directive output.
12060 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
12061 informations about %union.
12062 (parse_union_decl): Copy the union_obstack in the muscle stype.
12063 * src/bison.simple: Add new #line directive.
12064 Add typdef %%stype YYSTYPE.
12065
c51d1a19
PB
120662001-09-23 Pascal Bart <pascal.bart@epita.fr>
12067
12068 * src/bison.simple: Add new `#line' directive.
12069
6f9344da
PB
120702001-09-22 Pascal Bart <pascal.bart@epita.fr>
12071
12072 * src/bison.simple: New `#line' directive.
12073 * src/output.c (output_parser): Support new dynamic muscle input_line.
12074
652def80
MA
120752001-09-22 Marc Autret <autret_m@epita.fr>
12076
12077 * src/output.c (output_master_parser): New.
12078 (output_parser): Be more re-entrant.
12079
25b222fa
MA
120802001-09-21 Marc Autret <autret_m@epita.fr>
12081
12082 * src/reader.c (copy_definition, parse_union_decl): Update and use
12083 `linef' muscle.
12084 (copy_action): Likewise.
12085 Use obstack_1grow ().
12086 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
12087
6bc35ae5
MA
120882001-09-21 Marc Autret <autret_m@epita.fr>
12089
12090 * src/options.c (option_table): Adjust.
12091 * src/lex.c (parse_percent_token): Fix.
12092
c0629aa1
PB
120932001-09-20 Pascal Bart <pascal.bart@epita.fr>
12094
12095 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 12096
82b6d266
PB
120972001-09-20 Pascal Bart <pascal.bart@epita.fr>
12098
12099 * src/lex.c (parse_percent_token): Change type of variable `tx', which
12100 is now an option_table_struct*.
12101 (option_strcmp): New function option_strcmp.
12102 (parse_percent_token): Call option_strcmp.
12103 * src/getargs.c (xalloc.h, options.h): Include it.
12104 (getargs): Call create_long_option_table.
12105 (getargs): Free longopts at the end of the function.
12106 (shortopts): Move in options.c.
12107 * src/options.c (create_long_option_table): New function. Convert
12108 information from option_table to option structure.
12109 * src/reader.c (options.h): Include it.
12110
12111 * src/Makefile.am: Adjust.
12112 * src/options.c (option_table): Create from longopts and percent_table.
12113 * src/getargs.c (longopts): Delete.
12114 * src/lex.c (struct percent_table_struct): Delete.
12115 (percent_table): Delete.
12116 (options.h): Include it.
12117 * src/options.c: Create.
12118 * src/options.h: Create.
12119 Declare enum opt_access_e.
12120 Define struct option_table_struct.
12121
75f5aaea
MA
121222001-09-20 Marc Autret <autret_m@epita.fr>
12123
12124 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
12125 sections of Bison.
12126
f508cb0a
PB
121272001-09-19 Pascal Bart <pascal.bart@epita.fr>
12128
12129 * src/bison.simple: s/%%filename/%%skeleton.
12130 * src/muscle_tab.c (getargs.h): Include it.
12131 (muscle_init): Insert new muscle skeleton.
12132
13105fc1
PB
121332001-09-18 Pascal Bart <pascal.bart@epita.fr>
12134
12135 * src/output.c (output_parser): Delete unused variable actions_dumped.
12136
b0c4483e
PB
121372001-09-07 Pascal Bart <pascal.bart@epita.fr>
12138
12139 * src/output.c (output): Delete call to reader_output_yylsp.
12140 * src/reader.c (reader): Likewise.
ba0fe3c7 12141 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 12142
11d82f03
MA
121432001-09-02 Marc Autret <autret_m@epita.fr>
12144
12145 * src/reader.c: Include muscle_tab.h.
12146 (parse_union_decl): Update.
12147 (parse_macro_decl): Rename parse_muscle_decl.
12148 Update to use renamed functions and variable.
12149 (read_declarations, copy_action, read_additionnal_code, : Updated
12150 with correct variables and functions names.
12151 (packsymbols, reader): Likewise.
342b8b6e 12152
11d82f03 12153 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 12154
11d82f03
MA
12155 * src/output.c: Include muscle_tab.h
12156 In all functions using macro_insert, change by using muscle_insert ().
12157 (macro_obstack): Rename muscle_obstack.
12158 Echo modifications in the whole file.
12159 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
12160 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
12161 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
12162
12163 * src/muscle_tab.h: Update double inclusion macros.
12164 (macro_entry_s): Rename muscle_entry_s.
12165 Update prototypes.
342b8b6e 12166
11d82f03
MA
12167 * src/muscle_tab.c: Include muscle_tab.h.
12168 Rename macro_tabble to muscle_table.
12169 (mhash1, mhash2, mcmp): Use muscle_entry.
12170 (macro_init): Rename muscle_init. Update.
12171 (macro_insert): Rename muscle_insert. Update.
12172 (macro_find): Rename muscle_find. Update.
12173
12174 * src/main.c: Include muscle_tab.h.
12175 (main): Call muscle_init ().
12176 * src/Makefile.am (bison_SOURCES): Echo modifications.
12177
93a37297
MA
121782001-09-02 Marc Autret <autret_m@epita.fr>
12179
f753cd62 12180 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 12181
f753cd62
MA
12182 * src/muscle_tab.c, src/muscle_tab.h: Add files.
12183
121842001-09-02 Marc Autret <autret_m@epita.fr>
12185
12186 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 12187
682d48cd
PB
121882001-09-01 Pascal Bart <pascal.bart@epita.fr>
12189
342b8b6e 12190 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
12191 filename.
12192
087c8fda
MA
121932001-09-01 Marc Autret <autret_m@epita.fr>
12194
12195 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
12196 to an explicit value to activate the feature. We do it here.
12197
dda680cb
PB
121982001-08-31 Pascal Bart <pascal.bart@epita.fr>
12199
12200 * src/output.c (prepare): Delete the `filename' muscule insertion.
12201 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
12202 (parse_union_decl): Likewise.
12203 * src/macrotab.c (macro_init): Initialize filename by infile.
12204
9e644e64
MA
122052001-08-31 Marc Autret <autret_m@epita.fr>
12206
12207 * src/bison.simple (YYLSP_NEEDED): New definition.
12208 * src/output.c (prepare): Add macro insertion of `locations_flag'
12209
17da6427
PB
122102001-08-31 Pascal Bart <pascal.bart@epita.fr>
12211
12212 * src/output.c (prepare): Delete insertion of previous muscles,
12213 and insert the `prefix' muscles.
12214 * src/macrotab.c (macro_init): Likewise.
12215 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 12216 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
12217 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
12218 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 12219 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
12220 name_prefix.
12221
e8cb70b9
PB
122222001-08-31 Pascal Bart <pascal.bart@epita.fr>
12223
12224 * src/main.c (main): Standardize.
12225 * src/output.c (output_table_data, output_parser): Likewise.
12226 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
12227
63c2d5de
MA
122282001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
12229
342b8b6e 12230 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
12231 %%epilogue.
12232 * src/output.c (output): Rename %%declarations to %%prologue.
12233 * src/bison.simple: Echo modifications.
342b8b6e 12234
d8cb5183
MA
122352001-08-31 Marc Autret <autret_m@epita.fr>
12236
12237 * src/reader.c (readgram): CleanUp.
12238 (output_token_defines): Likewise.
12239 (packsymbols): Likewise.
12240 (reader): Likewise.
12241 * src/output.c (output): CPP-out useless code.
12242
6c686258
PB
122432001-08-31 Pascal Bart <pascal.bart@epita.fr>
12244
342b8b6e 12245 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
12246 output_trailers and output_headers.
12247 * src/output.h: Remove obsolete functions prototypes of output_headers
12248 and output_trailers.
12249
8f451ef7
PB
122502001-08-30 Pascal Bart <pascal.bart@epita.fr>
12251
12252 * src/main.c: Include macrotab.h.
342b8b6e 12253 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
12254 Adjust functions prototypes.
12255 * src/macrotab.c (macro_insert): Constify key and value.
12256 (macro_find): Constify key.
12257 (macro_insert): Include 'xalloc.h'
12258 (macro_insert): Use XMALLOC.
12259 (macro_find): Constify return value.
12260 * src/output.c (output_table_data): Rename table to table_data.
12261 (output_parser): Constify macro_key, macro_value.
12262
997b6fd0 122632001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
12264
12265 * src/reader.c (parse_skel_decl): New.
342b8b6e 12266 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
12267 * src/lex.h (token_t): New token `tok_skel'.
12268 * src/lex.c (percent_table): Add skeleton option entry.
12269 Standardize.
12270
ff48177d
MA
122712001-08-29 Marc Autret <autret_m@epita.fr>
12272
12273 * src/bison.simple: Add %%user_code directive at the end.
12274 * src/reader.c (read_additionnal_code): New.
12275 (reader): Use it.
12276 * src/output.c (output_program): Remove.
12277 (output): Update.
12278
b33160bf
MA
122792001-08-28 Marc Autret <autret_m@epita.fr>
12280
12281 * src/output.c (output_actions): Clean up.
4e5caae2 12282 (output_gram): CPP-out useless code.
b33160bf
MA
12283 * src/reader.c (reader): Clean up, CPP-out useless code.
12284
d1a2daf7
PB
122852001-08-28 Pascal Bart <pascal.bart@epita.fr>
12286
342b8b6e 12287 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 12288 directive.
d1a2daf7
PB
12289 * src/bison.simple: Add `%%definitions'.
12290
2b763dfe
MA
122912001-08-28 Marc Autret <autret_m@epita.fr>
12292
12293 * config/depcomp: New file.
12294
f1a87ef6
PE
122952001-08-27 Paul Eggert <eggert@twinsun.com>
12296
12297 * src/bison.simple (yyparse): Don't take the address of an
12298 item before the start of an array, as that doesn't conform to
12299 the C Standard.
12300
82e236e2
RA
123012001-08-27 Robert Anisko <robert.anisko@epita.fr>
12302
f1a87ef6 12303 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
12304 obstack. It was done too late here.
12305
12306 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
12307 completely wrong.
12308 (reader): Initialize the macro obstack here, since we need it to grow
12309 '%define' directives.
12310
12311 * src/reader.h: Declare the macro obstack as extern.
12312
b0cfa28a
RA
123132001-08-27 Robert Anisko <robert.anisko@epita.fr>
12314
12315 * src/output.c (output_parser): Fix. Store single '%' characters in
12316 the output obstack instead of throwing them away.
12317
6fc74234
AD
123182001-08-27 Akim Demaille <akim@epita.fr>
12319
12320 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
12321
9c76d118
RA
123222001-08-25 Robert Anisko <robert.anisko@epita.fr>
12323
12324 * lib/Makefile.am: Adjust.
12325
a8289c62
RA
123262001-08-25 Robert Anisko <robert.anisko@epita.fr>
12327
12328 * src/bison.simple: Update and add '%%' directives.
12329
b6610515
RA
123302001-08-25 Robert Anisko <robert.anisko@epita.fr>
12331
12332 * src/reader.c (reader): Remove calls to 'output_headers' and
12333 'output_trailers'. Remove some C output.
12334 (readgram): Disable a piece of code that was writing a default
12335 definition for 'YYSTYPE'.
12336 (reader_output_yylsp): Remove.
12337 (packsymbols): Output token defintions to a macro.
12338 (copy_definition): Disable C output.
6fc74234 12339
b6610515
RA
12340 * src/reader.c (parse_macro_decl): New function used to parse macro
12341 declarations.
12342 (copy_string2): Put the body of copy_string into this new function.
12343 Add a parameter to let the caller choose whether he wants to copy the
12344 string delimiters or not.
12345 (copy_string): Be a simple call to copy_string2 with the last argument
12346 bound to true.
12347 (read_declarations): Add case for macro definition.
12348 (copy_identifier): New.
6fc74234 12349 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
12350 rather than lex.
12351
26f609ff
RA
123522001-08-25 Robert Anisko <robert.anisko@epita.fr>
12353
12354 * src/output.c (prepare): Add prefixed names.
12355 (output_parser): Output semantic actions.
12356 (output_parser): Fix bug on '%%line' directives.
6fc74234 12357
26f609ff
RA
12358 * src/output.c (output_headers): Remove. The C code printed by this
12359 function should now be in the skeletons.
12360 (output_trailers): Remove.
12361 (output): Disable call to 'reader_output_yylsp'.
12362 (output_rule_data): Do not output tables to the table obstack.
12363
12364 * src/output.c: Remove some C dedicated output.
12365 Improve the use of macro and output obstacks.
12366 (output_defines): Remove.
6fc74234 12367
26f609ff
RA
12368 * src/output.c (output_token_translations): Associate 'translate'
12369 table with a macro. No output to the table obstack.
12370 (output_gram): Same for 'rhs' and 'prhs'.
12371 (output_stos): Same for 'stos'.
12372 (output_rule_data): Same for 'r1' and 'r2'.
12373 (token_actions): Same for 'defact'.
12374 (goto_actions): Same for 'defgoto'.
12375 (output_base): Same for 'pact' and 'pgoto'.
12376 (output_table): Same for 'table'.
12377 (output_check): Same for 'check'.
6fc74234 12378
26f609ff
RA
12379 * src/output.c (output_table_data): New function.
12380 (output_short_table): Remove.
12381 (output_short_or_char_table): Remove.
6fc74234 12382
26f609ff
RA
12383 * src/output.c (output_parser): Replace most of the skeleton copy code
12384 with something new. Skeletons are now processed character by character
12385 rather than line by line, and Bison looks for '%%' macros. This is the
12386 first step in making Bison's output process (a lot) more flexible.
12387 (output_parser): Use the macro table.
12388
6f43b113
RA
123892001-08-25 Robert Anisko <robert.anisko@epita.fr>
12390
12391 * src/main.c (main): Initialize the macro table.
12392
dd3127cf
RA
123932001-08-25 Robert Anisko <robert.anisko@epita.fr>
12394
12395 * src/lex.c (percent_table): Add tok_define.
12396 * src/lex.h: Add tok_define.
12397
aa321494
RA
123982001-08-25 Robert Anisko <robert.anisko@epita.fr>
12399
12400 * src/macrotab.c: New file.
12401 * src/macrotab.h: New file.
12402 * src/Makefile.am: Update.
12403
68bd3b6b
RA
124042001-08-25 Robert Anisko <robert.anisko@epita.fr>
12405
12406 * lib/hash.c: New file.
12407 * lib/hash.h: New file.
12408 * lib/Makefile.am: Update.
12409
45f8dd1e
AD
124102001-08-15 Akim Demaille <akim@epita.fr>
12411
12412 Version 1.28c.
12413
40a64a7a 124142001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
12415
12416 * src/reader.c (readgram): Indent output macro YYSTYPE.
12417 (packsymbols): Likewise.
12418 (output_token_defines): Likewise.
12419 * src/files.c: Standardize.
12420 (compute_header_macro): New.
12421 (defines_obstack_save): New. Use compute_header_macro.
12422 (output_files): Update. Use defines_obstack_save.
12423
f9a8293a
AD
124242001-08-15 Akim Demaille <akim@epita.fr>
12425
12426 * doc/bison.texinfo (Table of Symbols): Document
12427 YYSTACK_USE_ALLOCA.
12428
150ca7a7
AD
124292001-08-15 Akim Demaille <akim@epita.fr>
12430
12431 * missing: Update from CVS Automake.
12432 * config/config.guess, config/config.sub, config/texinfo.tex:
12433 Update from gnu.org.
12434
69b5cec4
AD
124352001-08-15 Akim Demaille <akim@epita.fr>
12436
12437 * Makefile.maint: Sync with CVS Autoconf.
12438
f2b5126e
PB
124392001-08-14 Pascal Bart <pascal.bart@epita.fr>
12440
69b5cec4 12441 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
12442 `fdl.texi'.
12443 * doc/fdl.texi: Add to package.
12444
4ecbf796
MA
124452001-08-14 Marc Autret <autret_m@epita.fr>
12446
12447 Turn on %{source,header}_extension features.
12448
69b5cec4 12449 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
12450 source_extension.
12451 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 12452 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
12453 between options.
12454
95fb5662
MA
124552001-08-14 Marc Autret <autret_m@epita.fr>
12456
12457 * src/files.c (compute_base_names): Add extensions computing when
12458 `--file-prefix' used.
12459 Standardize function calls.
12460
78d09da9
MA
124612001-08-13 Marc Autret <autret_m@epita.fr>
12462
69b5cec4 12463 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
12464 defining it (defined but null disables alloca).
12465
5a009f2c
MA
124662001-08-13 Marc Autret <autret_m@epita.fr>
12467
12468 * src/bison.simple (_yy_memcpy): CPP reformat.
12469
1e41465a
PB
124702001-08-13 Pascal Bart <pascal.bart@epita.fr>
12471
12472 * tests/atconfig.in (CPPFLAGS): Fix.
12473
c67a198d
PB
124742001-08-10 Pascal Bart <pascal.bart@epita.fr>
12475
79282c6c 12476 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
12477 `gpl.texi'.
12478 * doc/gpl.texi: Add to package.
12479
09a6de7e
MA
124802001-08-10 Marc Autret <autret_m@epita.fr>
12481
12482 * src/print_graph.h: Fix.
12483 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
12484
b77b9ee0
AD
124852001-08-10 Akim Demaille <akim@epita.fr>
12486
12487 * src/system.h: Provide default declarations for stpcpy, strndup,
12488 and strnlen.
12489
3e259915
MA
124902001-08-10 Robert Anisko <anisko_r@epita.fr>
12491
12492 * doc/bison.texinfo (Locations): Update @$ stuff.
12493
ca96bc2d
MA
124942001-08-09 Robert Anisko <anisko_r@epita.fr>
12495
12496 * src/bison.simple (YYLLOC_DEFAULT): Update.
12497 (yyparse): Adjust.
12498
fdc6758b
MA
124992001-08-08 Marc Autret <autret_m@epita.fr>
12500
b77b9ee0 12501 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
12502 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
12503 Reported by Fabrice Bauzac.
957d4dbf 12504
600cad3b
MA
125052001-08-08 Marc Autret <autret_m@epita.fr>
12506
12507 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
12508 * src/vcg.c (output_node): Fix.
12509 * src/vcg.h: Cleanup.
12510 * src/print_graph.c: Add comments.
b77b9ee0 12511 (node_output_size): New global variable. Simplify the formatting of
600cad3b 12512 the VCG graph output.
b77b9ee0 12513 (print_actions): Unused code is now used. It notifies the final state
600cad3b 12514 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 12515 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
12516 blue.
12517 Get the current node name and node_obstack by argument.
12518 (node_obstack): New variable.
12519 (print_state): Manage node_obstack.
12520 (print_core): Use node_obstack given by argument.
12521 A node is not only computed here but in print_actions also.
12522 (print_graph): CPP out useless code instead of commenting it.
12523
976e528f
AD
125242001-08-07 Pascal Bart <pascal.bart@epita.fr>
12525
12526 * tests/atconfig.in (CPPFLAGS): Fix.
12527
20e8e5ca
AD
125282001-08-07 Akim Demaille <akim@epita.fr>
12529
12530 * src/print_graph.c (quote): New.
12531 (print_core): Use it.
12532
957d4dbf 125332001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 12534
3e3da797
AD
12535 * src/vcg.c (complain.h): Include it.
12536 Unepitaize `return' invocations.
c4b66126 12537 [NDEBUG] (main): Remove.
79282c6c 12538 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
12539 * src/files.c (open_files): Initialize graph_obstack.
12540 * src/print_graph.c (print_actions): CPP out useless code.
12541 (print_core): Don't output the last `\n' in labels.
12542 Use `quote'.
12543 * src/files.c (output_files): Output the VCG file.
12544 * src/main.c (main): Invoke print_graph ();
3e3da797 12545
957d4dbf 125462001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
12547
12548 Automaton VCG graph output.
12549 Using option ``-g'' or long option ``--graph'', you can generate
12550 a gram_filename.vcg file containing a VCG description of the LALR (1)
12551 automaton of your grammar.
12552
12553 * src/main.c: Call to print_graph() function.
12554 * src/getargs.h: Update.
12555 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
12556 (graph_flag): New flag.
12557 (longopts): Update.
12558 (getargs): Add case `g'.
12559 * src/files.c (graph_obstack): New obstack struct.
12560 (open_files): Initialize new obstack.
12561 (output_files): Saves graph_obstack if required.
12562 * src/files.h (graph_obstack): New extern declaration.
12563 * src/Makefile.am: Add new source files.
12564
927c1557 125652001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
12566
12567 * src/print_graph.c, src/print_graph.h (graph): New.
12568 * src/vcg.h: New file.
12569 * src/vcg.c: New file, VCG graph handling.
12570
7333d403
AD
125712001-08-06 Marc Autret <autret_m@epita.fr>
12572
12573 Add of %source_extension and %header_extension which specify
12574 the source or/and the header output file extension.
12575
12576 * src/files.c (compute_base_names): Remove initialisation of
12577 src_extension and header_extension.
12578 (compute_exts_from_gf): Update.
12579 (compute_exts_from_src): Update.
12580 (output_files): Update.
12581 * src/reader.c (parse_header_extension_decl): New.
12582 (parse_source_extension_decl): New.
12583 (read_declarations): New case statements for the new tokens.
12584 * src/lex.c (percent_table): Add entries for %source_extension
12585 and %header_extension.
12586 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
12587
84163231
AD
125882001-08-06 Marc Autret <autret_m@epita.fr>
12589
12590 * configure.in: Bump to 1.28c.
12591 * doc/bison.texinfo: Texinfo thingies.
12592
8303fc42
AD
125932001-08-04 Pascal Bart <pascal.bart@epita.fr>
12594
12595 * tests/atconfig.in (CPPFLAGS): Add.
12596 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
12597
70a84437
AD
125982001-08-03 Akim Demaille <akim@epita.fr>
12599
12600 Version 1.28b.
12601
2ce10144
AD
126022001-08-03 Akim Demaille <akim@epita.fr>
12603
12604 * tests/Makefile.am (check-local): Ship testsuite.
12605 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
12606 Include `string.h'.
12607
1e3e4bc1
AD
126082001-08-03 Akim Demaille <akim@epita.fr>
12609
12610 * configure.in: Try using -Wformat when compiling.
12611
42b45b7f
AD
126122001-08-03 Akim Demaille <akim@epita.fr>
12613
12614 * configure.in: Bump to 1.28b.
12615
8f13fe33
AD
126162001-08-03 Akim Demaille <akim@epita.fr>
12617
12618 * src/complain.c: Adjust strerror_r portability issues.
12619
b37ba92c
AD
126202001-08-03 Akim Demaille <akim@epita.fr>
12621
12622 Version 1.28a.
12623
b0ce6046
AD
126242001-08-03 Akim Demaille <akim@epita.fr>
12625
12626 * src/getargs.c, src/getarg.h (skeleton)): Constify.
12627 * src/lex.c (literalchar): Avoid name clashes on `buf'.
12628 * src/getargs.c: Include complain.h.
12629 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
12630 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
12631
d01c415b
AD
126322001-08-03 Akim Demaille <akim@epita.fr>
12633
12634 * src/reader.c (readgram): Display hidden chars in error messages.
12635
459dd1a6
AD
126362001-08-03 Akim Demaille <akim@epita.fr>
12637
12638 Update to gettext 0.10.39.
12639
53b74c0c
AD
126402001-08-03 Akim Demaille <akim@epita.fr>
12641
12642 * lib/strspn.c: New.
12643
234a3be3
AD
126442001-08-01 Marc Autret <autret_m@epita.fr>
12645
12646 * doc/bison.texinfo: Update.
12647 * doc/bison.1 (mandoc): Update.
12648 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
12649 * src/files.c: Support output files extensions computing.
12650 (src_extension): New static variable.
12651 (header_extension): New static variable.
12652 (tr): New function.
12653 (get_extension_index): New function, gets the index of an extension
12654 filename in a string.
12655 (compute_exts_from_gf): New function, computes extensions from the
12656 grammar file extension.
12657 (compute_exts_from_src): New functions, computes extensions from the
12658 C source file extension, file given by ``-o'' option.
12659 (compute_base_names): Update.
12660 (output_files): Update.
12661
847bf1f5
AD
126622001-08-01 Robert Anisko <anisko_r@epita.fr>
12663
d995fee7 12664 * doc/bison.texi: Document @$.
847bf1f5
AD
12665 (Locations): New section.
12666
d074a105
AD
126672001-07-18 Akim Demaille <akim@epita.fr>
12668
12669 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
12670 * config/prev-version.txt, config/move-if-change: New.
12671 * Makefile.am: Adjust.
12672
3419715d
AD
126732001-07-08 Pascal Bart <pascal.bart@epita.fr>
12674
12675 * src/bison.simple (yyparse): Suppress warning `comparaison
12676 between signed and unsigned'.
12677
62ab6972
AD
126782001-07-05 Pascal Bart <pascal.bart@epita.fr>
12679
12680 * src/getargs.h (raw_flag): Remove.
12681 * src/getargs.c: Die on `-r'/`--raw'.
12682 * src/lex.c (parse_percent_token): Die on `%raw'.
12683 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
12684 * tests/calc.at: Suppress test with option `--raw'.
12685
1e24cc5b
AD
126862001-07-14 Akim Demaille <akim@epita.fr>
12687
12688 * config/: New.
12689 * configure.in: Require Autoconf 2.50.
12690 Update to gettext 0.10.38.
12691
32dfccf8
AD
126922001-03-16 Akim Demaille <akim@epita.fr>
12693
12694 * doc/bison.texinfo: ANSIfy the examples.
12695
cd5bd6ac
AD
126962001-03-16 Akim Demaille <akim@epita.fr>
12697
12698 * getargs.c (skeleton): New variable.
12699 (longopts): --skeleton is a new option.
12700 (shortopts, getargs): -S is a new option.
12701 * getargs.h: Declare skeleton.
12702 * output.c (output_parser): Use it.
12703
5141b016
AD
127042001-03-16 Akim Demaille <akim@epita.fr>
12705
12706 * m4/strerror_r.m4: New.
12707 * m4/error.m4: Run AC_FUNC_STRERROR_R.
12708 * lib/error.h, lib/error.c: Update.
12709
447992b9
AD
127102001-03-16 Akim Demaille <akim@epita.fr>
12711
12712 * src/getargs.c (longopts): Clean up.
12713
274d42ce
AD
127142001-02-21 Akim Demaille <akim@epita.fr>
12715
12716 * src/reader.c (gensym): `gensym_count' is your own.
12717 Use a static buf to create the symbol name, as token_buffer is no
12718 longer a buffer.
12719
22c821f3
AD
127202001-02-08 Akim Demaille <akim@epita.fr>
12721
12722 * src/conflicts.c (conflict_report): Be sure not to append to res
12723 between two calls, which could happen if both first sprintf were
12724 skipped, but not the first cp += strlen.
12725
18569462
AD
127262001-02-08 Akim Demaille <akim@epita.fr>
12727
12728 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
12729 New, from fileutils 4.0.37.
12730 * configure.in: Require Autoconf 2.49c. I took some time before
12731 making this decision. This is the only way out for portability
12732 issues in Bison, it would mean way too much duplicate effort to
12733 import in Bison features implemented in 2.49c since 2.13.
12734 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
12735
0d8f3c8a
AD
127362001-02-02 Akim Demaille <akim@epita.fr>
12737
12738 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 12739 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 12740
f17bcd1f
AD
127412001-01-19 Akim Demaille <akim@epita.fr>
12742
12743 Get rid of the ad hoc handling of token_buffer in the scanner: use
12744 the obstacks.
12745
12746 * src/lex.c (token_obstack): New.
12747 (init_lex): Initialize it. No longer call...
12748 (grow_token_buffer): this. Remove it.
12749 Adjust all the places which used it to use the obstack.
12750
511e79b3
AD
127512001-01-19 Akim Demaille <akim@epita.fr>
12752
12753 * src/lex.h: Rename all the tokens:
12754 s/\bENDFILE\b/tok_eof/g;
12755 s/\bIDENTIFIER\b/tok_identifier/g;
12756 etc.
12757 Let them be enums, not #define, to ease debugging.
12758 Adjust all the code.
12759
0d6508ef
AD
127602001-01-18 Akim Demaille <akim@epita.fr>
12761
12762 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
12763 * src/lex.c (maxtoken, grow_token_buffer): Static.
12764
6deb4447
AD
127652001-01-18 Akim Demaille <akim@epita.fr>
12766
12767 Since we now use obstacks, more % directives can be enabled.
12768
12769 * src/lex.c (percent_table): Also accept `%yacc',
12770 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
12771 `%debug'.
12772 Handle the actions for `%semantic_parser' and `%pure_parser' here,
12773 instead of returning a token.
12774 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
12775 * src/reader.c (read_declarations): Adjust.
12776 * src/files.c (open_files): Don't call `compute_base_names', don't
12777 compute `attrsfile' since they depend upon data which might be
12778 *in* the input file now.
12779 (output_files): Do it here.
12780 * src/output.c (output_headers): Document the fact that this patch
12781 introduces a guaranteed SEGV for semantic parsers.
12782 * doc/bison.texinfo: Document them.
12783 * tests/suite.at: Exercise these %options.
12784
ff4423cc
AD
127852000-12-20 Akim Demaille <akim@epita.fr>
12786
12787 Also handle the output file (--verbose) with obstacks.
12788
12789 * files.c (foutput): Remove.
12790 (output_obstack): New.
12791 Adjust all dependencies.
12792 * src/conflicts.c: Return a string.
12793 * src/system.h (obstack_grow_string): Rename as...
12794 (obstack_sgrow): this. Be ready to work with non literals.
12795 (obstack_fgrow4): New.
12796
956dba3a
AD
127972000-12-20 Akim Demaille <akim@epita.fr>
12798
12799 * src/files.c (open_files): Fix the computation of short_base_name
12800 in the case of `-o foo.tab.c'.
12801
337bab46
AD
128022000-12-20 Akim Demaille <akim@epita.fr>
12803
12804 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
12805 (copy_dollar): Now that everything uses obstacks, get rid of the
12806 FILE * parameters.
12807
5d3214b8
AD
128082000-12-20 Akim Demaille <akim@epita.fr>
12809
12810 * src/files.c (open_files): Actually the `.output' file is based
12811 on the short_base_name, not base_name.
12812 * tests/suite.at (Checking output file names): Adjust.
12813
29092a57
AD
128142000-12-20 Akim Demaille <akim@epita.fr>
12815
12816 * src/bison.s1: Remove, we now use directly...
12817 * src/bison.simple: this.
12818 * src/Makefile.am: Use pkgdata instead of data.
12819
ea5607fd
AD
128202000-12-20 Akim Demaille <akim@epita.fr>
12821
12822 * src/files.c (guard_obstack): New.
12823 (open_files): Initialize it.
12824 (output_files): Dump it...
12825 * src/files.h: Export it.
12826 * src/reader.c (copy_guard): Use it.
12827
27110317
AD
128282000-12-19 Akim Demaille <akim@epita.fr>
12829
12830 * src/files.c (outfile, defsfile, actfile): Removed as global
12831 vars.
12832 (open_files): Don't compute them.
12833 (output_files): Adjust.
12834 (base_name, short_base_name): Be global.
12835 Adjust dependencies.
12836
19c50364
AD
128372000-12-19 Akim Demaille <akim@epita.fr>
12838
12839 * src/files.c (strsuffix): New.
12840 (stringappend): Be just like strcat but allocate.
12841 (base_names): Eve out from open_files.
12842 Try to simplify the rather hairy computation of base_name and
12843 short_base_name.
12844 (open_files): Use it.
12845 * tests/suite.at (Checking output file names): New test.
12846
573c1d9f
AD
128472000-12-19 Akim Demaille <akim@epita.fr>
12848
12849 * src/system.h (obstack_grow_literal_string): Rename as...
12850 (obstack_grow_string): this.
12851 * src/output.c (output_parser): Recognize `%% actions' instead of
12852 `$'.
12853 * src/bison.s1: s/$/%% actions/.
12854 * src/bison.hairy: Likewise.
12855
ef7ddedd
AD
128562000-12-19 Akim Demaille <akim@epita.fr>
12857
12858 * src/output.c (output_parser): Compute the `#line' lines when
12859 there are.
12860 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
12861 Suggested by Hans Aberg.
12862
ff61dabd
AD
128632000-12-19 Akim Demaille <akim@epita.fr>
12864
12865 Let the handling of the skeleton files be local to the procedures
12866 that use it.
12867
12868 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
12869 longer static.
12870 (fparser, open_extra_files): Remove.
12871 (open_files, output_files): Don't take care of fparser.
12872 * src/files.h: Adjust.
12873 * src/output.c (output_parser): Open and close the file to the
12874 skeleton.
12875 * src/reader.c (read_declarations): When %semantic_parser, open
12876 fguard.
12877
55b96341
AD
128782000-12-19 Akim Demaille <akim@epita.fr>
12879
12880 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
12881 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
12882
358c15b7
AD
128832000-12-19 Akim Demaille <akim@epita.fr>
12884
12885 * src/files.c (open_files): Yipee! We no longer need all the code
12886 looking for `/tmp' since we have no tmp file.
12887
7de3329e
AD
128882000-12-19 Akim Demaille <akim@epita.fr>
12889
12890 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
12891 New macros.
12892 * src/files.c (open_files): Less dependency on MSDOS etc.
12893
3abcd459
AD
128942000-12-14 Akim Demaille <akim@epita.fr>
12895
12896 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
12897 Provide a default definition.
12898 Use it when executing the default @ action.
12899 * src/reader.c (reader_output_yylsp): No longer include
12900 `timestamp' and `text' in the default YYLTYPE.
12901
2a91a95e
AD
129022000-12-12 Akim Demaille <akim@epita.fr>
12903
12904 * src/reader.c (copy_definition, parse_union_decl, copy_action)
12905 (copy_guard): Quote the file names.
12906 Reported by Laurent Mascherpa.
12907
14d3eb9b
AD
129082000-12-12 Akim Demaille <akim@epita.fr>
12909
12910 * src/output.c (output_headers, output_program, output): Be sure
12911 to escape special characters when outputting filenames.
12912 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
12913 (output_headers): Don't depend on them, Use ACTSTR.
12914
d7045ec6
AD
129152000-11-17 Akim Demaille <akim@epita.fr>
12916
12917 * lib/obstack.h: Formatting changes.
12918 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
12919 prevents type checking.
12920 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
12921 cast the value to (void *): assigning a `foo *' to a `void *'
12922 variable is valid.
12923 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
12924 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
12925 append characters.
12926
6fd54b73
AD
129272000-11-17 Akim Demaille <akim@epita.fr>
12928
12929 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
12930 as...
12931 (suite.m4, regression.m4, calc.m4): these.
12932 * tests/atgeneral.m4: Update from CVS Autoconf.
12933
4c50eae6
AD
129342000-11-17 Akim Demaille <akim@epita.fr>
12935
12936 * tests/regression.m4 (%union and --defines): New test,
12937 demonstrating a current bug in the obstack implementation.
12938
a35f64ea
AD
129392000-11-17 Akim Demaille <akim@epita.fr>
12940
12941 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
12942 macros.
12943 Use them to declare the variables which are global or local to
12944 `yyparse'.
12945
7de23534
AD
129462000-11-17 Akim Demaille <akim@epita.fr>
12947
12948 * acconfig.h: Remove, no longer used.
12949
aa7815f5
AD
129502000-11-07 Akim Demaille <akim@epita.fr>
12951
12952 * src: s/Copyright (C)/Copyright/g.
12953
5af1f549
AD
129542000-11-07 Akim Demaille <akim@epita.fr>
12955
12956 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
12957 defining.
12958 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
12959
553e2b22
AD
129602000-11-07 Akim Demaille <akim@epita.fr>
12961
12962 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
12963 Merge in a single CPP if/else.
12964
8a4f41d6
AD
129652000-11-07 Akim Demaille <akim@epita.fr>
12966
12967 * src/output.c (output): Remove useless variables.
12968 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
12969 argument `data' for consistency with the prototypes.
12970 Qualify it `const'.
12971 (obstack_copy, obstack_copy0): Rename the second argument as
12972 `address' for consistency. Qualify it `const'.
12973 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
12974 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
12975 `const' their input argument (`data' or `address').
12976 Adjust the corresponding macros to include `const' in casts.
12977
095a3fb5
AD
129782000-11-03 Akim Demaille <akim@epita.fr>
12979
12980 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
12981 s/PFILE1/BISON_HAIRY/.
12982 Adjust dependencies.
12983
d1cdce7c
AD
129842000-11-03 Akim Demaille <akim@epita.fr>
12985
090c5ebf 12986 For some reason, this was not applied.
d1cdce7c
AD
12987
12988 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
12989 `unlink': it's no longer used.
12990
9311529b
AD
129912000-11-03 Akim Demaille <akim@epita.fr>
12992
12993 * src/files.c (skeleton_find): New function, eved out of...
12994 (open_files, open_extra_files): here.
12995
d8880f69
AD
129962000-11-03 Akim Demaille <akim@epita.fr>
12997
12998 Don't use `atexit'.
12999
13000 * src/files.c (obstack_save): New function.
13001 (done): Rename as...
13002 (output_files): this.
13003 Use `obstack_save'.
13004 * src/main.c (main): Don't use `atexit' to register `done', since
13005 it no longer has to remove tmp files, just call `output_files'
13006 when there are no errors.
13007
0dbb648e
AD
130082000-11-02 Akim Demaille <akim@epita.fr>
13009
13010 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
13011 `unlink': it's no longer used.
13012 * src/files.h: Formatting changes.
13013
896fe5c1
AD
130142000-11-02 Akim Demaille <akim@epita.fr>
13015
13016 Remove the last uses of mktemp and unlink/delete.
13017
13018 * src/files.c (fdefines, ftable): Removed.
13019 (defines_ostack, table_obstack): New.
13020 Adjust dependencies of the former into uses of the latter.
13021 * src/output.c (output_short_or_char_table, output_short_table):
13022 Convert to using obstacks.
13023 * src/reader.c (copy_comment2): Accept one FILE * and two
13024 obstacks.
13025 (output_token_defines, reader_output_yylsp): Use obstacks.
13026 * src/system.h (obstack_fgrow3): New.
1f65350a 13027 * po/POTFILES.in: Adjust.
896fe5c1 13028
dd60faec
AD
130292000-11-01 Akim Demaille <akim@epita.fr>
13030
13031 Change each use of `fattrs' into a use of `attrs_obstack'.
13032
13033 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
13034 * src/files.c (fattrs): Remove.
13035 (attrs_obstack): New.
13036 Adjust all dependencies.
13037 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
13038
8c7ebe49
AD
130392000-11-01 Akim Demaille <akim@epita.fr>
13040
13041 Introduce obstacks.
13042 Change each use of `faction' into a use of `action_obstack'.
13043
13044 * lib/obstack.h, lib/obstack.c: New files.
13045 * src/files.c (faction): Remove.
13046 (action_obstack): New.
13047 Adjust all dependencies.
13048
77aee789
AD
130492000-10-20 Akim Demaille <akim@epita.fr>
13050
13051 * lib/quote.h (PARAMS): New macro. Use it.
13052
43591cec
AD
130532000-10-16 Akim Demaille <akim@epita.fr>
13054
13055 * src/output.c (output_short_or_char_table): New function.
13056 (output_short_table, output_token_translations): Use it.
13057 (goto_actions): Use output_short_table.
13058
1e9798d5
AD
130592000-10-16 Akim Demaille <akim@epita.fr>
13060
13061 * src/symtab.c (bucket_new): New function.
13062 (getsym): Use it.
13063
13064 * src/output.c (output_short_table): New argument to display the
13065 comment associated with the table.
13066 Adjust dependencies.
13067 (output_gram): Use it.
13068 (output_rule_data): Nicer output layout for YYTNAME.
13069
f282676b
AD
130702000-10-16 Akim Demaille <akim@epita.fr>
13071
13072 * src/lex.c (read_typename): New function.
13073 (lex): Use it.
13074 * src/reader.c (copy_dollar): Likewise.
13075
550a72a3
AD
130762000-10-16 Akim Demaille <akim@epita.fr>
13077
13078 * src/reader.c (copy_comment2): Expect the input stream to be on
13079 the `/' which is suspected to open a comment, instead of being
13080 called after `//' or `/*' was read.
13081 (copy_comment, copy_definition, parse_union_decl, copy_action)
13082 (copy_guard): Adjust.
13083
131e2fef
AD
130842000-10-16 Akim Demaille <akim@epita.fr>
13085
13086 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
13087 `read_signed_integer'.
13088
79282c5a
AD
130892000-10-16 Akim Demaille <akim@epita.fr>
13090
13091 * src/reader.c (copy_dollar): New function.
13092 (copy_guard, copy_action): Use it.
13093
ff4a34be
AD
130942000-10-16 Akim Demaille <akim@epita.fr>
13095
13096 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
13097 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
13098 New files, from Fileutils 4.0.27.
13099 * src/main.c (printable_version): Remove.
13100 * src/lex.c, src/reader.c: Use `quote'.
13101
131022000-10-04 Akim Demaille <akim@epita.fr>
13103
13104 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
13105
14ded682
AD
131062000-10-04 Akim Demaille <akim@epita.fr>
13107
13108 * doc/bison.texinfo: Various typos spotted by Neil Booth.
13109
8e03724b
AD
131102000-10-04 Akim Demaille <akim@epita.fr>
13111
13112 When a literal string is used to define two different tokens,
13113 `bison -v' segfaults.
13114 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
13115
13116 * tests/regression.m4: New file.
13117 Include the core of the sample provided by Piotr Gackiewicz.
13118 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
13119 properly.
13120
a9e64249
AD
131212000-10-04 Akim Demaille <akim@epita.fr>
13122
13123 * src/reader.c (parse_expect_decl): Keep `count' within the size
13124 of `buffer'.
13125 From Neil Booth.
13126
da9abf43
AD
131272000-10-02 Paul Eggert <eggert@twinsun.com>
13128
13129 * bison.s1 (yyparse): Assign the default value
13130 unconditionally, to avoid a GCC warning and make the parser a
13131 tad smaller.
13132
c33638bb
AD
131332000-10-02 Akim Demaille <akim@epita.fr>
13134
13135 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
13136 options.
13137
444c570a
AD
131382000-10-02 Akim Demaille <akim@epita.fr>
13139
13140 * src/derives.c, src/print.c, src/reduce.c: To ease the
13141 translation, move some `\n' out of the translated strings.
13142
89cab50d
AD
131432000-10-02 Akim Demaille <akim@epita.fr>
13144
13145 The location tracking mechanism is precious for parse error
13146 messages. Nevertheless, it is enabled only when `@n' is used in
13147 the grammar, which is a different issue (you can use it in error
13148 message, but not in the grammar per se). Therefore, there should
13149 be another means to enable it.
13150
13151 * src/getargs.c (getargs): Support `--locations'.
13152 (usage): Report it.
13153 * src/getargs.h (locationsflag): Export it.
13154 * src/lex.c (percent_table): Support `%locations'.
13155 * src/reader.c (yylsp_needed): Remove this variable, now replaced
13156 with `locationsflag'.
13157 * doc/bison.texinfo: Document `--locations' and `%locations'.
13158 Sort the options.
13159 * tests/calc.m4: Test it.
13160
13161 For regularity of the names, replace each
13162 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
13163 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
13164 In addition replace each `flag' with `_flag'.
13165
d6c2cba0
AD
131662000-10-02 Akim Demaille <akim@epita.fr>
13167
13168 Also test parse error messages, including with YYERROR_VERBOSE.
13169
13170 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
13171 associative).
13172 Use it to check the computations.
13173 Use it to check `nonassoc' is honored.
13174 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
13175 `--yyerror-verbose'.
13176 (_AT_CHECK_CALC): Adjust to this option.
13177 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
13178
5a35a6cb
AD
131792000-10-02 Akim Demaille <akim@epita.fr>
13180
13181 Test also `--verbose', `--defines' and `--name-prefix'. Testing
13182 the latter demonstrates a flaw in the handling of non debugging
13183 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
13184 was used in order to simplify:
13185
13186 #if YYDEBUG
13187 if (yydebug)
13188 {
13189 ...
13190 }
13191 #endif
13192
13193 into
13194
13195 if (yydebug)
13196 {
13197 ...
13198 }
13199
13200 unfortunately this leads to a CPP conflict when
13201 `--name-prefix=foo' is used since it produces `#define yydebug
13202 foodebug'.
13203
13204 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
13205 (YYDPRINTF): New macro.
13206 Spread its use.
13207 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
13208 the bison options.
13209 Also test `--verbose', `--defines' and `--name-prefix'.
13210
71da9eea
AD
132112000-10-02 Akim Demaille <akim@epita.fr>
13212
13213 Improve the readability of the produced parsers.
13214
13215 * src/bison.s1: Formatting changes.
13216 Improve the comment related to the `$' mark.
13217 (yydefault): Don't fall through to `yyresume': `goto' there.
13218 * src/output.c (output_parser): When the `$' is met, skip the end
13219 of its line.
13220 New variable, `number_of_dollar_signs', to check there's exactly
13221 one `$' in the parser skeleton.
13222
95e36146
AD
132232000-10-02 Akim Demaille <akim@epita.fr>
13224
13225 * lib/xstrdup.c: New file, from the fileutils.
13226 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
13227 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
13228 instead of strlen + xmalloc + strcpy.
13229 * src/symtab.c (copys): Remove, use xstrdup instead.
13230
d7020c20
AD
132312000-10-02 Akim Demaille <akim@epita.fr>
13232
13233 * src/gram.h (associativity): New enum type which replaces the
13234 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
13235 `right_assoc', `left_assoc' and `non_assoc'.
13236 Adjust all dependencies.
13237 * src/reader.c: Formatting changes.
13238 (LTYPESTR): Don't define it, use it as a literal in
13239 `reader_output_yylsp'.
13240 * src/symtab.h (symbol_class): New enum type which replaces the
13241 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
13242 `sunknown', `stoken and `snterm'.
13243
1916f98e
AD
132442000-10-02 Akim Demaille <akim@epita.fr>
13245
13246 * src/getargs.c (fixed_outfiles): Rename as...
13247 (yaccflag): for consistency and accuracy.
13248 Adjust dependencies.
13249
d7913476
AD
132502000-10-02 Akim Demaille <akim@epita.fr>
13251
13252 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
13253 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
13254 difficult and introduced a lot of core dump. It turns out that
13255 Bison used an implementation of `xmalloc' based on `calloc', and
13256 at various places it does depend upon the initialization to 0. I
13257 have not tried to isolate the pertinent places, and all the former
13258 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
13259 someone should address this issue.
13260
13261 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
13262 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
13263 files.
13264 Adjust dependencies.
13265 * src/warshall.h: New file.
13266 Propagate.
13267
340ef489
AD
132682000-10-02 Akim Demaille <akim@epita.fr>
13269
13270 Various anti-`extern in *.c' changes.
13271
13272 * src/system.h: Include `assert.h'.
13273
b2ca4022
AD
132742000-10-02 Akim Demaille <akim@epita.fr>
13275
13276 * src/state.h (nstates, final_state, first_state, first_shift)
13277 (first_reduction): Move their exportation from here...
13278 * src/LR0.h: to here.
13279 Adjust dependencies.
13280 * src/getargs.c (statisticsflag): New variable.
13281 Add support for `--statistics'.
13282 Adjust dependencies.
13283
13284 Remove a lot of now useless `extern' statements in most files.
13285
403b315b
AD
132862000-10-02 Akim Demaille <akim@epita.fr>
13287
13288 * src/LR0.h: New file.
13289 Propagate its use.
13290
07a58c13
AD
132912000-10-02 Akim Demaille <akim@epita.fr>
13292
13293 * src/print.h: New file.
13294 Propagate its use.
13295 * src/print.c: Formatting and ordering changes.
13296 (verbose, terse): Replace with...
13297 (print_results): this new function.
13298 Adjust dependencies.
13299
0619caf0
AD
133002000-10-02 Akim Demaille <akim@epita.fr>
13301
13302 * src/conflicts.c (conflict_report): New function.
13303 (conflict_log, verbose_conflict_log): Replace with...
13304 (print_conflicts): this function.
13305 Adjust dependencies.
13306 * src/conflicts.h: New file.
13307 Propagate its inclusion.
13308
3519ec76
AD
133092000-10-02 Akim Demaille <akim@epita.fr>
13310
13311 * src/nullable.h: New file.
13312 Propagate its inclusion.
13313 * src/nullable.c: Formatting changes.
13314
015acc48
AD
133152000-10-02 Akim Demaille <akim@epita.fr>
13316
13317 * src/reduce.h: New file.
13318 Propagate its inclusion.
13319 * src/reduce.c: Topological sort and other formatting changes.
13320 (bool, TRUE, FALSE): Move their definition to...
13321 * src/system.h: here.
13322
8963a27b
AD
133232000-10-02 Akim Demaille <akim@epita.fr>
13324
13325 * src/files.c: Formatting changes.
13326 (tryopen, tryclose, openfiles): Rename as...
13327 (xfopen, xfclose, open_files): this.
13328 (stringappend): static.
13329 * src/files.h: Complete the list of exported symbols.
13330 Propagate its use.
13331
a70083a3
AD
133322000-10-02 Akim Demaille <akim@epita.fr>
13333
13334 * src/reader.h: New file.
13335 Propagate its use instead of tedious list of `extern' and
13336 prototypes.
13337 * src/reader.c: Formatting changes, topological sort,
13338 s/register//.
13339
abadc117
AD
133402000-10-02 Akim Demaille <akim@epita.fr>
13341
13342 * src/lex.h: Prototype `lex.c' exported functions.
13343 * src/reader.c: Adjust.
13344 * src/lex.c: Formatting changes.
13345 (safegetc): Rename as...
13346 (xgetc): this.
13347
720d742f
AD
133482000-10-02 Akim Demaille <akim@epita.fr>
13349
13350 * src/lalr.h: New file.
13351 Propagate its inclusion instead of prototypes and `extern'.
13352 * src/lalr.c: Formatting changes, topological sorting etc.
13353
f2acea59
AD
133542000-10-02 Akim Demaille <akim@epita.fr>
13355
13356 * src/output.c (token_actions): Introduce a temporary array,
13357 YYDEFACT, that makes it possible for this function to use
13358 output_short_table.
13359
d019d655
AD
133602000-10-02 Akim Demaille <akim@epita.fr>
13361
13362 `user_toknums' is output as a `short[]' in `output.c', while it is
13363 defined as a `int[]' in `reader.c'. For consistency with the
13364 other output tables, `user_toknums' is now defined as a table of
13365 shorts.
13366
13367 * src/reader.c (user_toknums): Be a short table instead of an int
13368 table.
13369 Adjust dependencies.
13370
13371 Factor the short table outputs.
13372
13373 * src/output.c (output_short_table): New function.
13374 * src/output.c (output_gram, output_stos, output_rule_data)
13375 (output_base, output_table, output_check): Use it.
13376
6c89f1c1
AD
133772000-10-02 Akim Demaille <akim@epita.fr>
13378
13379 * src/output.c (output): Topological sort of the functions, in
13380 order to get rid of the `static' prototypes.
13381 No longer use `register'.
13382 * src/output.h: New file.
13383 Propagate its inclusion in files explicitly prototyping functions
13384 from output.c.
13385
d9efd181
AD
133862000-09-21 Akim Demaille <akim@epita.fr>
13387
13388 * src/atgeneral.m4: Update from Autoconf.
13389
c29240e7 133902000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
13391
13392 * src/closure.h: New file.
13393 * src/closure.c: Formatting changes, topological sort over the
13394 functions, use of closure.h.
13395 (initialize_closure, finalize_closure): Rename as...
13396 (new_closure, free_closure): these. Adjust dependencies.
13397 * src/LR0.c: Formatting changes, topological sort, use of
13398 cloture.h.
13399 (initialize_states): Rename as...
13400 (new_states): this.
13401 * src/Makefile.am (noinst_HEADERS): Adjust.
13402
499daa50
AD
134032000-09-20 Akim Demaille <akim@epita.fr>
13404
13405 * src/acconfig.h: Don't protect config.h against multiple
13406 inclusion.
13407 Don't define PARAMS.
13408 * src/system.h: Define PARAMS.
13409 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
13410 purpose of config.h. system.h must not try to fix wrong
13411 definitions in config.h.
13412
cc84fd5d
AD
134132000-09-20 Akim Demaille <akim@epita.fr>
13414
13415 * src/derives.h: New file.
13416 * src/main.c, src/derives.h: Use it.
13417 Formatting changes.
13418 * src/Makefile.am (noinst_HEADERS): Adjust.
13419
db5b3a89
AD
134202000-09-20 Akim Demaille <akim@epita.fr>
13421
13422 * tests/atgeneral.m4: Update from Autoconf.
13423 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
13424 (AT_CHECK_CALC): New macros.
13425 Use these macros to test bison with options `', `--raw',
13426 `--debug', `--yacc', `--yacc --debug'.
13427
ceed8467
AD
134282000-09-19 Akim Demaille <akim@epita.fr>
13429
13430 * src/output.c: Formatting changes.
13431 * src/machine.h: Remove, leaving its contents in...
13432 * src/system.h: here.
13433 Include stdio.h.
13434 Adjust all dependencies on stdio.h and machine.h.
13435 * src/getargs.h: New file.
13436 Let all `extern' declarations about getargs.c be replaced with
13437 inclusion of `getargs.h'.
13438 * src/Makefile.am (noinst_HEADERS): Adjust.
13439
13440 * tests/calc.m4 (yyin): Be initialized in main, not on the global
13441 scope.
13442 (yyerror): Returns void, not int.
13443 * doc/bison.texinfo: Formatting changes.
13444
05a1d24b
AD
134452000-09-19 Akim Demaille <akim@epita.fr>
13446
13447 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
13448 portable.
13449
cbd25751
AD
134502000-09-18 Akim Demaille <akim@epita.fr>
13451
13452 * configure.in: Append WARNING_CFLAGS to CFLAGS.
13453 * src/Makefile.am (INCLUDES): Don't.
13454 Be ready to fetch headers in lib/.
13455
13863333
AD
134562000-09-18 Akim Demaille <akim@epita.fr>
13457
13458 * doc/bison.texinfo: Update the copyright.
13459 ANSIfy and GNUify the examples.
13460 Remove the old menu.
13461
0d533154
AD
134622000-09-18 Akim Demaille <akim@epita.fr>
13463
13464 First set of tests: use the `calc' example from the documentation.
13465
13466 * src/bison.s1 (yyparse): Condition the code using `yytname' which
13467 is defined only when YYDEBUG is.
13468 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
13469 * src/files.c (tryopen, tryclose): Formatting changes.
13470 Move to the top and be static.
13471 * src/reader.c (read_signed_integer): Likewise.
13472 * tests/calc.m4: New file.
13473 * Makefile.am, suite.m4: Adjust.
13474 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
13475
e79137ac
AD
134762000-09-18 Akim Demaille <akim@epita.fr>
13477
13478 Add support for an Autotest test suite for Bison.
13479
13480 * m4/m4.m4, m4/atconfig.m4: New files.
13481 * m4/Makefile.am (EXTRA_DIST): Adjust.
13482 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
13483 files.
13484 * src/getargs.c: Display a more standard --version message.
13485 * src/reader.c (reader): Formatting changes.
13486 No longer depend upon VERSION_STRING.
13487 * configure.in: No longer use `dnl'.
13488 Set up the test suite and the new directory `tests/.
13489 (VERSION_STRING): Remove.
13490
27821bff
AD
134912000-04-14 Akim Demaille <akim@epita.fr>
13492
13493 * src/reader.c (copy_comment2): New function, same as former
13494 `copy_comment', but outputs into two FILE *.
13495 (copy_comment): Use it.
13496 (parse_union_decl): Use it.
13497 (get_type, parse_start_decl): Use the same `invalid' message.
13498 (parse_start_decl, parse_union_decl): Use the same `multiple'
13499 message.
13500 (parse_union_decl, copy_guard, copy_action): Use the same
13501 `unmatched' message.
13502 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
13503
cfe5fbc0
AD
135042000-03-31 Akim Demaille <akim@epita.fr>
13505
13506 * src/files.c (tryopen, tryclose): Move to the top.
13507 Be static.
13508
cb7db13e
AD
135092000-03-31 Akim Demaille <akim@epita.fr>
13510
13511 * src/main.c (main): Don't call `done', exit does it.
13512
a0f6b076
AD
135132000-03-31 Akim Demaille <akim@epita.fr>
13514
36281465
AD
13515 * allocate.c: s/return (foo)/return foo/.
13516 * lalr.c: Likewise.
13517 * LR0.c: Likewise.
13518 * output.c: Likewise.
13519 * reader.c: Likewise.
13520 * symtab.c: Likewise.
13521 * vmsgetargs.c: Likewise.
13522
135232000-03-31 Akim Demaille <akim@epita.fr>
13524
13525 Clean up the error reporting functions.
a0f6b076
AD
13526
13527 * src/report.c: New file.
13528 * src/report.h: Likewise.
13529 * src/Makefile.am: Adjust.
13530 * m4/error.m4: New file.
13531 * m4/Makefile.am: Adjust.
13532 * configure.in (jm_PREREQ_ERROR): Call it.
13533 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
13534 Remove.
13535 (fatal, fatals): Remove. All callers use complain.c::fatal.
13536 (warn, warni, warns, warnss, warnss): Remove. All callers use
13537 complain.c::complain.
13538 (toomany): Remove, use fatal instead.
13539 * src/files.c (done): No argument, use complain_message_count.
13540 * src/main.c (main): Register `done' to `atexit'.
13541
13542 * src/getargs.c (usage): More `fputs', less `fprintf'.
13543
18539825
AD
135442000-03-28 Akim Demaille <akim@epita.fr>
13545
13546 * lib/: New directory.
13547 * Makefile.am (SUBDIRS): Adjust.
13548 * configure.in: Adjust.
13549 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
13550 useless.
13551 * src/alloca.c: Moved to lib/.
13552 * src/getopt.c: Likewise.
13553 * src/getopt1.c: Likewise.
13554 * src/getopt.h: Likewise.
13555 * src/ansi2knr.c: Likewise.
13556 * src/ansi2knr.1: Likewise.
13557 * src/Makefile.am: Adjust.
13558 * lib/Makefile.am: New file.
13559
9f306f2a
AD
135602000-03-28 Akim Demaille <akim@epita.fr>
13561
13562 * src/getargs.c (usage): Refresh the help message.
13563
0ba347b6
AD
135642000-03-17 Akim Demaille <akim@epita.fr>
13565
13566 * src/getopt1.c: Updated from textutils 2.0e
13567 * src/getopt.c: Likewise.
13568 * src/getopt.h: Likewise.
13569
dbe7f271
AD
135702000-03-17 Akim Demaille <akim@epita.fr>
13571
13572 * src/Makefile.am (bison.simple): Fix the awk program: quote only
13573 the file name, not the whole `#line LINE FILE'.
13574
75bbe78d
AD
135752000-03-17 Akim Demaille <akim@epita.fr>
13576
13577 On syntax errors, report the token on which we choked.
13578
aa5fd0ee
AD
13579 * src/bison.s1 (yyparse): In the label yyerrlab, when
13580 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 13581
7b306f52
AD
135822000-03-17 Akim Demaille <akim@epita.fr>
13583
aa5fd0ee 13584 * src/reader.c (copy_at): New function.
7b306f52
AD
13585 (copy_guard): Use it.
13586 (copy_action): Use it.
13587
e87b5700
AD
135882000-03-17 Akim Demaille <akim@epita.fr>
13589
13590 Be kind to translators, save some useless translations.
13591
aa5fd0ee 13592 * src/main.c (banner): New function.
e87b5700
AD
13593 (fatal_banner): Use it.
13594 (warn_banner): Use it.
13595
ae3c3164
AD
135962000-03-17 Akim Demaille <akim@epita.fr>
13597
aa5fd0ee
AD
13598 * src/reader.c (copy_definition): Use copy_string and
13599 copy_comment. Removed now unused `match', `ended',
13600 `cplus_comment'.
ae3c3164
AD
13601 (copy_comment, copy_string): Moved, to be visible from
13602 copy_definition.
13603
4dc58e7c
AD
136042000-03-17 Akim Demaille <akim@epita.fr>
13605
aa5fd0ee
AD
13606 * src/reader.c (copy_string): Declare `static inline'. No
13607 problems with inline, since it is checked by configure.
4dc58e7c
AD
13608 (copy_comment): Likewise.
13609
0a6384c4
AD
136102000-03-17 Akim Demaille <akim@epita.fr>
13611
aa5fd0ee 13612 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 13613
3cef001a
AD
136142000-03-17 Akim Demaille <akim@epita.fr>
13615
aa5fd0ee 13616 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
13617 (copy_action): Use it. Removed now unused `match', `ended',
13618 `cplus_comment'.
13619 (copy_guard): Likewise.
13620
ca36d2ef
AD
136212000-03-17 Akim Demaille <akim@epita.fr>
13622
aa5fd0ee 13623 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
13624 (copy_action): Use it.
13625 (copy_guard): Likewise.
13626
6666f98f
AD
136272000-03-17 Akim Demaille <akim@epita.fr>
13628
13629 Change the handling of @s so that they behave exactly like $s.
13630 There is now a pseudo variable @$ (readble and writable), location
13631 of the lhs of the rule (by default ranging from the location of
13632 the first symbol of the rhs, to the location of the last symbol,
13633 or, if the rhs is empty, YYLLOC).
13634
13635 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
13636 yyval.
13637 (yyparse): When providing a default semantic action, provide a
13638 default location action.
13639 (after the $): No longer change `*YYLSP', just stack YYLOC the
13640 same way you stack YYVAL.
13641 * src/reader.c (read_declarations): Use warns.
13642 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
13643 (copy_action, case '@'): Likewise.
13644 Use a standard error message, to save useless work from
13645 translators.
13646
41aca2e0
AD
136472000-03-17 Akim Demaille <akim@epita.fr>
13648
aa5fd0ee
AD
13649 * src/bison.s1: Formatting and cosmetics changes.
13650 * src/reader.c: Likewise.
41aca2e0
AD
13651 Update the Copyright notice.
13652
dc08c1d5
AD
136532000-03-17 Akim Demaille <akim@epita.fr>
13654
aa5fd0ee
AD
13655 * src/bison.s1 (#line): All set to `#line' only, since the
13656 Makefile now handles them.
dc08c1d5 13657
9ee3c97b
AD
136582000-03-16 Akim Demaille <akim@epita.fr>
13659
13660 * src/output.c (output_rule_data): Output the documentation of
13661 some of the tables.
13662 (Copyright notice): Update.
13663 Formatting changes.
13664
0de741ca
AD
136652000-03-16 Akim Demaille <akim@epita.fr>
13666
13667 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
13668 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
13669 One `#if YYDEBUG' remains, since it uses variables which are
13670 defined only if `YYDEBUG != 0'.
13671
bb10be54
AD
136722000-03-16 Akim Demaille <akim@epita.fr>
13673
13674 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
13675 and related variables so that the similarities are highlighted.
13676
b07b484a
AD
136772000-03-16 Akim Demaille <akim@epita.fr>
13678
13679 * src/bison.s1: Properly indent CPP directives.
13680
361f60b3
AD
136812000-03-16 Akim Demaille <akim@epita.fr>
13682
13683 * src/bison.s1: Properly indent the `alloca' CPP section.
13684
8c44d3ec
AD
136852000-03-16 Akim Demaille <akim@epita.fr>
13686
13687 Do not hard code values of directories in `configure.in'.
13688 Update the `configure' tool chain.
13689
13690 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
13691 src/makefile.am.
13692 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
13693 (AC_OUTPUT): Add m4/Makefile.
13694 Bump to bison 1.28a, 1.29 has never been released.
13695 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
13696 handled via src/Makefile.am.
13697 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
13698 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
13699 autoheader.
13700 * Makefile.am (SUBDIRS): Add m4.
13701 (ACLOCAL_AM_FLAGS): New variable.
13702 (AUTOMAKE_OPTIONS): Add check-news.
13703 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
13704 the proper line number and file name.
13705 (DEFS): Propagate the location of bison library files and of the
13706 locale files.
13707 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
13708 builddir.
13709 * acinclude.m4: Remove, replaced by the directory m4.
13710 * m4/Makefile.am (EXTRA_DIST): New variable.
13711 * m4/gettext.m4: New file, from the fileutils.
13712 * m4/lcmessage.m4: Likewise
13713 * m4/progtest.m4: Likewise.
13714 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
13715
f95997e7
AD
137162000-03-10 Akim Demaille <akim@epita.fr>
13717
13718 * src/closure.c:
13719 Formatting changes of various comments.
13720 Respect the GNU coding standards at various places.
13721 Don't use `_()' when no translation is needed.
13722
137231999-12-13 Jesse Thilo <jthilo@gnu.org>
13724
13725 * src/files.c:
13726 OS/2 honors TMPDIR environment variable.
13727
137281999-12-13 Jesse Thilo <jthilo@gnu.org>
13729
13730 * doc/bison.texinfo: Tweaked spelling and grammar.
13731 Updated ISBN.
13732 Removed reference to price of printed copy.
13733 Mention BISON_SIMPLE and BISON_HAIRY.
13734
137351999-12-13 Jesse Thilo <jthilo@gnu.org>
13736
13737 * configure.in, NEWS:
13738 Bison 1.29 released.
13739
137401999-10-27 Jesse Thilo <jthilo@gnu.org>
13741
13742 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
13743 Added reference card.
13744
137451999-07-26 Jesse Thilo <jthilo@gnu.org>
13746
13747 * po/ru.po: Added Russian translation.
13748
137491999-07-26 Jesse Thilo <jthilo@gnu.org>
13750
13751 * configure.in: Added Russian translation.
13752
137531999-07-06 Jesse Thilo <jthilo@gnu.org>
13754
13755 * configure.in, NEWS, README:
13756 Released version 1.28.
13757
137581999-06-14 Jesse Thilo <jthilo@gnu.org>
13759
13760 * src/system.h:
13761 Squashed redefinition warning on some systems.
13762
13763 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
13764 Have configure build version string instead of relying on ANSI string
13765 concatentation.
13766
137671999-06-14 Jesse Thilo <jthilo@gnu.org>
13768
13769 * po/POTFILES.in: Got rid of version.c.
13770
137711999-06-14 Jesse Thilo <jthilo@gnu.org>
13772
13773 * acconfig.h, configure.in:
13774 Have configure build version string instead of relying on ANSI string
13775 concatentation.
13776
137771999-06-08 Jesse Thilo <jthilo@gnu.org>
13778
13779 * doc/bison.1:
13780 Dropped mention of `+' for long-named options.
13781
137821999-05-30 Jesse Thilo <jthilo@gnu.org>
13783
13784 * src/files.c: Added <unistd.h> for unlink().
13785
13786 * src/Makefile.am, src/system.h:
13787 I18n fixes.
13788
137891999-05-30 Jesse Thilo <jthilo@gnu.org>
13790
13791 * README: Added a FAQ list.
13792
13793 * configure.in, acconfig.h:
13794 I18n fixes.
13795
137961999-05-30 Jesse Thilo <jthilo@gnu.org>
13797
13798 * doc/FAQ, doc/Makefile.am:
13799 Added a FAQ list.
13800
138011999-05-19 Jesse Thilo <jthilo@gnu.org>
13802
13803 * src/alloc.h, src/symtab.h, src/version.c:
13804 Protected inclusion of "config.h" with HAVE_CONFIG_H.
13805
138061999-04-18 Jesse Thilo <jthilo@gnu.org>
13807
13808 * src/.cvsignore, src/Makefile.am:
13809 Reorganized: sources in `src', documentation in `doc'.
13810
13811 * src/lex.c (literalchar):
13812 fixed the code for escaping double quotes (thanks
13813 Jonathan Czisny.)
13814
138151999-04-18 Jesse Thilo <jthilo@gnu.org>
13816
13817 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
13818 Adjusted paths to reflect directory reorganization.
13819
138201999-04-18 Jesse Thilo <jthilo@gnu.org>
13821
13822 * doc/.cvsignore, doc/Makefile.am:
13823 Reorganized: sources in `src', documentation in `doc'.
13824
138251999-04-18 Jesse Thilo <jthilo@gnu.org>
13826
13827 * configure.in:
13828 Updated AC_INIT file to reflect directory reorganization.
13829
13830 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
13831 Reorganized: sources in `src', documentation in `doc'.
13832
138331999-04-13 Jesse Thilo <jthilo@gnu.org>
13834
13835 * src/allocate.c:
13836 Don't declare calloc() and realloc() if not necessary.
13837
138381999-04-13 Jesse Thilo <jthilo@gnu.org>
13839
13840 * configure.in, acconfig.h, acinclude.m4:
13841 Don't declare calloc() and realloc() if not necessary.
13842
138431999-03-23 Jesse Thilo <jthilo@gnu.org>
13844
13845 * po/.cvsignore: Added i18n support.
13846
138471999-03-23 Jesse Thilo <jthilo@gnu.org>
13848
13849 * acconfig.h, configure.in, Makefile.am:
13850 Added i18n support.
13851
138521999-03-22 Jesse Thilo <jthilo@gnu.org>
13853
13854 * src/bison.s1: Fixed #line numbers.
13855
138561999-03-15 Jesse Thilo <jthilo@gnu.org>
13857
13858 * po/es.po, po/fr.po, po/nl.po, po/de.po:
13859 Added PO files from Translation Project.
13860
138611999-03-03 Jesse Thilo <jthilo@gnu.org>
13862
13863 * Makefile.am:
13864 Added support for non-ANSI compilers (ansi2knr).
13865
138661999-02-16 Jesse Thilo <jthilo@gnu.org>
13867
13868 * configure.in: Bumped version number to 1.27.
13869
13870 * Makefile.am:
13871 Added `bison.simple' to list of files removed by `make distclean'.
13872
138731999-02-12 Jesse Thilo <jthilo@gnu.org>
13874
13875 * src/files.c, src/files.h:
13876 Defined locations of parser files in config.h instead of Makefile.
13877
138781999-02-12 Jesse Thilo <jthilo@gnu.org>
13879
13880 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
13881 Defined locations of parser files in config.h instead of Makefile.
13882
138831999-02-09 Jesse Thilo <jthilo@gnu.org>
13884
13885 * Makefile.am:
13886 Removed inappropriate use of $< macro.
13887
138881999-02-05 Jesse Thilo <jthilo@gnu.org>
13889
13890 * po/Makefile.in.in, po/POTFILES.in:
13891 Add `po' directory skeleton.
13892
138931999-01-27 Jesse Thilo <jthilo@gnu.org>
13894
13895 * README: Document help-bison list.
13896
13897 * configure.in: Add check for mkstemp().
13898
138991999-01-20 Jesse Thilo <jthilo@gnu.org>
13900
13901 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
13902 Hush a few compiler warnings.
13903
13904 * src/files.c:
13905 Add tryclose(), which verifies that fclose was successful.
13906 Hush a couple of compiler warnings.
13907
139081999-01-20 Jesse Thilo <jthilo@gnu.org>
13909
13910 * Makefile.am, OChangeLog:
13911 ChangeLog is now automatically generated. Include the old version as
13912 OChangeLog.
13913
139141999-01-14 Jesse Thilo <jthilo@gnu.org>
13915
13916 * 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:
13917 Update FSF address.
13918
139191999-01-14 Jesse Thilo <jthilo@gnu.org>
13920
13921 * doc/bison.texinfo: Fix formatting glitch.
13922
13923 * doc/bison.texinfo: Update FSF address.
13924
139251999-01-14 Jesse Thilo <jthilo@gnu.org>
13926
13927 * acconfig.h: Update FSF address.
13928
139291999-01-08 Jesse Thilo <jthilo@gnu.org>
13930
13931 * src/system.h:
13932 Don't define PACKAGE here, since config.h defines it.
13933
139341998-12-30 Jesse Thilo <jthilo@gnu.org>
13935
13936 * src/reader.c: Update copyright date.
13937
13938 * src/main.c:
13939 Ditch sprintf to statically-sized buffers in fatal/warn functions in
13940 favor of output directly to stderr (avoids buffer overruns).
13941
13942 * src/reader.c: Some checks for premature EOF.
13943
13944 * 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:
13945 Use prototypes if the compiler understands them.
13946
13947 * src/files.c: Honor TMPDIR on Unix hosts.
13948 Use prototypes if the compiler understands them.
13949
13950 * src/reader.c:
13951 Fix a couple of buffer overrun bugs.
13952 Use prototypes if the compiler understands them.
13953
13954 * src/system.h: Include unistd.h and ctype.h.
13955 Use #ifdef instead of #if for NLS symbols.
13956
139571998-12-30 Jesse Thilo <jthilo@gnu.org>
13958
13959 * doc/bison.texinfo:
13960 Delete comment "consider using @set for edition number, etc..." since
13961 we now are doing so.
13962
139631998-12-30 Jesse Thilo <jthilo@gnu.org>
13964
13965 * configure.in:
13966 Use prototypes if the compiler understands them.
13967
13968 * NEWS: Document 1.26 highlights.
13969
13970 * Makefile.am: Require Automake 1.3 or later.
13971
13972 * acconfig.h:
13973 Use prototypes if the compiler understands them.
13974
139751998-12-29 Jesse Thilo <jthilo@gnu.org>
13976
13977 * src/version.c:
13978 Use VERSION symbol from automake for version number.
13979
139801998-12-29 Jesse Thilo <jthilo@gnu.org>
13981
13982 * acconfig.h, configure.in, version.cin:
13983 Use VERSION symbol from automake for version number.
13984
139851998-11-28 Jesse Thilo <jthilo@gnu.org>
13986
13987 * Makefile.am:
13988 Distribute original version of simple parser (bison.s1), not built
13989 version (bison.simple).
13990
139911998-11-28 Jesse Thilo <jthilo@gnu.org>
13992
13993 * doc/bison.texinfo: Add info dir entry.
13994
13995 * doc/bison.texinfo:
13996 Let automake put version number into documentation.
13997
139981998-11-26 Jesse Thilo <jthilo@gnu.org>
13999
14000 * src/bison.cld, src/build.com, src/vmshlp.mar:
14001 Add non-RCS files from /gd/gnu/bison.
14002
140031998-11-26 Jesse Thilo <jthilo@gnu.org>
14004
14005 * doc/bison.1:
14006 Document the BISON_HAIRY and BISON_SIMPLE variables.
14007
140081998-11-25 Jesse Thilo <jthilo@gnu.org>
14009
14010 * src/version.c: Build version.c automatically.
14011
14012 * src/reader.c:
14013 Fix token numbering (used to start at 258, not 257).
14014
14015 * src/system.h: Include config.h.
14016
14017 * src/getargs.c: Update bug report address.
14018
14019 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
14020 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
14021
140221998-11-25 Jesse Thilo <jthilo@gnu.org>
14023
14024 * Makefile.am:
14025 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
14026
14027 * configure.in, version.cin:
14028 Build version.c automatically.
14029
14030 * AUTHORS: Add AUTHORS file.
14031
14032 * README: Update bug report address.
14033
14034 * bison.simple:
14035 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
14036
14037 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
14038 Add automake stuff.
14039
140401998-11-25 Jesse Thilo <jthilo@gnu.org>
14041
14042 * doc/bison.texinfo: Clean up some formatting.
14043
140441998-05-05 Richard Stallman <rms@gnu.org>
14045
14046 * doc/bison.texinfo:
14047 Explain better why to make a pure parser.
14048
140491998-01-05 Richard Stallman <rms@gnu.org>
14050
14051 * src/files.c (openfiles):
14052 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
14053 find a temporary directory, if possible. Do not unlink files while
14054 they are open.
14055
140561997-08-25 Richard Stallman <rms@gnu.org>
14057
14058 * src/reader.c (stack_offset;):
14059 Change some warni to warns.
14060
14061 * src/lex.c (literalchar): Use warns, not warni.
14062
140631997-06-28 Richard Stallman <rms@gnu.org>
14064
14065 * src/bison.s1: Add a Bison version comment.
14066
14067 * src/main.c (fatal, warn, berror):
14068 Use program_name.
14069
140701997-06-28 Richard Stallman <rms@gnu.org>
14071
14072 * Makefile.in (bison_version): New variable.
14073 (dist): Use that variable.
14074 (bison.s1): Substitute the Bison version into bison.simple.
14075
14076 * bison.simple: Add a Bison version comment.
14077
140781997-06-18 Richard Stallman <rms@gnu.org>
14079
14080 * src/main.c (fatal, warn, berror):
14081 Make error messages standard.
14082 (toomany): Improve error message text.
14083
14084 * 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:
14085 new.h renamed to alloc.h.
14086
140871997-06-18 Richard Stallman <rms@gnu.org>
14088
14089 * Makefile.in: new.h renamed to alloc.h.
14090
140911997-05-24 Richard Stallman <rms@gnu.org>
14092
14093 * src/lex.c (literalchar):
14094 Fix the code for escaping \, " and '.
14095
14096 (lex): Avoid trouble when there are many chars
14097 to discard in a char literal with just several chars in it.
14098
140991997-05-17 Richard Stallman <rms@gnu.org>
14100
14101 * src/bison.s1:
14102 Use malloc, if using alloca is troublesome.
14103 (YYSTACK_USE_ALLOCA): New flag macro.
14104 Define it for some systems and compilers.
14105 (YYSTACK_ALLOC): New macro.
14106 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14107 If it was malloc'd, free it.
14108
141091997-05-17 Richard Stallman <rms@gnu.org>
14110
14111 * bison.simple:
14112 Use malloc, if using alloca is troublesome.
14113 (YYSTACK_USE_ALLOCA): New flag macro.
14114 Define it for some systems and compilers.
14115 (YYSTACK_ALLOC): New macro.
14116 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14117 If it was malloc'd, free it.
14118
141191997-04-23 Richard Stallman <rms@gnu.org>
14120
14121 * src/bison.s1:
14122 (alloca) [__hpux]: Always define as __builtin_alloca.
14123
141241997-04-23 Richard Stallman <rms@gnu.org>
14125
14126 * bison.simple:
14127 (alloca) [__hpux]: Always define as __builtin_alloca.
14128
141291997-04-22 Richard Stallman <rms@gnu.org>
14130
14131 * src/bison.s1:
14132 [__hpux]: Include alloca.h (right for HPUX 10)
14133 instead of declaring alloca (right for HPUX 9).
14134
14135 * src/bison.s1 (__yy_memcpy):
14136 Declare arg `count' as unsigned int.
14137 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14138
141391997-04-22 Richard Stallman <rms@gnu.org>
14140
14141 * bison.simple:
14142 [__hpux]: Include alloca.h (right for HPUX 10)
14143 instead of declaring alloca (right for HPUX 9).
14144
14145 * bison.simple (__yy_memcpy):
14146 Declare arg `count' as unsigned int.
14147 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14148
141491997-01-03 Richard Stallman <rms@gnu.org>
14150
14151 * src/allocate.c: [__STDC__ or _MSC_VER]:
14152 Declare calloc and realloc to return void *.
14153
141541997-01-02 Richard Stallman <rms@gnu.org>
14155
14156 * src/system.h:
14157 [_MSC_VER]: Include stdlib.h and process.h.
14158 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
14159
14160 * src/main.c (main): Return FAILURE as a value.
14161 (printable_version): Declare arg as int, not char.
14162
141631997-01-02 Richard Stallman <rms@gnu.org>
14164
14165 * Makefile.in (dist):
14166 Explicitly check for symlinks, and copy them.
14167
141681996-12-19 Richard Stallman <rms@gnu.org>
14169
14170 * src/files.c:
14171 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
14172
141731996-12-18 Paul Eggert <eggert@gnu.org>
14174
14175 * src/bison.s1 (yyparse):
14176 If __GNUC__ and YYPARSE_PARAM are both defined,
14177 declare yyparse to have a void * argument.
14178
141791996-12-18 Paul Eggert <eggert@gnu.org>
14180
14181 * bison.simple (yyparse):
14182 If __GNUC__ and YYPARSE_PARAM are both defined,
14183 declare yyparse to have a void * argument.
14184
141851996-12-17 Richard Stallman <rms@gnu.org>
14186
14187 * src/reduce.c (nbits): Add some casts.
14188
141891996-08-12 Richard Stallman <rms@gnu.org>
14190
14191 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
14192
141931996-08-12 Richard Stallman <rms@gnu.org>
14194
14195 * bison.simple: Test _MSDOS as well as _MSDOS_.
14196
141971996-07-31 Richard Stallman <rms@gnu.org>
14198
14199 * src/bison.s1:
14200 [__sun && __i386]: Include alloca.h.
14201
142021996-07-31 Richard Stallman <rms@gnu.org>
14203
14204 * bison.simple:
14205 [__sun && __i386]: Include alloca.h.
14206
142071996-07-30 Richard Stallman <rms@gnu.org>
14208
14209 * src/bison.s1: Comment change.
14210
14211 * src/bison.s1: Test _MSDOS_, not MSDOS.
14212
142131996-07-30 Richard Stallman <rms@gnu.org>
14214
14215 * bison.simple: Comment change.
14216
14217 * bison.simple: Test _MSDOS_, not MSDOS.
14218
142191996-06-01 Richard Stallman <rms@gnu.org>
14220
14221 * 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:
14222 Insert `_' macro around many string constants.
14223
14224 * src/main.c:
14225 Insert `_' macro around many string constants.
14226
14227 (main): Call setlocale, bindtextdomain and textdomain.
14228
14229 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
14230 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
14231 [ENABLE_NLS]: Include libintl.h.
14232 [ENABLE_NLS] (gettext): Define.
14233 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
14234 (N_, PACKAGE, LOCALEDIR): New macros.
14235
142361996-06-01 Richard Stallman <rms@gnu.org>
14237
14238 * POTFILES.in: New file.
14239
14240 * Makefile.in (allocate.o):
14241 Define target explicitly.
14242
14243 * Makefile.in (CFLAGS): Set to @CFLAGS@.
14244 (LDFLAGS): Set to @LDFLAGS@.
14245 (configure): Run autoconf only if preceding `cd' succeeds.
14246 (bison.s1): Redirect output to temporary file then move the
14247 temporary to the target, rather than redirecting directly to bison.s1.
14248 (clean): Remove config.status and config.log.
14249 (distclean): Don't remove config.status here.
14250
142511996-05-12 Richard Stallman <rms@gnu.org>
14252
14253 * src/bison.s1:
14254 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14255
142561996-05-12 Richard Stallman <rms@gnu.org>
14257
14258 * bison.simple:
14259 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14260
142611996-05-11 Richard Stallman <rms@gnu.org>
14262
14263 * src/bison.s1 (__yy_memcpy):
14264 Really reorder the args, as was supposedly done on Feb 14 1995.
14265 (yyparse): Calls changed accordingly.
14266
142671996-05-11 Richard Stallman <rms@gnu.org>
14268
14269 * Makefile.in (dist): Don't use $(srcdir).
14270
14271 * bison.simple (__yy_memcpy):
14272 Really reorder the args, as was supposedly done on Feb 14 1995.
14273 (yyparse): Calls changed accordingly.
14274
142751996-01-27 Richard Stallman <rms@gnu.org>
14276
14277 * src/output.c (output_rule_data):
14278 Test YYERROR_VERBOSE in the conditional
14279 around the definition of ttyname.
14280
142811995-12-29 Richard Stallman <rms@gnu.org>
14282
14283 * src/bison.s1:
14284 Fix line numbers in #line commands.
14285
142861995-12-29 Richard Stallman <rms@gnu.org>
14287
14288 * bison.simple:
14289 Fix line numbers in #line commands.
14290
142911995-12-27 Richard Stallman <rms@gnu.org>
14292
14293 * src/bison.s1 (YYPARSE_PARAM_DECL):
14294 In C++, make it always null.
14295 (YYPARSE_PARAM_ARG): New macro.
14296 (yyparse): Use YYPARSE_PARAM_ARG.
14297
142981995-12-27 Richard Stallman <rms@gnu.org>
14299
14300 * bison.simple (YYPARSE_PARAM_DECL):
14301 In C++, make it always null.
14302 (YYPARSE_PARAM_ARG): New macro.
14303 (yyparse): Use YYPARSE_PARAM_ARG.
14304
143051995-11-29 Richard Stallman <rms@gnu.org>
14306
14307 * doc/bison.texinfo:
14308 Describe literal string tokens, %raw, %no_lines, %token_table.
14309
143101995-11-29 Daniel Hagerty <hag@gnu.org>
14311
14312 * doc/bison.texinfo: Fixed update date
14313
143141995-10-16 Richard Stallman <rms@gnu.org>
14315
14316 * src/version.c: Version 1.25.
14317
143181995-10-16 Richard Stallman <rms@gnu.org>
14319
14320 * NEWS: *** empty log message ***
14321
143221995-10-16 Richard Stallman <rms@gnu.org>
14323
14324 * doc/bison.1, doc/bison.rnh:
14325 Add new options.
14326
143271995-10-15 Richard Stallman <rms@gnu.org>
14328
14329 * src/vmsgetargs.c, src/getargs.c:
14330 Added -n, -k, and -raw switches.
14331 (noparserflag, toknumflag, rawtoknumflag): New variables.
14332
14333 * src/symtab.h (SALIAS):
14334 New #define for adding aliases to %token.
14335 (struct bucket): Added `alias' field.
14336
14337 * src/reduce.c (reduce_grammar):
14338 Revise error message.
14339 (print_notices): Remove final `.' from error message.
14340
14341 * src/reader.c (reader_output_yylsp):
14342 New function.
14343 (readgram): Use `#if 0' around code that accepted %command
14344 inside grammar rules: The documentation doesn't allow it,
14345 and it will fail since the %command processors scan for the next %.
14346 (parse_token_decl): Extended the %token
14347 declaration to allow a multi-character symbol as an alias.
14348 (parse_thong_decl): New function.
14349 (read_declarations): Added %thong declarations.
14350 (read_declarations): Handle NOOP to deal with allowing
14351 % declarations as another means to specify the flags.
14352 (readgram): Allow %prec prior to semantics embedded in a rule.
14353 (skip_to_char, read_declarations, copy_definition)
14354 (parse_token_decl, parse_start_decl, parse_type_decl)
14355 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
14356 (get_type_name, copy_guard, copy_action, readgram)
14357 (get_type, packsymbols): Revised most error messages.
14358 Changed `fatal' to `warnxxx' to avoid aborting for error.
14359 Revised and use multiple warnxxx functions to avoid using VARARGS1.
14360 (read_declarations): Improve the error message for
14361 an invalid character. Do not abort.
14362 (read_declarations, copy_guard, copy_action): Use
14363 printable_version to avoid unprintable characters in printed output.
14364 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
14365 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
14366 Allow the type of a non-terminal can be given
14367 more than once, as long as all specifications give the same type.
14368
14369 * src/output.c:
14370 (output_headers, output_trailers, output, output_gram)
14371 (output_rule_data): Implement noparserflag variable.
14372 Implement toknumflag variable.
14373 (output): Call reader_output_yylsp to output LTYPESTR.
14374
14375 * src/main.c (main):
14376 If reader sees an error, don't process the grammar.
14377 (fatals): Updated to not use VARARGS1.
14378 (printable_version, int_to_string, warn, warni, warns, warnss)
14379 (warnsss): New error reporting functions. Avoid abort for error.
14380
14381 * src/lex.h:
14382 Added THONG and NOOP for alias processing.
14383 Added SETOPT for the new code that allows setting options with %flags.
14384
14385 * src/lex.c:
14386 Include getopt.h. Add some extern decls.
14387 (safegetc): New function to deal with EOF gracefully.
14388 (literalchar); new function to deal with reading \ escapes.
14389 (lex): Use literalchar.
14390 (lex): Implemented "..." tokens.
14391 (literalchar, lex, parse_percent_token): Made tokenbuffer
14392 always contain the token. This includes growing the token
14393 buffer while reading an integer.
14394 (parse_percent_token): Replaced if-else statement with percent_table.
14395 (parse_percent_token): Added % declarations as another
14396 way to specify the flags -n, -l, and -r. Also added hooks for
14397 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
14398 major changes to files.c.
14399 (lex) Retain in the incoming stream a character following
14400 an incorrect '/'.
14401 (skip_white_space, lex): Revised most error messages
14402 and changed fatal to warn to avoid aborting.
14403 (percent_table): Added %thong declarations.
14404
14405 * src/gram.h: Comment changes.
14406
14407 * src/files.c (openfiles, open_extra_files, done):
14408 Add faction flag
14409 and actfile file. Handle noparserflag. Both for -n switch.
14410
14411 * src/conflicts.c (resolve_sr_conflict):
14412 Remove use of alloca.
14413
144141995-06-01 Jim Meyering <meyering@gnu.org>
14415
14416 * doc/bison.texinfo: *** empty log message ***
14417
144181995-05-06 Richard Stallman <rms@gnu.org>
14419
14420 * src/bison.s1: Comment change.
14421
144221995-05-06 Richard Stallman <rms@gnu.org>
14423
14424 * bison.simple: Comment change.
14425
144261995-05-03 Richard Stallman <rms@gnu.org>
14427
14428 * src/version.c: Version now 1.24.
14429
14430 * src/bison.s1: Change distribution terms.
14431
14432 * src/version.c: Version now 1.23.
14433
144341995-05-03 Richard Stallman <rms@gnu.org>
14435
14436 * doc/bison.texinfo:
14437 Rewrite "Conditions for Using Bison".
14438 Update version to 1.24.
14439
144401995-05-03 Richard Stallman <rms@gnu.org>
14441
14442 * bison.simple: Change distribution terms.
14443
144441995-02-23 Richard Stallman <rms@gnu.org>
14445
14446 * src/files.c: Test __VMS_POSIX as well as VMS.
14447
144481995-02-14 Jim Meyering <meyering@gnu.org>
14449
14450 * src/bison.s1 (__yy_memcpy):
14451 Renamed from __yy_bcopy to avoid
14452 confusion. Reverse FROM and TO arguments to be consistent with
14453 those of memcpy.
14454
144551995-02-14 Jim Meyering <meyering@gnu.org>
14456
14457 * bison.simple (__yy_memcpy):
14458 Renamed from __yy_bcopy to avoid
14459 confusion. Reverse FROM and TO arguments to be consistent with
14460 those of memcpy.
14461
144621994-11-10 David J. MacKenzie <djm@gnu.org>
14463
14464 * NEWS: reformat
14465
14466 * NEWS: New file.
14467
14468 * Makefile.in (DISTFILES): Include NEWS.
14469
14470 * Makefile.in (DISTFILES):
14471 Include install-sh, not install.sh.
14472
14473 * configure.in: Update to Autoconf v2 macro names.
14474
144751994-10-05 David J. MacKenzie <djm@gnu.org>
14476
14477 * Makefile.in: fix typo
14478
14479 * Makefile.in (prefix, exec_prefix):
14480 Let configure set them.
14481
144821994-09-28 David J. MacKenzie <djm@gnu.org>
14483
14484 * Makefile.in: Set datadir to $(prefix)/share.
14485
144861994-09-15 Richard Stallman <rms@gnu.org>
14487
14488 * src/bison.s1:
14489 Update copyright notice and GPL version.
14490
144911994-09-15 Richard Stallman <rms@gnu.org>
14492
14493 * bison.simple:
14494 Update copyright notice and GPL version.
14495
144961994-07-12 Richard Stallman <rms@gnu.org>
14497
14498 * src/reduce.c, src/reader.c:
14499 entered into RCS
14500
145011994-05-05 David J. MacKenzie <djm@gnu.org>
14502
14503 * Makefile.in: entered into RCS
14504
145051994-03-26 Richard Stallman <rms@gnu.org>
14506
14507 * src/bison.s1: entered into RCS
14508
145091994-03-26 Richard Stallman <rms@gnu.org>
14510
14511 * bison.simple: entered into RCS
14512
145131994-03-25 Richard Stallman <rms@gnu.org>
14514
14515 * src/main.c: entered into RCS
14516
145171994-03-24 Richard Stallman <rms@gnu.org>
14518
14519 * src/conflicts.c: entered into RCS
14520
145211994-01-02 Richard Stallman <rms@gnu.org>
14522
14523 * Makefile.in: *** empty log message ***
14524
145251993-11-21 Richard Stallman <rms@gnu.org>
14526
14527 * src/bison.s1: *** empty log message ***
14528
145291993-11-21 Richard Stallman <rms@gnu.org>
14530
14531 * doc/bison.texinfo: entered into RCS
14532
14533 * doc/bison.texinfo: *** empty log message ***
14534
145351993-11-21 Richard Stallman <rms@gnu.org>
14536
14537 * bison.simple: *** empty log message ***
14538
145391993-10-25 David J. MacKenzie <djm@gnu.org>
14540
14541 * doc/bison.texinfo: *** empty log message ***
14542
145431993-10-19 Richard Stallman <rms@gnu.org>
14544
14545 * src/bison.s1: *** empty log message ***
14546
145471993-10-19 Richard Stallman <rms@gnu.org>
14548
14549 * bison.simple: *** empty log message ***
14550
145511993-10-14 Richard Stallman <rms@gnu.org>
14552
14553 * src/bison.s1: *** empty log message ***
14554
145551993-10-14 Richard Stallman <rms@gnu.org>
14556
14557 * bison.simple: *** empty log message ***
14558
145591993-09-14 David J. MacKenzie <djm@gnu.org>
14560
14561 * doc/bison.texinfo: *** empty log message ***
14562
145631993-09-13 Noah Friedman <friedman@gnu.org>
14564
14565 * Makefile.in: *** empty log message ***
14566
145671993-09-10 Richard Stallman <rms@gnu.org>
14568
14569 * src/conflicts.c: *** empty log message ***
14570
14571 * src/system.h: entered into RCS
14572
145731993-09-10 Richard Stallman <rms@gnu.org>
14574
14575 * doc/bison.1: entered into RCS
14576
145771993-09-06 Noah Friedman <friedman@gnu.org>
14578
14579 * src/version.c: entered into RCS
14580
145811993-09-06 Noah Friedman <friedman@gnu.org>
14582
14583 * Makefile.in: *** empty log message ***
14584
145851993-07-30 David J. MacKenzie <djm@gnu.org>
14586
14587 * Makefile.in: *** empty log message ***
14588
145891993-07-24 Richard Stallman <rms@gnu.org>
14590
14591 * src/bison.s1: *** empty log message ***
14592
145931993-07-24 Richard Stallman <rms@gnu.org>
14594
14595 * bison.simple: *** empty log message ***
14596
145971993-07-08 David J. MacKenzie <djm@gnu.org>
14598
14599 * Makefile.in: *** empty log message ***
14600
146011993-07-04 Richard Stallman <rms@gnu.org>
14602
14603 * src/bison.s1: *** empty log message ***
14604
146051993-07-04 Richard Stallman <rms@gnu.org>
14606
14607 * bison.simple: *** empty log message ***
14608
146091993-06-26 David J. MacKenzie <djm@gnu.org>
14610
14611 * src/getargs.c: entered into RCS
14612
146131993-06-26 David J. MacKenzie <djm@gnu.org>
14614
14615 * doc/bison.texinfo: *** empty log message ***
14616
14617 * doc/bison.1: New file.
14618
146191993-06-25 Richard Stallman <rms@gnu.org>
14620
14621 * src/getargs.c: New file.
14622
146231993-06-16 Richard Stallman <rms@gnu.org>
14624
14625 * src/bison.s1: *** empty log message ***
14626
146271993-06-16 Richard Stallman <rms@gnu.org>
14628
14629 * bison.simple: *** empty log message ***
14630
146311993-06-03 Richard Stallman <rms@gnu.org>
14632
14633 * src/bison.s1: New file.
14634
146351993-06-03 Richard Stallman <rms@gnu.org>
14636
14637 * doc/bison.texinfo: *** empty log message ***
14638
146391993-06-03 Richard Stallman <rms@gnu.org>
14640
14641 * bison.simple: New file.
14642
146431993-05-19 Richard Stallman <rms@gnu.org>
14644
14645 * doc/bison.texinfo: New file.
14646
146471993-05-07 Noah Friedman <friedman@gnu.org>
14648
14649 * Makefile.in: *** empty log message ***
14650
146511993-04-28 Noah Friedman <friedman@gnu.org>
14652
14653 * src/reader.c: *** empty log message ***
14654
146551993-04-23 Noah Friedman <friedman@gnu.org>
14656
14657 * src/alloc.h: entered into RCS
14658
146591993-04-20 David J. MacKenzie <djm@gnu.org>
14660
14661 * src/version.c: *** empty log message ***
14662
14663 * src/files.c, src/allocate.c:
14664 entered into RCS
14665
14666 * src/reader.c: *** empty log message ***
14667
14668 * src/lex.c: entered into RCS
14669
14670 * src/conflicts.c: New file.
14671
14672 * src/symtab.c: entered into RCS
14673
14674 * src/alloc.h: New file.
14675
14676 * src/LR0.c: entered into RCS
14677
146781993-04-18 Noah Friedman <friedman@gnu.org>
14679
14680 * src/reader.c: New file.
14681
14682 * src/version.c: *** empty log message ***
14683
146841993-04-18 Noah Friedman <friedman@gnu.org>
14685
14686 * Makefile.in: *** empty log message ***
14687
146881993-04-17 Noah Friedman <friedman@gnu.org>
14689
14690 * Makefile.in: *** empty log message ***
14691
146921993-04-15 Richard Stallman <rms@gnu.org>
14693
14694 * src/main.c, src/files.c:
14695 New file.
14696
146971993-04-15 Noah Friedman <friedman@gnu.org>
14698
14699 * configure.in: entered into RCS
14700
14701 * configure.in: *** empty log message ***
14702
14703 * configure.in: New file.
14704
147051993-04-14 Richard Stallman <rms@gnu.org>
14706
14707 * Makefile.in: New file.
14708
147091993-04-13 Richard Stallman <rms@gnu.org>
14710
14711 * src/version.c: New file.
14712
147131993-03-25 Richard Stallman <rms@gnu.org>
14714
14715 * src/output.c: entered into RCS
14716
147171992-09-25 Richard Stallman <rms@gnu.org>
14718
14719 * configure.bat: entered into RCS
14720
147211992-06-22 Richard Stallman <rms@gnu.org>
14722
14723 * src/vmsgetargs.c: entered into RCS
14724
147251992-06-22 Richard Stallman <rms@gnu.org>
14726
14727 * doc/bison.rnh: entered into RCS
14728
147291992-04-20 David J. MacKenzie <djm@gnu.org>
14730
14731 * README: entered into RCS
14732
147331992-01-22 Richard Stallman <rms@gnu.org>
14734
14735 * src/machine.h: entered into RCS
14736
147371991-12-21 Richard Stallman <rms@gnu.org>
14738
14739 * src/lalr.c, src/closure.c:
14740 entered into RCS
14741
147421991-12-20 Richard Stallman <rms@gnu.org>
14743
14744 * src/state.h: entered into RCS
14745
147461991-12-18 Richard Stallman <rms@gnu.org>
14747
14748 * src/print.c, src/nullable.c, src/derives.c:
14749 entered into RCS
14750
147511991-11-03 David J. MacKenzie <djm@gnu.org>
14752
14753 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
14754 entered into RCS
14755
147561988-09-09 Richard Stallman <rms@gnu.org>
14757
14758 * src/bison.hairy: entered into RCS
14759
147601987-12-16 Richard Stallman <rms@gnu.org>
14761
14762 * REFERENCES: entered into RCS
dc546b0f 14763
f294a2c2 14764
04098407 14765 -----
f294a2c2 14766
04098407
PE
14767 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
14768 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
14769 Foundation, Inc.
f294a2c2 14770
04098407
PE
14771 Copying and distribution of this file, with or without
14772 modification, are permitted provided the copyright notice and this
14773 notice are preserved.