]> git.saurik.com Git - bison.git/blame - ChangeLog
Fix bug such that the first pushed token's value and location are
[bison.git] / ChangeLog
CommitLineData
8646b6a3
JD
12006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Fix bug such that the first pushed token's value and location are
4 sometimes overwritten (sometimes by %initial-action) before being used.
5 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
6 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
8 more closely mimic the pull parser logic.
9 Don't copy the pushed token to yychar, yylval, and yylloc until it's
10 time to read a token, which is after any initialization of yylval and
11 yylloc.
12 (gottoken): Rename label to...
13 (yyread_pushed_token): ... for clarity and to avoid infringing on the
14 user namespace.
15
9baf4d74
JD
162006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
17
18 Rearrange initialization of the parser state variables so that the
19 skeleton doesn't have to have a copy for pull mode and another for push
20 mode. This patch also fixes at least a bug such that yylloc was not
21 initialized (with b4_location_initial_line and
22 b4_location_initial_column) upon calling yypush_parse. However, that
23 initialization now overwrites the first token's location;
24 %initial-action assigning @$ already did the same thing, and both bugs
25 will be fixed in a later patch.
26 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
27 (b4_declare_parser_state_variables): Remove initialization of yytoken,
28 yyss, yyvs, yyls, and yystacksize.
29 (yypstate_new): Remove initialization of some yypstate fields: yystate,
30 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
31 yylsp.
32 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
33 yyps->NAME so it can be used in yypush_parse.
34 (yyparse or yypush_parse): For yypush_parse, don't print the
35 "Starting parse" diagnostic for invocations after the first.
36 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
37 yypush_parse, only do it for the first invocation.
38 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
39 initialization to occur in yypush_parse but only on the first
40 invocation.
41
23522164
JD
422006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
43
44 * data/push.c: Add CPP guards around push parser declarations in both
45 the header and the code file.
46 In the code file, move the push parser declarations to the same place
47 they appear in the header file.
48 Clean up the M4 some, especially the inconsistent underquoting in
49 some b4_c_function_def and b4_c_function_decl uses.
50
bb010fe5
JD
512006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
52
53 Encapsulate the push parser state variables into an M4 macro so the
54 push skeleton doesn't have to list them again for pull mode's yyparse.
55 For push mode, remove yypush_parse's local equivalents of these
56 variables to eliminate unnecessary copying between the two sets at
57 run-time. This patch also fixes at least a bug related to multiple
58 %initial-action invocations in push mode.
59 * data/push.c (b4_declare_parser_variables): Rename to...
60 (b4_declare_scanner_communication_variables): ... this for clarity and
61 update both uses.
62 (b4_declare_yyparse_variables): Remove and move its contents to the one
63 spot where it was invoked.
64 (b4_declare_parser_state_variables): New macro containing the parser
65 state variables required by push mode.
66 (struct yypstate): Replace all fields but yynew with
67 b4_declare_parser_state_variables.
68 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
69 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
70 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
71 (yyparse or yypush_parse): For yyparse in pull mode, replace local
72 parser state variable declarations with
73 b4_declare_parser_state_variables.
74 Don't initialize parser state variables when calling yypush_parse since
75 yypstate_new already does that.
76 Invoke the user's initial action only upon the first yypush_parse
77 invocation.
78 Remove all code that copies between the local parser state variables
79 and the yypstate.
80
2d212f8c
JD
812006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
82
83 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
84 prevent a name collision in a future patch where these names will
85 sometimes be #define'd.
86 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
87 since it no longer has the same name as the existing argument.
88 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
89
e6e704dc
JD
902006-12-19 Paolo Bonzini <bonzini@gnu.org>
91 and Joel E. Denny <jdenny@ces.clemson.edu>
92
93 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
94 that the argument is case-insensitive, and there's no `=' here.
95 For the %skeleton entry, mention that %language is better.
96 (Bison Options): Likewise for --language and --skeleton. Move the
97 --skeleton entry so that the `Tuning the parser' section is sorted
98 alphabetically on long options.
99 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
100 %language directive in detail here; cross-reference the %language
101 documentation instead.
102 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
103 `%require "2.3b"' so that the example is always up-to-date.
104 (Bison Symbols): Add entries for %language and %skeleton.
105 * examples/extexi (normalize): Instead of replacing every %require
106 argument with the current Bison version, just substitute for
107 `@value{VERSION}'. This guarantees that we're testing what actually
108 appears in the documentation.
109 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
110 rather than `@VERSION@'.
111
0e021770
PE
1122006-12-18 Paul Eggert <eggert@cs.ucla.edu>
113
fd575f05
PE
114 * NEWS: Reword the %language news a bit, and put it earlier.
115
0e021770
PE
116 * src/getargs.c (skeleton_arg): Last arg is now location const *.
117 Rewrite to simplify the logic.
118 (language_argmatch): Likewise.
fd575f05
PE
119 (program_name): We now own this var.
120 * src/getargs.h (struct bison_language): Use char[] rather than
121 const char *.
0e021770
PE
122
123 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
124 Java is supported.
125 * src/complain.c (program_name): Remove decl; no longer needed.
126 * src/main.c (program_name): Remove; now belongs to getargs.
127
1282006-12-18 Paolo Bonzini <bonzini@gnu.org>
129
130 * NEWS: Document %language.
131
132 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
133
134 * data/c-skel.m4, data/c++-skel.m4: New files.
135 * data/glr.c: Complain on push parsers.
136
137 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
138 over %skeleton.
139 (Directives): Document %language and %skeleton.
140 (Command line): Document -L.
141
142 * examples/extexi: Rewrite %require directive.
143 * examples/calc++/Makefile.am: Pass VERSION to extexi.
144
145 * src/files.c (compute_exts_from_gc): Look in language structure
146 for .y extension.
147 (compute_file_name_parts): Check whether .tab should be added.
148 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
149 (language, skeleton_arg, language_argmatch): New.
150 (long_options): Add --language.
151 (getargs): Use skeleton_arg, add -L/--language.
152 * src/getargs.h: Include location.h.
153 (struct bison_language, language, skeleton_arg, language_argmatch): New.
154 * src/output.c (prepare): Pick default skeleton from struct language.
155 Don't dispatch C skeletons here.
156 * src/parse-gram.y (PERCENT_LANGUAGE): New.
157 (prologue_declaration): Add "%language" rule, use skeleton_arg.
158 * src/scan-gram.l ("%language"): New rule.
159
160 * tests/calc.at: Test %skeleton and %language.
161 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
162 (AT_GLR_IF): Look for %skeleton "glr.cc".
163 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
164 (AT_YACC_IF): Reject %language.
165
5691bf57
PE
1662006-12-18 Paul Eggert <eggert@cs.ucla.edu>
167
db06f0ce
PE
168 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
169 since it wasn't used; only the typedef name 'semantic_type' is needed.
170 Also, omit trailing white space.
171
5691bf57
PE
172 * bootstrap: Sync from coreutils.
173 (gnulib_extra_files): Add build-aux/announce.gen.
174 (slurp): Adjust .gitignore files like .cvsignore files.
175 * build-aux/announce-gen: Remove from CVS, since bootstrap
176 now creates this.
177
791934e4
JD
1782006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
179
180 Make %push-parser imply %pure-parser. This fixes several bugs; see
181 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
182 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
183 pure_parser = true.
184 * data/push.c: Don't bother testing b4_push_if when deciding whether
185 to expand b4_declare_parser_variables globally.
186 (yypush_parse): Likewise in here.
187
188 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
189 (yy_reduce_print): Reformat M4 for readability.
190
ee5abb37
JD
1912006-12-15 Bob Rossi <bob@brasko.net>
192 and Joel Denny <jdenny@ces.clemson.edu>
193
194 * data/push.c (yypstate): Add typedef, and update all uses of
195 struct yypstate to just yypstate.
196 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
197
16ca01f9
JD
1982006-12-14 Bob Rossi <bob@brasko.net>
199
200 * data/push.c (yypush_parse): Declare prototype regardless of
201 %locations option.
202
ab8e7e1a
JD
2032006-12-14 Bob Rossi <bob@brasko.net>
204
205 * data/push.c (yyparse): Remove the prototype and the #define when in
206 push-parser mode.
207
9bf32be3
JD
2082006-12-13 Bob Rossi <bob@brasko.net>
209
210 * data/push.c (yypstate_init): Rename to...
211 (yypstate_new): ... this and use b4_c_function_def.
212 (yypstate_delete): New.
213 (yypush_parse): Change parameters yynval and yynlloc to be const.
214 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
215 yypstate_delete functions.
216
f02e2948
JD
2172006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
218
219 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
220 strange test case titles. Reported by Bob Rossi.
221
38eb7751
PE
2222006-12-13 Paul Eggert <eggert@cs.ucla.edu>
223
224 * TODO: Add pointer to Sylvain Schmitz's work on static detection
225 of potential ambiguities in GLR grammers.
226
bd9d212b
JD
2272006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
228
229 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
230 `bison ', use m4_index instead of m4_substr since chopping up a string
231 containing M4-special characters causes problems here.
232
233 Fix a couple of bugs related to special characters in user-specified
234 file names, and make it easier for skeletons to compute output file
235 names with the same file name prefix as Bison-computed output file
236 names.
237 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
238 b4_parser_file_name and b4_spec_defines_file instead of
239 @output_parser_name@ and @output_header_name@, which are now redundant.
240 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
241 b4_parser_file_name, b4_spec_defines_file, and the new
242 @basename(FILENAME@) instead of @output_parser_name@ and
243 @output_header_name@, which inappropriately escaped the file names as
244 C string literals.
245 * src/files.c (all_but_ext): Remove static qualifier.
246 (compute_output_file_names): Move `free (all_but_ext)' to...
247 (output_file_names_free): ... here since all_but_ext is needed later.
248 * src/files.h (all_but_ext): Extern.
249 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
250 exactly what MUSCLE_INSERT_STRING used to do.
251 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
252 characters are escaped properly.
253 * src/output.c (prepare): Define muscle file_name_all_but_ext as
254 all_but_ext.
255 For pkgdatadir muscle, maintain previous functionality by using
256 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
257 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
258 digraphs would never be expanded. Hopefully no one has M4-special
259 characters in his Bison installation path.
260 * src/scan-skel.l: Don't parse @output_header_name@ and
261 @output_parser_name@ anymore since they're now redundant.
262 In @output, use decode_at_digraphs.
263 Parse a new @basename command that invokes last_component.
264 (decode_at_digraphs): New.
265 (BASE_QPUTS): Remove unused.
266 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
267 (Output file name): New tests.
268
3f7ca628
JD
2692006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
270
271 Warn about output files that are generated by the skeletons and that
272 conflict with other output files.
273 * data/glr.c: Don't generate the header file here when glr.cc does.
274 * src/files.c (file_names, file_names_count): New static globals.
275 (compute_output_file_names): Invoke output_file_name_check for files
276 not generated by the skeletons and remove existing checks.
277 (output_file_name_check): New function that warns about conflicting
278 output file names.
279 (output_file_names_free): Free file_names.
280 * src/files.h (output_file_name_check): Declare.
281 * src/scan-skel.l: Invoke output_file_name_check for files generated by
282 the skeletons.
283 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
284 (Conflicting output files): New tests.
285
178e123e
PE
2862006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
287
288 * doc/bison.texinfo: Fix a couple of typos.
289
2902006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
291
292 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
293 Rename to...
294 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
295 update all uses.
296 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
297 (yypush_parse): Rename yypvars argument to yyps and remove redundant
298 local pv.
299 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
300 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
301
ea17f233
JD
3022006-12-07 Bob Rossi <bob@brasko.net>
303 and Joel Denny <jdenny@ces.clemson.edu>
304
305 * data/push.c (yypvarsinit): Change return type from void* to struct
306 yypvars*. No longer cast to void* on return.
307 (struct yypvars): Remove yylen since it need not be remembered between
308 yypushparse invocations.
309 (yypushparse): Don't copy between yylen and pv->yylen.
310
55a30bda
JD
3112006-12-05 Bob Rossi <bob@brasko.net>
312
313 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
314 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
315 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
316 (struct yypvars): Remove b4_declare_parser_variables.
317 (yypvarsinit): Remove init code for removed variables.
318 (global scope): Do not declare b4_declare_parser_variables if
319 push or pure mode.
320 (yypushparse): Add b4_declare_parser_variables.
321 Init new local variables, and remove init code for removed
322 yypvars variables.
323 (yyparse): Delete.
324 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
325 and yyparse for other modes.
326 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
327 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
328 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
329 (AT_PURE_LEX_IF): True if pure or push parser.
330
85894313
JD
3312006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
332
333 Document Yacc prologue alternatives and default %destructor's and
334 %printer's as experimental. Don't mention Java yet. Discussed at
335 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
336 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
337 (2.3a): Annotate this entry to say the old forms of these features were
338 also experimental.
339 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
340 Bison Symbols): Say they're experimental. Comment out any mention
341 of Java (we'll want this back eventually).
342
02975b9a
JD
3432006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
344
345 Support a file name argument to %defines. Deprecate `=' in
346 %file-prefix, %name-prefix, and %output. Discussed at
347 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
348 * NEWS (2.3a+): Mention.
349 * doc/bison.texinfo (Decl Summary, Bison Symbols): Add entry for new
350 form of %defines, and remove `=' from entries for %file-prefix,
351 %name-prefix, and %output.
352 * src/parse-gram.y (prologue_declaration): Implement.
353 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
354 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
355 all but one occurrence of %name-prefix.
356 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
357 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
358 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
359 occurrence of each of %file-prefix and %output. Add check for %defines
360 with argument.
361 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
362 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
363 Remove the `=' from %output.
364
287b314e
JD
3652006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
366
367 Don't escape $ in test case titles since Autoconf 2.61 now does that
368 correctly.
369 * tests/actions.at (Default %printer and %destructor are not for error
370 or $undefined): Here.
371 (Default %printer and %destructor are not for $accept): Here.
372 * tests/input.at (Invalid $n and @n): Here.
373
3ebecc24
JD
3742006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
375
376 Rename <!> to <>. Discussed starting at
377 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
378 * NEWS (2.3a+): Update.
379 * doc/bison.texinfo (Freeing Discarded Symbols, Bison Symbols):
380 Update.
381 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
382 * src/scan-gram.l (INITIAL): Implement.
383 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
384 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
385 comment.
386 * tests/actions.at (Default tagless %printer and %destructor,
387 Default tagged and per-type %printer and %destructor,
388 Default %printer and %destructor are not for error or $undefined,
389 Default %printer and %destructor are not for $accept,
390 Default %printer and %destructor for mid-rule values): Update.
391 * tests/input.at (Default %printer and %destructor redeclared,
392 Unused values with default %destructor): Update.
393
26b8a438
JD
3942006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
395
396 Don't let %prec take a nonterminal.
397 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
398 token.
399 * tests/input.at (%prec takes a token): New test checking that %prec
400 won't take a nonterminal.
401
07c39ae9
JD
4022006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
403
405d53b7
JD
404 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
405 it was double-quoted.
07c39ae9
JD
406 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
407 grammar is maintained with Bison's highest standards.
408 * src/getargs.c: Fix some typos in Doxygen comments.
409
580b8926
JD
4102006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
411
412 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
413 later. Reported by Paul Eggert in
414 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
415 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
416 * src/scan-code.l (translate_action): Don't bother invoking
417 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
418 (code_scanner_free): Instead of invoking
419 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
420 which frees more.
421 * src/scan-gram.l (gram_scanner_free): Likewise.
422 * src/scan-skel.l (scan_skel): Likewise.
423
4502eadc
JD
4242006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
425
426 * src/files.c (tr): Change return type to void.
427 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
428 has been called previously for the same key.
429 (muscle_find): Return storage instead of value so that
430 --enable-gcc-warnings doesn't produce warnings that the return discards
431 const. aver that the value and storage are the same since storage
432 could potentially be NULL when value is not.
433 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
434 same as 0.
435
7746c8f6
PE
4362006-11-08 Paul Eggert <eggert@cs.ucla.edu>
437
438 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
439 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
440 us a slightly cleaner distribution, and also works.
441 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
442 gnulib changes.
443
eb095650
PE
4442006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
445 and Paul Eggert <eggert@cs.ucla.edu>
446
447 Don't let Bison leak memory except when it complains.
448 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
449 (spec_defines_file, dir_prefix): Now char *, not const char *,
450 since they are freed.
451 * src/files.c: Likewise.
452 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
453 Likewise.
454 (tr): Now operates in-place. All uses changed.
455 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
456 values.
457 (compute_file_name_parts, compute_output_file_names): Don't store
458 read-only data in variables that will be freed.
459 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
460 src_extension, and header_extension.
461 (output_file_names_free): New public function to free
462 spec_verbose_file, spec_graph_file, spec_defines_file,
463 parser_file_name, and dir_prefix.
464 * src/getargs.c (getargs): Don't store read-only data in variables that
465 will be freed.
466 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
467 (which previously existed but was unused), and quotearg_free.
468 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
469 * src/muscle_tab.c: Likewise.
470 (muscle_entry): Make the value char const *,
471 and add a new storage member that is char * and can be freed.
472 (muscle_entry_free): New private function.
473 (muscle_init): Use it instead of free.
474 (muscle_insert, muscle_grow): Update and use new storage member.
475 (muscle_code_grow): Free the string passed to muscle_grow
476 since it's not needed anymore.
477 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
478 add a new `char *code' member.
479 ("{...}"): Declare semantic type as code.
480 * src/scan-code.h (translate_rule_action):
481 (translate_symbol_action, translate_code, translate_action): Return
482 `char const *' rather than `char *' since external code should not free
483 these strings.
484 * src/scan-code.l: Likewise.
485 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
486 which is "{...}" in the parser.
487 * tests/Makefile.am (maintainer-check-valgrind): Set
488 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
489 Valgrind.
490 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
491 complain.
492 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
493 expecting a non-zero exit status sets --leak-check=summary and
494 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
495 this case, and we don't want to hear about it.
496
ac564be4
PE
4972006-11-08 Paul Eggert <eggert@cs.ucla.edu>
498
499 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
500 instead of from the template, to simplify configuration a bit.
501 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
502 and m4/wint_t.m4, as they are needed with the latest gnulib.
503
17bd8a73
JD
5042006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
505
506 Disable unset/unused mid-rule value warnings by default, and recognize
507 --warnings=midrule-values to enable them. Discussed starting at
508 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
509 * NEWS (2.3a+): Mention.
510 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
511 warnings): Add entry for midrule-values subargument.
512 * src/reader.c (symbol_should_be_used): Don't return true just because
513 the value is a set/used mid-rule value unless
514 --warnings=midrule-values was specified.
515 * tests/input.at (Unused values, Unused values before symbol
516 declarations): Run tests with and without --warnings=midrule-values.
517
518 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
519 than LIST_FREE directly.
520
89eb3c76
JD
5212006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
522
523 Finish implementing --warnings=error, which should not be implied by
524 --warnings=all (or by its synonyms -W and --warnings without
525 subarguments).
526 * src/complain.c (set_warning_issued): New function to report that
527 warnings are being treated as errors and to record an error if so.
528 Invoke...
529 (warn_at, warn): ... here.
530 * src/getargs.c (warnings_args, warnings_types): Reorder so that
531 "error - warnings are errors" does not appear above "all - all of the
532 above".
533 (getargs): For -W and --warnings without subarguments, don't let
534 FLAGS_ARGMATCH set warnings_error in warnings_flag.
535 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
536
ba7560e2
JD
5372006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
538
539 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
540 empty subargument list. For example: `bison --warnings= parser.y'.
541
31283fc3
JD
5422006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
543
544 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
545 the parser header file so that gcc doesn't warn.
546
12e35840
JD
5472006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
548
549 Split the default %destructor/%printer into two kinds: <*> and <!>.
550 Discussed starting at
551 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
552 * NEWS (2.3a+): Mention.
553 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
554 previous change today related to mid-rules.
555 (Bison Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 556 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
557 (TYPE_TAG_ANY): Add as <*>.
558 (TYPE_TAG_NONE): Add as <!>.
559 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
560 for <*> and <!>.
561 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
562 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
563 * src/symlist.c (symbol_list_default_new): Split into tagged and
564 tagless versions.
565 (symbol_list_destructor_set, symbol_list_printer_set): Split
566 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
567 SYMLIST_DEFAULT_TAGLESS.
568 * src/symlist.h: Update symbol_list_default*_new prototypes.
569 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
570 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
571 * src/symtab.c (default_destructor, default_destructor_location,
572 default_printer, default_printer_location): Split each into tagged and
573 tagless versions.
574 (symbol_destructor_get, symbol_destructor_location_get,
575 symbol_printer_get, symbol_printer_location_get): Implement tagged
576 default and tagless default cases.
577 (default_destructor_set, default_printer_set): Split each into tagged
578 and tagless versions.
579 * src/symtab.h: Update prototypes.
580 * tests/actions.at (Default %printer and %destructor): Rename to...
581 (Default tagless %printer and %destructor): ... this, and extend.
582 (Per-type %printer and %destructor): Rename to...
583 (Default tagged and per-type %printer and %destructor): ... this, and
584 extend.
585 (Default %printer and %destructor for user-defined end token): Extend.
586 (Default %printer and %destructor are not for error or $undefined):
587 Update.
588 (Default %printer and %destructor are not for $accept): Update.
589 (Default %printer and %destructor for mid-rule values): Extend.
590 * tests/input.at (Default %printer and %destructor redeclared): Extend.
591 (Unused values with default %destructor): Extend.
592
f91b1629
JD
5932006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
594
595 Don't apply the default %destructor/%printer to an unreferenced midrule
596 value. Mentioned at
597 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
598 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
599 like $@n instead of just @n so that the default %destructor/%printer
600 logic doesn't see them as user-defined symbols.
601 (symbol_is_dummy): Check for both forms of the name.
602 * src/reader.c (packgram): Remove the `$' from each midrule symbol
603 name for which the midrule value is referenced in any action.
604 * tests/actions.at (Default %printer and %destructor for mid-rule
605 values): New test.
606 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
607 for change to dummy symbol names.
608
519d0004
JD
6092006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
610
611 Warn about unset midrule $$ if the corresponding $n is used.
612 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
613 $n usage.
614 (packgram): Before invoking grammar_rule_check on any rule, make sure
615 all actions have already been scanned in order to set `used' flags.
616 Otherwise, checking that a midrule's $$ is set will not always work
617 properly because the midrule check must forward-reference the midrule's
618 parent rule.
619 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
620 warning.
621
a501eca9
JD
6222006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
623
624 More improvements to the documentation of the prologue alternatives:
625 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
626 Bison manual.
627 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
628 some text to clarify the relative importance of the new directives and
629 to show how these directives may be viewed as code labels.
630
2cbe6b7f
JD
6312006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
632
633 Similar to the recently removed %before-header, add %code-top as the
634 alternative to the pre-prologue. Mentioned at
635 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
636 Also, let the prologue alternatives appear in the grammar section.
637 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
638 (prologue_declaration): Move the existing prologue alternatives to...
639 (grammar_declaration): ... here and add %code-top.
640 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
641
642 Clean up and extend documentation for the prologue alternatives.
643 * NEWS (2.3a+): Describe prologue alternatives.
644 * doc/bison.texinfo (Prologue): Move discussion of prologue
645 alternatives to...
646 (Prologue Alternatives): ... this new section, and extend it to discuss
647 all 4 directives in detail.
648 (Bison Symbols): Clean up discussion of prologue alternatives and add
649 %code-top.
650
e557d3ea
JMG
6512006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
652
653 DJGPP specific issues.
654
655 * djgpp/config.bat: config.hin has been moved to lib. Adjust
656 config.bat accordingly.
657 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
658 * djgpp/config.site: Likewise.
659
136a0f76
PB
6602006-10-16 Paolo Bonzini <bonzini@gnu.org>
661
27bd5d67
PB
662 Replace %*-header with %provides, %requires, %code. See discussion at
663 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
664
136a0f76
PB
665 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
666 (b4_user_start_header): Remove.
667 * data/glr.c: Use new macros instead of b4_*start_header
668 and b4_*end_header.
669 * data/glr.cc: Likewise.
670 * data/lalr1.cc: Likewise.
671 * data/push.c: Likewise.
672 * data/yacc.c: Likewise.
673
674 * doc/bison.texinfo: Remove %before-header, rename
675 %{start,end,after}-header to %requires, %provides, %code.
676
677 * src/parse-gram.y: Likewise (also rename token names accordingly).
678 * src/scan-gram.l: Likewise.
679 * tests/actions.at: Likewise.
680
10f429ef
PE
6812006-10-14 Paul Eggert <eggert@cs.ucla.edu>
682
683 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
684 Problem reported by Joel E. Denny.
685
6862006-10-14 Jim Meyering <jim@meyering.net>
687
688 (Sync from coreutils.)
689 Work also when the working directory (with e.g. coreutils sources)
690 is version controlled with git, rather than CVS.
691 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
692 rather than CVS.
693 In messages and comments, say e.g., "checked-out sources",
694 rather than "CVS sources".
695 (version_controlled_file): New function. Work for git as well as
696 for CVS. Don't use grep's -q option.
697 (slurp): Call it here, in place of CVS-specific code.
698
c4bd5bf7
JD
6992006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
700
701 Fix testsuite for ./configure --enable-gcc-warnings:
702 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
703 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
704 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
705 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
706 * test/regression.at (Diagnostic that expects two alternatives):
707 Likewise.
708
46356ea4
PE
7092006-10-12 Paul Eggert <eggert@cs.ucla.edu>
710
231ed89a
PE
711 * bootstrap.conf (gnulib_modules): Add config-h.
712 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
713 worry about HAVE_CONFIG_H.
714 * lib/abitset.c: Likewise.
715 * lib/bitset.c: Likewise.
716 * lib/bitset_stats.c: Likewise.
717 * lib/bitsetv-print.c: Likewise.
718 * lib/bitsetv.c: Likewise.
719 * lib/ebitset.c: Likewise.
720 * lib/get-errno.c: Likewise.
721 * lib/lbitset.c: Likewise.
722 * lib/subpipe.c: Likewise.
723 * lib/timevar.c: Likewise.
724 * lib/vbitset.c: Likewise.
725 * lib/bitset.c: Include "bitset.h" first, to test interface.
726 * lib/bitset_stats.c: Include "bitset_stats.h" first.
727 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
728 * lib/bitsetv.c: Include "bitsetv.h" first.
729 * lib/get-errno.c: Include "get-errno.h" first.
730 * m4/.cvsignore: Add config-h.m4.
731 * tests/actions.at (Default %printer and %destructor for ...):
732 Adjust expected line numbers in output to reflect removal of #if
733 HAVE_CONFIG_H lines.
734 * tests/glr-regression.at (Missed %merge type warnings when ...):
735 Likewise.
736 * tests/regression.at (Braced code in declaration in rules section):
737 Likewise.
738 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
739 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
740 Include <config.h> unconditionally.
741
46356ea4
PE
742 * bootstrap: Sync from coreutils, as follows:
743
744 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
745
746 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
747 variable was sometimes used without being initialized. This
748 messed up the installation of the INSTALL file in some cases.
749
750 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
751
752 * bootstrap (usage, main program, symlink_to_gnulib): Add option
753 --copy. Inspired by a suggestion from Bruno Haible.
754
755 2006-10-03 Jim Meyering <jim@meyering.net>
756
757 * bootstrap: Undo last change to this file, since now gnulib-tool
758 sticks with the automake default in generating dependencies.
759
dd4bf078
PE
7602006-10-12 Paul Eggert <eggert@cs.ucla.edu>
761
cf2a5f7c
PE
762 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
763 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
764
765 * doc/bison.1: Add copyright notice.
766
767 * data/glr.c: Don't include <stdarg.h>; not used.
768
35fe0834
PE
769 * NEWS: The -g and --graph options now output graphs in Graphviz
770 DOT format, not VCG format.
771 * doc/bison.1: Likewise.
772 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
773 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
774 of this change in
775 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
776 * TODO: Remove Graphviz entry.
777 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
778 remove vcg.c, vcg.h, vcg_defaults.h.
779 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
780 * src/graphviz.c, src/graphviz.h: New files.
781 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
782 * src/files.h: Make comment more generic.
783 * src/main.c (main): Likewise.
784 * src/print_graph.h: Likewise.
785 * src/getargs.c (usage): Make usage description more generic.
786 * src/print_graph.c: Include graphviz.h rather than vcg.h.
787 (static_graph, fgraph): Remove. All uses changed to pass
788 arguments instead of sharing a static var.
789 (print_core, print_actions, print_state, print_graph):
790 Output graphviz format rather than VCG format.
791 * tests/.cvsignore: Remove *.vcg; add *.dot.
792 * tests/output.at: Expect *.dot files, not *.vcg files.
793
dd4bf078
PE
794 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
795 accommodates the 2006-10-08 change.
796
efdd7421
PE
7972006-10-11 Bob Rossi <bob@brasko.net>
798
799 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
800 (b4_yyssa, b4_yyerror_range): New macros.
801 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
802 (yypvarsinit): Remove init of removed fields.
803 (yypushparse): Remove use of removed fields; use new macros instead.
804
96a1981a
PE
8052006-10-11 Paul Eggert <eggert@cs.ucla.edu>
806
807 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
808 in a push parser. Reindent slightly to match yacc.c better.
809
8102006-10-11 Bob Rossi <bob@brasko.net>
811
46356ea4
PE
812 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
813 yymsg_alloc fields.
814 (yypvarsinit, yypushparse): Remove init of removed fields.
815 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 816
c1630a8b
PE
8172006-10-09 Paul Eggert <eggert@cs.ucla.edu>
818
819 * THANKS: Add Paolo Bonzini and Bob Rossi.
820
90b9908d
PB
8212006-10-08 Paolo Bonzini <bonzini@gnu.org>
822
823 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
824 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
825 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
826 b4_define_user_cde and uses): Remove.
827 (b4_comment, b4_prefix, b4_sync_start): New.
828 * data/bison.m4: New file, with most of the content removed from c.m4.
829 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
830 * src/output.c (output_skeleton): Pass bison.m4.
831 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
832 only if specified.
833
cf806753
PE
8342006-10-05 Paul Eggert <eggert@cs.ucla.edu>
835
836 Fix test failure reported by Tom Lane in
837 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
838 and try to make such failures easier to catch in the future.
839 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
840 that's now the caller's responsibility.
841 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
842 Set yychar = YYEOF if it's negative.
843 * tests/actions.at (yylex): Abort if asked to read past EOF.
844 * tests/conflicts.at (yylex): Likewise.
845 * tests/cxx-type.at (yylex): Likewise.
846 * tests/glr-regression.at (yylex): Likewise.
847 * tests/input.at (yylex): Likewise.
848 * tests/regression.at (yylex): Likewise.
849 * tests/torture.at (yylex): Likewise.
850
0e2f006a
PE
8512006-10-01 Paul Eggert <eggert@cs.ucla.edu>
852
853 Fix problems with translating English-language diagnostics.
854 * bootstrap: Fix bug introduced in recent bootstrap changes, with
855 respect to bison-runtime pot generation. The YY_ stuff
856 wasn't being captured.
857 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
858 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
859 * runtime-po/POTFILES.in: Add data/push.c.
860
e3ddc1e3
PE
8612006-09-29 Paul Eggert <eggert@cs.ucla.edu>
862
863 Merge bootstrap changes from coreutils.
864
865 2006-09-28 Jim Meyering <jim@meyering.net>
866
867 Automatically generated dependencies are important even
868 when all of the sources in a directory come from gnulib.
869 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
870 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
871
872 2006-09-23 Jim Meyering <jim@meyering.net>
873
874 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
875
876 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
877
878 * bootstrap: Add support for --force.
879 (usage): New function. Describe usage less tersely.
880 (CVS_only_file): New var.
881
01e972b3
PE
8822006-09-21 Paul Eggert <eggert@cs.ucla.edu>
883
884 * data/push.c (YYPUSH_MORE): Make it an enum instead.
885 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
886 Adjust white space and comments to match GNU style better.
887
c63d3e90
PE
8882006-09-20 Bob Rossi <bob@brasko.net>
889
890 * data/push.c (yyresult_get): Remove function.
891 (YYPUSH_MORE): Add #define.
892 (yypushparse): Modify return value.
893
e70f46d1
PE
8942006-09-20 Paul Eggert <eggert@cs.ucla.edu>
895
896 * stamp-h.in: Remove; no longer needed.
897 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
898 Remove config.h, config.hin, intl (no longer created).
899 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
900 stamp-h1.
901
902 Sync bootstrap from coreutils, as follows:
903
904 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
905
906 * bootstrap (symlink_to_gnulib): New function.
907 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
908 to copies-of-gnulib.
909 (cp_mark_as_generated, slurp, gnulib_files):
910 Avoid making a copy if it's the same as the old version.
911 (gnulib_files): Add support for this variable (used by Bison).
912
a92be413
PE
9132006-09-20 Paul Eggert <eggert@cs.ucla.edu>
914
915 * src/getargs.c (usage): Rework to use conventions similar to
916 coreutils, to make translation a bit easier and the code a bit
917 smaller. Problem reported by Tim Van Holder.
918
4f82b42a
PE
9192006-09-15 Paul Eggert <eggert@cs.ucla.edu>
920
3b2942e6
PE
921 Use some of gnulib's new modules, taken from coreutils.
922
923 * bootstrap: Sync from coreutils, except add support for gnulib_files.
924 * bootstrap.conf: New file.
925 (gnulib_modules): Add configmake, inttypes, unistd.
926 (XGETTEXT_OPTIONS): Add complain, complain_at,
927 fatal, fatal_at, warn, warn_at, unexpected_end.
928 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
929 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
930 (gl_EARLY): Add.
931 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
932 (gl_INIT): Add
933 (GNULIB_AUTOCONF_SNIPPET): Remove.
934 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
935 the pickiest.
936 * lib/.cvsignore: Add inttypes_.h.
937 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
938 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
939 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
940 no-longer-necessary initializations.
941 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
942 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
943 use the unistd module.
944 * src/system.h: Likewise.
945 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
946 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
947 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
948 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
949 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
950 * src/system.h: Include inttypes.h unconditionally, now that we
951 use the inttypes module. Don't bother to include stdint.h, since
952 inttypes.h now does that for us.
953 (LOCALEDIR): Remove, now that we use the configmake module.
954 * src/getargs.c: Include configmake.h.
955 * src/main.c: Likewise.
956 * src/output.c: Likewise.
957 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
958 not from $abs_top_builddir, since config.h moved.
959
960
4f82b42a
PE
961 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
962 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
963
964 * src/parse-gram.y (symbol_declaration): Don't put statements
965 before declarations; it's not portable to C89.
966 * src/scan-code.l (handle_action_at): Likewise.
967
968 * src/scan-code.l: Always initialize braces_level; the old code
969 left it uninitialized and therefore had undefined behavior.
970
971 Don't attempt to redefine 'assert', since it runs afoul of
972 systems where standard headers (mistakenly) include <assert.h>.
973 Instead, define and use our own alternative, called 'aver'.
974 * src/reader.c: Don't include assert.h, since we no longer
975 use assert.
976 * src/scan-code.l: Likewise.
977 * src/system.h (assert): Remove, replacing with....
978 (aver): New function, taking a bool arg. All uses changed.
979 * src/tables.c (pack_vector): Ensure that aver arg is bool,
980 not merely an integer.
981
31c10e38
PE
9822006-09-15 Bob Rossi <bob@brasko.net>
983
984 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
985 * data/c.m4 (YYPUSH): New.
986 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
987 * src/getargs.c (push_parser): New var.
988 * src/getargs.h (push_parser): New declaration.
989 * src/output.c (prepare): Add macro insertion of `push_flag'.
990 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
991 (prologue_declaration): Parse %push-parser.
992 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
993 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
994 list of removed lines from the traces observed.
995 (AT_CHECK_CALC_LALR): Added push parser tests.
996
fa7b79c0
PE
9972006-09-13 Paul Eggert <eggert@cs.ucla.edu>
998
21fe08ca
PE
999 * NEWS: Version 2.3a.
1000 * configure.ac (AC_INIT): Likewise.
1001
e8ec4d9b
PE
1002 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
1003 "#define YYSTYPE int" that caused "make maintainer-check" to fail
1004 due to header ordering dependencies. I don't know why the #define
1005 was there.
1006
fa7b79c0
PE
1007 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
1008 runtime cost when YYDEBUG is not defined, and so that some tests
1009 that used to fail now work. Problem and initial suggestion by
1010 Paolo Bonzini.
1011 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
1012 * data/glr.cc (b4_parser_class_name):
1013 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
1014 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
1015 (yydebug_) [YYDEBUG]: New member.
1016 (yycdebug_): Now defined only if YYDEBUG.
1017 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
1018 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
1019 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
1020 if YYYDEBUG.
1021 (debug_stream, set_debug_stream, debug_level, set_debug_level):
1022 Define only if YYDEBUG.
1023 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
1024 set_debug_level.
1025 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
1026 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
1027 AT_CHECK_CALC_GLR_CC that are working now.
1028
4ec13d60
PE
10292006-09-12 Paul Eggert <eggert@cs.ucla.edu>
1030
1031 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
1032 We don't need them in glr.cc, and glr.c defines them.
1033 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
1034 assumes that defining it to anything is the same as defining
1035 it to 1. Problem reported by Paolo Bonzini.
1036
8e1687ae
PE
10372006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
1038
1039 * data/c.m4 (b4_null, b4_case): Define.
1040 * src/output.c (prepare_symbols): Use b4_null.
1041 (user_actions_output): Use b4_case.
1042
3dc5e96b
PE
10432006-09-11 Paul Eggert <eggert@cs.ucla.edu>
1044
aef3da86
PE
1045 * data/glr.c (b4_shared_declarations): Put start-header first,
1046 before any #includes that we generate, so that feature-test
1047 macros work. Problem reported by Michael Deutschmann in
1048 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
1049 * data/lalr1.cc: Likewise.
1050 * doc/bison.texinfo (Prologue): Document that feature-test macros
1051 should be defined before any Bison declarations.
1052 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
1053 that depend on location.hh after, not before, Bison decls, since
1054 we now include location.hh after the first user prologue.
1055
3dc5e96b
PE
1056 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
1057 Sander Brandenburg in
1058 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
1059 Also, fix minor white space and comment issues.
aef3da86
PE
1060 (Prologue): Mention that it's better to define feature-test macros
1061 before Bison declarations. Problem reported by Michael Deutschmann.
1062
1063 * README-cvs: Fix typo: "&" should be "&&". Problem reported
1064 by Jim Meyering.
1065 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
1066 This adjusts to recent gnulib changes.
3dc5e96b 1067
b2a0b7ca
JD
10682006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
1069
1070 Finish implementation of per-type %destructor/%printer. Discussed
1071 starting at
1072 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
1073 and
1074 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
1075 * NEWS (2.3+): Add a description of this feature to the default
1076 %destructor/%printer description.
1077 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
1078 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
1079 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
1080 list node contains a semantic type.
1081 * src/symtab.c, src/symtab.h: Extend with a table that associates
1082 semantic types with their %destructor's and %printer's.
1083 (semantic_type_from_uniqstr, semantic_type_get,
1084 semantic_type_destructor_set, semantic_type_printer_set): New functions
1085 composing the public interface of that table.
1086 (symbol_destructor_get, symbol_destructor_location_get,
1087 symbol_printer_get, symbol_printer_location_get): If there's no
1088 per-symbol %destructor/%printer, look up the per-type before trying
1089 the default.
1090 * tests/actions.at (Per-type %printer and %destructor): New test case.
1091 * tests/input.at (Default %printer and %destructor redeclared):
1092 Extend to check that multiple occurrences of %symbol-default in a
1093 single %destructor/%printer declaration is an error.
1094 (Per-type %printer and %destructor redeclared, Unused values with
1095 per-type %destructor): New test cases.
1096
3be03b13
JD
10972006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
1098
1099 Require default %destructor/%printer to be declared using
1100 %symbol-default instead of an empty symbol list, and start working on
1101 new per-type %destructor/%printer. Discussed at
1102 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
1103 * NEWS (2.3+): Add %symbol-default to example.
1104 * bison.texinfo (Freeing Discarded Symbols): Likewise.
1105 (Bison Symbols): Add entry for %symbol-default.
1106 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
1107 (generic_symlist, generic_symlist_item): New nonterminals for creating
1108 a list in which each item is a symbol, semantic type, or
1109 %symbol-default.
1110 (grammar_declaration): Use generic_symlist in %destructor and %printer
1111 declarations instead of symbols.1 or an empty list.
1112 (symbol_declaration, precedence_declaration, symbols.1): Update actions
1113 for changes to symbol_list.
1114 * src/reader.c: Update for changes to symbol_list.
1115 * src/scan-code.l: Likewise.
1116 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
1117 * src/symlist.c, src/symlist.h: Extend such that a list node may
1118 represent a semantic type or a %symbol-default in addition to just an
1119 ordinary symbol. Add switched functions for setting %destructor's and
1120 %printer's.
1121 * tests/actions.at, tests/input.at: Add %symbol-default to all default
1122 %destructor/%printer declarations.
1123
3508ce36
JD
11242006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
1125
1126 Whether the default %destructor/%printer applies to a particular symbol
1127 isn't a question of whether the user *declares* that symbol (in %token,
1128 for example). It's a question of whether the user by any means
1129 *defines* the symbol at all (by simply using a char token, for
1130 example). $end is defined by Bison whereas any other token with token
1131 number 0 is defined by the user. The error token is always defined by
1132 Bison regardless of whether the user declares it with %token, but we
1133 may one day let the user define error as a nonterminal instead.
1134 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
1135 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
1136 the meaning of "user-defined".
1137 * tests/actions.at (Default %printer and %destructor for user-declared
1138 end token): Rename to...
1139 (Default %printer and %destructor for user-defined end token): ...
1140 this.
1141
1142 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
1143 computation of whether to apply the default, don't maintain a list of
1144 every Bison-defined symbol. Instead, just check for a first character
1145 of '$', which a user symbol cannot have, and check for the error token.
1146
9350499c
JD
11472006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
1148
1149 Don't apply the default %destructor or %printer to the error token,
1150 $undefined, or $accept. This change fits the general rule that the
1151 default %destructor and %printer are only for user-declared symbols,
1152 and it solves several difficulties that are described in the new test
1153 cases listed below.
1154 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
1155 * tests/actions.at (Default %printer and %destructor are not for error
1156 or $undefined, Default %printer and %destructor are not for $accept):
1157 New test cases.
1158
4d7370cb
JD
11592006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
1160
1161 Allow %start after the first rule.
1162 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
1163 when parsing the first rule.
1164 (check_and_convert_grammar): Search for it here after all grammar
1165 declarations have been parsed. Skip midrules, which have dummy LHS
1166 nonterminals.
1167 * src/symtab.c (symbol_is_dummy): New function.
1168 * src/symtab.h (symbol_is_dummy): Declare it.
1169 * tests/input.at (%start after first rule): New test.
1170
6d0ef4ec
JD
11712006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
1172
1173 Redo some of the previous commit: add back the ability to use
1174 non-aliased/undeclared string literals since it might be useful to
1175 those declaring %token-table.
1176 * src/reader.c (check_and_convert_grammar): Undo changes in previous
1177 commit: don't worry about complaints from symbols_pack.
1178 * src/symtab.c (symbol_new, symbol_class_set,
1179 symbol_check_alias_consistency): Undo changes in previous commit: count
1180 each string literal as a new symbol and token, assign it a symbol
1181 number, and don't complain about non-aliased string literals.
1182 (symbols_pack): Since symbol_make_alias still does not decrement symbol
1183 and token counts but does still set aliased tokens to the same number,
1184 symbol_pack_processor now leaves empty slots in the symbols array.
1185 Remove those slots.
1186 * tests/regression.at (Undeclared string literal): Remove test case
1187 added in previous commit since non-aliased string literals are allowed
1188 again.
1189 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
1190 remove unnecessary string literal declarations.
1191 * tests/sets.at (Firsts): Likewise.
1192
965537bc
JD
11932006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
1194
1195 Don't allow an undeclared string literal, but allow a string literal to
1196 be used before its declaration.
1197 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
1198 symbols_pack complained.
1199 * src/symtab.c (symbol_new): Don't count a string literal as a new
1200 symbol.
1201 (symbol_class_set): Don't count a string literal as a new token, and
1202 don't assign it a symbol number since symbol_make_alias does that.
1203 (symbol_make_alias): It's not necessary to decrement the symbol and
1204 token counts anymore. Don't assume that an alias declaration occurs
1205 before any uses of the identifier or string, and thus don't assert that
1206 one of them has the highest symbol number so far.
1207 (symbol_check_alias_consistency): Complain if there's a string literal
1208 that wasn't declared as an alias.
1209 (symbols_pack): Bail if symbol_check_alias_consistency failed since
1210 symbol_pack asserts that every token has been assigned a symbol number
1211 although undeclared string literals have not.
1212 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 1213 string literal): New test cases.
965537bc
JD
1214 (Characters Escapes, Web2c Actions): Declare string literals as
1215 aliases.
1216 * tests/sets.at (Firsts): Likewise.
1217
47aee066
JD
12182006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
1219
1220 In the grammar scanner, STRING_FINISH unclosed constructs and return
1221 them to the parser in order to improve error messages.
1222 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
1223 SC_BRACED_CODE, SC_PROLOGUE): Implement.
1224 * tests/input.at (Unclosed constructs): New test case.
1225 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
1226 seen.
1227
1228 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
1229 unused global.
1230
1f6b3679
JD
12312006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
1232
1233 Handle string aliases for character tokens correctly.
1234 * src/symtab.c (symbol_user_token_number_set): If the token has an
1235 alias, check and set its alias's user token number instead of its own,
1236 which is set to indicate the alias. Previously, every occurrence of
1237 the character token in the grammar overwrote that alias indicator with
1238 the character code.
1239 * tests/input.at (String aliases for character tokens): New test.
1240
219741d8
JD
12412006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
1242
1243 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
1244
11daa4e7
PE
12452006-08-11 Paul Eggert <eggert@cs.ucla.edu>
1246
1247 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
1248 to prevent failures when building on older platforms.
1249 Check for autopoint failure.
1250 Set XGETTEXT_OPTIONS to values that check for C format strings,
1251 so that translators are warned about them (this also helps
1252 prevent core dumps).
1253
1254 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
1255 function, since it simplifies our code a bit.
1256
1257 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
1258 rather than -W, so we don't get bogus warnings about sign comparisons.
1259 Add -Wpointer-arith, since that warning is useful (it reports code
1260 that does not conform to C89 and that some compilers reject).
1261 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
1262 since it's no longer needed.
1263
f9bfc42a
JD
12642006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
1265
1266 Clean up scanners a bit.
1267 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
1268 definitions so gcc won't warn when obstack_for_string is unused.
1269 * src/scan-code.l: config.h and system.h are already #include'd by
1270 scan-code-c.c, so get rid of them here.
1271 * src/scan-gram.l: Likewise.
1272 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
1273 definitions rather than duplicating the rest of it.
1274 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
1275
06e8700a
JD
12762006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
1277
1278 Suppress signed/unsigned comparison warnings for yycheck.
1279 * data/c.m4 (b4_safest_int_type): New macro.
1280 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
1281 a signed int type, cast it to b4_safest_int_type first.
1282 * data/yacc.c: Likewise.
1283 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
1284 also overwritten.
1285
9c437126
PE
12862006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
1287
1288 * doc/bison.texinfo: Fix some typos.
1289
284d8a13
PE
12902006-08-02 Paul Eggert <eggert@cs.ucla.edu>
1291
1292 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
1293 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
1294
1295 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
1296 the latest gnulib does this a different way.
1297 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
1298 translation was patched, so stop omitting it.
1299
ec5479ce
JD
13002006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1301
1302 Enable declaration of default %printer/%destructor. Make the parser
1303 use these for all user-declared grammar symbols for which the user does
1304 not declare a specific %printer/%destructor. Thus, the parser uses it
1305 for token 0 if the user declares it but not if Bison generates it as
1306 $end. Discussed starting at
1307 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
1308 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
1309 and
1310 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
1311 * NEWS (2.3+): Mention.
1312 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
1313 declare a %destructor for a mid-rule's semantic value. It's just
1314 impossible to declare one specific to it.
1315 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
1316 code. Describe default %destructor form.
1317 * src/parse-gram.y (grammar_declaration): Parse default
1318 %printer/%destructor declarations.
1319 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
1320 and symbol_destructor_location_get rather than accessing the destructor
1321 and destructor_location members of struct symbol.
1322 (symbol_printers_output): Likewise but for %printer's.
1323 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
1324 again.
1325 * src/symtab.c (default_destructor, default_destructor_location,
1326 default_printer, default_printer_location): New static global
1327 variables to record the default %destructor and %printer.
1328 (symbol_destructor_get, symbol_destructor_location_get,
1329 symbol_printer_get, symbol_printer_location_get): New functions to
1330 compute the appropriate %destructor and %printer for a symbol.
1331 (default_destructor_set, default_printer_set): New functions to set the
1332 default %destructor and %printer.
1333 * src/symtab.h: Prototype all those new functions.
1334 * tests/actions.at (Default %printer and %destructor): New test to
1335 check that the right %printer and %destructor are called, that they're
1336 not called for $end, and that $$ and @$ work correctly.
1337 (Default %printer and %destructor for user-declared end token): New
1338 test to check that the default %printer and %destructor are called for
1339 a user-declared end token.
1340 * tests/input.at (Default %printer and %destructor redeclared, Unused
1341 values with default %destructor): New tests to check related grammar
1342 warnings and errors.
1343
868d2d96
JD
13442006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1345
1346 Clean up handling of %destructor for the end token (token 0).
1347 Discussed starting at
1348 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
1349 and
1350 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
1351
1352 Make the skeletons consistent in how they pop the end token and invoke
1353 its %destructor.
1354 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
1355 state, which has token number 0, since this would invoke the
1356 %destructor for the end token.
1357 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
1358 until after shifting the end token, or else it won't be popped.
1359 * data/yacc.c (yyparse): Likewise.
1360
1361 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
1362 it's the end token. Upon termination, destroy an unshifted lookahead
1363 even when it's the end token.
1364 * data/lalr1.cc (yy::parser::parse): Likewise.
1365 * data/yacc.c (yyparse): Likewise.
1366
1367 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
1368 value warnings for the end token when the user gives the end token a
1369 %destructor.
1370
1371 * tests/actions.at (Printers and Destructors): Test all the above.
1372
62a9592d
PE
13732006-07-24 Paul Eggert <eggert@cs.ucla.edu>
1374
1375 Update to latest gnulib and gettext versions.
1376 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
1377 Add fopen-safer.
1378 (gnulib_files): Add m4/warning.m4. Don't worry about files
1379 overwritten by autopoint.
1380 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
1381 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
1382 rejects them.
1383 Don't use autoreconf; instead, invoke autopoint etc. by hand,
1384 so that we can remove the intl files at a better time.
1385 (intl_files_to_remove): Remove aclocal.m4, since it gets
1386 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
1387 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
1388 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
1389 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
1390 Remove datarootdir hack; no longer needed.
1391 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
1392 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
1393 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
1394 strdup.h.
1395 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
1396 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
1397
10d6970f
PE
13982006-07-20 Paul Eggert <eggert@cs.ucla.edu>
1399
1400 * bootstrap: Adjust to today's change to gnulib-tool by invoking
1401 it with --assume-autoconf='latest-stable'.
1402
50a33993
JD
14032006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
1404
1405 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
1406 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
1407 YYSTYPE' and `{'.
1408 * src/muscle_tab.h (muscle_grow): Replace the header comments with
1409 those from muscle_tab.c since the old ones are misleading.
1410
2ce4ed68
AD
14112006-07-13 Akim Demaille <akim@epita.fr>
1412
1413 Support %define "KEY" {VALUE}.
1414 * src/scan-code.h, src/scan-code.l (translate_action)
1415 (translate_rule_action, translate_symbol_action, translate_code):
1416 Return char *, not const char *.
1417 * src/parse-gram.y (declaration): Rename as...
1418 (prologue_declaration): this.
1419 (string_content): Remove this nonterminal, use STRING.
1420 (braceless, content, content.opt): New nonterminal.
1421 Use them.
1422 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
1423 as value.
1424 * src/scan-gram.l (getargs.h): Don't include it.
1425
db7e5eb5
PE
14262006-07-12 Paul Eggert <eggert@cs.ucla.edu>
1427
1428 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
1429 rather than a for-loop that declares a local bool variable. This
1430 should work around a compatibility problem with a Cray x1e C++
1431 compiler reported by Hung Nguyen in
1432 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
1433 The for-loop was introduced in the 2004-11-17 change but I don't
1434 know why it was needed.
1435
a5d80ba5
AD
14362006-07-12 Akim Demaille <akim@epita.fr>
1437
1438 * data/c.m4: Comment changes.
1439
23eb2a69
AD
14402006-07-10 Akim Demaille <akim@lrde.epita.fr>
1441
1442 * src/complain.c (error_message, ERROR_MESSAGE): New.
1443 To factor...
1444 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
1445 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
1446
ddc8ede1
PE
14472006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1448
1449 * NEWS: Instead of %union, you can define and use your own union type
1450 YYSTYPE if your grammar contains at least one <type> tag.
1451 Your YYSTYPE need not be a macro; it can be a typedef.
1452 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
1453 (Union Decl, Decl Summary): Document this.
1454 * data/glr.c (YYSTYPE): Implement this.
1455 * data/glr.cc (YYSTYPE): Likewise.
1456 * data/lalr1.cc (YYSTYPE): Likewise.
1457 * data/yacc.c (YYSTYPE): Likewise.
1458 * src/output.c (prepare): Output tag_seen_flag.
1459 * src/parse-gram.y (declaration, grammar_declaration):
1460 Use 'union_seen' rather than 'typed' to determine whether
1461 %union has been seen, since grammars can now be typed without
1462 %union.
1463 (symbol_declaration, type.opt, symbol_def):
1464 Keep track of whether a tag has been seen.
1465 * src/reader.c (union_seen, tag_seen): New vars.
1466 (typed): remove.
1467 * src/reader.h (union_seen, tag_seen, typed): Likewise.
1468 * src/scan-code.l (untyped_var_seen): New variable.
1469 (handle_action_dollar): Adjust to above changes.
1470 (handle_action_dollar, handle_action_at):
1471 Improve overflow checking for outlandish numbers.
1472 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
1473 avoid new diagnostics generated by above changes.
1474 * tests/regression.at (YYSTYPE typedef): Add test to check
1475 for type tags without %union.
1476
1477 * src/symlist.c (symbol_list_length): Return int, not unsigned
1478 int, since callers expect int. This may need to get revisited
1479 once we have proper integer overflow checking.
1480
1481 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
1482 object is now static.
1483
1484 * src/getargs.c (flags_argmatch): Return void, not int,
1485 to pacify ./configure --enable-gcc-warnings.
1486
1487 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
1488 since last_string is already defined to FLEX_PREFIX (last_string).
1489
7b42569e
AD
14902006-07-09 Akim Demaille <akim@lrde.epita.fr>
1491
1492 Implement --warnings/-W.
1493 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
1494 replaced by...
1495 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
1496 Adjust callers.
1497 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
1498 (warnings_args, warnings_types): New.
1499 (getargs, short_options, long_options): Accept -W/--warnings.
1500 Sort the options by alphabetical order, upper case letter right
1501 before its lower case.
1502
3b452f4e
JD
15032006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1504
1505 Change %merge result type clash warnings to errors. Discussed at
1506 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
1507 * src/reader.c (record_merge_function_type): Use complain_at.
1508 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1509 declared later): Update test case results.
1510
b8a41559
AD
15112006-07-09 Akim Demaille <akim@lrde.epita.fr>
1512
1513 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
1514 to be in alphabetical order.
1515 (trace_args): Spelling fixes.
1516
cd9e1ba2
PE
15172006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1518
1519 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
1520 so they don't collide with user-defined macros.
1521 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
1522 this was never guaranteed, and now that we're using gnulib stdint,
1523 which defines int_fast16_t to long int, the problem is exposed.
1524
cb48f191
PE
15252006-07-08 Paul Eggert <eggert@cs.ucla.edu>
1526
b8445a15
PE
1527 * data/c.m4 (b4_basename): Simplify a bit, since we don't
1528 need the full POSIX semantics (and weren't implementing them
1529 anyway).
1530
cb48f191
PE
1531 Adjust to Autoconf 2.60 and today's gnulib.
1532 * bootstrap (gnulib_modules): Add stdint.
1533 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
1534 no longer copies it.
1535 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
1536 since stdint needs the former and wcwidth (which is now required
1537 by mbswidth) needs the latter.
1538 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
1539 work around a compatibility glitch between gettext 0.14.6 and
1540 Autoconf 2.60.
1541 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
1542 Do not check for uintptr_t, since new stdint module does the right
1543 thing.
1544 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
1545 Add stdint.h, stdint_.h, wcwidth.h.
1546 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
1547 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
1548 stdint.m4, wchar_t.m4, wcwidth.m4.
1549 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
1550 usual order for ../lib/*.h files.
1551 (file_name_split): Use last_component, not base_name, to adjust
1552 to gnulib changes.
1553 * src/parse-gram.h: Include <strverscmp.h> in the usual order
1554 for ../lib/*.h files.
1555 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
1556 Define unconditionally, since we now assume the stdint module.
1557 * src/scan-skel.l: Include <dirname.h>.
1558 (BASE_QPUTS): Use last_component, not base_name.
1559 * src/system.h: Include <unlocked-io.h> in the usual order
1560 for ../lib/*.h files. Include <stdint.h> unconditionally,
1561 since we now use the stdint module.
1562 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
1563 HAVE_UINTPTR_T, since we now use the stdint module.
1564 (base_name): Remove decl, since files now include <dirname.h>
1565 to get the decl.
1566
cd48d21d
AD
15672006-07-08 Akim Demaille <akim@lrde.epita.fr>
1568
1569 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
1570 New, default to 1.
1571 * data/yacc.c, data/glr.c, data/location.cc: Use them.
1572 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
1573 default.
1574 * tests/calc.at: Adjust.
1575
8ec0a172
AD
15762006-07-08 Akim Demaille <akim@lrde.epita.fr>
1577
b8445a15 1578 * data/c.m4 (b4_basename): New.
8ec0a172
AD
1579 (b4_syncline): Also output the location of its invocation (from
1580 the skeleton).
1581 (b4_user_action, b4_define_user_action, b4_user_actions)
1582 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
1583 (b4_user_stype): New.
1584 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
1585
4a678af8
JD
15862006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1587
1588 In the grammar file, the first column is 1 not 0 on the first line as
1589 on every other line.
1590 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
1591 * tests/input.at (Torturing the Scanner): Update output.
1592
1593 * src/scan-gram.l (scanner_cursor): Declare it static.
1594
dd60572a
JD
15952006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1596
1597 In warnings, say "previous declaration" rather than "first
1598 declaration".
1599 * src/symtab.c (redeclaration): Do that here.
1600 * src/reader.c (record_merge_function_type): In the case of a result
1601 type clash, report the previous declaration rather than the very first
1602 one in the grammar file.
1603 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1604 declared later): Add a third declaration to check this behavior.
1605 * tests/input.at (Incompatible Aliases): Update output.
1606
2073e1b6
AD
16072006-06-27 Akim Demaille <akim@epita.fr>
1608
1609 * doc/Doxyfile.in: New.
1610 * doc/Makefile.am: Use it.
1611 * src/lalr.h, src/symtab.h: Initial doxygenation.
1612
8ee5b538
JD
16132006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1614
1615 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
1616 declared after the %merge. This continues the effort of the previous
1617 patch.
8ee5b538
JD
1618 * src/reader.c (get_merge_function): Don't set the merger type yet.
1619 (record_merge_function_type): New function for setting the merger type
1620 and checking for clashes.
1621 (grammar_current_rule_merge_set): Set the location of the %merge for
1622 the current rule.
1623 (packgram): Invoke record_merge_function_type for each rule now that
1624 all symbol type declarations have been parsed.
1625 * src/reader.h (merger_list.type_declaration_location): New member
1626 storing the location of the first %merge from which the type for this
1627 merging function was derived.
1628 * src/symlist.h (symbol_list.merger_declaration_location): New member
1629 storing the location of a rule's %merge, if any.
1630 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1631 declared later): New test to catch the error fixed by the above patch.
1632
ffa4ba3a
JD
16332006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1634
1635 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
1636 declarations appear after the rules. Discussed at
1637 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
1638 and
1639 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
1640 Don't mistake the type of $$ in a midrule to be that of its parent
1641 rule's $$.
ffa4ba3a
JD
1642 * src/reader.c (grammar_current_rule_end): Don't invoke
1643 grammar_rule_check yet since not all symbol declarations may have been
1644 parsed yet.
1645 (grammar_midrule_action): Likewise.
1646 Don't record whether the midrule's $$ has been used yet since actions
1647 haven't been translated yet.
1648 Record the midrule's parent rule and its RHS index within the parent
1649 rule.
1650 (grammar_current_rule_action_append): Don't translate the action yet
1651 since not all symbol declarations may have been parsed yet and, thus,
1652 warnings about types for $$, $n, @$, and @n can't be reported yet.
1653 (packgram): Translate the action and invoke grammar_rule_check now that
1654 all symbol declarations have been parsed.
1655 * src/scan-code.l (handle_action_dollar): Now that this is invoked
1656 after parsing the entire grammar file, the symbol list here in the case
1657 of a midrule is actually the midrule's empty RHS, so reference its
1658 parent rule's RHS where necessary.
1659 On the other hand, now that you can already know it's a midrule, you
1660 aren't forced to think $$ has the same type as its parent rule's $$.
1661 (handle_action_at): In the case of a midrule, reference the parent rule
1662 where necessary.
1663 * src/symlist.c (symbol_list_new): Initialize new midrule-related
1664 members.
1665 (symbol_list_length): Now that this is invoked after all rules have
1666 been parsed, a NULL symbol (rather than a NULL symbol list node)
1667 terminates a rule. symbol_list_print already does this correctly.
1668 * src/symlist.h (symbol_list.midrule_parent_rule,
1669 symbol_list.midrule_parent_rhs_index): New members so that midrules can
1670 remember their relationships with their parents.
1671 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
1672 fixed by the above patch.
1673 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
1674 implementing...
1675 (Unused values): ... this old test case and...
1676 (Unused values before symbol declarations): ... this new test case.
1677 This one is the same as `Unused values' except that all symbol
1678 declarations appear after the rules in order to catch the rest of the
1679 errors fixed by the above patch.
1680
e256e17f
JD
16812006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1682
300a1930
JD
1683 More cleanup.
1684 * src/reader.c (current_rule): Declare it static since it's no longer
1685 used outside this file.
1686 (grammar_current_rule_action_append): Remove redundant arguments from
1687 translate_rule_action invocation.
1688 * src/reader.h (current_rule): Remove this unused extern.
1689 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
1690 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 1691
381ecb06
JD
16922006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
1693
1694 Clean up yesterday's patch.
1695 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
1696 to...
1697 * src/reader.c (grammar_current_rule_action_append): ... here for
1698 consistency with grammar_current_rule_symbol_append.
1699 * tests/regression.at (Braced code in declaration in rules section):
1700 Make yyerror and yylex static as usual.
1701
4210cd0b
JD
17022006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
1703
1704 Fix bug that mistakes braced code in a declaration in the rules section
1705 to be a rule action. Mentioned at
1706 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
1707 * src/scan-gram.l: Move midrule action detection from the start of the
1708 scanning of any braced code to...
1709 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
1710 action. For readability, use $2 and @2 rather than the equivalent
1711 global variables.
1712 * tests/regression.at (Braced code in declaration in rules section):
1713 New test to catch the error fixed by the above patch.
1714
1715 Work on code readability some.
1716 * src/scan-code.l (current_rule): Get rid of this misleading and
1717 redundant declaration: it's actually extern'ed in reader.h.
1718 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
1719 translate_action): Add a rule argument and use it instead of the global
1720 current_rule.
1721 (translate_rule_action): This already receives current_rule through an
1722 argument, so pass it on to translate_action instead of assigning
1723 current_rule to current_rule.
1724 (translate_symbol_action, translate_code): Pass rule = NULL to
1725 translate_action.
1726
34f98f46
JD
17272006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
1728
1729 Rename %before-definitions to %start-header and %after-definitions to
1730 %end-header. Don't use these declarations to separate pre-prologue
1731 blocks from post-prologue blocks. Add new order-independent
1732 declarations %before-header and %after-header as alternatives to the
1733 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
1734 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
1735 * NEWS (2.3+): Update for these changes.
1736 * data/glr.c (b4_before_definitions): Update to...
1737 (b4_start_header): ... this.
1738 (b4_after_definitions): Update to...
1739 (b4_end_header): ... this.
1740 * data/glr.cc: Likewise.
1741 * data/lalr1.cc: Likewise.
1742 * data/yacc.c: Likewise.
1743 * doc/bison.texinfo (The prologue): Update names, and replace remaining
1744 prologue blocks with %*-header declarations.
1745 (Calc++ Parser): Likewise.
1746 (Bison Declaration Summary): Update names.
1747 (Bison Symbols): Update description.
1748 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
1749 (PERCENT_END_HEADER): ... this.
1750 (PERCENT_BEFORE_DEFINITIONS): Update to...
1751 (PERCENT_START_HEADER): ... this.
1752 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1753 (declaration): Update token names and m4 macro names.
1754 When parsing %end-header and %start-header, invoke translate_code
1755 before muscle_code_grow, and no longer set global booleans to remember
1756 whether these declarations have been seen.
1757 Parse new %after-header and %before-header.
1758 * src/reader.c (before_definitions, after_definitions): Remove.
1759 (prologue_augment): Accept a new bool argument to specify whether to
1760 augment the pre-prologue or post-prologue.
1761 * src/reader.h (before_definitions, after_definitions): Remove these
1762 extern's.
1763 (prologue_augment): Add new bool argument.
1764 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
1765 (PERCENT_END_HEADER): ... this.
1766 (PERCENT_BEFORE_DEFINITIONS): Update to...
1767 (PERCENT_START_HEADER): ... this.
1768 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1769 * tests/actions.at (Printers and Destructors): Update names.
1770
31b2b07e
JD
17712006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
1772
1773 Add comparison operators for C++ location classes. Discussed at
1774 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
1775 * data/c++.m4 (b4_define_location_comparison): New boolean %define
1776 declaration indicating whether filename_type has an operator==. If
1777 filename_type is `std::string', it defaults to `1', `0' otherwise.
1778 * data/location.cc: Iff b4_define_location_comparison is `1', add
1779 operator== and operator!= for class position and for class location.
1780
1781 Some minor fixes.
1782 * src/scan-action.l: Remove unused file.
1783 * src/symtab.c (symbol_printer_set): Use printer_location not
1784 destructor_location.
1785 * src/symtab.h (struct symbol): Replace incorrect source comment for
1786 printer members.
1787 * tests/input.at (Incompatible Aliases): Update output with correct
1788 printer location.
1789
9bc0dd67
JD
17902006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
1791
1792 Don't put the pre-prologue in the header file. For the yacc.c code
1793 file and the glr.c header and code files, move the pre-prologue before
1794 the token definitions. Add new %before-definitions and
1795 %after-definitions to declare code that will go in both the header file
1796 and code file. Discussed at
1797 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
1798 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
1799 and
1800 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
1801 * NEWS (2.3+): Describe these changes.
1802 * data/glr.c (b4_pre_prologue): Move from within to before...
1803 (b4_shared_declarations): ... this.
1804 Add new b4_before_definitions before b4_token_enums.
1805 Add new b4_after_definitions at the end.
1806 * data/glr.cc (b4_pre_prologue): Replace with...
1807 (b4_before_definitions): ... this in the header file.
1808 (b4_after_definitions): New near the end of the header file.
1809 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
1810 code file right before including the header file.
1811 (b4_before_definitions): New in the previous position of
1812 b4_pre_prologue in the header file.
1813 (b4_after_definitions): New near the end of the header file.
1814 * data/yacc.c: Clean up some m4 quoting especially in the header file.
1815 (b4_token_enums_defines): In the code file, move to right before
1816 YYSTYPE for consistency with the header file.
1817 (b4_before_definitions): New right before b4_token_enums_defines in
1818 both the header and code file.
1819 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
1820 header and code file.
1821 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
1822 of prologues for %union dependencies.
1823 (Bison Declaration Summary): In %defines description, mention the
1824 effect of %before-definitions and %after-definitions on the header
1825 file.
1826 (Calc++ Parser): Forward declare driver in a %before-definitions rather
1827 than in the pre-prologue so that make check succeeds.
1828 (Bison Symbols): Add entries for %before-definitions and
1829 %after-definitions.
1830 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
1831 %before-definitions.
1832 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
1833 (declaration): Parse those declarations and append to
1834 b4_before_definitions and b4_after_definitions, respectively.
1835 * src/reader.c (before_definitions, after_definitions): New bools to
1836 track whether those declarations have been seen.
1837 (prologue_augment): Add to the post-prologue if %union,
1838 %before-definitions, or %after-definitions has been seen.
1839 * src/reader.h (before_definitions, after_definitions): New extern's.
1840 * src/scan-gram.l: Scan the new declarations.
1841 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
1842 prologue block in a %before-definitions or a %after-definitions based
1843 on whether the %union is declared.
1844 * tests/regression.at (Early token definitions with --yacc, Early token
1845 definitions without --yacc): Move tests for token definitions into the
1846 post-prologue since token names are no longer defined in the
1847 pre-prologue.
1848
203b9274
AD
18492006-06-20 Akim Demaille <akim@epita.fr>
1850
1851 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
1852 (symbol_get): Use it.
1853 * src/parse-gram.y: Use it.
1854
a7ee59cf
JD
18552006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
1856
1857 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
1858 build succeeds when configured with --enable-gcc-warnings.
1859
5a2baae7
PE
18602006-06-19 Paul Eggert <eggert@cs.ucla.edu>
1861
33ad1a9c
PE
1862 * src/parse-gram.y (char_name): New function.
1863 (CHAR, STRING, string_content): For %printer, properly escape.
1864 (ID): Prefer fputs to fprintf.
1865 (id): Reindent to be consistent with other rules.
1866 Properly quote char.
1867
5a2baae7
PE
1868 The Translation Project changed its way of publishing translations
1869 to maintainers. I haven't received any responses to my request
1870 for supporting the old way, or for documenting the new way. I
1871 have modified 'bootstrap' to use screen scraping
1872 (in this case, HTML scraping). This is unreliable and inelegant,
1873 but I don't see any better way. Yuck.
1874 * bootstrap (TP_URL, WGET_COMMAND): New vars.
1875 (get_translations): New function, which uses HTML scraping to
1876 deduce locations of latest translations.
1877 Use this function to grab both bison and bison-runtime .po files.
1878 Don't bother priming the pump for the runtime-po domain any more,
1879 as it's now translated better than bison is.
1880
58d7a1a1
AD
18812006-06-19 Akim Demaille <akim@epita.fr>
1882
1883 * src/scan-gram.l: No longer "parse" things after `%union' until
1884 `{'. Rather, return a single "%union" token.
1885 No longer make symbols: return strings, and leave the conversion
1886 to symbols to the parser.
1887 (SC_PRE_CODE, token_type): Remove.
1888 * src/parse-gram.y (%union): New field `character'.
1889 Sort tokens.
1890 (CHAR): New token.
1891 (ID, ID_COLON): Now that the scanner no longer makes them
1892 identifiers, adjust all uses to invoke symbol_get.
1893 (id_colon): New, wraps the conversion from string to symbol.
1894 (%union): Accept a possible union_name.
1895 (symbol): Now can be a char.
1896 * data/c.m4 (b4_union_name): Leave a default value.
1897 * data/glr.c, data/yacc.c: Use it.
1898
b931235e
JD
18992006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
1900
1901 For associating token numbers with token names for "yacc.c", don't use
1902 #define statements unless `--yacc' is specified; always use enum
1903 yytokentype. Most important discussions start at:
1904 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
1905 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
1906 and
1907 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
1908 * NEWS (2.3+): Mention.
1909 * data/c.m4 (b4_yacc_if): New.
1910 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
1911 token #define's.
1912 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
1913 on token name definitions.
1914 * src/getargs.c (usage): Capitalize `Yacc' in English.
1915 * src/output.c (prepare): Define b4_yacc_flag.
1916 * tests/regression.at (Early token definitions): Test that tokens names
1917 are defined before the pre-prologue not just before the post-prologue.
1918 Remove this test case and copy to...
1919 (Early token definitions with --yacc): ... this to test #define's.
1920 (Early token definitions without --yacc): ... and this to test enums.
1921
9e6e7ed2
PE
19222006-06-11 Paul Eggert <eggert@cs.ucla.edu>
1923
1924 * NEWS: Reword the post-2.3 change to not be so optimistic about
1925 removing the old "look-ahead" spelling.
1926 Update previous look-ahead/lookahead change reports.
1927 * REFERENCES: look-ahead -> lookahead (since that's
1928 what he actually wrote).
1929 * doc/refcard.tex: look ahead -> lookahead,
1930 look-ahead -> lookahead
1931
742e4900
JD
19322006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
1933
1934 For consistency, use `lookahead' instead of `look-ahead' or
1935 `look_ahead'. Discussed starting at
1936 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
1937 and then at
1938 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
1939 * NEWS: For the next release, note the change to `--report'.
1940 * TODO, doc/bison.1: Update English.
1941 * doc/bison.texinfo: Update English.
1942 (Understanding Your Parser, Bison Options): Document as
1943 `--report=lookahead' rather than `--report=look-ahead'.
1944 * src/conflicts.c: Update English in comments.
1945 (lookahead_set): Rename from look_ahead_set.
1946 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
1947 (resolve_sr_conflict): Rename local look_ahead_tokens to
1948 lookahead_tokens, and update other uses.
1949 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
1950 count_rr_conflicts, conflicts_free): Update uses.
1951 * src/getargs.c (report_args): Move "lookahead" before alternate
1952 spellings.
1953 (report_types): Update uses.
1954 (usage): For `--report' usage description, state `lookahead' spelling
1955 rather than `look-ahead'.
1956 * src/getargs.h (report.report_lookahead_tokens): Rename from
1957 report_look_ahead_tokens.
1958 * src/lalr.c: Update English in comments.
1959 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
1960 (state_lookahead_tokens_count): Rename from
1961 state_look_ahead_tokens_count.
1962 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1963 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
1964 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1965 Update other uses.
1966 Update English in output.
1967 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
1968 * src/print.c: Update English in comments.
1969 (lookahead_set): Rename from look_ahead_set.
1970 (print_reduction): Rename argument lookahead_token from
1971 look_ahead_token.
1972 (print_core, state_default_rule, print_reductions, print_results):
1973 Update uses.
1974 * src/print_graph.c: Update English in comments.
1975 (print_core): Update uses.
1976 * src/state.c: Update English in comments.
1977 (reductions_new): Update uses.
1978 (state_rule_lookahead_tokens_print): Rename from
1979 state_rule_look_ahead_tokens_print, and update other uses.
1980 * src/state.h: Update English in comments.
1981 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
1982 (state_rule_lookahead_tokens_print): Rename from
1983 state_rule_look_ahead_tokens_print.
1984 * src/tables.c: Update English in comments.
1985 (conflict_row, action_row): Update uses.
1986 * tests/glr-regression.at
1987 (Incorrect lookahead during deterministic GLR,
1988 Incorrect lookahead during nondeterministic GLR): Rename
1989 print_look_ahead to print_lookahead.
1990 * tests/torture.at: Update English in comments.
1991 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
1992 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
1993 (Many lookahead tokens): Update uses.
1994 * data/glr.c: Update English in comments.
1995 * lalr1.cc: Likewise.
1996 * yacc.c: Likewise.
1997 * src/conflicts.h: Likewise.
1998 * src/lalr.h: Likewise.
1999 * src/main.c: Likewise.
2000 * src/output.c: Likewise.
2001 * src/parse-gram.c: Likewise.
2002 * src/tables.h: Likewise.
2003 * tests/calc.at: Likewise.
2004
3c40d0b5
JD
20052006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
2006
2007 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
2008
5d278082
PE
20092006-06-07 Paul Eggert <eggert@cs.ucla.edu>
2010
2011 * TODO: Add request from Nelson H. F. Beebe to be able to install
2012 Bison without installing the yacc script.
2013
9e668899
JD
20142006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
2015
2016 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
2017 and yytext if they're already #define'd.
2018 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
2019 * src/scan-code-c.c: ... here.
2020 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
2021 <config.h>.
2022
0c8e079f
JD
20232006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
2024
2025 Get Bison to build again when configured with --enable-gcc-warnings.
2026 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
2027 missing #include's.
2028 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
2029 loc argument as it shadows a global.
2030 * src/scan-gram.l: Remove stray comma that prevents boundary_set
2031 invocation.
2032
2033 * src/.cvsignore: Add scan-code.c.
2034
2346344a
AD
20352006-06-07 Akim Demaille <akim@epita.fr>
2036
2037 * src/scan-gram.l: Move the "add a trailing ; to actions" code
2038 to...
2039 * src/scan-code.l: here.
2040 * tests/input.at (Torturing the Scanner): Fix another location
2041 error.
2042
4862bdfd
AD
20432006-06-07 Akim Demaille <akim@epita.fr>
2044
2045 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
2046
e9071366
AD
20472006-06-06 Akim Demaille <akim@epita.fr>
2048
2049 Extract the parsing of user actions from the grammar scanner.
2050 As a consequence, the relation between the grammar scanner and
2051 parser is much simpler. We can also split "composite tokens" back
2052 into simple tokens.
2053 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
2054 * src/scan-gram.l (add_column_width, adjust_location): Move to and
2055 rename as...
2056 * src/location.h, src/location.c (add_column_width)
2057 (location_compute): these.
2058 Fix the column count: the initial column is 0.
2059 (location_print): Be robust to ending column being 0.
2060 * src/location.h (boundary_set): New.
2061 * src/main.c: Adjust to scanner_free being renamed as
2062 gram_scanner_free.
2063 * src/output.c: Include scan-code.h.
2064 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
2065 Use boundary_set.
2066 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
2067 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
2068 which is now, again, a separate token.
2069 Adjust all dependencies.
2070 Whereever actions with $ and @ are used, use translate_code.
2071 (action): Remove this nonterminal which is now useless.
2072 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
2073 (grammar_current_rule_action_append): Use translate_code.
2074 (packgram): Bound check ruleno, itemno, and rule_length.
2075 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
2076 (last_string, last_braced_code_loc, max_left_semantic_context)
2077 (scanner_initialize, scanner_free, scanner_last_string_free)
2078 (gram_out, gram_lineno, YY_DECL_): Move to...
2079 * src/scan-gram.h: this new file.
2080 (YY_DECL): Rename as...
2081 (GRAM_DECL): this.
2082 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
2083 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
2084 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
2085 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
2086 Move these declarations, and...
2087 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
2088 these to...
2089 * src/flex-scanner.h: this new file.
2090 * src/scan-gram.l (rule_length, rule_length_overflow)
2091 (increment_rule_length): Remove.
2092 (last_braced_code_loc): Rename as...
2093 (gram_last_braced_code_loc): this.
2094 Adjust to the changes of the parser.
2095 Move all the handling of $ and @ into...
2096 * src/scan-code.l: here.
2097 * src/scan-gram.l (handle_dollar, handle_at): Remove.
2098 (handle_action_dollar, handle_action_at): Move to...
2099 * src/scan-code.l: here.
2100 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
2101 scan-code.h, scan-code-c.c, scan-gram.h.
2102 (EXTRA_bison_SOURCES): Add scan-code.l.
2103 (BUILT_SOURCES): Add scan-code.c.
2104 (yacc): Be robust to white spaces.
2105
2106 * tests/conflicts.at, tests/input.at, tests/reduce.at,
2107 * tests/regression.at: Adjust the column numbers.
2108 * tests/regression.at: Adjust the error message.
7891a7c4 2109
184e42f0
JD
21102006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
2111
2112 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
2113 Use Akim's wording from
2114 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
2115
7891a7c4
JD
21162006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
2117
2118 Between Bison releases, manually append `+' to the previous Bison
2119 release number, and use that as a signal to automatically print the
2120 ChangeLog's CVS Id keyword from --version. Discussed starting at
2121 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
2122 * ChangeLog: Add Id header.
2123 * configure.ac (AC_INIT): Append `+' to `2.3'.
2124 * src/.cvsignore: Add revision.c.
2125 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
2126 (BUILT_SOURCES): Add revision.c.
2127 (revision.c): New target rule. This file defines a new global variable
2128 named revision. It initializes it with either the Id from ChangeLog
2129 or, if VERSION doesn't contain `+', with the empty string.
2130 * src/getargs.c (version): Print the value of revision.
2131 * src/revision.h: Extern revision.
2132
4ad3ed84
PE
21332006-06-05 Paul Eggert <eggert@cs.ucla.edu>
2134
2135 * NEWS: Version 2.3.
2136 * configure.ac (AC_INIT): Likewise.
2137
02103984
PE
21382006-05-30 Paul Eggert <eggert@cs.ucla.edu>
2139
2140 * data/glr.c (YYRECOVERING): Define to be a function-like macro
2141 with no arguments, not as an object-like macro. This is for
2142 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
2143 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
2144 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
2145 Document this.
2146
2c08afa5
JD
21472006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
2148
2149 * src/getargs.c (usage): Back out yesterday's modification of the
2150 --help output so that we don't have to wait for translation before
2151 releasing 2.3.
2152
6077da58
PE
21532006-05-29 Paul Eggert <eggert@cs.ucla.edu>
2154
2155 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
2156 Problem reported by Akim Demaille.
2157
2a26b6c2
JD
21582006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2159
2160 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
2161
aefef0d6
PE
21622006-05-26 Paul Eggert <eggert@cs.ucla.edu>
2163
2164 * data/yacc.c (yy_reduce_print): Omit trailing white space in
2165 generated source code. Problem reported by Frans Englich in
2166 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
2167
fcd8e201
PE
21682006-05-22 Paul Eggert <eggert@cs.ucla.edu>
2169
2170 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
2171 shell, not within 'make', so that 'make' by an ordinary builder
2172 (using GNU make) does not worry about configuring gzip. This also
2173 works around a bug reported independently by Keith Thompson and by
2174 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
2175 stderr rather than stdout, messing up the build logs.
2176
7b5cdcbd
JD
21772006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
2178
2179 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
2180 to make sure that YYID will never be unused. This fixes a 'make
2181 maintainer-check' failure caused by the recent changes to the 'Trivial
2182 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
2183 not used.
2184 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
2185
5ad0a449
JD
21862006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
2187
2188 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
2189 state before an empty RHS is always resolved here. Only the location
2190 of that state is guaranteed to be resolved, and that's enough. This
2191 fixes the remaining bug reported by Derek M. Jones in
2192 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
2193 * tests/glr-regression.at (Uninitialized location when reporting
2194 ambiguity): Test the above case.
2195 Also, the embedded comments in this test case claim it checks the case
2196 of an empty RHS that has inherited the initial location. However, the
2197 corresponding LHS was already resolved, so yyresolveLocations didn't
2198 actually have reason to modify it. Fix this by forcing
2199 nondeterministic operation at the beginning of the parse.
2200
50cce58e
PE
22012006-05-20 Paul Eggert <eggert@cs.ucla.edu>
2202
2203 * data/c.m4 (b4_yy_symbol_print_generate):
2204 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
2205 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
2206 of the bugs reported today by Derek M Jones in
2207 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
2208 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
2209 defined to be a type name without parens or brackets.
2210 (Location Type): Similarly for YYLTYPE.
2211 * tests/regression.at (Trivial grammars): Put in a test for this
2212 bug that will be caught by 'make maintainer-check' (though not,
2213 alas, by 'make check' unless your compiler is picky).
2214
ab8d9dc5
PE
22152006-05-19 Paul Eggert <eggert@cs.ucla.edu>
2216
0d2c8934 2217 * NEWS: Version 2.2.
ab8d9dc5
PE
2218 * configure.ac (AC_INIT): Likewise.
2219
9138c575
JD
22202006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
2221
2222 * data/glr.c (yyreportTree): Make room in yystates for the state
2223 preceding the RHS. This fixes the segmentation fault reported by Derek
2224 M. Jones in
2225 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
2226 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
2227 to the user. Reported for yyreportTree by Derek M. Jones later in the
2228 same thread.
2229 * THANKS: Add Derek M. Jones.
2230 Update my email address.
2231 Fix typo in Steve Murphy's name.
2232
276f48df
PE
22332006-05-14 Paul Eggert <eggert@cs.ucla.edu>
2234
d6645148
PE
2235 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
2236 checking against YYLAST that caused the parser to miss a potential
2237 alternative in its diagnostic.
2238 Problem reported by Maria Jose Moron Fernandez in
2239 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
2240 * data/lalr1.cc (yysyntax_error_): Likewise.
2241 * data/yacc.c (yysyntax_error): Likewise.
2242 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
2243 tokens, in case we run into an older C compiler.
2244 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
2245 Use them to check for the off-by-one error fixed above.
2246
276f48df
PE
2247 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
2248 YYSIZE_T, not size_t.
2249 * tests/regression.at (Trivial grammars): New test, to catch
2250 the error fixed by the above patch.
2251
cd8b5791
AD
22522006-05-14 Akim Demaille <akim@lrde.epita.fr>
2253
2254 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
2255 scheme.
2256 Reported by Steve Murphy.
2257
34376418
AD
22582006-05-14 Akim Demaille <akim@lrde.epita.fr>
2259
2260 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
2261 * data/glr.cc: b4_location_flag is now b4_locations_flag.
2262
327afc7c
AD
22632006-05-14 Akim Demaille <akim@lrde.epita.fr>
2264
2265 Implement --trace=m4.
2266 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
2267 * src/output.c (output_skeleton): When set, pass -dV to m4.
2268
2269 Factor the handling of flags in m4.
2270 * src/output.c (prepare): Rename the muscle names debug, defines,
2271 error_verbose to debug_flag, defines_flag, error_verbose_flag.
2272 * data/c.m4: Adjust.
2273 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
2274 Use b4_define_flag_if to define other b4_FLAG_if macros.
2275 (b4_location_if): As a consequence, rename as...
2276 (b4_locations_if): this, for consistency.
2277 Adjust all the skeletons.
2278
ba9ecd19
AD
22792006-05-14 Akim Demaille <akim@lrde.epita.fr>
2280
2281 * etc/bench.pm: Shorten bench names.
2282
4e83ea15
AD
22832006-05-14 Akim Demaille <akim@lrde.epita.fr>
2284
2285 * src/output.h, src/output.c (error_verbose): Move to...
2286 * src/getargs.h, src/getargs.c: here.
2287 Sort the flags.
2288 Adjust dependencies.
2289
6e93d810
PE
22902006-05-13 Paul Eggert <eggert@cs.ucla.edu>
2291
2292 * data/c.m4 (b4_copyright): Put the special exception for Bison
2293 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
2294 uses changed. Suggested by Akim Demaille. Also, wrap the
2295 copyright notice, in case it is longer than 80 columns. Replace
2296 comma by newline after title.
6e93d810 2297
eaea13f5
PE
22982006-05-11 Paul Eggert <eggert@cs.ucla.edu>
2299
2300 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
2301 incompatibility, not a bug. Mention that it wasn't fixed as of
2302 flex 2.5.33.
2303
3cf084ec
AD
23042006-05-11 Akim Demaille <akim@lrde.epita.fr>
2305
2306 * examples/extexi: Enforce the precedence of concatenation over
2307 >>.
0a9f1c7d 2308 Reported by Tommy Nordgren.
3cf084ec 2309
32c96bd7
AD
23102006-05-11 Akim Demaille <akim@lrde.epita.fr>
2311
2312 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
2313 with the member "token".
f94705b2 2314 Reported by Martin Nylin.
32c96bd7 2315
eaea13f5
PE
23162006-05-08 Paul Eggert <eggert@cs.ucla.edu>
2317
2318 * data/glr.c: Switch to Bison 2.2 special-exception language in
2319 the copyright notice. Use more-regular format for titles and
2320 copyright notices.
2321 * data/glr.cc: Likewise.
2322 * data/location.cc: Likewise.
2323 * data/yacc.cc: Likewise.
2324 * doc/bison.texinfo (Conditions): Document this.
2325 * NEWS: likewise. Upgrade version to 2.2.
2326
6e2d1146
AD
23272006-04-27 Akim Demaille <akim@lrde.epita.fr>
2328
2329 * data/glr.cc: Remove dead code.
2330
47671055
PE
23312006-04-25 Paul Eggert <eggert@cs.ucla.edu>
2332
2333 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
2334 that variable and the line breaks the bootstrap. Problem reported
2335 by Juan M. Guerrero.
2336
ed2e6384
AD
23372006-04-24 Akim Demaille <akim@lrde.epita.fr>
2338
2339 * doc/bison.texinfo (Multiple start-symbols): New.
2340
3cedc2dc
AD
23412006-04-24 Akim Demaille <akim@lrde.epita.fr>
2342
2343 * etc/README, etc/bench.pl: New.
2344
b2ddc3f3
AD
23452006-04-03 Akim Demaille <akim@lrde.epita.fr>
2346
2347 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
2348 rule.
2349 Reported by Mickael Labau.
2350 * tests/input.at (Torturing the Scanner): Test it.
2351
91e3ac9a
PE
23522006-03-16 Paul Eggert <eggert@cs.ucla.edu>
2353
2354 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
2355 Problem reported by Bob Rossi.
2356
23572006-03-13 Paul Eggert <eggert@cs.ucla.edu>
2358
2359 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
2360 and didn't really work.
2361 For the index, use @ifnotinfo, not @iftex.
2362 Minor cleanups of spacing and terminology.
2363
5cf61e93
AD
23642006-03-12 Akim Demaille <akim@lrde.epita.fr>
2365
2366 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
2367 of AT_NAME_PREFIX when %name-prefix is not used.
2368
aa08666d
AD
23692006-03-12 Akim Demaille <akim@lrde.epita.fr>
2370
2371 Apply --prefix to C++ skeletons too: they change the namespace.
2372 The test suite already exercize these cases.
2373 * data/c++.m4 (b4_namespace): New.
2374 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
2375 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
2376 * data/yacc.c, data/glr.c: Remove a useless `[]'.
2377 * doc/bison.texinfo: Document it.
2378 (Option Cross Key): Use @multitable in all formats. It looks
2379 nicer, even in TeX outputs.
2380 (Rules): Use the same code whatever the output type is.
2381 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
2382 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
2383 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 2384
45567173
AD
23852006-03-10 Akim Demaille <akim@lrde.epita.fr>
2386
2387 * TODO: Remove dead items.
2388
e9d8f881 23892006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
2390
2391 * doc/FAQ: Remove, merged into...
2392 * doc/bison.texinfo (FAQ): this.
2393 * doc/Makefile.am (EXTRA_DIST): Adjust.
2394
c095d689
AD
23952006-03-10 Akim Demaille <akim@lrde.epita.fr>
2396
2397 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
2398 even if empty.
2399 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
2400 * doc/bison.texinfo (Calc++ Scanner): Use it.
2401
6e0f8287
PE
24022006-03-09 Paul Eggert <eggert@cs.ucla.edu>
2403
2404 Fix two nits reported by twlevo, plus one more that I discovered.
2405
2406 * src/assoc.h (assoc_to_string): Give a name to the arg, as
2407 this is the usual Bison style.
2408 * src/location.h (location_print): Likewise.
2409
2410 * src/reader.h (token_name): Likewise.
2411
d6b771c3
PE
24122006-03-08 Paul Eggert <eggert@cs.ucla.edu>
2413
2414 Fix some nits reported by twlevo.
2415 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
2416 and "POSIX". Use more-modern syntax for URLs. Mention C++
2417 and ask for Java. Don't hardwire OS version numbers. Add
2418 copyright notice.
2419 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
2420 * src/conflicts.c (solved_conflicts_obstack): Now static.
2421
1e137b71
JD
24222006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2423
2424 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
2425 page. Say "you can use it" not "you may use it" as on the web page;
2426 we're describing capabilities not granting permission.
2427
73f2e47e
PE
24282006-03-06 Paul Eggert <eggert@cs.ucla.edu>
2429
6d05403d
PE
2430 * data/glr.c (yyresolveLocations): Rename local variables to avoid
2431 shadowing warnings. Use usual patter for iterating through RHS.
2432 * tests/glr-regression.at
2433 (Uninitialized location when reporting ambiguity):
2434 Modify yylex so that it uses its argument, rather than trying
2435 to rely on ARGSUSED (which doesn't work for gcc with warnings).
2436 const char -> char const.
2437
73f2e47e
PE
2438 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
2439 Don't use tabs inside commands; it messes up 'ps'.
2440 Problem reported by twlevo.
2441
8710fc41
JD
24422006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
2443
2444 * tests/glr-regression.at (Uninitialized location when reporting
2445 ambiguity): New test case.
2446 * data/glr.c (yyresolveLocations): New function, which uses
2447 YYLLOC_DEFAULT.
2448 (yyresolveValue): Invoke yyresolveLocations before reporting an
2449 ambiguity.
2450 * doc/bison.texinfo (Default Action for Locations): Note
2451 YYLLOC_DEFAULT's usage for ambiguity locations.
2452 (GLR Semantic Actions): Cross-reference those notes.
2453
ae952af2
JD
24542006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
2455
2456 * tests/glr-regression.at (Leaked semantic values when reporting
2457 ambiguity): Remove unnecessary union and type declarations.
2458 (Leaked lookahead after nondeterministic parse syntax error): New test
2459 case.
2460 * data/glr.c (yyparse): Check for zero stacks remaining before
2461 attempting to shift the lookahead so that you don't lose it.
2462
35ee866a
JD
24632006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2464
2465 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
2466 * tests/glr-regression.at (Leaked semantic values when reporting
2467 ambiguity): New test case.
2468 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
2469 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
2470 now unnecessary yystackp parameter.
2471 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
2472 destructors can be called.
2473
2474 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
2475 in existing testcases.
2476
520181ab
JD
24772006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2478
2479 Don't leak semantic values for parent RHS when a user action cuts the
2480 parser, and clean up related code a bit.
2481 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
2482 cuts parse): Rename to...
2483 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
2484 for leaked parent RHS values.
2485 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
2486 between an unresolved state (non-empty chain of semantic options) and
2487 an incomplete one (signaled by an empty chain).
ae952af2 2488 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
2489 successfully or unsuccessfully resolved yyGLRState to...
2490 (yyresolveValue): ... here so that yyresolveValue always leaves a
2491 yyGLRState with consistent data and thus is easier to understand.
2492 Remove the yyvalp and yylocp parameters since they are always just
2493 taken from the yys parameter. When reporting a discarded merged value
2494 in debugging output, note that it is incompletely merged. Document the
2495 interface.
2496 (yyresolveAction): If resolving any of the RHS states fails, destroy
2497 them all rather than leaking them. Thus, as long as user actions are
2498 written to clean up the RHS correctly, yyresolveAction always cleans up
2499 the RHS of a semantic option. Document the interface.
2500
18d9185c
PE
25012006-02-27 Paul Eggert <eggert@cs.ucla.edu>
2502
2503 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
2504 led to a segmentation fault in GNU Pascal. Problem reported
2505 by Waldek Hebisch.
2506
841a7737
JD
25072006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
2508
2509 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
2510 mid-rule action inside a nonterminal symbol in order to declare a
2511 destructor for its semantic value.
2512
fc3f467f
PE
25132006-02-16 Paul Eggert <eggert@cs.ucla.edu>
2514
2515 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
2516 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
2517 __cplusplus && ! defined _STDLIB_H && !
2518 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
2519 defined free))]: Include <stdlib.h> rather than rolling our own
2520 declarations of malloc and free, to avoid problems with
2521 incompatible declarations (using 'throw') C++'s stdlib.h. This
2522 should fix Debian bug 340012
2523 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
2524 reported by Guillaume Melquiond.
2525
a3af26dd
PE
25262006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2527
4d7bc38c
PE
2528 * NEWS: Clarify symbols versus types in unused-value warnings.
2529
a3af26dd
PE
2530 * configure.ac (AC_INIT): Bump version number.
2531
4e26c69e
PE
25322006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2533
2534 * NEWS: Version 2.1a.
2535 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
2536 since C99 requires this.
2537
498e897c
PE
25382006-02-11 Paul Eggert <eggert@cs.ucla.edu>
2539
2540 * m4/c-working.m4: New file.
2541 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
2542
57bb17ca
PE
25432006-02-10 Paul Eggert <eggert@cs.ucla.edu>
2544
2545 * Makefile.maint: Merge from coreutils.
2546
0be105dc
PE
25472006-02-09 Paul Eggert <eggert@cs.ucla.edu>
2548
2549 More portability fixes for problems summarized by Nelson H. F. Beebe.
2550
2551 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
2552 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
2553 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
2554 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
2555 messes up because C++ code is compiled in 32-bit mode but linked
2556 in 64-bit mode.
2557
6fc0c024
PE
25582006-02-08 Paul Eggert <eggert@cs.ucla.edu>
2559
2560 More portability fixes for problems summarized by Nelson H. F. Beebe.
2561
7870f699
PE
2562 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
2563 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
2564
6fc0c024
PE
2565 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
2566 nodist_PROGRAMS, since we don't need to actually compile the
2567 example if we're just doing a plain 'make'. This avoids bothering
2568 the installer unnecessarily about problems due to weird C++
2569 compilers.
2570
fe6c2fde
PE
25712006-02-06 Paul Eggert <eggert@cs.ucla.edu>
2572
2573 More portability fixes for problems summarized by Nelson H. F. Beebe.
2574
2575 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
2576 than #include "...", and compile with -I'.'. The old method was
2577 not portable, according to Posix and the C standard, and it does
2578 not work with Sun C 5.7, where previous #line directives affect
2579 the working directory used in later #include "..." directives.
2580
927b425b
JMG
25812006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2582
2583 Various DJGGP specific issues in /djgpp
2584
d9735e9e
PE
25852006-02-02 Paul Eggert <eggert@cs.ucla.edu>
2586
2587 More portability fixes for problems summarized by Nelson H. F. Beebe.
2588
2589 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
2590 '#include <map>' works and that you can apply ++ to iterators.
2591
5a6755af
PE
25922006-02-01 Paul Eggert <eggert@cs.ucla.edu>
2593
67a0dc4f
PE
2594 Work around portability problems summarized by Nelson H. F. Beebe in
2595 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
2596
8c86f0ef
PE
2597 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2598 that '#include <string>' works.
2599
de35dd59
PE
2600 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
2601 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
2602 "warning: sorry: semantics of inline function static data `const
2603 unsigned char translate_table[262]' are wrong (you'll wind up with
2604 multiple copies)".
2605
67a0dc4f
PE
2606 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
2607 or, xor to not_, and_, or_, and xor_, respectively. This works
2608 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
2609 random system header somewhere that includes the equivalent of
2610 <iso646.h>.
2611
5a6755af
PE
2612 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
2613 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 2614 Suite Version 2.0.
5a6755af 2615
3f001415
JD
26162006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
2617
2618 During deterministic GLR operation, user actions should be able to
2619 influence the parse by changing yychar. To make this easier to fix and
2620 to make glr.c easier to evolve in general, don't maintain yytoken in
2621 parallel with yychar; just compute yytoken when needed.
2622 * tests/glr-regression.at (Incorrect lookahead during deterministic
2623 GLR): Check that setting yychar in a user action has the intended
2624 effect.
2625 * data/glr.c (yyGLRStack): Remove yytokenp member.
2626 (yyclearin): Don't set *yytokenp.
2627 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
2628 yychar rather than *yytokenp to determine the current lookahead.
2629 Compute yytoken locally when needed.
2630 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
2631 point to.
2632
2633 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
2634 after `--report' documentation.
2635
e2a8c0f5
PE
26362006-01-30 Paul Eggert <eggert@cs.ucla.edu>
2637
2638 * src/parse-gram.y (grammar_declaration): Location of printer
2639 symbol is @1, not list->location. Bug reported by twlevo.
2640 * tests/input.at (Incompatible Aliases): Adjust to above change.
2641
6b702268
PE
26422006-01-29 Paul Eggert <eggert@cs.ucla.edu>
2643
27622431
PE
2644 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
2645 all the test at once. This makes the output easier to read in the
2646 normal case.
2647
6b702268
PE
2648 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
2649 got from <http://bro-ids.org/download.html>. The bug is that
2650 when two actions appeared in succession, the second one was
2651 scanned before the first one was added to the grammar rule
2652 as a midrule action. Bison then output the incorrect warning
2653 "parse.y:905.17-906.36: warning: unused value: $3".
2654 * src/parse-gram.y (BRACED_CODE, action): These are no longer
2655 associated with a value.
2656 (rhs): Don't invoke grammar_current_rule_action_append.
2657 (action): Invoke it here instead.
2658 * src/reader.c (grammar_midrule_action): Now extern.
2659 (grammar_current_rule_action_append): Don't invoke
2660 grammar_midrule_action; that is now the scanner's job.
2661 * src/reader.h (last_string, last_braced_code_loc):
2662 (grammar_midrule_action): New decls.
2663 * src/scan-gram.l (last_string): Now extern, sigh.
2664 (last_braced_code_loc): New extern variable.
2665 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
2666 rule already has an action.
2667 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
2668 * tests/input.at (AT_CHECK_UNUSED_VALUES):
2669 Add some tests to check that the above changes fixed the bug.
2670
d40ba6c2
PE
26712006-01-27 Paul Eggert <eggert@cs.ucla.edu>
2672
2673 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
2674 All used changed. Check whether the symbol has a destructor,
2675 not whether it is typed.
2676 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
2677 that the values are still reported as unused. All line numbers
2678 adjusted.
2679
401aace6
PE
26802006-01-23 Paul Eggert <eggert@cs.ucla.edu>
2681
2682 Work around a bug in bro 0.8, which underparenthesizes its
2683 definition of YYLLOC_DEFAULT.
2684 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
2685 their arguments.
2686 * data/lalr1.cc: Likewise.
2687 * data/yacc.cc: Likewise.
2688
06f01bc4
PE
26892006-01-22 Paul Eggert <eggert@cs.ucla.edu>
2690
401aace6
PE
2691 Work around a bug in Pike 7.0, and give the Pike folks a
2692 better way to override the usual int widths.
2693 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
2694 user can override the types.
2695 (short): #undef, to work around a bug in Pike 7.0.
2696 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
2697 (union yyalloc.yyss): Use yytype_int16 rather than short.
2698 All uses changed.
2699 (yysigned_char): Remove.
2700 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
2701 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
2702 * tests/regression.at (Web2c Actions): Adjust to above changes.
2703
2704 * src/reader.c (check_and_convert_grammar): New function.
2705 (reader): Close the input file even if something went wrong during
2706 parsing. Minor file descriptor leak reported by twlevo.
2707
06f01bc4
PE
2708 * src/assoc.c (assoc_to_string): Use a default: abort (); case
2709 to pacify gcc -Wswitch-default.
2710 * src/scan-gram.l (adjust_location): Use a default: break; case
2711 to pacify gcc -Wswitch-default.
2712 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
2713 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2714 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2715 Move these decls to scan-skel.l, since they don't need to be
2716 visible elsewhere.
2717 * src/scan-skel.l: Accept the above decls.
2718 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
2719 is used.
2720
02650b7f
PE
27212006-01-21 Paul Eggert <eggert@cs.ucla.edu>
2722
2723 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
2724 since we don't want to insist on a version number at the start
2725 of the changelog every time.
2726 * Makefile.maint: Sync from coreutils a bit better.
2727 (sc_trailing_blank): Renamed from sc_trailing_space.
2728 All uses changed.
2729 (sc_no_if_have_config_h, sc_require_config_h):
2730 (sc_prohibit_assert_without_use): New rules.
2731 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
2732 (sc_dd_max_sym_length): Fix leading spaces in rule.
2733 (sc_system_h_headers): Prefix with @.
2734 (sc_useless_cpp_parens, m4-check): Output line numbers.
2735 (changelog-check): Allow version only in head.
2736 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
2737 satisfy new Makefile.maint rule.
2738 * data/glr.c: Likewise.
2739 * data/glr.cc: Likewise.
2740 * data/lalr1.cc: Likewise.
2741 * data/yacc.c: Likewise.
2742 * lib/ebitsetv.c: Likewise.
2743 * lib/lbitset.c: Likewise.
2744 * lib/subpipe.c: Likewise.
2745 * lib/timevar.c: Likewise.
2746 * src/system.h: Likewise.
2747 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
2748 * djgpp/Makefile.maint: Add copyright notice.
2749 * djgpp/README.in: Likewise.
2750 * djgpp/config.bat: Likewise.
2751 * djgpp/config.site: Likewise.
2752 * djgpp/config_h.sed: Likewise.
2753 * djgpp/djunpack.bat: Likewise.
2754 * djgpp/config.sed: Fix copyright notice to match standard format.
2755 * djgpp/subpipe.h: Likewise.
2756 * lib/bitsetv-print.c: Likewise.
2757 * lib/bitsetv.c: Likewise.
2758 * lib/subpipe.h: Likewise.
2759 * lib/timevar.c: Likewise.
2760 * lib/timevar.h: Likewise.
2761 * djgpp/subpipe.c: Use standard recipe for config.h.
2762 * lib/abitset.c: Likewise.
2763 * lib/bitset.c: Likewise.
2764 * lib/bitset_stats.c: Likewise.
2765 * lib/bitsetv-print.c: Likewise.
2766 * lib/bitsetv.c: Likewise.
2767 * lib/ebitsetv.c: Likewise.
2768 * lib/get-errno.c: Likewise.
2769 * lib/lbitset.c: Likewise.
2770 * lib/subpipe.c: Likewise.
2771 * lib/timevar.c: Likewise.
2772 * lib/vbitset.c: Likewise.
2773 * tests/local.at: Likewise.
2774 * src/scan-gram.l: Don't include verify.h, since system.h does
2775 that for us.
2776 * .x-sc_require_config_h: New file.
2777 * .x-sc_unmarked_diagnostics: New file.
2778
287c78f6
PE
27792006-01-20 Paul Eggert <eggert@cs.ucla.edu>
2780
287c78f6
PE
2781 Be a bit more systematic about using 'abort'.
2782 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
2783 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
2784 Put 'default: abort ();' before some other case, to satisfy older
2785 pedantic compilers.
2786 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2787 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
2788 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
2789 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
2790 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
2791 (get_decision_str, get_orientation_str, get_node_alignment_str):
2792 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
2793 (get_linestyle_str, get_arrowstyle_str): Likewise.
2794 * src/conflicts.c (resolve_sr_conflict):
2795 Use a default case rather than one for the one remaining enum
2796 value, to catch invalid enum values as well.
2797 * src/lalr.c (set_goto_map, map_goto):
2798 Prefer "assert (FOO);" to "if (!FOO) abort ();".
2799 * src/nullable.c (nullable_compute, token_definitions_output):
2800 Likewise.
2801 * src/reader.c (packgram, reader): Likewise.
2802 * src/state.c (transitions_to, state_new, state_reduction_find):
2803 Likewise.
2804 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
2805 (symbol_pack): Likewise.
2806 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
2807 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
2808 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
2809 * src/system.h: Don't include <assert.h>.
2810 (assert): New macro.
2811
2812 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
2813 (Destructor Decl, Parser Function, Pure Calling):
2814 Describe rules for braces inside C code more carefully.
287c78f6 2815
c66dfadd
PE
28162006-01-19 Paul Eggert <eggert@cs.ucla.edu>
2817
c21493b8
PE
2818 Fix some porting glitches found by Nelson H. F. Beebe.
2819 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
2820 compilers that don't understand that abort () does not return.
2821 * src/state.c (transitions_to): Likewise.
2822 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2823 that '#include <cstdlib>' works.
2824 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
2825 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
2826 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
2827 for the benefit of some pre-C99 compilers.
2828
b6e3facf
PE
2829 * bootstrap: Undo changes to gnulib files that autoreconf made.
2830
c66dfadd
PE
2831 Minor fixups to get 'make maintainer-check' to work.
2832 * configure.ac: Don't use -Wnested-externs, as it's incompatible
2833 with the new verify.h implementation.
2834 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
2835 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
2836 * data/yacc.c (YYUSE): Likewise.
2837 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
2838 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
2839 * src/parse-gram.y (declaration): Don't pass a string constant
2840 to a function that expects char *, since GCC might complain
2841 about the constant value.
2842 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
2843 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
2844 before #defining them.
2845 * tests/glr-regression.at
2846 (Incorrectly initialized location for empty right-hand side in GLR):
2847 In yyerror, use the msg arg.
2848 (Corrupted semantic options if user action cuts parse):
2849 (Incorrect lookahead during deterministic GLR):
2850 (Incorrect lookahead during nondeterministic GLR):
2851 Don't name a local var 'index'; it shadows string.h's 'index'.
2852
ed94ef2a
AD
28532006-01-19 Akim Demaille <akim@epita.fr>
2854
2855 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
2856 location, not just parts of it.
2857
e9ad4aec
PE
28582006-01-18 Paul Eggert <eggert@cs.ucla.edu>
2859
d6ca7905
PE
2860 * NEWS: Document the fact that multiple %unions are now allowed.
2861 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
2862 * TODO: This feature is now implemented, so remove it from
2863 the wishlist.
d6ca7905 2864
ef1b70e0
PE
2865 * Makefile.maint: Merge with coreutils Makefile.maint.
2866 (CVS_LIST): Use build-aux version if available.
2867 (VERSION_REGEXP): New macro.
2868 (syntax-check-rules): Add sc_no_if_have_config_h,
2869 sc_prohibit_assert_without_use, sc_require_config_h,
2870 sc_useless_cpp_parens.
2871 (sc_obsolete_symbols): Check for O_NDELAY.
2872 (sc_dd_max_sym_length): Track coreutils.
2873 (sc_unmarked_diagnostics): Look in all files, not just *.c.
2874 (sc_useless_cpp_parens): New rule.
2875 (news-date-check): Look for version or today's date.
2876 (changelog-check): Don't require version number near head.
2877 (copyright-check): Use current year instead of hardwiring 2005.
2878 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2879 (announcement): Add --gpg-key-ID.
2880
2881 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
2882 with "file system".
2883
2073ce56 2884 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
2885 array. Problem reported by twlevo.
2886 * src/reader.c (packgram): Prepend a new sentinel before ritem.
2887 * src/lalr.c (build_relations): Rely on new sentinel.
2888 * src/gram.c (gram_free): Adjust to new sentinel.
2889
b7691f15
JD
28902006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
2891
2892 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
2893 yylookaheadNeeds. All uses updated.
2894 (yysplitStack): Rename local yynewLookaheadStatuses to
2895 yynewLookaheadNeeds.
2896 * data/glr-regression.at (Incorrect lookahead during nondeterministic
2897 GLR): In comments, change `lookahead status' to `lookahead need'.
2898
ddee1b06
PH
28992006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2900
2901 * data/glr.c (yysplitStack): A little stylistic rewrite.
2902
12f4614d
PH
29032006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2904
2905 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
2906
32c29292
JD
29072006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
2908
2909 * doc/bison.texinfo: Fix some typos.
2910 (GLR Semantic Actions): New subsection discussing special
2911 considerations because GLR semantic actions might be deferred.
2912 (Actions): Mention look-ahead usage of yylval.
2913 (Actions and Locations): Mention look-ahead usage of yylloc.
2914 (Special Features for Use in Actions): Add YYEOF entry and mention it
2915 in the yychar entry.
2916 In the yychar entry, remove mention of the local yychar case (pure
2917 parser) since this is irrelevant information when writing semantic
2918 actions and since it's already discussed in `Bison Symbols' where
2919 yychar is otherwise described as an external variable.
2920 In the yychar entry, don't call it the `current' look-ahead since it
2921 isn't when semantic actions are deferred.
2922 In the yychar and yyclearin entries, add note about deferred semantic
2923 actions.
2924 Add yylloc and yylval entries discussing look-ahead usage.
2925 (Look-Ahead Tokens): When discussing yychar, don't call it the
2926 `current' look-ahead, and do mention yylval and yylloc.
2927 (Error Recovery): Cross-reference `Action Features' when mentioning
2928 yyclearin.
2929 (Bison Symbols): In the yychar entry, don't call it the `current'
2930 look-ahead.
2931 In the yylloc and yylval entries, mention look-ahead usage.
2932
de366a2f 29332006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
2934
2935 * tests/glr-regression.at: Update copyright year to 2006.
2936
bf70fa87
JD
29372006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2938
2939 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
2940 use during nondeterministic operation to track which stacks have
2941 actually needed the current lookahead.
2942 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
2943 Allocate, deallocate, resize, and otherwise shuffle space for
2944 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
2945 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
2946 appropriately during nondeterministic operation.
2947 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
2948 members to store the current lookahead to be used by the deferred
2949 user action.
2950 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
2951 from which the RHS is taken. Set the lookahead members of the new
2952 yySemanticOption according to the lookahead status for stack yyk.
2953 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
2954 yyaddDeferredAction.
2955 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
2956 members of yySemanticOption before invoking yyuserAction, and then set
2957 them back to their current values afterward.
2958 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
2959 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
2960 * tests/glr-regression.at: Remove `.' from the ends of recent test case
2961 titles for consistency.
2962 (Leaked merged semantic value if user action cuts parse): In order to
2963 suppress lint warnings, use arguments in merge function, and assign
2964 char value < 128 in main.
2965 (Incorrect lookahead during deterministic GLR): New test case.
2966 (Incorrect lookahead during nondeterministic GLR): New test case.
2967
05449a2c
JD
29682006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2969
de366a2f 2970 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
2971 !yyvaluep as signal that no semantic value is available to print.
2972 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
2973 to print a semantic value.
2974
4158e0a1 29752006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 2976
4158e0a1
JD
2977 * tests/glr-regression.at: For consistency with my newer test cases,
2978 don't thank myself.
2979
d659304d
JD
29802006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2981
2982 * data/glr.c (yyresolveValue): When merging semantic options, if at
2983 least one user action succeeds but a later one cuts the parse, then
2984 destroy the semantic value before returning rather than leaking it.
2985 (yyresolveStates): If a user action cuts the parse and thus
2986 yyresolveValue fails, ignore the (unset) semantic value rather than
2987 corrupting the yyGLRState, and empty the semantic options list since
2988 the user actions should have called all necessary destructors.
2989 Simplify code with YYCHK.
2990 * tests/glr-regression.at (Corrupted semantic options if user action
2991 cuts parse): New test case.
2992 (Undesirable destructors if user action cuts parse): New test case.
2993 Before applying any of this patch, this test case never actually failed
2994 for me... but only because the corrupted semantic options usually
2995 masked this bug.
2996 (Leaked merged semantic value if user action cuts parse): New test
2997 case.
2998
6ec2c0f2
AD
29992006-01-05 Akim Demaille <akim@epita.fr>
3000
3001 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
3002
1b9c21fb
PE
30032006-01-04 Paul Eggert <eggert@cs.ucla.edu>
3004
3005 * data/c.m4 (b4_c_modern): New macro, with a new provision for
3006 _MSC_VER. Problem reported by Cenzato Marco.
3007 (b4_c_function_def): Use it.
3008 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
3009 b4_c_modern.
3010 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
3011 than rolling our own.
3012
84866159
AD
30132006-01-04 Akim Demaille <akim@epita.fr>
3014
3015 Also warn about non-used mid-rule values.
3016 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
3017 member.
3018 (symbol_list_new): Adjust.
3019 * src/reader.c (symbol_typed_p): New.
3020 (grammar_rule_check): Use it.
3021 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
3022 Check its rule.
3023 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
3024 Use it.
3025 * tests/actions.at (Exotic Dollars): Adjust.
3026
378f4bd8
AD
30272006-01-04 Akim Demaille <akim@epita.fr>
3028
3029 * src/reader.c (grammar_midrule_action): If $$ is set in a
3030 mid-rule, move the `used' bit to its lhs.
3031 * tests/input.at (Unused values): New.
3032 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
3033
e2a21b6f
PE
30342006-01-03 Paul Eggert <eggert@cs.ucla.edu>
3035
54662697
PE
3036 * doc/bison.texinfo (Bison Options): Say more accurately what
3037 --yacc does.
3038 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
3039 about declarations in the grammar when in Yacc mode, as POSIX does
3040 not require a diagnostic when the grammar uses extensions.
3041
3042 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
3043
073f9288
PE
3044 Warn about dubious constructions like "%token T T".
3045 Reported by twlevo.
3046 * src/symtab.h (struct symbol.declared): New member.
3047 * src/symtab.c (symbol_new): Initialize it to false.
3048 (symbol_class_set): New arg DECLARING, specifying whether
3049 this is a declaration that we want to warn about, if there
3050 is more than one of them. All uses changed.
3051
1221b78a
PE
3052 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
3053 Allow multiple %union directives, whose contents concatenate.
3054 * src/parse-gram.y (grammar_declaration): Likewise.
3055 Use muscle_code_grow, so that we don't need stype_line any more.
3056 All uses changed.
3057
3058 * src/muscle_tab.c (muscle_grow): Fix comment.
3059
e2a21b6f
PE
3060 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
3061 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
3062 Update copyright year to 2006.
3063
8f7e3cf9
AD
30642006-01-03 Akim Demaille <akim@epita.fr>
3065
3066 Have glr.cc pass (some of) the calc.at tests.
3067 * data/glr.cc (b4_parse_param_orig): New.
3068 (b4_parse_param): Improve its definition, and bound it more
3069 clearly in the skeleton.
3070 (b4_epilogue): Append, instead of prepending, in order to keep
3071 #line consistency.
3072 Simplify the generation of auxiliary functions: locations and
3073 purity are mandated.
3074 (b4_global_tokens_and_yystype): Honor it.
3075 * data/location.cc (c++.m4): Don't include it.
3076 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
3077 and AT_SKEL_CC_IF.
3078 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
3079 AT_LALR1_CC_IF.
3080 Be sure to initialize the first position's filename.
3081 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
3082 mandated anyway.
3083 (AT_CHECK_CALC_GLR_CC): New.
3084 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
3085
3953ed88
AD
30862006-01-02 Akim Demaille <akim@epita.fr>
3087
3088 * src/output.c (output_skeleton): Don't hard wire the inclusion of
3089 c.m4.
0a96ba81 3090 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
3091 * data/glr.cc: Do not include stack.hh.
3092
9ecafbbf
AD
30932006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3094
3095 * data/glr.c: Reformat whitespace with tabs.
3096 (b4_lpure_formals): Remove this unused m4 macro.
3097 * tests/cxx-type.at: Reformat whitespace with tabs.
3098 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
3099 since it's a member. Rename type to isNterm for clarity.
3100
c4d497a0
AD
31012005-12-29 Akim <akim@sulaco.local>
3102
3103 Let glr.cc catch up with symbol_value_print.
3104 * data/glr.cc (b4_yysymprint_generate): Replace by...
3105 (b4_yy_symbol_print_generate): this.
3106 (yy_symbol_print, yy_symbol_value_print): Declare them.
3107
4517da37
PE
31082005-12-28 Paul Eggert <eggert@cs.ucla.edu>
3109
3110 * src/location.h (boundary): Note that a line or column equal
3111 to INT_MAX indicates an overflow.
3112 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
3113 (rule_length_overflow, increment_rule_length, add_column_width):
3114 New functions.
3115 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
3116 (<SC_BRACED_CODE>"}"):
3117 Use increment_rule_length rather than incrementing it by hand.
3118 (adjust_location, handle_syncline): Diagnose overflow.
3119 (handle_action_dollar, handle_action_at):
3120 Fix bug with monstrosities like $-2147483648.
3121 Remove now-unnecessary checks.
3122 (scan_integer): Verify assumptions and remove now-unnecessary checks.
3123 (convert_ucn_to_byte): Verify assumptions.
3124 (handle_syncline): New arg LOC. All callers changed.
3125 Don't store through a value derived from char const * pointer.
3126
3127 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
3128 GCC warnings.
3129
e3233bf6
PE
31302005-12-27 Paul Eggert <eggert@cs.ucla.edu>
3131
3132 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
3133 Remove unnecessary forward static decls.
3134
8f3596a6
AD
31352005-12-27 Akim Demaille <akim@epita.fr>
3136
3137 * src/reader.c (grammar_current_rule_check): Also check that $$
3138 is used.
3139 Take the rule to check as argument, hence rename as...
3140 (grammar_rule_check): this.
3141 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
3142 Rename as...
3143 (grammar_rule_begin, grammar_rule_end): these, for consistency.
3144 (grammar_midrule_action, grammar_symbol_append): Now static.
3145 * tests/torture.at (input): Don't rely on the default action
3146 being always performed.
3147 * tests/calc.at: "Set" $$ even when the action is "cut" with
3148 YYERROR or other.
3149 * tests/actions.at (Exotic Dollars): Instead of using unused
3150 values, check that the warning is issued.
3151
721be13c
PE
31522005-12-22 Paul Eggert <eggert@cs.ucla.edu>
3153
3154 * NEWS: Improve wording for unused-value warnings.
3155
a0af42fc
AD
31562005-12-22 Akim Demaille <akim@epita.fr>
3157
3158 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
3159 (b4_yysymprint_generate): Rename as...
3160 (b4_yy_symbol_print_generate): this.
3161 Generate yy_symbol_print instead of yysymprint.
3162 Generate also yy_symbol_value_print, and use it.
3163
affac613
AD
31642005-12-22 Akim Demaille <akim@epita.fr>
3165
721be13c 3166 * NEWS: Warn about unused values.
affac613
AD
3167 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
3168 a `used' member.
3169 (symbol_list_n_get, symbol_list_n_used_set): New.
3170 (symbol_list_n_type_name_get): Use symbol_list_n_get.
3171 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
3172 * src/reader.c (grammar_current_rule_check): Check that values are
3173 used.
3174 * src/symtab.c (symbol_print): Accept 0.
3175 * tests/existing.at: Remove the type information.
3176 Empty the actions.
3177 Remove useless actions (beware of mid-rule actions: perl -000
3178 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
3179 * tests/actions.at (Exotic Dollars): Use unused values.
3180 * tests/calc.at: Likewise.
3181 * tests/glr-regression.at (No users destructors if stack 0 deleted):
3182 Likewise.
3183
3184 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
3185 rule_useful_p.
3186
9d9b8b70
PE
31872005-12-21 Paul Eggert <eggert@cs.ucla.edu>
3188
8bb4c753
PE
3189 Undo 2005-12-01 tentative license wording change. The wording is
3190 still being reviewed by the lawyers, and we don't want to wait for
3191 them before publishing a test release. For now, revert to the
3192 previous wording.
3193 * NEWS: Undo 2005-12-01 change.
3194 * data/glr.c: Revert to previous license wording.
3195 * data/glr.cc: Likewise.
3196 * data/lalr1.cc: Likewise.
3197 * data/location.cc: Likewise.
3198 * data/yacc.c: Likewise.
3199
9d9b8b70
PE
3200 * NEWS: Reword %destructor vs YYABORT etc.
3201 * data/glr.c: Use American spacing, for consistency.
3202 * data/glr.cc: Likewise.
3203 * data/lalr1.cc: Likewise.
3204 * data/yacc.c: Likewise.
3205 * data/yacc.c: Reformat comments slightly.
3206 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
3207 for consistency. Fix some spelling errors and reword recently-included
3208 text slightly.
3209 * tests/cxx-type.at: Cast results of malloc, for C++.
3210
2c3b392a
AD
32112005-12-21 Joel E. Denny <address@hidden>
3212
3213 * tests/cxx-type.at: Construct a tree, count the parents of shared
3214 nodes, and free each node once and only once. Previously, the memory
3215 for semantic values was leaked instead.
3216
d6cff4dc
AD
32172005-12-21 Joel E. Denny <address@hidden>
3218
3219 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
3220 (yylval, yylloc): If pure, #define to yystackp->yyval and
3221 yystackp->yyloc similar to yychar and yynerrs.
3222 (yyparse): If pure, remove local yylval and yylloc. Add local
3223 yystackp to accommodate pure definitions of yylval and yylloc.
3224 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
3225 yylvalp and yyllocp to &yylval and &yylloc.
3226 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
3227 namespace. Previously, nerrs and char were missing, but lval and lloc
3228 weren't necessary.
3229 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
3230 yylvalp and yyllocp parameters since, if pure, these are now always
3231 accessible through yystackp. If not pure, they are still accessible
3232 globally.
3233 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
3234 `if (YYID (N))' to pacify lint.
3235
a85284cf
AD
32362005-12-21 Akim Demaille <akim@epita.fr>
3237
3238 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
3239 destroy the RHS symbols of a rule.
3240 * data/yacc.c (yylen): Initialize to 0.
3241 Keep its value to the number of items to possibly shift.
3242 In particular, a regular successful parse that ends on YYFINAL by
3243 a (internal) YYACCEPT must not have yylen != 0.
3244 (yyerrorlab, yyreturn): Pop the RHS.
3245 Reorder a bit to emphasize the `shifting' bits of code.
3246 (YYPOPSTACK): Now accept a number of items to pop.
3247 * data/lalr1.cc: Likewise.
3248 * data/glr.c: Formatting changes.
3249 Use goto instead of fall through.
3250 * doc/bison.texinfo (Destructor Decl): Complete.
3251
d508c281
JMG
32522005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3253
3254 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
3255 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
3256 * djgpp/config.bat: Replace every occurence of the file name
3257 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
3258 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
3259 * djgpp/config.sed: Replace every occurence of the file name
3260 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
3261 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
3262 * djgpp/djunpack.bat: DJGPP specific file.
3263 * djgpp/fnchange.lst: DJGPP specific file.
3264 * djgpp/README.in: Add new information about how to unpack the bison
3265 source on MSDOS and other systems which have 8.3 file name restrictions
3266 using djunpack.bat and fnchange.lst.
3267
3e7a2cd9
PE
32682005-12-12 Paul Eggert <eggert@cs.ucla.edu>
3269
3270 * bootstrap (build_cvs_prefix): Remove; unused.
3271 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
3272 when getting gnulib.
3273
32742005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
3275
3276 * data/glr.c: Reorder typedef declarations for structs to match order
3277 of struct declarations.
3278 Rename yystack everywhere to yystackp except in yyparse where it's not
3279 a pointer.
3280 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
3281 consistency.
3282 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
3283 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
3284 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
3285 lint.
3286
877519f8
PE
32872005-12-09 Paul Eggert <eggert@cs.ucla.edu>
3288
0eca5a39
PE
3289 * tests/sets.at (Accept): Fix typos in regular expression used to
3290 sed out the final state number.
3291
2cec9080
PE
3292 Work around portability problem on Solaris 10: flex-generated
3293 files include <stdio.h> before <config.h>, which messes up
3294 because the latter defines __EXTENSIONS__. Address the problem
3295 by creating two new little files that include <config.h> first,
3296 then include the flex-generated files. Rewrite everyone else
3297 to include <config.h> first, as well.
3298 * lib/timevar.c: Always include "config.h".
3299 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
3300 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
3301 (EXTRA_bison_SOURCES): New macro.
3302 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
3303 * src/system.h: Don't include config.h.
3304 * src/LR0.c: Include <config.h> first.
3305 * src/assoc.c: Likewise.
3306 * src/closure.c: Likewise.
3307 * src/complain.c: Likewise.
3308 * src/conflicts.c: Likewise.
3309 * src/derives.c: Likewise.
3310 * src/files.c: Likewise.
3311 * src/getargs.c: Likewise.
3312 * src/gram.c: Likewise.
3313 * src/lalr.c: Likewise.
3314 * src/location.c: Likewise.
3315 * src/main.c: Likewise.
3316 * src/muscle_tab.c: Likewise.
3317 * src/nullable.c: Likewise.
3318 * src/output.c: Likewise.
3319 * src/parse-gram.y: Likewise.
3320 * src/print.c: Likewise.
3321 * src/print_graph.c: Likewise.
3322 * src/reader.c: Likewise.
3323 * src/reduce.c: Likewise.
3324 * src/relation.c: Likewise.
3325 * src/state.c: Likewise.
3326 * src/symlist.c: Likewise.
3327 * src/symtab.c: Likewise.
3328 * src/tables.c: Likewise.
3329 * src/uniqstr.c: Likewise.
3330 * src/vcg.c: Likewise.
3331
877519f8
PE
3332 * src/parse-gram.y: Fix minor problems uncovered by lint.
3333 (current_lhs, current_lhs_location): Now static.
3334 (current_assoc): Remove unused variable.
3335
3336 Cleanups so that Bison-generated parsers have less lint.
3337 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
3338 Prepend /*ARGSUSED*/, for lint's sake.
3339 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
3340 definition if 'lint' is defined.
3341 (YYID): New macro (or function, if lint).
3342 All uses of /*CONSTCOND*/0 replaced by YYID(0).
3343 * data/yacc.c: Likewise.
3344 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
3345 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
3346 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
3347 is C++ only.
3348 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
3349 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
3350 Use YYID(0) rather than 0, for lint.
3351 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
3352 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
3353
f5228370
PE
33542005-12-07 Paul Eggert <eggert@cs.ucla.edu>
3355
3356 * tests/glr-regression.at
3357 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3358 Close memory leak reported by twlevo.
3359
69ce078b
PE
33602005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
3361
6ff99711
PE
3362 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
3363 all stacks.
3364 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
3365 * tests/glr-regression.at (No users destructors if stack 0 deleted):
3366 New test case.
3367 (Duplicated user destructor for lookahead): This test now is expected
3368 to succeed.
3369
af3412cd
PE
33702005-12-01 Paul Eggert <eggert@cs.ucla.edu>
3371
32b5b719 3372 * NEWS: Document the following change.
af3412cd
PE
3373 * data/yacc.c: Say "parser skeleton" rather than "file", since
3374 it's no longer just a file.
3375 * data/glr.c: Grant a special exception for C GLR parsers, that
3376 reads like the already-existing exception for C LALR(1) parsers.
3377 * data/glr.cc: Likewise.
3378 * data/lalr1.cc: Likewise.
3379 * data/location.cc: Likewise.
3380 * data/yacc.c: Reword the "written by" statement to clarify that
3381 it was the parser skeleton, not the entire output file.
3382 * data/glr.c: Written by Paul Hilfinger.
3383 * data/glr.cc: Written by Akim Demaille.
3384 * data/lalr1.cc: Likewise.
3385
035aa4a0
PE
33862005-11-18 Paul Eggert <eggert@cs.ucla.edu>
3387
d9963c85
PE
3388 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
3389 Fix typos in previous change that broke 'make check'.
3390 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
3391 supported in C.
3392 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
3393 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
3394 We can revert this once things settle down.
3395
035aa4a0
PE
3396 * src/conflicts.c (conflicts_print): Don't print file name twice
3397 when %expect fails because there were no conflicts.
3398 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
3399 change.
3400 * tests/conflicts.at (%expect not enough, %expect too much):
3401 (%expect with reduce conflicts): Adjust to new behavior.
3402
34032005-11-18 Akim Demaille <akim@epita.fr>
3404
3405 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
3406 errors.
3407 * NEWS: Document this.
3408 * doc/bison.texinfo (Expect Decl): Likewise.
3409
d1ff7a7c
AD
34102005-11-16 Akim Demaille <akim@epita.fr>
3411
3412 Generalize the display of semantic values and locations in traces.
3413 * data/glr.c (yy_reduce_print): Fix indices (again).
3414 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
3415 literal integers.
3416 * data/lalr1.cc (yyreduce_print): Rename as...
3417 (yy_reduce_print): this.
3418 Display values and locations.
3419 * data/yacc.c (yy_reduce_print): Likewise.
3420 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
3421 (yysymprint): Move higher to be visible from yy_reduce_print).
3422 (yyparse): Adjust.
3423 * tests/calc.at: Adjust the expected length of the traces.
3424
6de5398d
AD
34252005-11-14 Akim Demaille <akim@epita.fr>
3426
3427 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
3428 from 1 to N, while values and location start at 0.
3429 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
3430
a1373f55
AD
34312005-11-14 Akim Demaille <akim@epita.fr>
3432
3433 * data/glr.c (yy_reduce_print): Fix the $ number.
3434
613d8952
AD
34352005-11-14 Akim Demaille <akim@epita.fr>
3436
3437 "Use" parse parameters.
3438 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
3439 * data/glr.c, data/glr.cc: Use them.
3440 * data/glr.c (YYUSE): Have a C++ definition that supports
3441 non-pointer types.
3442
b2741627
AD
34432005-11-14 Akim Demaille <akim@epita.fr>
3444
3445 * data/glr.c (yyexpandGLRStack): Declare only if defined.
3446
5059b5c8
AD
34472005-11-14 Akim Demaille <akim@epita.fr>
3448
42249483
AD
3449 * data/glr.cc: New.
3450 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 3451
4626a15d
AD
34522005-11-12 Akim Demaille <akim@epita.fr>
3453
3454 Let position and location be PODs.
3455 * data/location.cc (position::initialize, location::initialize): New.
3456 (position::position, location::location): Define only if
3457 b4_location_constructors is defined.
3458 * data/lalr1.cc (b4_location_constructors): Define it for backward
3459 compatibility.
3460 * doc/bison.texinfo (Initial Action Decl): Use initialize.
3461
34622005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
3463
3464 * data/lalr1.cc: Move the body of the ctor and dtor into the
3465 parser file (instead of the header).
3466 Wrap the implementations in a "namespace yy".
3467
34682005-11-12 Akim Demaille <akim@epita.fr>
3469
3470 Have glr.c include its header file when created.
3471 * data/glr.c (b4_shared_declarations): New.
3472 Output them verbatim in the parser if !%defines, otherwise
3473 output then in the header file, and include it instead.
3474
1989d947
AD
34752005-11-11 Akim Demaille <akim@epita.fr>
3476
3477 * data/glr.c: Comment changes.
3478
34792005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
3480
3481 When yydebug, report semantic and location values for reductions.
3482 * data/glr.c (yy_reduce_print): Report the semantic values and the
3483 locations.
3484 (YY_REDUCE_PRINT): Adjust.
3485 (yyglrReduce): Use them.
3486 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
3487 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
3488 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
3489 traces.
3490
02998094
AD
34912005-11-10 Akim Demaille <akim@epita.fr>
3492
3493 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
3494 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
3495 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
3496
5210672f
PE
34972005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
3498
3499 * m4/cxx.m4, examples/Makefile.am: Don't build
3500 examples/calc++ if no C++ compiler is available. (trivial change)
3501
a8991a1d
AD
35022005-11-09 Akim Demaille <akim@epita.fr>
3503
3504 * src/scan-skel.l: Use a couple of asserts.
3505
36b5e963
AD
35062005-11-03 Akim Demaille <akim@epita.fr>
3507
3508 In some (weird) cases, the final state number is incorrect.
3509 Reported by Alexandre Duret-Lutz.
3510 * src/LR0.c (state_list_append): Remove the computation of
3511 final_state.
3512 (save_reductions): Do it here.
3513 (get_state): Alpha conversion.
3514 (generate_states): Use a for loop.
3515 * src/gram.h (item_number_is_rule_number)
3516 (item_number_is_symbol_number): New.
3517 * src/state.c: Use assert.
3518 * src/system.h: Include assert.h.
3519 * tests/sets.at (Accept): New.
3520
44e7ead1
PH
35212005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3522
3523 * data/glr.c (yyfill): Adjust comment.
36b5e963 3524 (yyresolveAction): Initialize default location properly
44e7ead1
PH
3525 for empty right-hand sides.
3526 (yydoAction): Ditto.
3527 Add comment explaining apparently dead code.
36b5e963
AD
3528 * tests/glr-regression.at
3529 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 3530 New test.
36b5e963 3531
e10a80ee
PE
35322005-10-30 Paul Eggert <eggert@cs.ucla.edu>
3533
3534 * bootstrap (cleanup_gnulib): New function. Use it to clean up
3535 gnulib when interrupted. This fixes some race conditions and
3536 works around some portability problems (one noted by Paul
3537 Hilfinger).
3538
067b32ee
AD
35392005-10-22 Akim <akim@epita.fr>
3540
3541 * Makefile.cfg: Adjust to config -> build-aux.
3542 Reported by twledo.
3543
4b367315
AD
35442005-10-21 Akim Demaille <akim@epita.fr>
3545
3546 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
3547 the %parse-params.
3548 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
3549 * data/yacc.c (b4_Pure_if): Rename as...
3550 (b4_yacc_pure_if): this.
3551 (YY_SYMBOL_PRINT, yyparse): Adjust.
3552 * doc/bison.texinfo: Formatting changes.
3553
24cc23d9
AD
35542005-10-21 Akim Demaille <akim@epita.fr>
3555
3556 Finish the transition config -> build-aux.
3557 * configure.ac, Makefile.am: Use build-aux.
3558 * config/prev-version, config/announce-gen, config/Makefile.am:
3559 Move to...
3560 * build-aux/prev-version, build-aux/announce-gen,
3561 * build-aux/Makefile.am: here.
3562
d4476375
AD
35632005-10-14 Akim Demaille <akim@epita.fr>
3564
3565 * examples/calc++/test: Use set -x only when VERBOSE.
3566
302c0aee
PE
35672005-10-13 Paul Eggert <eggert@cs.ucla.edu>
3568
3569 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
3570 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
3571
7625ec2c
AD
35722005-10-13 Akim Demaille <akim@epita.fr>
3573
3574 * src/scan-skel.l: Output the base name parts of the parser and
3575 header file names.
302c0aee 3576 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
3577 additional checks.
3578 Use this to exercise C++ outputs in subdirs.
3579 Reported by Oleg Smolsky.
3580
ba0fe3c7
PE
35812005-10-12 Paul Eggert <eggert@cs.ucla.edu>
3582
3583 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
3584 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
3585 Problem reported by John P. Hartmann.
3586 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
3587 already defined it.
3588
9b8a5ce0
AD
35892005-10-12 Akim Demaille <akim@epita.fr>
3590
3591 * src/parse-gram.y (version_check): Exit 63 to please missing
3592 (stands for "version mismatch).
3593 * tests/input.at, doc/bison.texinfo: Adjust.
3594
4f6e011e
PE
35952005-10-10 Paul Eggert <eggert@cs.ucla.edu>
3596
3597 Work around portability problems with Visual Age C compiler
3598 (xlc and xlC_r) reported by John P. Hartmann.
3599 * data/location.cc (initial_column, initial_line): Remove.
3600 All uses replaced by 0 and 1.
3601 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
3602 that xlc complains about.
3603 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 3604 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 3605 as __STDC__.
4d7aa45e
PE
3606 * data/yacc.c (YYMODERN_C): New macro, which also looks at
3607 __STDC_VERSION__. Use it everywhere instead of looking at
3608 __STDC__ and __cplusplus.
4f6e011e 3609
a1b3bf8c
AD
36102005-10-10 Akim Demaille <akim@epita.fr>
3611
3612 * examples/calc++/test: Be quiet unless VERBOSE.
3613
412e44aa
PE
36142005-10-05 Paul Eggert <eggert@cs.ucla.edu>
3615
2a4647a3
PE
3616 * data/c.m4 (yydestruct, yysymprint):
3617 Use YYUSE instead of casting to void.
3618 * data/glr.c (YYUSE): New macro.
3619 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3620 Use it instead of rolling our own.
3621 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3622 (YYCHK1):
3623 Use /*CONSTCOND*/ to suppress lint warnings.
3624 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3625 (YY_STACK_PRINT): Use 'false' not '0'.
3626 (YYUSE): New macro.
3627 (yysymprint_, yydestruct_): Use it instead of rolling our own.
3628 * data/yacc.c (YYUSE): New macro.
3629 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
3630 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
3631 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
3632
3633
412e44aa
PE
3634 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
3635 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
3636
88c6637f
PE
36372005-10-04 Paul Eggert <eggert@cs.ucla.edu>
3638
2f4f028d
PE
3639 Undo the parts of the unlocked-I/O change that substituted
3640 putc or puts for printf. This might hurt performance a bit,
3641 but some people prefer the printf style.
3642 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
3643 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
3644 All uses replaced by YYFPRINTF and YYDPRINTF.
3645 * data/yacc.c: Likewise.
3646 * lib/bitset.c (bitset_print): Likewise.
3647 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
3648 putc and puts.
3649 * lib/lbitset.c (debug_lbitset): Likewise.
3650 * src/closure.c (print_firsts, print_fderives): Likewise.
3651 * src/gram.c (grammar_dump): Likewise.
3652 * src/lalr.c (look_ahead_tokens_print): Likewise.
3653 * src/output.c (escaped_output): Likewise.
3654 (user_actions_output): Break apart two printfs.
3655 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
3656 * src/reduce.c (reduce_print): Likewise.
3657 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
3658 * src/system.h: Include unlocked-io.h rathe than stdio.h.
3659
88c6637f
PE
3660 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3661 Use assignments rather than casts-to-void to suppress
3662 unused-variable warnings. This pacifies 'lint'.
3663 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
3664 unused-variable warnings.
3665
fb32e373
JMG
36662005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3667
3668 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
3669
edb8f44f
PE
36702005-10-02 Paul Eggert <eggert@cs.ucla.edu>
3671
fb9c0b33
PE
3672 Use unlocked I/O for a minor performance improvement on hosts like
3673 GNU/Linux and Solaris that support unlocked I/O. The basic idea
3674 is to use the gnlib unlocked-io module, and to prefer putc and
3675 puts to printf when either will work (since the latter doesn't
3676 come in an unlocked flavor).
3677 * bootstrap (gnulib_modules): Add unlocked-io.
3678 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
3679 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
3680 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
3681 and similarly for puts and putc and printf.
3682 * data/yacc.c: Likewise.
3683 * lib/bitset.c (bitset_print): Likewise.
3684 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
3685 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
3686 to printf.
3687 * lib/lbitset.c (debug_lbitset): Likewise.
3688 * src/closure.c (print_firsts, print_fderives): Likewise.
3689 * src/gram.c (grammar_dump): Likewise.
3690 * src/lalr.c (look_ahead_tokens_print): Likewise.
3691 * src/output.c (escaped_output): Likewise.
3692 (user_actions_output): Coalesce two printfs.
2f4f028d 3693 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
3694 * src/reduce.c (reduce_print): Likewise.
3695 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 3696 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 3697
edb8f44f
PE
3698 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
3699 this confuses xgettext.
3700
b50d2359
AD
37012005-10-02 Akim Demaille <akim@epita.fr>
3702
3703 * bootstrap (gnulib_modules): Add strverscmp.
3704 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
3705 * m4/.cvsignore: Add strverscmp.m4.
3706 * src/parse-gram.y (%require): New token, new rule.
3707 (version_check): New.
3708 * src/scan-gram.l (%require): Adjust.
3709 * tests/input.at (AT_REQUIRE): New.
3710 Use it.
3711 * doc/bison.texinfo (Require Decl): New.
3712 (Calc++ Parser): Use %require.
3713
21667f64
AD
37142005-10-02 Akim Demaille <akim@epita.fr>
3715
3716 * data/location.cc: New.
3717
2b81e969
AD
37182005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
3719 Akim Demaille <akim@epita.fr>
3720
3721 Make sure -odir/foo.cc creates dir/location.hh etc.
3722 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
3723 (spec_file_prefix, spec_verbose_file, spec_graph_file)
3724 (spec_defines_file): Now const.
3725 (dir_prefix): New.
3726 (short_base_name): Remove.
3727 * src/files.c: Adjust.
3728 (dirname.h): Include.
3729 (base_name): Don't prototype it.
3730 (finput): Remove, duplicates gram_in.
3731 (full_base_name, short_base_name): Replace by...
3732 (all_but_ext, all_but_tab_ext): these.
3733 (compute_base_names): Rename as...
3734 (compute_file_name_parts): this.
3735 Update to compute the new variables, including dir_prefix.
3736 Adjust dependencies.
3737 * src/output.c (prepare): Output them.
3738 * src/reader.c: Adjust to use gram_in, not finput.
3739 * src/scan-skel.l (@dir_prefix@): New.
3740
ad6a9b97
JMG
37412005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3742
3743 * lib/subpipe.c: New function end_of_output_subpipe() added
3744 to allow support for non-posix systems. This is a no-op function
3745 for posix systems.
3746
3747 * lib/subpipe.h: New function end_of_output_subpipe() added
3748 to allow support for non-posix systems. This is a no-op function
3749 for posix systems.
3750
3751 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
3752 handle the lack of pipe/fork functionality on non-posix systems.
3753
3754 * djgpp/Makefile.maint: DJGPP specific file.
3755
3756 * djgpp/README.in: DJGPP specific file.
3757
3758 * djgpp/config.bat: DJGPP specific configuration file.
3759
3760 * djgpp/config.sed: DJGPP specific configuration file.
3761
3762 * djgpp/config.site: DJGPP specific configuration file.
3763
3764 * djgpp/config_h.sed: DJGPP specific configuration file.
3765
3766 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
3767
3768 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
3769
fc695704
AD
37702005-10-02 Akim Demaille <akim@epita.fr>
3771
3772 * data/location.cc: New, extract from...
3773 * data/lalr1.cc: here.
3774 (location.hh): Include it after the user prologue, in case the
3775 filename type is defined by the user.
3776 Forward declation location and position before the pre-prologue.
3777 (yyresult_): Rename as...
3778 (yyresult): this, it's a local variable, not an attribute.
3779 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
3780
37812005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
3782
3783 * examples/extexi: Restore the #line generation.
3784
fb9712a9
AD
37852005-09-30 Akim Demaille <akim@epita.fr>,
3786 Alexandre Duret-Lutz <adl@gnu.org>
3787
3788 Move the token type and YYSTYPE in the parser class.
3789 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
3790 (parser::token): New, from the moved free definition of tokens.
3791 (parser::semantic_value): Now a full definition instead of an
3792 indirection to YYSTYPE.
3793 (b4_post_prologue): No longer included in the header file, but
3794 in the implementation file.
3795 * doc/bison.texi (C+ Language Interface): Update.
3796 * src/parse-gram.y: Support unary %define.
3797 * tests/actions.at: Define global_tokens_and_yystype for backward
3798 compatibility until we update the tests.
3799 * tests/calc.at: Idem.
3800 (first_line, first_column, last_line, last_column): Define for lalr1.cc
3801 to simplify the code.
3802
55f0c7b1
PE
38032005-09-29 Paul Eggert <eggert@cs.ucla.edu>
3804
3805 Port to SunOS 4.1.4, which lacks strtoul and strerror.
3806 Ah, the good old days! Problem reported by Peter Klein.
3807 * bootstrap (gnulib_modules): Add strerror, strtoul.
3808 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
3809 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
3810
fb9712a9 38112005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
3812
3813 * data/c.m4 (b4_error_verbose_if): New.
3814 * data/lalr1.cc: Use it.
3815 (YYERROR_VERBOSE_IF): Remove.
3816 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
3817 parser members, replaced by...
3818 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
3819 local variables.
3820 (yysyntax_error_): Takes the state number as argument.
3821 (yyreduce_print_): Use the argument yyrule, not the former
3822 attribute yyn_.
3823
8a6f72f3
PE
38242005-09-26 Paul Eggert <eggert@cs.ucla.edu>
3825
3826 * bootstrap (gnulib_modules): Add verify.
3827 * lib/.cvsignore: Add verify.h.
3828 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
3829 * src/system.h (verify): Remove.
3830 Include verify.h instead.
3831 * src/tables.c (tables_generate): Use new API for 'verify'.
3832
0d50976f
PE
38332005-09-21 Paul Eggert <eggert@cs.ucla.edu>
3834
ebc3737e
PE
3835 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
3836 local variables whose names begin with 'yy'.
3837 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
3838 Trivial changes from Joel E. Denny.
3839
0d50976f
PE
3840 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
3841 it itself.
3842 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
3843 don't use alloca any more.
3844
3845 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
3846 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 3847 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
3848 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
3849 to match yacc.c, to test more hosts.
3850
a05b79df
PE
38512005-09-20 Paul Eggert <eggert@cs.ucla.edu>
3852
55289366
PE
3853 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
3854 doesn't affect behavior.
3855 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
3856 Solaris, AIX, MSC.
3857 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
3858 This works a bit better with glibc, if user code has already included
3859 stdlib.h.
3860 * doc/bison.texinfo (Bison Parser): Document that users can't
3861 arbitrarily use malloc and free for other purposes. Document
3862 that <alloca.h> and <malloc.h> might be included.
3863 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
3864 user must declare alloca.
3865
a05b79df
PE
3866 * HACKING (release): Forwarn the Translation Project about
3867 stable releses.
3868
3ab2ca22
AD
38692005-09-20 Akim Demaille <akim@epita.fr>
3870
3871 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
3872
a9739e7c
PE
38732005-09-19 Paul Eggert <eggert@cs.ucla.edu>
3874
a702593e
PE
3875 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
3876 (YYSTACK_ALLOC_MAXIMUM): Use it.
3877 (yysyntax_error): New function.
3878 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
3879 multiple syntax errors are reported, and alloca is being used.
3880 Instead, reallocate buffers twice as big each time, so that
3881 we waste at most half the allocated memory. Start with a small
3882 (128-byte) buffer that will suffice in most cases anyway.
3883 Use yysyntax_error to do most of the work.
3884
3885 * doc/bison.texinfo (Error Reporting, Table of Symbols):
3886 yynerrs is the number of errors reported, not the number of
3887 errors encountered.
3888
a9739e7c
PE
3889 * tests/glr-regression.at (Duplicated user destructor for lookahead):
3890 Mark it as expected to fail.
3891 Cast result of malloc; problem reported by twlevo@xs4all.nl.
3892 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
3893 Don't start user-code symbols with "yy", to avoid name space problems.
3894
f479c6c6
AD
38952005-09-19 Akim Demaille <akim@epita.fr>
3896
3897 Remove the traits, failed experiment.
3898 It never proved useful, and anyway because of the current
3899 definition, it was not possible to have several specialization of
3900 this traits, making it useless.
3901 * data/lalr1.cc (yy:traits): Remove.
3902 Inline its definitions in the parser class.
3903
e2586f82
AD
39042005-09-19 Akim Demaille <akim@epita.fr>
3905
3906 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
3907 least Mac OSX with a /usr/local install of gettext.
3908
2e8cf949
AD
39092005-09-19 Akim Demaille <akim@epita.fr>
3910
3911 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
3912 and yytoken for similarity with the other skeletons.
3913
c7fb0b90
AD
39142005-09-19 Akim Demaille <akim@epita.fr>
3915
4e26c69e 3916 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 3917
1bd0deda
PE
39182005-09-16 Paul Eggert <eggert@cs.ucla.edu>
3919
3920 * NEWS: Version 2.1.
3921
3922 * NEWS: Remove notice of yytname change, since it was never in an
3923 official release.
3924 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
3925 diagnostic.
3926 * src/output.c (prepare): Likewise.
3927 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
3928 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
3929 is not defined. This is an awful hack, but it's enough for now.
3930 All callers changed.
3931 * tests/glr-regression-at (make_value): Args are const pointers now,
3932 to avoid GCC warning.
3933 (Duplicated user destructor for lookahead): New test. Currently
3934 skipped. It fails on my host but I'm not sure it'll always fail.
3935
39362005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
3937
3938 * src/symtab.h (struct symbol): Declare the printer and destructor
3939 as const, to avoid accidental calls to free.
3940 (symbol_destructor_set, symbol_printer_set): Adjust.
3941 * src/symtab.c: Adjust.
3942
1bd0deda 39432005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
3944
3945 * data/c.m4 (b4_token_enums): New.
3946 (b4_token_defines): Rename as...
3947 (b4_token_enums_defines): this.
3948 (b4_token_defines): New, output only the #defines.
3949 * data/yacc.c, data/glr.c: Adjust.
3950 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
3951 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
3952 as default values.
3953
dbcdae2d
AD
39542005-09-16 Akim Demaille <akim@epita.fr>
3955
3956 * data/lalr1.cc (yylex_): Remove, inline its code.
3957 (yyreport_syntax_error_): Remove, replaced by...
3958 (yysyntax_error_): this which returns a string and leaves to the
3959 caller the call to the users' error function.
3960 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
3961 Move from members of the parser object...
3962 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
3963 to local variables of the parse function.
3964
70d8f291
AD
39652005-09-16 Akim Demaille <akim@epita.fr>
3966
3967 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
3968 since it's in Bison's name space.
3969
b47dbebe
PE
39702005-09-15 Paul Eggert <eggert@cs.ucla.edu>
3971
ae199bf1
PE
3972 * data/glr.c (yyresolveValue): Add default case to pacify
3973 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
3974
b47dbebe
PE
3975 * NEWS: Document when yyparse started to return 2.
3976 * doc/bison.texinfo (Parser Function): Document when yyparse
3977 returns 2.
3978
3979 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
3980 (b4_filename_type): Renamed back from b4_file_name_type. All uses
3981 changed.
3982 (class position): file_name -> filename (reverting). All uses changed.
3983
39842005-09-14 Paul Eggert <eggert@cs.ucla.edu>
3985
3986 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
3987 do anything if $@ exists. This reverts part of the 2005-07-07
3988 patch.
3989
00292f66
PE
39902005-09-11 Paul Eggert <eggert@cs.ucla.edu>
3991
3992 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
3993 contains obsolete information and isn't worth distributing as a
3994 separate file anyway.
3995 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
3996 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
3997 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
3998 (yyparse): Abort if user code uses longjmp to throw an unexpected
3999 value.
4000
a420f962
PE
40012005-09-09 Paul Eggert <eggert@cs.ucla.edu>
4002
00292f66
PE
4003 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
4004 Suggested by twlevo@xs4all.nl.
4005
127287e9
PE
4006 * data/glr.c (YYCHK1): Do not assume YYE is in range.
4007 This avoids a diagnostic from gcc -Wswitch-enum.
4008 Problem reported by twlevo@xs4all.nl.
4009
a420f962
PE
4010 * doc/bison.texinfo: Don't use "filename", as per GNU coding
4011 standards. Use "file name" or "file" or "name", depending on
4012 the context.
4013 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
4014 not to hack/foo.tab.c.
4015 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
4016 * data/glr.c: b4_filename -> b4_file_name.
4017 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
4018 All uses changed.
4019 (class position): filename -> file_name. All uses changed.
4020 * data/yacc.c: b4_filename -> b4_file_name.
4021 * lib/bitset.h: filename -> file_name in local vars.
4022 * lib/bitset_stats.c: Likewise.
4023 * src/files.c: Likewise.
4024 * src/scan-skel.l ("@output ".*\n): Likewise.
4025 * src/files.c (file_name_split): Renamed from filename_split.
4026 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
4027
40282005-09-08 Paul Eggert <eggert@cs.ucla.edu>
4029
4030 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
4031 to accommodate latest gnulib.
4032
4033 * tests/glr-regression.at (Duplicate representation of merged trees):
4034 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
4035
4036 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
4037 needed.
4038
42a6501d
PE
40392005-08-26 Paul Eggert <eggert@cs.ucla.edu>
4040
4041 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
4042 All uses changed. Invoke user destructor after an error during a
4043 split parse (trivial change from Joel E. Denny).
4044
4045 * tests/glr-regression.at
4046 (User destructor after an error during a split parse): New test case.
4047 Problem reported by Joel E. Denny in:
4048 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
4049
ef9a1faf
PE
40502005-08-25 Paul Eggert <eggert@cs.ucla.edu>
4051
5b4aaf78
PE
4052 * README-cvs: Give URLs for recommended tools.
4053 Mention Gzip version problem, and bootstrapping issues.
4054 Remove troubleshooting section, as it's somewhat obsolete.
4055
b5240ba5
PE
4056 * bootstrap (no_cache): New var, to accommodate different wget
4057 variants. Use it instead of '-C off'. Problem reported by
4058 twlevo@xs4all.nl.
4059
ef9a1faf
PE
4060 * data/glr.c (yydestroyStackItem): New function.
4061 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
4062 debugging information. Problem reported by Joel E. Denny.
4063
e6efa9da
AD
40642005-08-25 Akim Demaille <akim@epita.fr>
4065
4066 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
4067
adc90f13
PE
40682005-08-24 Paul Eggert <eggert@cs.ucla.edu>
4069
4070 * data/glr.c (yyrecoverSyntaxError, yyreturn):
4071 Don't invoke destructor on unresolved entries.
4072 * tests/glr-regression.at
4073 (User destructor for unresolved GLR semantic value): New test case.
4074 Problem reported by Joel E. Denny in:
4075 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
4076
f9315de5
PE
40772005-08-21 Paul Eggert <eggert@cs.ucla.edu>
4078
15d29c1f
PE
4079 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
4080 Add strnlen.c.
4081 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
4082 lib-prefix.m4, po.m4.
4083
dd5f2af2
PE
4084 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
4085 in yydestruct diagnostic, since it might not be an error.
4086 Problem reported by Joel Denny near end of
4087 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 4088 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
4089 * data/yacc.c (yyreturn): Likewise.
4090 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
4091
4092 * src/files.c: Remove obsolete FIXME comment.
4093
4094 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
4095 with the other templates, and to fix bogus run-on messages such
4096 as the one reported at the end of
4097 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
4098 All callers changed to avoid the newline.
4099 (yyprocessOneStack): Output two lines rather than one, to accommodate
4100 the above change. This changes the debug output format slightly.
4101
f9315de5
PE
4102 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
4103 reported by Joel E. Denny in
4104 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
4105 (trivial change).
4106 * tests/glr-regression.at (Duplicate representation of merged trees):
4107 New test, from Joel E. Denny in:
4108 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
4109 * THANKS: Add Joel E. Denny.
4110
4111 * configure.ac (AC_INIT): Bump to 2.0c.
4112
04098407
PE
41132005-07-24 Paul Eggert <eggert@cs.ucla.edu>
4114
4115 * NEWS: Version 2.0b.
4116
ca5d2013
PE
4117 * Makefile.am (SUBDIRS): Put examples before tests, so that
4118 "make check" doesn't finish with "All 1 tests passed".
4119
3d54b576
PE
4120 * tests/regression.at (Token definitions): Don't rely on
4121 AT_PARSER_CHECK for data that contains backslashes. It currently
4122 uses 'echo', and 'echo' isn't portable if its argument contains
4123 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
4124 that the byte '\0xff' is not printable in the C locale; it is,
4125 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
4126 not printable, so use '\0x81' to test.
4127
d53ae497
PE
4128 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
4129 version of GCC, since the macro is used with non-GCC compilers.
4130
fc01665e
PE
4131 Fix core dump reported by Pablo De Napoli in
4132 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
4133 * tests/regression.at (Invalid inputs with {}): New test.
4134 * src/parse-gram.y (token_name): Translate type before using
4135 it as an index.
4136
04098407
PE
4137 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
4138 the user's name space. All uses changed to __attribute__
4139 ((__unused__)).
4140 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
4141 Add __attribute__ ((__noreturn__)).
4142
4143 * etc/clcommit: Remove. We weren't using it, and it failed
4144 "make maintainer-distcheck".
4145 * Makefile.maint: Merge from coreutils.
4146 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
4147 (syntax-check-rules): Change list of rules as described below.
4148 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
4149 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
4150 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
4151 (sc_trailing_space): New rules.
4152 (sc_xalloc_h_in_src): Remove.
4153 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
4154 (sc_space_tab, sc_error_exit_success, sc_changelog):
4155 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
4156 (makefile-check, po-check, author_mark_check):
4157 (makefile_path_separator_check, copyright-check):
4158 Use grep -n, to make it easier to find violations.
4159 Use CVS_LIST and CVS_LIST_EXCEPT.
4160 (header_regexp, h_re): Remove.
4161 (dd_c): New macro.
4162 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
4163 (my-distcheck): Use more-modern GCC flags.
4164 (signatures, %.asc): Remove.
4165 (rel-files, announcement): Remove signatures.
4166 Restore old updating code, even though we don't use it, so
4167 that we're the same as coreutils.
4168 (alpha, beta, major): Depend on news-date-check.
4169 Make the upload commands.
4170
4171 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
4172 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
4173 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
4174 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
4175 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
4176 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
4177 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
4178 * tests/sets.at: Likewise.
4179
4180 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
4181 we comment out the Autoconf version number.
4182 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
4183 it's error-prone and "make maintainer-distcheck" rejects it.
4184
4185 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
4186 Indent calls to "error" to pacify "make maintainer-distcheck",
4187 when the calls are not intended to be translated.
4188 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
4189
4190 * src/Makefile.am (DEFS): Use +=, to pacify
4191 "make maintainer-distcheck".
4192 (bison_SOURCES): Add scan-skel.h.
4193 (sc_tight_scope): New rule, from coreutils.
4194
4195 * src/files.c (src_extension, header_extension):
4196 Now static, not extern.
4197 * src/getargs.c (short_options): Likewise.
4198 * src/muscle_tab.c (muscle_table): Likewise.
4199 * src/parse-gram.y (current_class, current_type, current_prec):
4200 Likewise.
4201 * src/reader.c (grammar_end, previous_rule_end): Likewise.
4202 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
4203 * src/main.c (main): Cast bindtextdomain and textdomain calls to
4204 void, to avoid warning when NLS is disabled.
4205 * src/output.c: Include scan-skel.h.
4206 (scan_skel): Remove decl, since scan-skel.h does this.
4207 (output_skeleton):
4208 Indent calls to "error" to pacify "make maintainer-distcheck".
4209 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
4210 * src/reader.h (gram_end, gram_lineno): New decls to pacify
4211 "make maintainer-distcheck".
4212 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
4213 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
4214 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
4215 (skel_lex_destroy, scan_skel): Move these decls to...
4216 * src/scan-skel.h: New file.
4217 * src/uniqstr.c (uniqstr_assert):
4218 Indent calls to "error" to pacify "make maintainer-distcheck".
4219
4220 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
4221 not @VAR@.
4222
4223 * tests/torture.at: Revamp to avoid misuse of atoi that
4224 "make maintainer-distcheck" complained about.
4225
4226 * examples/extexi (message): Don't print a message more than once,
4227 and omit line-number decoration that makes Emacs compile think
4228 that informative messages are worth worrying about.
4229
42302005-07-22 Paul Eggert <eggert@cs.ucla.edu>
4231
4232 * configure.ac: Update version number.
4233
4234 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
4235 accidentally.
4236 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
4237 autogenerated by the maintainer.
4238 * examples/calc++/.cvsignore: Add *.yy.
4239
4240 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
4241 * lib/bitset_stats.c (bitset_stats_init): Likewise.
4242 * lib/bitsetv.c (bitsetv_alloc): Likewise.
4243
4244 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
4245
4246 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
4247 from maintainer-distcheck about casting the argument of 'free'.
4248
4249 * NEWS: Mention recent yytname changes.
4250 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
4251
4252 * bootstrap: For translations that have not yet been upgraded to
4253 the new runtime-po domain, prime the pump by extracting the
4254 relevant strings from the obsolete translations. This code can be
4255 removed once the bison-runtime domain has been translated by each
4256 team.
4257
4258 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
4259 now that token names are already quoted.
4260
4261 Fix problem reported by Anthony Heading.
4262 * data/glr.c (YYTOKEN_TABLE): New macro.
4263 (yytname): Define if YYTOKEN_TABLE.
4264 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
4265 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
4266 (YYERROR_VERBOSE): Define the same way the other skeletons do.
4267 * src/output.c (prepare_symbols): Output token_table_flag.
4268
0ffda363
PE
42692005-07-21 Paul Eggert <eggert@cs.ucla.edu>
4270
4271 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
4272 again if the first call fails.
4273
4274 * data/glr.c (yytnamerr): New function.
4275 (yyreportSyntaxError): Use it to dequote most string literals.
4276 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
4277 with other skeletons. All uses changed.
4278 (yytnameerr_): New function.
4279 (yyreport_syntax_error): Use it to dequote most string literals.
4280 * data/yacc.c (yytnamerr): New function.
4281 (yyerrlab): Use it to decode most string literals.
4282 * doc/bison.texinfo (Decl Summary, Calling Convention):
4283 Clarify quoting convention of yytname.
4284 * src/output.c (prepare_symbols): Quote all names. This undoes
4285 the 2005-04-17 change, which is now accomplished (mostly) via
4286 changes in the parsers as described above.
4287 * tests/regression.at (Token definitions, Web2c Actions):
4288 Undo most 2005-04-17 change here, too.
4289
42902005-07-20 Paul Eggert <eggert@cs.ucla.edu>
4291
4292 Fix more problems reported by twlevo@xs4all.nl.
4293 * tests/cxx-type.at: Don't pipe output of ./types through sed to
4294 remove trailing spaces. This loses the exit status of ./types,
4295 and isn't needed since ./types shouldn't be emitting trailing
4296 spaces.
4297 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
4298 as the stack isn't valid in that case.
4299
4300 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
4301 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
4302 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
4303 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
4304 is used.
4305 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
4306 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
4307 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
4308 Likewise.
4309
4310 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
4311 overly-picky compilers that reject 'char *foo = "bar";'.
4312
4313 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
4314 to FILE * parameter, not to stderr. This fixes a typo introduced
4315 in the 2005-07-12 change.
4316
4317 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
4318 warnings from GCC 4.
4319
4320 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
4321 (yyglrShiftDefer, yysplitStack):
4322 Remove unused parameters b4_pure_formals. All uses changed.
4323 (yyglrShift): Remove unused parameters b4_user_formals.
4324 All uses changed.
4325 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
4326
6100a9aa
PE
43272005-07-18 Paul Eggert <eggert@cs.ucla.edu>
4328
258b75ca
PE
4329 Destructor cleanups and regularization among the three skeletons.
4330 * NEWS: Document the behavior changes.
4331 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
4332 stack before failing, as the cleanup code will do it for us now.
4333 * data/lalr1.cc (yyerrlab): Likewise.
4334 * data/glr.c (yyparse): Pop everything off the stack before
4335 freeing it, so that destructors get called properly.
4336 * data/lalr1.cc (yyreturn): Likewise.
4337 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
4338 This is more consistent.
4339 * doc/bison.texinfo (Destructor Decl): Mention more reasons
4340 why destructors might be called. 1.875 -> 2.1.
4341 (Destructor Decl, Decl Summary, Table of Symbols):
4342 Some English-language cleanups for %destructor.
4343 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4344 Add output line for destructor of start symbol.
4345 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
4346 because of that same extra output line.
4347
1a059451
PE
4348 * NEWS: Document minor wording changes in diagnostics of
4349 Bison-generated parsers.
4350 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
4351 Remove unused formals. All uses changed.
4352 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
4353 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
4354 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
4355 Rename yyoverflowab to yyexhaustedlab.
4356 When memory exhaustion occurs during syntax-error reporting,
4357 report it separately rather than in a single diagnostic; this
4358 eases translation.
4359 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
4360 (Memory Exhausted): Renamed from Parser Stack Overflow.
4361 Revamp wording slightly to prefer "memory exhaustion".
4362 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
4363
97460c78
PE
4364 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
4365
30757c8c
PE
4366 Add i18n support to the GLR skeleton. Partially fix the C++
4367 skeleton; a C++ expert needs to finish this. Remove debugging
4368 msgids; there's little point to having them translated, since they
4369 can be understood only by someone who can read the
4370 (English-language) source code.
4371
4372 Generate runtime-po/bison-runtime.pot automatically, so that we
4373 don't have to worry about garbage getting in that file. We'll
4374 make sure after the next official release that old msgids don't
4375 get lost. See
4376 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
4377
4378 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
4379 Now auto-generated.
4380 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
4381 Fix typos in explanations of the runtime file.
4382 * bootstrap: Change gettext keyword from YYI18N to YY_.
4383 Use standard Makefile.in.in in runtime-po, since we'll arrange
4384 for backward-compatible bison-runtime.po files in a different way.
4385 * data/glr.c (YY_): New macro, from yacc.c.
4386 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
4387 Translate messages intended for users.
4388 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
4389 the wording in the other skeletons. We don't know that the memory
4390 is virtual.
4391 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
4392 Use same method that yacc.c uses.
4393 Don't translate debugging messages.
4394 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
4395 it doesn't work (yet), and requires C++ expertise to fix.
4396 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
4397 Move defn to a more logical place, to be consistent with other
4398 skeletons.
4399 Don't translate debugging messages.
4400 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
4401 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
4402 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
4403 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
4404
ac8c5689
PE
4405 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
4406 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
4407 void, not int.
4408 * tests/glr-regression.at (Badly Collapsed GLR States):
4409 Likewise.
4410 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4411 yylex should return 0 at EOF rather than aborting.
4412
6100a9aa
PE
4413 Improve tests for stack overflow in GLR parser.
4414 Problem reported by twlevo@xs4all.nl.
4415 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
4416 All uses removed.
4417 (yyStackOverflow): Just longjmp, but with value 2 so that caller
4418 can handle the problem.
4419 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
4420 (yyparse): New local variable yyresult to record the result.
4421 Use result of setjmp to set it, rather than storing itinto
4422 struct.
4423 (yyDone): Remove label.
4424 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
4425 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
4426 if YYABORT is used).
4427 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
4428 yyparse status; put status > 1 into diagnostic.
4429 Check that status==2 works.
4430 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
4431 Use exit status 3 for failure to open (which shouldn't happen).
4432
15f40952
PE
44332005-07-17 Paul Eggert <eggert@cs.ucla.edu>
4434
67fd79c4
PE
4435 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
4436 1 on syntax error; just let yyparse do its thing.
4437 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
4438 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
4439 (Exploding the Stack Size with Alloca):
4440 (Exploding the Stack Size with Malloc):
4441 Expect exit status 2, not 1, since the parser is supposed to blow
4442 its stack. Problem reported by twlevo@xs4all.nl.
4443
15f40952
PE
4444 * data/glr.c (yyparse): Don't assume that the initial calls
4445 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
4446 Print a stack-overflow message and fail instead.
4447 Initialize the line-number information before creating the stack,
4448 so that the stack-overflow message can report line zero safely.
4449
f32c66b5
PE
44502005-07-14 Paul Eggert <eggert@cs.ucla.edu>
4451
a22ff96f 4452 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
4453 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
4454 (yyuserMerge): Provide a default case if b4_mergers is empty.
4455 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
4456 * tests/glr-regression.at
4457 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 4458 Add casts to pacify C++ compilers.
1beb0b24
PE
4459 * tests/glr-regression.at (Improper merging of GLR delayed action
4460 sets): Declare yylex before using it.
f32c66b5 4461 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
4462 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
4463 test for valgrind; valgrind is independent of g++.
4464 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
4465 for compatibility with POSIX 1003.1-2001 (if running coreutils).
4466 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
4467 Use a destructor, so that we can expand the stack. Change
4468 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 4469
d741bd1b
PE
44702005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4471
4472 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
4473 a valgrind failure. Problem reported by twlevo@xs4all.nl.
4474
0410a6e0
PE
44752005-07-13 Paul Eggert <eggert@cs.ucla.edu>
4476
4477 * PACKAGING: New file, suggested by Bruno Haible and taken from
4478 similar wording in gettext's PACKAGING file.
4479 * NEWS: Mention PACKAGING.
4480 * Makefile.am (EXTRA_DIST): Add PACKAGING.
4481
f7ab6a50
PE
44822005-07-12 Paul Eggert <eggert@cs.ucla.edu>
4483
baf785db 4484 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
4485 * bootstrap: Get runtime translations into runtime-po.
4486 Create runtime-po files automatically, if possible.
4487 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
4488 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
4489 does not infringe on the user's name space.
4490 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
4491 * doc/bison.texinfo (Internationalization): Revamp the English
4492 and Texinfo syntax a bit, to try to make it clearer.
4493 (Bison Options, Option Cross Key): Mention --print-localedir.
4494 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
4495 YYENABLE_NLS. Quote a bit more.
4496 * runtime-po/.cvsignore: New file.
4497 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
4498 * runtime-po/Rules-quot: Remove; now created by bootstrap.
4499 * runtime-po/quot.sed: Likewise.
4500 * runtime-po/boldquot.sed: Likewise.
4501 * runtime-po/en@quot.header: Likewise.
4502 * runtime-po/en@boldquot.header: Likewise.
4503 * runtime-po/insert-header.sin: Likewise.
4504 * runtime-po/remove-potcdate.sin: Likewise.
4505 * runtime-po/Makevars: Likewise.
4506 * runtime-po/LINGUAS: Likewise.
4507 * runtime-po/de.po: Likewise; we will rely on the translation project
4508 to maintain this, so "bootstrap" should get it.
0410a6e0 4509 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
4510 its value.
4511 * src/main.c (main): Bind the bison-runtime domain, too.
4512
45132005-07-12 Bruno Haible <bruno@clisp.org>
4514
4515 * data/yacc.c: Include <libintl.h> when NLS is enabled.
4516 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
4517 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
4518 * runtime-po: New directory.
4519 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
4520 $(DOMAIN).pot-update rule, so that old messages are never dropped.
4521 * runtime-po/Rules-quot: New file, copied from po/.
4522 * runtime-po/quot.sed: Likewise.
4523 * runtime-po/boldquot.sed: Likewise.
4524 * runtime-po/en@quot.header: Likewise.
4525 * runtime-po/en@boldquot.header: Likewise.
4526 * runtime-po/insert-header.sin: Likewise.
4527 * runtime-po/remove-potcdate.sin: Likewise.
4528 * runtime-po/Makevars: New file.
4529 * runtime-po/POTFILES.in: New file.
4530 * runtime-po/LINGUAS: New file.
4531 * runtime-po/bison-runtime.pot: New file.
4532 * runtime-po/de.po: New file.
4533 * m4/bison.m4: New file.
4534 * Makefile.am (SUBDIRS): Add runtime-po.
4535 (aclocaldir, aclocal_DATA): New variables.
4536 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
4537 Define aclocaldir.
4538 * src/getargs.c (usage): Document --print-localedir option.
4539 (PRINT_LOCALEDIR_OPTION): New enum item.
4540 (long_options): Add --print-localedir option.
4541 (getargs): Handle --print-localedir option.
4542 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
4543 (Internationalization): New section.
4544
22dda0f0
AD
45452005-07-12 Akim Demaille <akim@epita.fr>
4546
4547 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
4548 for consistency with the rest of the code.
4549 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
4550 Add separators.
4551
82b248ad
AD
45522005-07-12 Akim Demaille <akim@epita.fr>
4553
4554 * src/parse-gram.y: Use %printer instead of YYPRINT.
4555
fa0e9314
AD
45562005-07-12 Akim Demaille <akim@epita.fr>
4557
867a3e00
AD
4558 * src/symtab.h, src/symtab.c (symbol_print): New.
4559 * src/symlist.h, src/symlist.c (symbol_list_print): New.
4560 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
4561
45622005-07-12 Akim Demaille <akim@epita.fr>
4563
4564 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
4565 b4_at_dollar and b4_dollar_dollar.
4566
e054b190
PE
45672005-07-11 Paul Eggert <eggert@cs.ucla.edu>
4568
4569 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
4570 and Pennello's paper.
4571
34160ec4
PE
45722005-07-09 Paul Eggert <eggert@cs.ucla.edu>
4573
407d4a75
PE
4574 * data/yacc.c (yyparse): Undo previous patch. Instead,
4575 set yylsp[0] and yyvsp[0] only if the initial action
4576 sets yylloc and yylval, respectively.
4577
34160ec4
PE
4578 * data/yacc.c (yyparse): In the initial action, set
4579 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
4580 This avoids the use of undefined variables if the initial
4581 action does not set yylloc and/or yylval.
4582
c3d5a4a7
PE
45832005-07-07 Paul Eggert <eggert@cs.ucla.edu>
4584
b34d96c1
PE
4585 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
4586 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
4587 Remove from CVS. These files are automatically generated.
4588 * examples/extexi: Clarify that this file is now part of Bison,
4589 not GNU M4, and that it works with any POSIX-compatible Awk.
4590 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
4591 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
4592 so that we also get calc++-parser.yy. Geneate it.
4593 Use $(AWK), not gawk, since any conforming Awk will do.
4594 Put comment before action, since older 'make' can't handle comment
4595 in action.
4596 $(BUILT_SOURCES): List all built sources, not just some of them.
4597 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
4598 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
4599 $($(calc_sources_generated)): Remove unnecessary test for existence
4600 of target. (This had a shell syntax error anyway; a stray "x".)
4601 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
4602 calc++-parser.yy.
4603 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
4604
c3d5a4a7
PE
4605 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
4606 implied by the other modules.
4607
828c373b
AD
46082005-07-06 Akim Demaille <akim@epita.fr>
4609
4610 Bind examples/calc++ to the package.
4611 * examples/calc++/Makefile: Remove, replaced by...
4612 * examples/calc++/Makefile.am: ... this new file.
4613 * examples/calc++/test: Remove input.
4614 * examples/calc++/compile: Remove.
4615 * examples/Makefile.am: New.
4616 * configure.ac, Makefile.am: Adjust.
4617 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
4618
63cb01d6
PE
46192005-07-05 Paul Eggert <eggert@cs.ucla.edu>
4620
fd2df2ed
PE
4621 * data/glr.c (yyFail): Drastically simplify; since the format argument
4622 never had any % directives, we can simply pass it to yyerror.
4623 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
4624 be modified later, as that is the usual style in glr.c.
4625 Problems reported by Paul Hilfinger.
4626
63cb01d6
PE
4627 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
4628 and size overflow errors.
4629 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
4630 in case the user prolog sets feature-test macros like _GNU_SOURCE.
4631 (YYSIZEMAX): New macro.
4632 (yystpcpy): New function, taken from yacc.c.
4633 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
4634 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
4635 so that we don't have to maintain their signatures.
4636 (yyFail): Check for buffer overflow, by using vsnprintf rather
4637 than vsprintf. Allocate a bigger buffer if possible.
4638 Report an error if buffer allocation fails.
4639 (yyStackOverflow): New function.
4640 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
4641 the initialization was successful. It might fail if storage was
4642 exhausted.
4643 (yyexpandGLRStack): Add more checks for storage allocation failure.
4644 Use yyStackOverflow to report failures.
4645 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
4646 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
4647 Don't assume stack number fits in int.
4648 (yysplitStack): Check for storage allocation failure.
4649 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
4650 can print diagnostics on storage allocation failure. All callers
4651 changed.
4652 (yyresolveValue): Use yybool for boolean.
4653 (yyreportSyntaxError): Check for size-calculation overflow.
4654 This code is taken from yacc.c.
4655 (yyparse): Check for storage allocation errors when allocating
4656 the initial stack.
4657
1c59e0a1
AD
46582005-07-05 Akim Demaille <akim@epita.fr>
4659
4660 Extract calc++ from the documentation.
4661 * doc/bison.texinfo (Calc++): Add the extraction marks.
4662 * examples/extexi: New, from the aborted GNU Programming 2E.
4663 Separate the different paragraph of a file with empty lines.
4664 * examples/Makefile: Use it to extract the whole calc++ example.
4665
8a0adb01
AD
46662005-06-24 Akim Demaille <akim@epita.fr>
4667
4668 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
4669 class typedefs.
4670
12545799
AD
46712005-06-22 Akim Demaille <akim@epita.fr>
4672
4673 * doc/bison.texinfo (C++ Language Interface): First stab.
4674 (C++ Parsers): Remove.
4675
99be0235
AD
46762005-06-22 Akim Demaille <akim@epita.fr>
4677
4678 * data/lalr1.cc (yylex_): Honor %lex-param.
4679
0ffd4fd1
AD
46802005-06-22 Akim Demaille <akim@epita.fr>
4681
4682 Start a set of simple examples.
4683 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
4684 * examples/calc++/calc++-driver.hh,
4685 * examples/calc++/calc++-parser.yy,
4686 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
4687 * examples/calc++/compile, examples/calc++/test: New.
4688
0925ebb4
PE
46892005-06-09 Paul Eggert <eggert@cs.ucla.edu>
4690
4691 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
4692 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
4693 which stems from the 2005-05-27 patch.
4694
43d3b664
PH
46952005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4696
4697 * data/glr.c: Modify treatment of unused parameters to permit use
4698 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
4699
3062864d
PE
47002005-05-30 Paul Eggert <eggert@cs.ucla.edu>
4701
4702 Fix infringement on user name space reported by Janos Zoltan Szabo.
4703 * data/yacc.c (yyparse): strlen -> yystrlen.
4704
989b5b8e
AD
47052005-05-30 Akim Demaille <akim@epita.fr>
4706
4707 * data/lalr1.cc (_): New.
4708 Translate the various messages.
4709
bedf57f5
PE
47102005-05-27 Paul Eggert <eggert@cs.ucla.edu>
4711
4712 Fix infringement on user name space reported by Bruno Haible.
4713 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
4714 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
4715 the user's name space.
4716 (alloca): Include <stdlib.h> to get it, if it's not built in.
4717 (YYMALLOC, YYFREE): Define only if needed.
4718 (malloc, free): Declare, but only if needed, as this infringes on
4719 the user name space.
4720
4d1801f1
PE
47212005-05-25 Paul Eggert <eggert@cs.ucla.edu>
4722
4723 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
4724 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
4725 with %d format.
4726 * lib/ebitset.c (min, max): Undef before defining.
4727 * lib/vbitset.c (min, max): Likewise.
4728 * lib/subpipe.c (create_subpipe): Save local variables in case
4729 vfork clobbers them.
4730
47312005-05-24 Bruno Haible <bruno@clisp.org>
4732
4733 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
4734 error message syntax used by gcc-4.0.
4735
b94a9e1e
PE
47362005-05-23 Paul Eggert <eggert@cs.ucla.edu>
4737
85ac3861
PE
4738 * README: Mention m4 1.4.3. Remove obsolete advice about
4739 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
4740
b94a9e1e
PE
4741 * bootstrap: Remove workaround for problem I encountered with
4742 gettext 0.14.1; it seems to be fixed now.
4743
51c30d21
PE
47442005-05-22 Paul Eggert <eggert@cs.ucla.edu>
4745
009ce67d
PE
4746 * NEWS: Version 2.0a.
4747
f2a97c62
PE
4748 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
4749 the previous change.
4750
c8775f93
PE
4751 Various maintainer cleanups.
4752 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
4753 conftest*, for benefit of CVS commands run at the same time as
4754 "configure". Add build-aux, since "bootstrap" now creates it and
4755 its subfiles.
4756 * Makefile.cfg (move_if_change): Remove.
4757 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
4758 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
4759 (po_repo, do-po-update, po-update, wget_files, get-targets):
4760 (config.guess-url_prefix, config.sub-url_prefix):
4761 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
4762 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
4763 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
4764 Remove.
4765 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
4766 this is now the recommended name.
4767 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
4768 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
4769 ylwrap. These files now go into build-aux.
4770 * config/move-if-change: Remove.
4771 * config/prev-version.txt: Bump from 1.75 to 2.0.
4772
3ea5f0ec
PE
4773 * bootstrap: Add stdio-safer, unistd-safer modules.
4774 Remove m4/glibc2.m4 (introduced by latest gnulib, but
4775 we don't need it).
4776 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
4777 fopen-safer.c, stdio-safer.h, unistd-safer.h.
4778 * lib/subpipe.c: Include "unistd-safer.h".
4779 (create_subpipe): Make sure all the newly-created
4780 file descriptors are > 2, so that diagnostics don't
4781 get sent down them (which might cause Bison to hang, in theory).
4782 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
4783 * src/files.c (xfopen): Use fopen_safer, not fopen.
4784
51c30d21
PE
4785 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
4786 yesterday's yacc.c fix.
4787
cea1469d
PE
47882005-05-21 Paul Eggert <eggert@cs.ucla.edu>
4789
3ea5f0ec
PE
4790 * data/glr.c, data/lalr1.cc: Update copyright date.
4791
cea1469d
PE
4792 Fix a destructor bug reported by Wolfgang Spraul in
4793 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
4794 * data/yacc.c (yyabortlab): Don't call destructor, and
4795 don't set yychar to EMPTY.
4796 (yyoverflowlab): Don't call destructor.
4797 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
4798 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
4799 since we no longer output the message "discarding lookahead token
4800 end of input ()".
4801
5e6f62f2
PH
48022005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4803
4804 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
4805 fix a small glitch in debugging output.
4806 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
4807 after YY_SYMBOL_PRINT where needed.
4808
4809 (struct yyGLRState): Add some comments.
4810 (struct yySemanticOption): Add some comments.
4811 (union yyGLRStackItem): Add comment.
4812
4813 (yymergeOptionSets): Correct this to properly perform the union,
4814 avoiding infinite reported by Michael Rosien.
4815 Update comment.
4816
4817 * tests/glr-regression.at: Add test for GLR merging error reported
4818 by M. Rosien.
cea1469d 4819
0fb669f9
PE
48202005-05-13 Paul Eggert <eggert@cs.ucla.edu>
4821
4822 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
4823 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
4824 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
4825 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
4826 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
4827 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
4828 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
4829 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
4830 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
4831 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
4832 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
4833 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
4834 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
4835 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
4836 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
4837 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
4838 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
4839 src/derives.h, src/files.c, src/files.h, src/getargs.c,
4840 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
4841 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
4842 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
4843 src/output.h, src/parse-gram.c, src/parse-gram.h,
4844 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
4845 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
4846 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
4847 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
4848 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
4849 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
4850 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
4851 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
4852 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
4853 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
4854 tests/reduce.at, tests/regression.at, tests/sets.at,
4855 tests/synclines.at, tests/testsuite.at, tests/torture.at:
4856 Update FSF postal mail address.
4857
51f4735e
PE
48582005-05-11 Paul Eggert <eggert@cs.ucla.edu>
4859
4860 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
4861 Problem reported by Ralf Menzel.
4862
80ce3401
PE
48632005-05-01 Paul Eggert <eggert@cs.ucla.edu>
4864
4865 * tests/actions.at: Test that stack overflow invokes destructors.
4866 From Marcus Holland-Moritz.
4867 * data/yacc.c (yyerrlab): Move the code that destroys the stack
4868 from here....
4869 (yyreturn): to here. That way, destructors are called properly
4870 even if the stack overflows, or the user calls YYACCEPT or
4871 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
4872 (yyoverflowlab): Destroy the lookahead.
4873
48742005-04-24 Paul Eggert <eggert@cs.ucla.edu>
4875
4876 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
4877
72f000b0
PE
48782005-04-17 Paul Eggert <eggert@cs.ucla.edu>
4879
4880 * NEWS: Bison-generated C parsers no longer quote literal strings
4881 associated with tokens.
4882 * src/output.c (prepare_symbols): Don't escape strings,
4883 since users don't want to see C escapes.
4884 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
4885 in diagnostics.
c19683bb 4886 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
4887 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
4888
1094323f
PE
48892005-04-16 Paul Eggert <eggert@cs.ucla.edu>
4890
4891 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
4892 the data size is known to be too small and we can't increase it.
4893 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
4894
ca407bdf
PE
48952005-04-15 Paul Eggert <eggert@cs.ucla.edu>
4896
4897 * src/parse-gram.y: Include quotearg.h.
4898 (string_as_id): Quote $1 before using it as a key, since the
4899 lexer no longer quotes it for us.
4900 (string_content): Don't strip quotes, since lexer no longer
4901 quotes it for us.
4902 * src/scan-gram.l: Include quotearg.h.
4903 ("\""): Omit quote.
4904 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
4905 a key, since the rest of the lexer doesn't quote it.
4906 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
4907 * tests/regression.at (Token definitions): Check for backslashes
4908 in token strings.
4909
4910 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
4911 (YYSIZE_T): Define to unsigned long int when using an older compiler.
4912 (yyparse): Revamp code to generate long syntax error message, to
4913 make it easier to translate, and to avoid problems with arithmetic
4914 overflow. Change "virtual memory" to "memory" in diagnostic, since
4915 we don't know whether the memory is virtual.
4916
1ce59070
PE
49172005-04-13 Paul Eggert <eggert@cs.ucla.edu>
4918
4919 * NEWS: Bison-generated C parsers now use the _ macro to
4920 translate strings.
4921 * data/yacc.c (_) [!defined _]: New macro.
4922 All English strings wrapped inside this macro.
4923 * doc/bison.texinfo (Bison Parser): Document _.
4924 * po/POTFILES.in: Include src/parse-gram.c, since it now
4925 includes translateable strings that parse-gram.y doesn't.
4926
a749a695
PE
49272005-04-12 Paul Eggert <eggert@cs.ucla.edu>
4928
4929 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
4930 reverting the 2004-10-11 change to this function.
4931 (symbol_check_alias_consistency): Don't call symbol_type_set
4932 if the type name is already correct.
4933 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
4934
8fb1053b
PE
49352005-03-25 Paul Eggert <eggert@cs.ucla.edu>
4936
4937 * tests/regression.at (Token definitions): Don't use a token named
4938 c, as that generates a "#define c ..." that runs afoul of buggy
4939 stdlib.h that uses the identifier c as a member of struct
4940 drand48_data. Problem reported by Horst Wente.
4941
ff498c4a
PE
49422005-03-21 Paul Eggert <eggert@cs.ucla.edu>
4943
4944 * bootstrap: Change translation URL from
4945 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
4946 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
4947 redirection glitches. Problem reported by twlevo@xs4all.nl.
4948
65211d70
PE
49492005-03-20 Paul Eggert <eggert@cs.ucla.edu>
4950
4951 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
4952 after operands; POSIX says this isn't portable for the c99 command.
4953
9577fb1f
PE
49542005-03-18 Paul Eggert <eggert@cs.ucla.edu>
4955
4956 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
4957 immediately if a data overrun has occurred; this may help us track
4958 down what may be a spurious failure on MacOS.
4959
78b178f7
PE
49602005-03-17 Paul Eggert <eggert@cs.ucla.edu>
4961
a2599d0f
PE
4962 Respond to problems reported by twlevo@xs4all.nl.
4963
4964 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
4965
78b178f7
PE
4966 * src/vcg.h: Comment fix.
4967 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
4968 (G_CMAX): Change to -1 instead of INT_MAX.
4969
4970 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 4971
7296e729
PE
49722005-03-15 Paul Eggert <eggert@cs.ucla.edu>
4973
4974 * src/tables.c (state_number_to_vector_number): Put it inside an
4975 "#if 0", since it's not currently used. Problem reported by
4976 Roland McGrath.
4977
05ac60f3
PE
49782005-03-06 Paul Eggert <eggert@cs.ucla.edu>
4979
4980 * src/output.c (escaped_output): Renamed from
4981 escaped_file_name_output, since we now use it for symbol tags as
4982 well. All uses changed.
4983 (symbol_destructors_output, symbol_printers_output):
4984 Escape symbol tags too.
4985 Problem reported by Matyas Forstner in
4986 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
4987
4988 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
4989 not needed.
4990 * src/output.c (user_actions_output, token_definitions_output,
4991 symbol_destructors_output, symbol_printers_output): Likewise.
4992 * src/reader.c (prologue_augment): Likewise.
4993 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
4994
4995 * src/vcg.c (output_edge): Don't quote linestyle arg.
4996 Problem reported by twlevo@xs4all.nl.
4997
7eb453ac
PE
49982005-02-28 Paul Eggert <eggert@cs.ucla.edu>
4999
5000 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
5001 example, reported by Derek M Jones. Also, make the example even
5002 more outrageous, to better illustrate how bad the problem is.
5003
4c04c52a
PE
50042005-02-24 Paul Eggert <eggert@cs.ucla.edu>
5005
5006 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
5007 putsym. Typo reported by Sebastian Piping.
5008
a61e1620
PE
50092005-02-23 Paul Eggert <eggert@cs.ucla.edu>
5010
5011 * doc/bison.texinfo (Language and Grammar): some -> same
5012 (Epilogue): int he -> in the
5013 Typos reported by Sebastian Piping via Justin Pence.
5014
9ec93868
PE
50152005-02-07 Paul Eggert <eggert@cs.ucla.edu>
5016
5017 * tests/glr-regression.at (Improper handling of embedded actions
5018 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
5019 embedded actions and $-N in GLR parsers", work around an Autoconf bug
5020 with dollar signs in test names.
5021 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
5022 for a similar reason.
5023
73ce7e7e
PE
50242005-01-28 Paul Eggert <eggert@cs.ucla.edu>
5025
5026 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
5027 wants to redefine G_VIEW.
5028
2e72b98e
PE
50292005-01-27 Paul Eggert <eggert@cs.ucla.edu>
5030
5031 * src/vcg.c (get_view_str): Remove case for normal_view.
5032 Problem reported by twlevo@xs4all.nl.
5033
e0d634e5
PE
50342005-01-24 Paul Eggert <eggert@cs.ucla.edu>
5035
ccf830a4
PE
5036 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
5037 Problem reported by twlevo@xs4all.nl.
5038
e0d634e5
PE
5039 * doc/bison.texinfo: Change @dircategory from "GNU programming
5040 tools" to "Software development". Requested by Richard Stallman
5041 via Karl Berry.
5042
7bbc8cb0
PE
50432005-01-23 Paul Eggert <eggert@cs.ucla.edu>
5044
5045 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
5046 Problem reported by twlevo@xs4all.nl.
5047
08b770bc
PE
50482005-01-21 Paul Eggert <eggert@cs.ucla.edu>
5049
5050 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
5051 keyword; it's not needed with modern compilers, and it doesn't
5052 affect correctness with older compilers. Suggested by
5053 twlevo@xs4all.nl.
5054
95f22ad2
PE
50552005-01-17 Paul Eggert <eggert@cs.ucla.edu>
5056
5057 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
5058 gcc -Wswitch-default.
5059 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
5060 * data/yacc.c (yyparse): Likewise.
5061
d229d15c
PE
50622005-01-12 Paul Eggert <eggert@cs.ucla.edu>
5063
5064 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
5065 already. Let config.h define any nonstandard values.
5066
ecadd90f
PE
50672005-01-10 Paul Eggert <eggert@cs.ucla.edu>
5068
5069 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
5070 for the benefit of slower hosts. Problem reported by
5071 Nelson H. F. Beebe.
5072
213744b5
PE
50732005-01-07 Paul Eggert <eggert@cs.ucla.edu>
5074
5075 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
5076 being defined and not used.
5077 * data/lalr1.cc (yyparse): Likewise.
5078 Use "if (false)" rather than "if (0)".
5079
249d3236
PE
50802005-01-05 Paul Eggert <eggert@cs.ucla.edu>
5081
5082 * TODO: Mention that we should allow NUL bytes in tokens.
5083
987cc1fb
PE
50842005-01-02 Paul Eggert <eggert@cs.ucla.edu>
5085
5086 * src/scan-skel.l (<<EOF>>): Don't close standard output.
5087 Problem reported by Hans Aberg.
5088
08fe02d9
PE
50892005-01-01 Paul Eggert <eggert@cs.ucla.edu>
5090
5091 * src/getargs.c (version): Happy new year; update overall
5092 program copyright date from 2004 to 2005.
5093
5094 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
5095 Problem reported by Hans Aberg.
5096 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
5097 (Output file names.): Add a test for the case when standard output
5098 is closed.
5099
010c0266
PE
51002004-12-26 Paul Eggert <eggert@cs.ucla.edu>
5101
5102 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
5103 to fix an oversight in the Bison 2.0 manual.
5104
da12206a
PE
51052004-12-25 Paul Eggert <eggert@cs.ucla.edu>
5106
5107 * NEWS: Version 2.0. Reformat the existing news items since
5108 1.875, so that related items are grouped together.
3a4734aa 5109 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
5110 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
5111
c935d934
PE
5112 * tests/torture.at (Exploding the Stack Size with Alloca): Set
5113 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
5114 otherwise, we're not testing alloca. Unfortunately there's no
5115 simple way to consult HAVE_ALLOCA here.
5116
da12206a
PE
5117 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
5118 for yymsg, too.
5119
5120 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
5121 hand. This avoids a warning about comparing int to size_t when
5122 GCC warnings are enabled.
5123
0a2c5137
PE
51242004-12-22 Paul Eggert <eggert@cs.ucla.edu>
5125
d7e14fc0
PE
5126 * NEWS: Bison-generated parsers no longer default to using the
5127 alloca function (when available) to extend the parser stack, due
5128 to widespread problems in unchecked stack-overflow detection.
5129 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
5130 responsibility to set it to a positive value. This lets the user
5131 specify a value that is not a preprocessor constant.
5132 * data/yacc.c (YYMAXDEPTH): Likewise.
5133 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
5134 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
5135 to be a compile-time constant. However, explain the constraints on it.
5136 Also, explain the constraints on YYINITDEPTH.
5137 (Table of Symbols): Explain that alloca is no longer the default.
5138 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
5139 to 1.
5140
0a2c5137
PE
5141 * doc/bison.texinfo (Location Default Action): Mention that n must
5142 be zero when k is zero. Suggested by Frank Heckenbach.
5143
e019c247
AD
51442004-12-22 Akim Demaille <akim@epita.fr>
5145
5146 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
5147 (parser::state_type, parser::semantic_type, parser::location_type):
5148 Private, not public.
5149 (parser::parse): Return ints, not bool.
5150 Returning a bool introduces a problem: 0 corresponds to false, and
5151 it seems weird to return false on success. Returning true changes
5152 the conventions for yyparse.
5153 Alternatively we could return void and send an exception.
5154 There is no clear consensus (yet?).
5155 (state_stack, semantic_stack, location_stack): Rename as...
5156 (state_stack_type, semantic_stack_type, location_stack_type): these.
5157 Private, not public.
5158 * tests/c++.at: New.
5159 * tests/testsuite.at, tests/Makefile.am: Adjust.
5160
72731bb7
AD
51612004-12-21 Akim Demaille <akim@epita.fr>
5162
5163 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
5164
9a0d8bec
AD
51652004-12-21 Akim Demaille <akim@epita.fr>
5166
5167 Don't impose std::string for filenames.
5168
5169 * data/lalr1.cc (b4_filename_type): New.
5170 (position::filename): Use it.
5171 (parser.hh): Move the inclusion of stack.hh and location.hh below
5172 the user code, so that needed headers for the filename type can be
5173 included first.
72731bb7
AD
5174 Forward declare them before the user code.
5175 * tests/Makefile.am (check-local, installcheck-local): Pass
5176 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 5177
99880de5
AD
51782004-12-20 Akim Demaille <akim@epita.fr>
5179
5180 Use more STL like names: my_class instead of MyClass.
5181
5182 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
5183 (SemanticStack, SemanticType, StateStack, StateType)
5184 (TokenNumberType, Stack, Slice, Traits, Parser::location)
5185 (Parser::value): Rename as...
5186 (location_stack, location_type, rhs_number_type, semantic_stack)
5187 (semantic_type, state_stack, state_type, token_number_type, stack)
5188 (slice, traits, parser::yylloc, parser::yylval): these.
5189
5190 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
5191
9bec482e
PE
51922004-12-19 Paul Eggert <eggert@cs.ucla.edu>
5193
5194 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
5195 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5196
f6fbd3da
PE
51972004-12-17 Paul Eggert <eggert@cs.ucla.edu>
5198
5199 Remove uses of 'short int' and 'unsigned short int'. This raises
5200 some arbitrary limits. It uses more memory but nowadays that's
5201 not much of an issue.
5202
5203 This change does not affect the generated parsers; that's a different
5204 task, as some users will want to conserve memory there.
5205
5206 Ideally we should use size_t to represent all object counts, and
5207 something like ptrdiff_t to represent signed differences of object
5208 counts; but that will require more code-cleanup than I have the
5209 time to do right now.
5210
5211 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
5212 Use size_t, not int or short int, to count objects.
5213 * src/closure.c (nritemset, closure): Likewise.
5214 * src/closure.h (nritemset, closure): Likewise.
5215 * src/nullable.c (nullable_compute): Likewise.
5216 * src/print.c (print_core): Likewise.
5217 * src/print_graph.c (print_core): Likewise.
5218 * src/state.c (state_compare, state_hash): Likewise.
5219 * src/state.h (struct state): Likewise.
5220 * src/tables.c (default_goto, goto_actions): Likewise.
5221
5222 * src/gram.h (rule_number, rule): Use int, not short int.
5223 * src/output.c (prepare_rules): Likewise.
5224 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
5225 errs, reductions): Likewise.
5226 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
5227 Likewise.
5228 * src/tables.c (vector_number, tally, action_number,
5229 ACTION_NUMBER_MINIMUM): Likewise.
5230 * src/output.c (muscle_insert_short_int_table): Remove.
5231
efeed023
AD
52322004-12-17 Akim Demaille <akim@epita.fr>
5233
5234 * data/lalr1.cc: Extensive Doxygenation.
5235 (error_): Rename as...
5236 (error): this, since it is visible to the user.
5237 Adjust callers.
5238 (Parser::message): Now an automatic variable from...
5239 (Parser::yyreport_syntax_error_): here.
5240 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
5241 Parser::error.
5242 * tests/input.at: Escape $.
5243
bc82c5a5
PE
52442004-12-16 Paul Eggert <eggert@cs.ucla.edu>
5245
5246 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
5247 Parenthesize rhs to avoid obscure problems with mistakes like
5248 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
5249 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
5250 b4_rhs_location): Likewise.
5251 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
5252 b4_rhs_location): Likewise.
5253
fd19f271
AD
52542004-12-16 Akim Demaille <akim@epita.fr>
5255
5256 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
5257 yacc.c: be sure to stay within yycheck_.
5258 * tests/actions.at: Re-enable C++ tests.
5259
10454ea4
AD
52602004-12-16 Akim Demaille <akim@epita.fr>
5261
5262 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
5263 real.
5264
c5b95ccf
AD
52652004-12-16 Akim Demaille <akim@epita.fr>
5266
5267 Use #define to handle the %name-prefix.
5268
5269 * data/glr.c, data/yacc.c: Comment changes.
5270 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
5271 so that one can refer to yylex in the parser file, and have it
5272 renamed, as is the case with other skeletons.
5273
617a8f12
AD
52742004-12-16 Akim Demaille <akim@epita.fr>
5275
5276 Move lalr1.cc internals into yy*.
5277
5278 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
5279 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
5280 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
5281 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
5282 (empty_, final_, terror_, errcode_, ntokens_)
5283 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
5284 (looka_, ilooka_, error_range_, nerrs_):
5285 Rename as...
5286 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
5287 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
5288 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
5289 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
5290 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
5291 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
5292 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
5293 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
5294 these.
5295
1e547e6e
PE
52962004-12-15 Paul Eggert <eggert@cs.ucla.edu>
5297
5298 Fix some problems reported by twlevo at xs4all.
5299 * src/symtab.c (symbol_new): Report an error if the input grammar
5300 contains too many symbols. This is better than calling abort() later.
5301 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
5302 (struct node, struct graph):
5303 Rename member expand to stretch. All uses changed.
5304 (struct graph): Remove member layoutalgorithm. All uses removed.
5305 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
5306 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
5307 All uses changed.
5308 (N_STRETCH): Rename from N_EXPAND. All uses changed.
5309
735d6bd4
AD
53102004-12-15 Akim Demaille <akim@epita.fr>
5311
5312 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
5313 Add more Doxygen comments.
5314 (symprint_, stack_print_, reduce_print_, destruct_, pop)
5315 (report_syntax_error_, translate_): Rename as...
5316 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
5317 (yypop_, yyreport_syntax_error_, yytranslate_): this.
5318
2e1f5829
AD
53192004-12-15 Akim Demaille <akim@epita.fr>
5320
5321 * data/lalr1.cc (lex_): Rename as...
5322 (yylex_): this.
5323 Move the trace here.
5324 Take the %name-prefix into account.
5325 Reported by Alexandre Duret-Lutz.
5326
a3cb6248
AD
53272004-12-15 Akim Demaille <akim@epita.fr>
5328
5329 Simplify the C++ parser constructor.
5330
5331 * data/lalr1.cc (debug_): Rename as...
5332 (yydebug_): so that the parser's internals are always in the yy*
5333 pseudo namespace.
5334 Adjust uses.
5335 (b4_parse_param_decl): Remove the leading comma as it is now only
5336 called as unique argument list.
5337 (Parser::Parser): Remove the constructor accepting a location and
5338 an initial debugging level.
5339 Remove from the other ctor the argument for the debugging level.
5340 (debug_level_type, debug_level, set_debug_level): New.
5341
5342 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
5343 constructor calls.
5344
07fed891
AD
53452004-12-15 Akim Demaille <akim@epita.fr>
5346
5347 Remove b4_root related material: failure experiment
a3cb6248 5348 (which goal was to allow to derive from a class).
07fed891
AD
5349
5350 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
5351 definitions and uses.
5352
e603eaa5
PE
53532004-12-14 Paul Eggert <eggert@cs.ucla.edu>
5354
5355 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
5356 not 2, since it's not portable to subtract 1 from the start of an
5357 array. The new item 0 is never set or used. All uses changed.
5358
5359 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
5360 the default definition of YYLLOC_DEFAULT. Problem reported
5361 by Frank Heckenbach.
5362
fafb007d
PE
53632004-12-12 Paul Eggert <eggert@cs.ucla.edu>
5364
5365 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
5366 the normal case and one for the error case. Just use the
5367 first one uniformly. Problem reported by Frank Heckenbach.
5368 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
5369 use exactly the same macro in both places.
5370 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
5371 so that the normal-case YYRHSLOC works for the error case too.
5372 All uses changed.
5373 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
5374 (YYLLOC_DEFAULT): Use the same macro as glr.c.
5375 * doc/bison.texinfo (Location Default Action): Don't claim that
5376 we have an array of locations. Use the same macro for both glr
5377 and lalr parsers. Mention YYRHSLOC. Mention what happens when
5378 the index is 0.
5379
48814dcd
PE
53802004-12-10 Paul Eggert <eggert@cs.ucla.edu>
5381
a4e1a53b
PE
5382 * HACKING: Update email addresses to send announcements to.
5383
48814dcd
PE
5384 * configure.ac (AC_INIT): Bump version to 1.875f.
5385
337116ba
PE
53862004-12-10 Paul Eggert <eggert@cs.ucla.edu>
5387
5388 * NEWS: Version 1.875e.
5389 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
5390
5391 * src/scan-skel.l: Include "complain.h", for "fatal".
5392
5393 * src/relation.h (relation_print, relation_digraph):
5394 Relation sizes are of type relation_node, not size_t (this is
5395 merely a doc fix, since the two types are equivalent).
5396 (relation_transpose): Relation sizes are of type relation_node,
5397 not int.
5398 * src/relation.c: Likewise.
5399 (top, infinity): Now of type relation_node, not int.
5400 (traverse, relation_transpose): Use relation_node, not int.
5401
5402 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
5403 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
5404 (yyparse): Remove unused local introduced in 2004-10-25 patch.
5405
5406 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 5407 specifying whether the test should be skipped. Use it tp
337116ba 5408 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 5409 fail on some hosts, and should be skipped.
337116ba 5410
da2a7671
PE
54112004-12-08 Paul Eggert <eggert@cs.ucla.edu>
5412
5413 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
5414 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
5415 unless otherwise specified below.
5416
5417 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
5418 to allocate kernel_base, kernel_items, kernel_size, since
5419 they needn't be initialized to 0.
5420 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
5421 * src/closure.c (new_closure): Likewise, for itemset.
5422 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
5423 * src/lalr.c (set_goto_map): Likewise, for temp_map.
5424 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
5425 (build_relations): Likewise for edge, states1, includes.
5426 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
5427 * src/reader.c (packgram): Likewise, for ritem, rules.
5428 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
5429 * src/relation.c (relation_digraph): Likewise for VERTICES.
5430 (relation_transpose): Likewise for new_R, end_R.
5431 * src/symtab.c (symbols_token_translations_init): Likewise for
5432 token_translations.
5433 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
5434 (token_actions): Likewise for yydefact, actrow, conflrow,
5435 conflict_list.
5436 (save_column): Likewise for froms[symno], tos[symno].
5437 (goto_actions): Likewise for state_count.
5438 (pack_table): Likewise for base, pos, check.
5439 (tables_generate): Likewise for width.
5440
5441 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
5442 for initial core. Just have a separate core, so we needn't worry
5443 about whether kernel_size and kernel_base are initialized.
5444
5445 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
5446 kernel_size, kernel_items): Remove unnecessary initialization.
5447 * src/conflicts.c (conflicts): Likewise.
5448 * src/derives.c (derives): Likewise.
5449 * src/muscle_tablc (muscle_insert): Likewise.
5450 * src/relation.c (relation_digraph): Likewise.
5451 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
5452 conflrow, conflict_table, conflict_list, table, check):
5453 Likewise.
5454
5455 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
5456 This is because all callers pass unsigned int.
5457 * src/closure.h (new_closure): Likewise.
5458
5459 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
5460 (build_relations): Initialize includes[i] in all cases.
5461 * src/reader.c (packgram): Always initialize rules[ruleno].prec
5462 and rules[ruleno].precsym. Initialize members in order.
5463 * src/relation.c (relation_transpose): Always initialize new_R[i]
5464 and end_R[i].
5465 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
5466
5467 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
5468 conflict_list[0] was always 0, but now it isn't initialized.
5469
5470 * src/table.c (table_grow): When conflict_table grew, the grown
5471 area wasn't cleared. Fix this.
5472
5473 * lib/.cvsignore: Add strdup.c, strdup.h.
5474 * m4/.cvsignore: Add strdup.m4.
5475
00baeeac
PE
54762004-12-07 Paul Eggert <eggert@cs.ucla.edu>
5477
5478 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
5479 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
5480 GOTO_NUMBER_MAXIMUM, since we occasionally compute
5481 ngotos + 1 without checking for overflow.
5482 (build_relations): Use END_NODE, not -1, to denote end of edges.
5483 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
5484 build_relations): Use goto_number, not int, for goto numbers.
5485 * src/tables.c (save_column, default_goto): Likewise.
5486
be3d9d42
AD
54872004-11-23 Akim Demaille <akim@epita.fr>
5488
5489 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
5490 of #defining from yystype.
5491 Don't typedef yystype, C++ does not need it.
5492 This lets it possible to forward declare it as union.
5493
78e526d5
PE
54942004-11-23 Paul Eggert <eggert@cs.ucla.edu>
5495
5496 * bootstrap (gnulib_modules): Add extensions.
5497 Problem reported by Jim Meyering.
5498
afbb696d
PE
54992004-11-22 Paul Eggert <eggert@cs.ucla.edu>
5500
5501 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
5502 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
5503 src/system.h, src/tables.c: XFREE -> free, to accommodate
5504 recent change to gnulib xalloc.h.
78e526d5 5505 Problem reported by Jim Meyering.
afbb696d 5506
c1f8f16a
AD
55072004-11-17 Akim Demaille <akim@epita.fr>
5508
5509 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
5510
db7e5eb5 55112004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
5512 Alexandre Duret-Lutz <adl@gnu.org>
5513
5514 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
5515 changes.
5516 (YYCDEBUG): Adjust.
5517 Use it instead of cdebug_.
5518 (Parser::debug_stream, Parser::set_debug_stream): New.
5519 (Parser::symprint_): Define cdebug_ for temporary backward
5520 compatibility.
5521 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
5522 debug_stream ().
5523
68e11668
AD
55242004-11-17 Akim Demaille <akim@epita.fr>
5525
5526 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
5527 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
5528 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
5529 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
5530
97cbc73e
PE
55312004-10-27 Paul Eggert <eggert@cs.ucla.edu>
5532
5533 * data/glr.c (yyloc_default): Remove; not used.
5534 Problem reported by Frank Heckenbach.
5535
e342c3be
AD
55362004-10-25 Akim Demaille <akim@epita.fr>
5537
5538 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
5539 Introduce another definition to address simple location arrays.
5540 (yyGLRStack): New member: yyerror_range.
5541 (yyrecoverSyntaxError, yyparse): Update it.
5542 (yyrecoverSyntaxError): Use it when shifting the error token to
5543 have an accurate range, equivalent to the one computed by both
5544 yacc.c and lalr1.cc.
5545 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
5546 that column numbers start at column 0, as per GNU Coding
5547 Standards, the others tests, and the doc.
5548 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
5549 Adjust to the above change (first column is 0).
5550 And adjust the location of the "<error>", now covering the whole
5551 line.
5552
93602feb 55532004-10-22 Akim Demaille <akim@epita.fr>
04098407 5554 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
5555
5556 Remove some arbitrary limits on goto numbers and relations.
5557 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
5558 initial values, since they're never used.
5559 (set_goto_map): ngotos is now unsigned, so test for overflow
5560 by seeing whether it wraps around to zero.
5561 * src/lalr.h (goto_number): Now size_t, not short int.
5562 (GOTO_NUMBER_MAXIMUM): Remove.
5563 * src/relation.c (relation_print, traverse, relation_transpose):
5564 Check for END_NODE rather than looking at sign.
5565 * src/relation.h (END_NODE): New macro.
5566 (relation_node): Now size_t, not short int.
5567
dba08b04
PE
55682004-10-22 Paul Eggert <eggert@cs.ucla.edu>
5569
5570 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
5571 keyword, not an identifier. Problem reported by Baron Schwartz in
5572 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
5573
df09ef2e
AD
55742004-10-11 Akim Demaille <akim@epita.fr>
5575
5576 * src/symtab.c (symbol_check_alias_consistency): Also check
5577 type names, destructors, and printers.
5578 Reported by Alexandre Duret-Lutz.
5579 Recode the handling of associativity and precedence in terms
5580 of symbol_precedence_set.
5581 Accept no redeclaration at all, not even equal to the previous
5582 value.
5583 (redeclaration): New.
5584 Use it to factor redeclaration complaints.
5585 (symbol_make_alias): Don't set the type of the alias, let
5586 symbol_check_alias_consistency do it as for other features.
5587 * src/symtab.h (symbol): Add new member prec_location, and
5588 type_location.
5589 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
5590 * tests/input.at (Incompatible Aliases): New.
5591
146bc99d
PE
55922004-10-09 Paul Eggert <eggert@cs.ucla.edu>
5593
5594 .cvsignore fixes to accommodate gnulib changes,
5595 and the practice of naming build directories "_build".
5596 * .cvsignore: Add "_*". Sort.
5597 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
5598 * m4/.cvsignore: Add "*_gl.m4".
5599
e503aa60
AD
56002004-10-06 Akim Demaille <akim@epita.fr>
5601
5602 * src/parse-gram.y (add_param): Fix the truncation of trailing
5603 spaces.
5604
b4a20338
AD
56052004-10-05 Akim Demaille <akim@epita.fr>
5606
5607 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
5608 whether the reducion was empty or not. This leaves room to
5609 improve the use of YYLLOC_DEFAULT in such a case.
5610 lalr1.cc is still experimental, so changing this is acceptable.
5611 And finally, there are probably not many users who changed the
5612 handling of locations in GLR, so changing is admissible too.
5613
5614 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
5615 empty reduction, set @$ to an empty location ending the previously
5616 stacked symbol.
5617 Adjust uses to make sure the code is triggered on empty
5618 reductions.
5619 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
5620 expected output: empty reductions have empty locations.
5621
f85a5e6f
AD
56222004-09-29 Akim Demaille <akim@epita.fr>
5623
5624 * data/lalr1.cc: Move towards a more standard C++ coding style
5625 for templates: Class < T > -> Class<T>.
5626
b203fc2c
AD
56272004-09-29 Akim Demaille <akim@epita.fr>
5628
5629 * data/lalr1.cc: Reinstall the former ctor, for sake of
5630 compatibility, but warn it will be removed.
5631 Move towards a more standard C++ coding style (i.e., type *var ->
5632 type* var).
5633
5b7e1e73
PE
56342004-09-27 Paul Eggert <eggert@cs.ucla.edu>
5635
3fee967f
PE
5636 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
5637 since it's less likely to work if NULs are involved in the future.
5b7e1e73 5638
0dcca5c2
AD
56392004-09-27 Akim Demaille <akim@epita.fr>
5640
5641 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
5642
6dde1c82
AD
56432004-09-27 Akim Demaille <akim@epita.fr>
5644
5645 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 5646 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
5647 and argument names.
5648 (b4_cc_constructor_call): Likewise.
5649
b233d555
AD
56502004-09-24 Akim Demaille <akim@epita.fr>
5651
5652 * src/parse-gram.y (add_param): Strip the leading and trailing
5653 blanks from a formal argument declaration.
5654 (YY_LOCATION_PRINT): New.
5655
619404e3
AD
56562004-09-24 Akim Demaille <akim@epita.fr>
5657
5658 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
5659 after the location.
5660
dd8d9022
AD
56612004-09-24 Akim Demaille <akim@epita.fr>
5662
5663 * doc/bison.texinfo (Table of Symbols): Sort.
5664
0092f063
AD
56652004-09-21 Akim Demaille <akim@epita.fr>
5666
5667 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
5668 the useless parentheses.
5669 Suggested by Paul Eggert.
5670
451364ed
AD
56712004-09-20 Akim Demaille <akim@epita.fr>
5672
5673 Let the initial-action act on the look-ahead, and use it for the
5674 "initial push" (corresponding to an hypothetical beginning-of-file).
5675 And let lalr1.cc honor %initial-action.
5676
5677 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
5678 example.
5679 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
5680 (Parser::Parser): Remove the ctor that used to initialize it.
5681 (Parser::parse): Like in the other skeletons, issue the "starting
5682 parse" message before any action.
5683 Honor %initial-action.
5684 Initialize the stacks with the lookahead.
5685 * data/yacc.c: Let $$ and @$ in %initial-action designate the
5686 look-ahead.
5687 Push them in the stacks.
5688 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
5689
18d192f0
AD
56902004-09-20 Akim Demaille <akim@epita.fr>
5691
5692 * doc/bison.texinfo (Initial Action Decl): New.
5693
b8458aa5
AD
56942004-09-20 Akim Demaille <akim@epita.fr>
5695
5696 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
5697 clearer criterion to define it.
5698 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
5699 When reducing on an empty RHS, use the latest stacked location as
5700 location.
5701 yylloc is not always available.
5702 * data/glr.c: Likewise.
5703 Also, honor initial-actions.
5704
3fc16193
AD
57052004-09-20 Akim Demaille <akim@epita.fr>
5706
5707 * data/yacc.c (YY_LOCATION_PRINT): New.
5708 Define when we know YYLTYPE's structure, i.e., when the default
5709 YYLLOC_DEFAULT is used.
5710 * data/c.m4 (b4_yysymprint_generate): Use it.
5711 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
5712 value of the result.
5713 (error_start_): Replace with...
5714 (error_range_): this location array.
5715 This allows to replace code relying on the implementation of
5716 locations by portable code.
5717 * data/yacc.c (yylerrsp): Replace with...
5718 (yyerror_range): this.
5719 Every time a token is popped, update yyerror_range[0], to have an
5720 accurate location for the error token.
5721 * data/glr.c (YY_LOCATION_PRINT): New.
5722 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
5723 deference a pointer.
5724 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
5725 report the location in %printers.
5726
5727 * src/scan-skel.l: Instead of abort, report error messages to ease
5728 understanding skeleton scanning failures.
5729
ecfe33e7
AD
57302004-09-16 Akim Demaille <akim@epita.fr>
5731
5732 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
5733 (iterator, const_iterator): these, to be more in the C++ spirit.
5734 Also, return reverse iterators so that when displaying the stack
5735 we display its bottom first.
5736 (Parser::stack_print_, Parser::reduce_print_): Match the messages
5737 from yacc.c.
5738 We should probably use vector here though.
5739
1576d44d
AD
57402004-09-16 Akim Demaille <akim@epita.fr>
5741
5742 Have more complete shift traces.
5743
5744 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
5745 to report Shifts instead of ad hoc YYDPRINTF invocations,
5746 including for the error token.
5747 * data/lalr1.cc (symprint_): Output the location.
5748 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
5749 output the location within the %printer.
5750 Activate GLR tests, at least to make sure they compile properly.
5751 They still don't pass though.
5752 * tests/calc.at: Adjust expect verbose output, since now "Entering
5753 state..." is on a different line than the "Shifting" message.
5754
9c66f418
AD
57552004-09-08 Akim Demaille <akim@epita.fr>
5756
5757 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
5758 Bison directive from the Bison file to the invocation of this
5759 macro, so that these directives are passed to
5760 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
5761 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
5762 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
5763 the extra Bison directives instead of the whole series.
5764 Change the grammar so that there are recoverable errors, and
5765 unrecoverable errors. Now we can have the parser give up before
5766 consuming the whole input. As a result we now can observe that
5767 the lookahead is freed when needed.
5768 Change the parser source to parse argv[1] instead of a hard coded
5769 string.
5770 Simplify yylex, and give a value and location to EOF.
5771 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
5772 passed directives already coded in the file.
5773 Add some tests to check the location of "error".
5774 For some tests, the C++ parser is correct, and not yacc.c.
5775 For other tests, they provide different, but unsatisfying, values,
5776 so keep the C++ value so that at least one parser is "correct"
5777 according to the test suite.
5778 (Actions after errors): Remove, this is subsumed by the
5779 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
5780
52d5733f
AD
57812004-09-06 Akim Demaille <akim@epita.fr>
5782
5783 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 5784 (Parser::pop): New.
52d5733f
AD
5785 Use it.
5786
a0e68930
AD
57872004-09-06 Akim Demaille <akim@epita.fr>
5788
5789 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
5790 argument, an informative message.
5791 Call YY_SYMBOL_PRINT.
5792 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
5793 * data/lalr1.cc (destruct_): Likewise.
5794 In addition, no longer depend on b4_yysymprint_generate and
5795 b4_yydestruct_generate to generate these functions, do it "by
5796 hand".
5797
e757bb10
AD
57982004-09-03 Akim Demaille <akim@epita.fr>
5799
5800 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
5801 invoked, yydestruct the lookahead.
5802 * tests/calc.at (Calculator $1): Update the expected lengths of
5803 traces: there is an added line for the discarded lookahead.
5804 * doc/bison.texinfo (Destructor Decl): Some rewording.
5805 Define "discarded" symbols.
5806
0fe1f06d
AD
58072004-09-02 Akim Demaille <akim@epita.fr>
5808
5809 * data/lalr1.cc (translate_, destruct_): No reason to be static.
5810
284acc8b
AD
58112004-09-02 Akim Demaille <akim@epita.fr>
5812
5813 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
5814 (YYDSYMPRINTF): Rename as...
5815 (YY_SYMBOL_PRINT): this.
5816 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
5817 two.
5818 Use it instead of direct symprint_ calls.
5819 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
5820 one.
5821
a5eb1ed2
AD
58222004-09-02 Akim Demaille <akim@epita.fr>
5823
b7c72fe1
AD
5824 * data/lalr1.cc (b4_yysymprint_generate): New.
5825 (symprint_): New member function, defined when YYDEBUG.
5826 Use it consistently instead of token/nterm debugging output by
5827 hand.
a5eb1ed2
AD
5828 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
5829 %printer calls to use cdebug_ when using lalr1.cc.
5830
417141dd
AD
58312004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
5832
5833 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
5834 with #ifdef YYDEBUG.
5835
2fa09258
AD
58362004-08-26 Akim Demaille <akim@epita.fr>
5837
5838 * doc/bison.texinfo (Implementing Loops): Rename as...
5839 (Implementing Gotos/Loops): this.
5840
9378b508
PE
58412004-08-13 Paul Eggert <eggert@cs.ucla.edu>
5842
5843 Adjust to latest gnulib.
5844 * bootstrap (gnulib_modules): Add xalloc-die.
5845 Set LC_ALL=C so that file names sort consistently.
5846 Prefer the gnulib copies of gettext.m4, glibc21.m4,
5847 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
5848 uintmax_t.m4, ulonglong.m4.
5849 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
5850 po.m4 since we are now using _gl.m4 instead.
5851
87a8ad5c
PE
58522004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
5853
5854 * src/scan-action.l: Remove. Scanning of semantic actions is
5855 handled in scan-gram.l.
5856
dca81a78
PE
58572004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
5858
5859 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
5860
5861 * src/location.h (struct): The file member is a uniqstr.
5862 (equal_boundaries): Use UNIQSTR_EQ for comparison.
5863
c9cbf7c5
PE
58642004-07-22 Paul Eggert <eggert@cs.ucla.edu>
5865
5866 Fix bug with non-%union parsers that have printers or destructors,
5867 which led to a Bison core dump. Reported by Peter Fales in
5868 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 5869
c9cbf7c5
PE
5870 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
5871 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
5872 not to our own type.
5873 * src/output.c (symbol_destructors_output, symbol_printers_output):
5874 Don't assume %union.
5875 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
5876 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
5877 UNION-FLAG. All callers changed.
5878 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
5879 Use type char, not unsigned int, when declaring an array of char;
5880 this lets us remove a cast.
5881 (Printers and Destructors): Add non-%union test cases.
5882
fa7e68c3
PE
58832004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5884
5885 * doc/bison.texinfo: Minor editorial changes, mostly to the new
5886 GLR writeups. E.g., avoid frenchspacing and the future tense,
5887 change "lookahead" to "look-ahead", and change "wrt" to "with
5888 respect to".
2fa09258 5889
fa7e68c3
PE
58902004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5891
5892 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
5893 New sections, split off from the GLR Parsers section. Put the new
5894 Simple GLR Parser near the start of the GLR section, for clarity.
5895 Rewrite connective text.
5896
99a9344e
PE
58972004-06-21 Frank Heckenbach <frank@g-n-u.de>
5898
5899 * doc/bison.texinfo (Simple GLR Parsers): New section.
5900
8dd162d3
PE
59012004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5902
5903 * NEWS, TODO, doc/bison.texinfo:
5904 Use "look-ahead" instead of "lookahead", to be consistent.
5905 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
5906 while we're fixing "look-ahead".
5907 * src/conflicts.c (shift_set): Renamed from shiftset.
5908 (look_ahead_set): Renamed from lookaheadset.
5909 * src/print.c: Likewise.
5910 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
5911 name for "lookahead".
5912 (report_types, usage): Likewise.
5913 * src/getargs.h (report_look_ahead_tokens): Renamed from
5914 report_lookaheads.
5915 * src/lalr.c (compute_look_ahead_tokens): Renamed from
5916 compute_lookaheads.
5917 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
5918 (look_ahead_tokens_print): Renamed from lookaheads_print.
5919 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
5920 state_rule_lookaheads_print.
5921 * src/state.h: Likewise.
5922 (reductions.look_ahead_tokens): Renamed from lookaheads.
5923 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
5924 AT_DATA_LOOKAHEADS_GRAMMAR.
5925
57a90331
PE
59262004-06-03 Paul Eggert <eggert@cs.ucla.edu>
5927
5928 * README: Update location of patched M4 distribution.
5929
8ed3234a
PE
59302004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
5931
5932 Don't assume the C++ compiler takes the same arguments as the C compiler
5933 (trivial change).
5934 * configure.ac (O0CXXFLAGS): New var.
5935 * tests/atlocal.in (CXXFLAGS): Use it.
5936
07971983
PE
59372004-05-29 Paul Eggert <eggert@cs.ucla.edu>
5938
5939 Fix some "make check" problems with C++ reported by
5940 Albert Chin-A-Young for Tru64 C++ in this thread:
5941 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
5942
5943 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
5944 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5945 Output to a .cc file for C++, not to a .c file.
5946 * tests/calc.at (AT_CHECK_CALC): Likewise.
5947 * tests/regression.at (AT_CHECK_DANCER): Likewise.
5948 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
5949
29058652
PE
59502004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
5951
5952 * tests/calc.at, tests/actions.at: Workaround for SGI
5953 C++ compiler. (trivial change)
5954
62cb8a99
PE
59552004-05-27 Paul Eggert <eggert@cs.ucla.edu>
5956
fd418816
PE
5957 Spent a few hours checking out which prerequisite versions the
5958 current sources actually require. I went all the way back to
5959 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
5960 a seemingly endless set of combinations of versions more recent
5961 than that. The bottom line is that the current sources require
5962 fairly recent versions of the build tools, and it'll be some work
5963 to change this.
5964 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
5965 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
5966 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
5967 Add comments explaining why those particular versions are
5968 currently needed.
2fa09258 5969
62cb8a99
PE
5970 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
5971 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 5972 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
5973
5974 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
5975 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
5976
caa52c10
PE
59772004-05-26 Paul Eggert <eggert@cs.ucla.edu>
5978
5979 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
5980 0.11.5. Suggested by Bruno Haible.
5981 * bootstrap: Remove gettext version checking.
5982
5983 * doc/bison.texinfo (Decl Summary): Also mention that %union
5984 can depend on prerequisite types. Problem reported by Tim
5985 Van Holder.
5986
4bfd5e4e
PE
59872004-05-25 Paul Eggert <eggert@cs.ucla.edu>
5988
2cef3017
PE
5989 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
5990 * README-alpha: Don't tell people not to package this.
5991
b9c85d5c
PE
5992 * bootstrap: Don't assume $(...) works; use `...` instead.
5993 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
5994 gettext better.
5995
4bfd5e4e
PE
5996 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
5997 put into the -d output file, and mention what to do if YYSTYPE is
5998 defined as a macro.
5999
6a36ff94
PE
60002004-05-24 Paul Eggert <eggert@cs.ucla.edu>
6001
6712933e
PE
6002 Undo change made earlier today: it caused autopoint to not bring
6003 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
6004 autopoint's.
6005
6006 * bootstrap: Check that gettext version matches what's in
6007 configure.ac. Warn users to ignore robots.txt ERROR 404.
6008 * bootstrap: Undo today's earlier change (logged below).
6009 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 6010
6a36ff94
PE
6011 The gettext version checking is causing more trouble than it's
6012 curing; remove it. Problem reported by Paul Hilfinger.
6013
6014 * bootstrap: Issue a warning that one can expect a message
6015 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
6016 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
6017
209ea708
PE
60182004-05-23 Paul Eggert <eggert@cs.ucla.edu>
6019
6020 Ensure that the C++ compiler used for testing actually works on a
6021 simple test program; if not, skip the C++-related tests. Problem
6022 reported by Vin Shelton in:
161a71f3 6023 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
6024
6025 * m4/cxx.m4: New file.
6026 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
6027 * tests/atlocal.in (BISON_CXX_WORKS): Add.
6028 * tests/local.at (AT_COMPILE_CXX): Use it.
6029
41ca2549
PE
60302004-05-21 Paul Eggert <eggert@cs.ucla.edu>
6031
383e69dc
PE
6032 * data/glr.c (yylloc): Output this macro even if locations are not
6033 being generated, as the GLR parser needs it even in that case.
6034 Problem reported by Troy A. Johnson
6035 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
6036
41ca2549
PE
6037 * configure.ac (AC_INIT): Update to 1.875e.
6038
e476c87d
PE
60392004-05-21 Paul Eggert <eggert@cs.ucla.edu>
6040
6041 * NEWS: Version 1.875d.
6042 * configure.ac (AC_INIT): Likewise.
6043 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
6044
6045 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
6046 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
6047 lalr1.cc runs afoul of the first, and the last two are no longer
6048 supported by GCC 3.4.0.
6049 * README: Mention GNU m4 1.4 or later; mention m4 patches.
6050 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
6051
233a88ad
PE
60522004-05-06 Paul Eggert <eggert@cs.ucla.edu>
6053
6054 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
6055 unsigned int, for compatibility with latest gnulib hash module.
6056 * src/state.c (state_hash, state_hasher): Likewise.
6057 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
6058 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 6059
12ffdd28
PE
60602004-05-03 Paul Eggert <eggert@cs.ucla.edu>
6061
6062 * NEWS: Unescaped newlines are no longer allowed in char & strings.
6063
6064 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
6065 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
6066 character and string literals.
6067 (unexpected_end): New function.
6068 (unexpected_eof): Use it.
6069 (unexpected_newline): New function.
6070 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
6071 actions.
e476c87d 6072
12ffdd28
PE
6073 * NEWS: Document %expect-rr.
6074
6075 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
6076 Fix typo by replacing $1 with $option.
6077 Remove more 'intl'-related files.
9668e2be 6078 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
6079
6080 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
6081 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
6082 strtoul.c.
6083 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
6084 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
6085 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
6086 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
6087 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
6088 * src/.cvsignore: Add *.output.
6089
6090 * src/parse-gram.y: Put copyright notice inside %{ %} so it
6091 gets copied to the output file.
e476c87d 6092
1f65350a
PE
60932004-04-28 Paul Eggert <eggert@twinsun.com>
6094
6095 Get files from the gnulib and po repositories, instead of relying
6096 on them being in our CVS. Upgrade to latest versions of gnulib
6097 and Automake.
6098
6099 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
6100 * bootstrap: Bootstrap from gnulib and po repositories.
6101 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
6102 * README-cvs: Document these changes. Remove version numbers from
6103 mentions of build tools, since they change so often. Mention Flex.
6104
6105 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
6106 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
6107 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
6108 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 6109 does this for us.
12ffdd28
PE
6110 (AC_ISC_POSIX): Remove; we no longer support this
6111 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
6112 (AC_HEADER_STDC): Remove: we now assume C89 or better.
6113 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
6114 Do not check for C89 headers, except for locale.h which is used
6115 by the Yacc library and must port to K&R hosts.
6116 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
6117 Do not check for C89 functions, except for setlocale which is
6118 used by the Yacc library.
6119 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
6120 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
6121 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
6122 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
6123 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
6124 AM_GNU_GETTEXT): Remove; now done by:
6125 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
6126 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
6127 for us.
6128
6129 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
6130 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
6131 Define to empty, as gnulib.mk will do the rest for us.
6132 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
6133 for us.
6134 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
6135 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
6136
6137 * src/files.c: Include gnulib's xstrndup.h.
6138
6139 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
6140 (REALLOC): Use xnrealloc, for likewise.
6141 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
6142 (strnlen, memrchr): Remove decls; functions no longer used.
6143 Include <stpcpy.h>.
6144
6145 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
6146 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
6147 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
6148 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
6149 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
6150 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
6151 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
6152 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
6153 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
6154 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
6155 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
6156 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6157 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
6158 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
6159 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
6160 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
6161 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
6162 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
6163 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
6164 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
6165 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
6166 Remove, as these files are now generated automatically
6167 by bootstrap or automake.
6168
6169 * po/ChangeLog: Remove: all but one entry was a duplicate
6170 of this file, and I moved that 2000-11-02 entry here.
6171
6172 * config/.cvsignore: Add Makefile, depcomp, install-sh.
6173 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
6174 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
6175 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
6176 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
6177 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
6178 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
6179 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
6180 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
6181 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
6182 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
6183 xstrndup.h.
6184 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
6185 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
6186 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
6187 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
6188 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
6189 * src/.cvsignore: Remove *_.c.
6190
6191
6192 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
6193 support it. (The latest stable gzip doesn't.)
6194
61952004-04-27 Paul Eggert <eggert@twinsun.com>
6196
6197 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
6198 case, as stos_ is now used by destructors due to the 2004-02-09
6199 change.
6200
6201 Remove more K&R C support.
6202 * lib/libiberty.y (PARAMS): Remove. All uses removed.
6203 * lib/subpipe.c (errno): Remove decl.
6204 Include <stdlib.h> unconditionally.
6205 (EXIT_FAILURE): Remove macro.
6206 * src/complain.c (vfprintf, strerror): Remove.
6207 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
6208 unconditionally.
6209 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
6210 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
6211 (strchr, strspn, memchr): Remove decls.
6212 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
6213 unconditionally. Do not declare perror.
6214 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
6215 unconditionally.
6216
6217 * src/complain.c (_): Remove useless defn, as system.h defines this.
6218
6219 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
6220 with latest obstack.h.
6221 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
6222 to procedure types, as obstack.h now does that for us.
6223 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
6224
6225 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
6226 so that this include file can stand alone.
6227 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
6228 does this now. Include subpipe.h first after config.h, to
6229 test whether it can stand alone.
6230
6231 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
6232 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
6233 unused declaration.
6234
6235 * tests/synclines.at (%union synch line): Put a dummy member in
6236 the union, because empty unions aren't allowed in C. Caught
6237 by GCC 3.4.0.
6238
4f16766c
PE
62392004-04-13 Jim Meyering <jim@meyering.net>
6240
6241 * src/conflicts.c (conflicts_print): Correct format string typo:
6242 use `%%' to produce literal `%'. (trivial change)
6243
779e7ceb
PE
62442004-03-30 Paul Eggert <eggert@twinsun.com>
6245
6246 * src/getargs.c (version): Update copyright year to 2004.
6247
6248 * data/c.m4 (b4_int_type): Use 'short int' rather than
6249 'short', and similarly for 'long', 'unsigned', etc.
6250 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
6251 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
6252 yy_yypstack, yydumpstack): Likewise.
6253 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
6254 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
6255 Likewise.
6256 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
6257 yy_stack_print, yyparse): Likewise.
6258 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
6259 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
6260 * lib/bitset.c (bitset_print): Likewise.
6261 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
6262 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6263 * lib/bitsetv.c (bitsetv_dump): Likewise.
6264 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
6265 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
6266 Likewise.
6267 * src/LR0.c (allocate_itemsets): Likewise.
6268 * src/gram.h (rule_number, rule): Likewise.
6269 * src/lalr.h (goto_number): Likewise.
6270 * src/nullable.c (nullable_compute): Likewise.
6271 * src/output.c (prepare_rules): Likewise.
6272 * src/relation.c (relation_print, relation_digraph): Likewise.
6273 * src/relation.h (relation_node): Likewise.
6274 * src/state.h (state_number, transitions, errs, reductions,
6275 struct state): Likewise.
6276 * src/symtab.h (symbol_number, struct symbol): Likewise.
6277 * src/tables.c (vector_number, tally, action_number,
6278 default_goto, goto_actions): Likewise.
6279 * tests/existing.at (GNU Cim Grammar): Likewise.
6280 * tests/regression.at (Web2c Actions): Likewise.
6281
6282 * src/output.c (muscle_insert_short_int_table): Renamed from
6283 muscle_insert_short_table. All uses changed.
6284
d6328241
PH
62852004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6286
6287 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
6288 (declaration): Replace expected_conflicts with expected_sr_conflicts.
6289 Add %expect-rr rule.
4f16766c 6290
d6328241
PH
6291 * src/scan-gram.l: Recognize %expect-rr.
6292
4f16766c 6293 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 6294 expected_conflicts.
4f16766c 6295 (expected_rr_conflicts): Declare.
d6328241
PH
6296
6297 * src/conflicts.c (expected_sr_conflicts): Rename from
6298 expected_conflicts.
6299 (expected_rr_conflicts): Define.
6300 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
6301 for GLR parsers.
6302 Use expected_sr_conflicts in place of expected_conflicts.
6303 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 6304
d6328241 6305 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 6306
1452af69
PE
63072004-03-08 Paul Eggert <eggert@gnu.org>
6308
6309 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 6310 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
6311
6312 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
6313 in lalr1.cc.
6314 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
6315 * src/scan-gram.l (scan_integer): New function.
6316 ({int}): Use it.
6317 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
6318 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
6319 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
6320 Say "long int", not "long", for uniformity with GNU style.
6321
006d217d
PE
63222004-02-25 Paul Eggert <eggert@twinsun.com>
6323
6324 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
6325 compilers. This fixes a problem with Intel's C++ compiler being
6326 chatty, reported by Guido Trentalancia in
161a71f3 6327 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 6328
c2729758
ADL
63292004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
6330
6331 Support %destructor and merge error locations in lalr1.cc.
6332
6333 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
6334 (Parser::stos_): Define unconditionally.
6335 (Parser::destruct_): New method. Generate its body with
6336 b4_yydestruct_generate.
6337 (Parser::error_start_): New attribute.
6338 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
6339 token which are discarded.
6340 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
6341 error_start_ when erroneous token are discarded.
6342 (Parser::parse) <yyerrlab1>: Compute the location of the error
6343 token so that it covers all the discarded tokens.
6344 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
6345 it can be called with `%skeleton "lalr1.cc"', and do that.
6346
dd0e0635
PE
63472004-02-02 Paul Eggert <eggert@twinsun.com>
6348
6349 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
6350 $(top_srcdir)/lib and ../lib. This fixes a bug reported
6351 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
6352 There's no need to mention top_builddir since Automake does that
6353 for us.
6354 (INCLUDES): Remove, as Automake says it's obsolescent.
6355 Contents migrated into AM_CPPFLAGS as described above.
6356 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
6357
63582004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
6359
6360 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
6361 (yyreportSyntaxError): Handle case where lookahead token is
6362 YYEMPTY.
6363
be16239b
PH
63642004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6365
6366 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
6367 resulting parsers are compilable with C++.
6368
5fa90832
PE
63692003-12-23 Paul Eggert <eggert@twinsun.com>
6370
6371 * config/depcomp, config/install-sh: Sync with Automake 1.8.
6372 * src/output.c (output_skeleton): Rename local var.
6373 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
6374 Bison tokens, as this runs afoul of the 2003-10-07 change that
6375 disallowed NUL bytes in character constants or string literals.
6376
6377 * tests/local.at: Require Autoconf 2.59's Autotest.
6378 * tests/testsuite.at: Don't include local.at, since we now assume
6379 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
6380 including it.
6381 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
6382 multiple inclusion warnings.
dd0e0635 6383
b165c324
AD
63842003-12-02 Akim Demaille <akim@epita.fr>
6385
6386 * doc/bison.texinfo (How Can I Reset the Parser): More about start
6387 conditions.
6388 From Bruno Haible.
6389
26e06a21
ADL
63902003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
6391
6392 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
6393
92ac3705
PE
63942003-10-07 Paul Eggert <eggert@twinsun.com>
6395
6a5ecb38
PE
6396 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
6397 if testsuite doesn't exist.
6398
92ac3705
PE
6399 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
6400 literals, unfortunately.
6401 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
6402 Complain about NUL bytes in character constants or string literals.
6403
91d2c560
PE
64042003-10-05 Paul Eggert <eggert@twinsun.com>
6405
6406 * NEWS: Don't document %no-default-prec, as it's still
6407 too experimental.
6408 * doc/bison.texinfo: Document %no-default-prec only if
6409 the defaultprec flag is set. Normally it's not.
6410
0cc3da3a
PE
64112003-10-04 Paul Eggert <eggert@twinsun.com>
6412
6413 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
6414 non-modifiable lvalue, instead of a modifiable one.
6415 * doc/bison.texinfo (Actions): Document that $$ can
6416 be assigned to. Do not claim that $$ and $N are
6417 array element references: user code should not rely on this.
6418
22fccf95
PE
64192003-10-01 Paul Eggert <eggert@twinsun.com>
6420
6421 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
6422 (grammar_declaration): Use it.
6423 * src/scan-gram.l: New token %no-default-prec.
6424 * tests/conflicts.at: Revamp tests to use %no-default-prec.
6425 * NEWS, doc/bison.texinfo: Document the above.
6426
fc8f2965
AD
64272003-10-01 Akim Demaille <akim@epita.fr>
6428
6429 VCG no longer supports long_straight_phase.
6430
6431 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
6432 * src/print_graph.c (print_graph): Adjust.
6433
39a06c25
PE
64342003-09-30 Frank Heckenbach <frank@g-n-u.de>
6435 and Paul Eggert <eggert@twinsun.com>
6436
6437 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
6438 Table of Symbols): Document %default-prec.
6439 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
6440 (grammar_declaration): Set default_prec on %default-prec.
6441 * src/scan-gram.l (%default-prec): New token.
6442 * src/reader.h (default_prec): New flag.
6443 * src/reader.c: Likewise.
6444 (packgram): Handle it.
6445 * tests/conflicts.at (%default-prec without %prec,
6446 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 6447
39a06c25
PE
64482003-09-30 Paul Eggert <eggert@twinsun.com>
6449
6450 * tests/testsuite.at: Include local.at, not input.at, fixing
6451 a typo in the 2003-08-25 patch.
6452
62b6aef9
AD
64532003-08-27 Akim Demaille <akim@epita.fr>
6454
6455 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
6456 GCC warnings.
6457
89e1cc61
AD
64582003-08-26 Akim Demaille <akim@epita.fr>
6459
6460 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
6461 "<\#" to avoid magic from Gnus when posting parts of this script.
6462
a08460b0
AD
64632003-08-26 Akim Demaille <akim@epita.fr>
6464
6465 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
6466 (Parser::parse): here.
6467 Adjust: nerrs and errstatus is now replaced by...
6468 (Parser::nerrs_, Parser::errstatus_): New.
6469
603f1cfd
AD
64702003-08-25 Akim Demaille <akim@epita.fr>
6471
6472 * config/announce-gen, Makefile.cfg: New.
6473 * Makefile.am: Adjust.
6474 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
6475 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
6476
cd3684cf
AD
64772003-08-25 Akim Demaille <akim@epita.fr>
6478
6479 When reducing initial empty rules, Bison parser read an initial
6480 location that is not defined. This results in garbage, and that
6481 affects Bison's own parser. Therefore we need (i) to extend Bison
6482 to support a means to initialize this location, and (ii) to use
6483 this CVS Bison to fix CVS Bison's parser.
6484
6485 * src/reader.h, reader.c (epilogue_augment): Remove, replace
6486 with...
6487 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
6488 * src/parse-gram.y: Adjust.
6489 (%initial-action): New.
6490 (%error-verbose): Since we require CVS Bison, there is no reason
6491 not to use it.
6492 * src/scan-gram.l: Adjust.
6493 * src/Makefile.am (YACC): New, to make sure we use our own parser.
6494 * data/yacc.c (yyparse): Use b4_initial_action.
6495
4e03e201
AD
64962003-08-25 Akim Demaille <akim@epita.fr>
6497
6498 * doc/bison.texinfo: Don't promote stdout for error messages.
6499
8c182d05
AD
65002003-08-25 Akim Demaille <akim@epita.fr>
6501
6502 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
6503 From Alexandre Duret-Lutz.
6504
6a60c4cf
PE
65052003-08-25 Akim Demaille <akim@epita.fr>
6506
6507 Version 1.875c.
6508
25f66e1a
AD
65092003-08-25 Akim Demaille <akim@epita.fr>
6510
6511 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
6512 Use them.
6513
5348bfbe
AD
65142003-08-25 Akim Demaille <akim@epita.fr>
6515
6516 * data/lalr1.cc (Parser::reduce_print_): New.
6517 Use it.
6518
47301314
AD
65192003-08-25 Akim Demaille <akim@epita.fr>
6520
6521 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
6522 error recovery loops. This patch is based on
161a71f3 6523 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
6524 Also, augment the similarity between lalr1.cc and yacc.c.
6525 Note: the locations of error recovery rules are not correct yet.
6526
6527 * data/lalr1.cc: Comment changes to augment the similarity between
6528 lalr1.cc and yacc.c.
6529 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
6530 (yyerrlab1): Remove, but where it used to be (now the bottom part of
6531 yyerrlab), when hitting EOF, pop the whole stack here instead of
6532 merely falling thru the default error handling mechanism.
6533 (yyerrorlab): New label, with the old contents of YYERROR,
6534 plus the following change: pop the stack of rhs corresponding
6535 to the production that invoked YYERROR. That is how Yacc
6536 behaves (required by POSIX).
6537 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
6538 fail.
6539
1f7a61ff
AD
65402003-08-25 Akim Demaille <akim@epita.fr>
6541
6542 Tune local.at so that people can "autom4te -l autotest calc.at -o
6543 calc" for instance, to extract a sub test suite.
6544
6545 * tests/testsuite.at: Move the initialization, Autotest version
6546 requirement, and AT_TESTED invocation into...
6547 * tests/local.at: here.
6548 * tests/testsuite.at: Include it for compatibility with Autoconf
6549 2.57.
6550 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
6551 be ignore.
6552
327b5b56
PE
65532003-08-04 Paul Eggert <eggert@twinsun.com>
6554
6555 Rework code slightly to avoid gcc -Wtraditional warnings.
6556 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
6557 The returned value is now stored in *YY0. All callers changed.
6558 * src/output.c (merge_output): Adjust to the above change.
6559
0051e3ed
PE
65602003-07-26 Paul Eggert <eggert@twinsun.com>
6561
6562 * data/glr.c (YYASSERT): New macro.
6563 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
6564 yyresolveStates, yyprocessOneStack):
6565 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
6566 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 6567
137437c6
PE
65682003-07-25 Paul Eggert <eggert@twinsun.com>
6569
5b620e06
PE
6570 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
6571 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 6572 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
6573 by Frank Heckenbach, though I have omitted the structure-initialization
6574 part of his glr-knr.diff patch since I recall that the Portable
6575 C Compiler didn't require that change.
6576
137437c6
PE
6577 Let the user specify how to allocate and free memory.
6578 Derived from a suggestion by Frank Heckenbach in
161a71f3 6579 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
6580 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
6581 All uses of free, malloc, realloc changed to use these macros,
6582 and unnecessary casts removed.
6583 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
6584
ddb85ca5
PE
65852003-07-06 Matthias Mann <MatthiasMann@gmx.de>
6586
6587 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
6588 use s.empty() rather than s == "" to test for empty string; see
161a71f3 6589 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
6590 (trivial change)
6591
39910e09
AD
65922003-06-25 Akim Demaille <akim@epita.fr>
6593
6594 * config/depcomp, config/install-sh: Update from masters.
6595
0ae99356
PE
65962003-06-20 Paul Eggert <eggert@twinsun.com>
6597
6598 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
6599 and return properly parenthesized result.
6600 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
6601 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
6602 Remove unnecessary parentheses from uses.
6603 * doc/bison.texinfo (Location Default Action): Describe the
6604 conventions for parentheses.
6605
cd05d13c
PE
66062003-06-19 Paul Eggert <eggert@twinsun.com>
6607
81fd08ca
PE
6608 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
6609 yyreportTree): Do not assume that size_t is the same width as int,
6610 when printing sizes. Print sizes using an unsigned format.
6611 Problem reported by Frank Heckenbach in
161a71f3 6612 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 6613
cd05d13c
PE
6614 Port to Forte Developer 7 C compiler.
6615 * data/glr.c (struct YYLTYPE): If locations are not being used,
6616 declare a single dummy member, as empty structs do not conform
6617 to the C standard.
6618 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
6619 the Forte Developer 7 C compiler complains that end-of-loop
6620 code is not reached.
6621
4dcf140b
PE
66222003-06-17 Paul Eggert <eggert@twinsun.com>
6623
6624 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
6625 avoid warnings from picky compilers about redefinition of PARAMS.
6626
8dd76bee
PE
66272003-06-17 Paul Eggert <eggert@twinsun.com>
6628
6629 Version 1.875b.
6630
6631 * NEWS: Document 1.875b.
6632
6633 * lib/bbitset.h: Do not include config.h; that's the includer's job.
6634 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
6635 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
6636 Don't use 'index' in comments, as it's a builtin fn on some hosts.
6637 * lib/bitset_stats.c: Include gettext.h unconditionally, as
6638 per recent gettext manual's suggestion.
6639 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
6640 Use prototypes, not old-style definitions.
6641 * lib/lbitset.c (lbitset_unused_clear): Likewise.
6642 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
6643 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
6644 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
6645 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
6646 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
6647 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
6648 vbitset_or_and_cmp, vbitset_copy): Likewise.
6649
6650 * lib/libiberty.h: Do not include config.h; that's the includer's job.
6651 Do not include <stdlib.h>.
6652 (PARAMS): Define unconditionally for C89.
6653 (ATTRIBUTE_NORETURN): Remove.
6654 (ATTRIBUTE_UNUSED): Define unconditionally.
6655
6656 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 6657 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
6658 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
6659 * lib/vbitset.c, lib/vbitset.h: New files.
6660 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6661 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
6662 from libbitset.
6663
6664 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
6665 `How Can I Reset @code{yyparse}', since texinfo does not allow
6666 arbitrary @ in node names.
6667
6668 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
6669 shouldn't be needed according to the gettext 0.12.1 documentation
6670 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 6671 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 6672 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 6673 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 6674
8dd76bee
PE
6675 * lib/.cvsignore: Add stdbool.h.
6676 * m4/.cvsignore: Add nls.m4, po.m4.
6677
6678 Upgrade to CVS gnulib.
6679 * stdbool_.h: File renamed from stdbool.h.in.
6680 * configure.ac (AM_STDBOOL_H): Invoke this instead of
6681 AC_HEADER_STDBOOL.
6682 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
6683 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
6684 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
6685 (MOSTLYCLEANFILES): New var.
6686 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
6687 (stdbool.h): New rule.
6688 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
6689 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
6690 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
6691 m4/quote.m4: Upgrade to today's gnulib.
6692
6693 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
6694 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
6695 the tests right now.
6696 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
6697 yyerror are declared before use; C99 requires this.
6698
25005f6a
PH
66992003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6700
6701 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
6702 first.
6703 (yyrecoverSyntaxError): Correct the logic for setting and testing
6704 yyerrState.
6705 Correct comment on handling EOF.
6706 Allow states with only a default reduction, rather than failing
8dd76bee 6707 (I can't quite reconstruct why these were not allowed before).
25005f6a 6708
137437c6 6709 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 6710 buffer overruns, corrupting state.
8dd76bee
PE
6711
6712 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
6713 definition.
6714 * src/reader.h (max_left_semantic_context): New variable declaration.
6715 * src/scan-gram.l (max_left_semantic_context): Define.
6716 (handle_action_dollar): Update max_left_semantic_context.
6717 * data/glr.c (YYMAXLEFT): New definition.
6718 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
6719 (yyresolveAction): Ditto.
6720
6721 Fixes to problems with location handling in GLR parsers reported by
6722 Frank Heckenbach (2003/06/05).
6723
6724 * data/glr.c (YYLTYPE): Make trivial if locations not used.
6725 (YYRHSLOC): Add parentheses, and define only if locations used.
6726 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
6727 locations not used.
6728 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
6729 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 6730
25005f6a
PH
6731 * tests/cxx-type.at: Exercise location information; update tests
6732 to differentiate output with and without locations.
8dd76bee 6733 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
6734 because default YYLTYPE not yet defined.
6735 Change semantic actions to compute strings, rather than printing
6736 them directly (to test proper passing of semantics values). Change
6737 output to prefix notation and update test data and expected results.
6738 (yylex): Track locations.
6739 (stmtMerge): Return value rather than printing, and include arguments
6740 in value.
8dd76bee 6741
711f40b7
PE
67422003-06-03 Paul Eggert <eggert@twinsun.com>
6743
6744 Avoid warnings generated by GCC 2.95.4 when Bison is
6745 configured with --enable-gcc-warnings.
6746 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
6747 yy::]b4_parser_class_name[::translate_,
6748 yy::Stack::operator[] (unsigned),
6749 yy::Stack::operator[] (unsigned) const,
6750 yy::Slice::operator[] (unsigned),
6751 yy::Slice::operator[] (unsigned) const):
6752 Rename local vars to avoid warnings.
6753 * tests/glr-regression.at (Improper handling of embedded actions
6754 and $-N in GLR parsers): Remove unused local variable from yylex.
6755 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
6756 (void) as arg when not pure, since we now assume C89 when building
6757 Bison. Pacify GCC by using parameter.
6758
ac695f7d
PE
67592003-06-02 Paul Eggert <eggert@twinsun.com>
6760
6761 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
6762 yy::Location::lines, yy::Location::columns): Rename arguments
6763 to avoid shadowing; this removes a warning generated by GCC 3.3.
6764
26ec81e0
PE
67652003-06-01 Paul Eggert <eggert@twinsun.com>
6766
6767 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
6768 to g++, as GCC 3.3 complains if you do it.
6769 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
6770 everything that WARNING_CFLAGS has, except omit warnings
6771 not suitable for C++.
6772 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
6773 * tests/atlocal.in (CXXFLAGS): New var.
6774 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
6775
6776 Fix a GLR parser bug I reported in February; see
161a71f3 6777 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
6778 The problem was that GLR parsers did not conform to the C standard,
6779 because actions like { $1 = $2 + $3; } expanded to expressions
6780 that invoked YYFILL in separate subexpressions, and YYFILL assigned
6781 to a local variable. The C standard says that expressions
6782 like (var = f ()) + (var = f ()) have undefined behavior.
6783 Another problem was that GCC sometimes issues warnings that
6784 yyfill and its parameters are unused.
6785
6786 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
6787 as possibly unused.
6788 (yyfill): New function.
6789 (YYFILL): Use it.
6790 (yyuserAction): Change type of yynormal to bool, so that it matches
6791 the new yyfill signature. Mark it as possibly unused.
6792
6793
6794 Follow up on a bug I reported in February, where a Bison-generated
6795 parser can loop. Provide a test case and a fix for yacc.c. I
6796 don't have a fix for lalr1.cc or for glr.c, unfortunately.
6797 The original bug report is in:
161a71f3 6798 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
6799
6800 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
6801 macro's size was becoming unwieldy.
6802 (yyerrlab): Do not discard an empty lookahead symbol, as this
6803 might destroy garbage.
6804 (yyerrorlab): New label, with the old contents of YYERROR,
6805 plus the following change: pop the stack of rhs corresponding
6806 to the production that invoked YYERROR. That is how Yacc
6807 behaves, and POSIX requires this behavior.
6808 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
6809 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
6810 Define 'alarm' to do nothing if unistd.h is not available.
6811 Add a new rule "exp: '-' error;" to test the above change to
6812 data/yacc.c. Use 'alarm' to abort any test taking longer than
6813 10 seconds, as it's probably looping.
6814 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
6815 Also, the new yacc.c generates two fewer diagnostics for an
6816 existing test.
6817
d0829076
PE
68182003-05-24 Paul Eggert <eggert@twinsun.com>
6819
c6ae27df
PE
6820 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
6821 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
6822 This fixes a problem reported by John Bowman when the Compaq/HP
6823 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
6824 -ansi -Wall -gall).
6825 * data/yacc.c (union yyalloc): Likewise.
6826 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 6827
d0829076
PE
6828 Switch from 'int' to 'bool' where that makes sense.
6829
6830 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
6831 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
6832 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
6833 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
6834 Return or accept bool, not int. All callers changed.
6835 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
6836 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
6837 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
6838 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
6839 bitset_or_and_cmp_): Likewise.
6840 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
6841 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
6842 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
6843 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
6844 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
6845 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
6846 bitset_stats_or_and_cmp): Likewise.
6847 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
6848 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
6849 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
6850 ebitset_xor_cmp): Likewise.
6851 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
6852 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
6853 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
6854 lbitset_xor_cmp): Likewise.
6855 * lib/bbitset.h: Include <stdbool.h>.
6856 (struct bitset_vtable): The following members now return bool, not
6857 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
6858 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
6859 or_and_cmp).
6860 * src/conflicts.c (count_rr_conflicts): Likewise.
6861 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
6862 All uses changed.
6863 * lib/ebitset.c (ebitset_obstack_init): Likewise.
6864 * lib/lbitset.c (lbitset_obstack_init): Likewise.
6865 * src/getargs.c (debug_flag, defines_flag, locations_flag,
6866 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6867 graph_flag): Likewise.
6868 * src/getargs.h (debug_flag, defines_flag, locations_flag,
6869 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6870 graph_flag): Likewise.
6871 * src/output.c (error_verbose): Likewise.
6872 * src/output.h (error_verbose): Likewise.
6873 * src/reader.c (start_flag, typed): Likewise.
6874 * src/reader.h (typed): Likewise.
6875 * src/getargs.c (LOCATIONS_OPTION): New constant.
6876 (long_options, getargs): Use it.
6877 * src/lalr.c (build_relations): Use bool, not int.
6878 * src/nullable.c (nullable_compute): Likewise.
6879 * src/print.c (print_reductions): Likewise.
6880 * src/tables.c (action_row, pack_vector): Likewise.
6881 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
6882 * src/output.c (prepare): Use it.
6883 * src/output.c (token_definitions_output,
6884 symbol_destructors_output, symbol_destructors_output): Use string,
6885 not boolean integer, to keep track of whether to output separator.
6886 * src/print_graph.c (print_core): Likewise.
6887 * src/state.c (state_rule_lookaheads_print): Likewise.
6888
6889 * config/install-sh: Sync from automake 1.7.5.
6890
6b2584b7
PE
68912003-05-14 Paul Eggert <eggert@twinsun.com>
6892
6893 * src/parse-gram.y (rules_or_grammar_declaration): Require a
6894 semicolon after a grammar declaration, in the interest of possible
6895 future changes to the Bison input language.
6896 Do not allow a stray semicolon at the start of the grammar.
6897 (rhses.1): Allow one or more semicolons after any rule, including
6898 just before "|" as required by POSIX.
6899 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
6900 grammar.
6901
caf37a36
ADL
69022003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
6903
6904 %parse-param support for lalr1.cc.
6905
6906 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
6907 b4_cc_constructor_calls, b4_cc_constructor_call,
6908 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
6909 definitions.
6910 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
6911 parse-param arguments.
6912 (yy::b4_parser_class_name): Declare instance variables to
6913 hold parse-param arguments.
6914 * tests/calc.at: s/value/semantic_value/ because value clashes
6915 with a member of yy::b4_parser_class_name. Adjust C++ code
6916 to handle %parse-param. Enable %parse-param test in C++.
6917
3ab37077
PE
69182003-05-12 Paul Eggert <eggert@twinsun.com>
6919
6920 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
6921 English a bit. Fix fclose typo. Change "const char" to "char
6922 const", and use ANSI C rather than K&R for "main". Suggest
6923 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
6924 and suggest yy_switch_to_buffer.
6925
69262003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
6927
6928 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
6929 C89. This avoids a diagnostic on compilers that define __STDC__
6930 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 6931 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 6932
e743727f
PE
69332003-05-03 Paul Eggert <eggert@twinsun.com>
6934
6935 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
6936 Do not overrun array bounds.
6937 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 6938 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 6939
916708d5
AD
69402003-04-29 Akim Demaille <akim@epita.fr>
6941
6942 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
6943 * src/getargs.c, src/getargs.h: here, as bool, not int.
6944 (nondeterministic_parser): New.
6945 * src/parse-gram.y, src/scan-gram.l: Support
6946 %nondeterministic-parser.
6947 * src/output.c (prepare): Use nondeterministic_parser instead
6948 of glr_parser where appropriate.
6949 * src/tables.c (conflict_row, action_row, save_row)
6950 (token_actions, token_actions, pack_vector): Ditto.
6951
a06ea4aa
AD
69522003-04-29 Akim Demaille <akim@epita.fr>
6953
6954 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
6955
211074ca
AD
69562003-04-29 Akim Demaille <akim@epita.fr>
6957
6958 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
6959 with %pure-parser and %locations to exercise the patch from Yakov
6960 Markovitch below.
6961
6175ffe3
PE
69622003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
6963
6964 * data/yacc.c: (b4_lex_param): Corrected for the case where
6965 %lex-param is provided and %pure-parser isn't.
6966
b1e95857
PE
69672003-04-27 Paul Eggert <eggert@twinsun.com>
6968
6969 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 6970 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
6971 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
6972 if it is not defined.
6973 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
6974
acda9df6
PE
69752003-04-26 Paul Eggert <eggert@twinsun.com>
6976
3470c57b
PE
6977 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
6978 Declare to be of type suitable for the ninf value itself, not of
6979 type suitable for the corresponding table, since the latter might
6980 be unsigned but the ninf value might be negative. This fixes a
6981 bug reported by Alexandre Duret-Lutz in
161a71f3 6982 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 6983
acda9df6
PE
6984 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
6985 invokes it. We shouldn't invoke it twice because it will attempt
6986 to put error.o in the archive twice. This fixes a glitch reported
6987 by Martin Mokrejs in
161a71f3 6988 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 6989
b5250f26
PE
69902003-04-21 Paul Eggert <eggert@twinsun.com>
6991
6992 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
6993 to gnulib.
6994
089ac0f1
PE
69952003-04-21 Yakov Markovitch <Markovitch@iso.ru>
6996
6997 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
6998 Fix obvious typo that results in uncompilable GLR parsers
6999 when both %pure-parser and %locations are used. (trivial change)
7000
5ededac6
PE
70012003-04-17 Paul Eggert <eggert@twinsun.com>
7002
1b8f2fff
PE
7003 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
7004 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
7005 Do not insert the expected token via unput, as this runs afoul
7006 of a POSIX-compatibility bug in flex 2.5.31.
7007 All uses changed to BEGIN the parent state,
7008 since we no longer insert the expected token via unput.
7009 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
7010 that is no longer emitted after the above change.
7011
5ededac6
PE
7012 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
7013 the first one. This change is from Paul Hilfinger, and it fixes
7014 regression reported by Werner Lemberg in
161a71f3 7015 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
7016
7017 (resolve_sr_conflict): Don't invoke state_errs_set
7018 unless one or more tokens have been explicitly made errors.
7019 Otherwise, the above change causes Bison to abort.
7020
7021 * tests/existing.at (GNU pic Grammar): New test case, taken from
7022 Lemberg's email.
7023
b8be9132
AD
70242003-03-31 Akim Demaille <akim@epita.fr>
7025
7026 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
7027
d423d460
AD
70282003-03-31 Akim Demaille <akim@epita.fr>
7029
7030 * src/output.c (prepare_symbols): Avoid trailing spaces in the
7031 output.
7032
c7e441b4
AD
70332003-03-31 Akim Demaille <akim@epita.fr>
7034
7035 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
7036 From Paul Hilfinger.
7037
231897ad
AD
70382003-03-29 Akim Demaille <akim@epita.fr>
7039
7040 * m4/error.m4: Do not put under dynamic conditions some code which
7041 expansion is under static control.
7042
5b066063
AD
70432003-03-29 Akim Demaille <akim@epita.fr>
7044
7045 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
7046
22a74fec
AD
70472003-03-29 Akim Demaille <akim@epita.fr>
7048
7049 * doc/bison.texinfo (Strings are Destroyed): New.
7050
0eee27e7
PE
70512003-03-13 Paul Eggert <eggert@twinsun.com>
7052
7053 * .cvsignore: Add configure.lineno.
7054 * src/.cvsignore: Add yacc.
7055 * tests/.cvsignore: Add testsuite.log.
7056 * doc/fdl.texi: Sync with latest FSF version.
7057
f61aad93
PE
70582003-03-12 Paul Eggert <eggert@twinsun.com>
7059
537636c7
PE
7060 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
7061 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
7062 cursor, instead of leaving it undefined. This fixes a bug
7063 reported by Tim Van Holder in
161a71f3 7064 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
7065 * tests/input.at (Torturing the Scanner): Test the scanner on
7066 an empty input file, which was Tim Van Holder's test case.
7067
7068 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
7069 <sys/resource.h> can be included, include sys/time.h and
7070 sys/times.h first, if available. This works around the SunOS
7071 4.1.4 porting bug reported by Bruce Becker in
161a71f3 7072 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
7073
7074 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
7075 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
7076 AC_HEADER_SYS_WAIT.
7077
f61aad93
PE
7078 Merge changes from gnulib. This was prompted because the CVS
7079 snapshot didn't build on Solaris 7 due to strnlen problems.
7080
7081 These changes need to be merged back into gnulib:
7082 * lib/hash.c: Include <stdbool.h> unconditionally.
7083 * m4/onceonly.m4 (m4_quote): New macro.
7084 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
7085 Quote AC_FOREACH variable-expansions properly.
7086 The 2003-01-03 obstack.h change also needs merging.
7087 {end of changes requiring merging}
5b066063 7088
f61aad93
PE
7089 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
7090 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
7091 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
7092 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
7093 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
7094 New files, imported from gnulib.
7095 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
7096 above.
7097
7098 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
7099 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
7100 gnulib sources.
7101
7102 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
7103 Add.
7104 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
7105 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
7106 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
7107 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
7108 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
7109 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
7110 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
7111 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
7112 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
7113 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
7114 (jm_PREREQ_ARGMATCH): Remove.
7115 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
7116 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
7117
7118 * src/system.h: Include <stdbool.h> unconditionally.
7119
7120 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
7121 assuming at least C89 in the bitset code for some time now.
7122
d2ffe116
AD
71232003-03-03 Akim Demaille <akim@epita.fr>
7124
7125 * ro.po: New.
7126
052826fd
AD
71272003-03-02 Akim Demaille <akim@epita.fr>
7128
7129 * doc/bison.texinfo (Table of Symbols): Reactivate the
7130 documentation for %lex-param, and %parse-param.
7131
c4749565
AD
71322003-03-02 Akim Demaille <akim@epita.fr>
7133
7134 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
7135 generate verbose error messages.
7136 Use the number of tokens as an upper bound in yytname, as it
7137 cannot be a non terminal.
7138
d5286af1
AD
71392003-03-02 Akim Demaille <akim@epita.fr>
7140
7141 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
7142 message.
7143
22e304a6
AD
71442003-03-02 Akim Demaille <akim@epita.fr>
7145
22e304a6
AD
7146 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
7147 Use them to exercise yycheck overrun.
7148 Based on Andrew Suffield's grammar.
7149
67a25fed
AD
71502003-03-02 Akim Demaille <akim@epita.fr>
7151
7152 Create tests/local.at for Bison generic testing macros.
7153
7154 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
7155 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
7156 This new file.
7157 * tests/calc.at (AT_CHECK_CALC): Adjust.
7158 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
7159 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
7160 * tests/local.at: here.
7161 (AT_COMPILE_CXX): Tags the tests using it as c++.
7162 Ignore the test if CXX is not functional.
7163
9c2b381f
PE
71642003-03-01 Paul Eggert <eggert@twinsun.com>
7165
7166 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
7167 not loc->end, since loc->end might contain garbage and this leads
7168 to undefined behavior on some platforms.
7169 (id_loc, token_start): Use (IF_LINTed) initial values that do not
7170 depend on *loc, so that the reader doesn't give the the false
7171 impression that *loc is initialized.
7172 (<INITIAL>"%%"): Do not bother setting code_start, since its value
7173 does not survive the return.
7174
0433ba88
AD
71752003-03-01 Akim Demaille <akim@epita.fr>
7176
7177 * src/scan-gram.l (code_start): Always initialize it when entering
7178 into yylex, as SC_EPILOGUE is activated *before* the corresponding
7179 yylex invocation. An alternative would be making it static, but
7180 then it starts with the second %%'s beginning, instead of its end.
7181
b305ea69
PE
71822003-02-28 Paul Eggert <eggert@twinsun.com>
7183
7184 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
7185 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 7186 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 7187
c3d25e01
PE
71882003-02-26 Paul Eggert <eggert@twinsun.com>
7189
7190 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
7191 Remove Sequent/Pyramid discussion (nobody uses them any more).
7192 Merge VMS and MS-DOS discussion; these ports may well be dead
7193 but let's keep mentioning them for now. Put <> around email
7194 addresses. Add copyright notice.
7195
c267ffbc
PE
71962003-02-24 Paul Eggert <eggert@twinsun.com>
7197
7198 * data/glr.c (yy_reduce_print): yylineno -> yylno,
7199 to avoid collision with flex use of yylineno.
7200 Problem reported by Bruce Lilly in
161a71f3 7201 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
7202 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
7203 * data/yacc.c (yy_reduce_print): Likewise.
7204
7205 * config/depcomp: Sync with Automake 1.7.3.
7206
f939fc12
AD
72072003-02-21 Akim Demaille <akim@epita.fr>
7208
7209 * data/lalr1.cc: Use temporary variables instead of casts to
7210 change integer types.
7211 Suggested by Paul Eggert.
7212
95923bd6
AD
72132003-02-21 Akim Demaille <akim@epita.fr>
7214
7215 * doc/bison.texinfo: Use "location" consistently to refer to @n,
7216 to avoid confusions with lalr1.cc's notion of Position.
7217 Suggested by Paul Eggert.
7218
2cdc240e
AD
72192003-02-20 Akim Demaille <akim@epita.fr>
7220
7221 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
7222 before initial_columns.
7223 (location.hh): Use consistent variable names when defining the
7224 operator<<.
7225 Use "last" so that we subtract from Positions, not from unsigned.
7226
5d003116
AD
72272003-02-20 Akim Demaille <akim@epita.fr>
7228
7229 * data/lalr1.cc (position.hh): New subfile, including the extended
7230 and Doxygen'ed documentation of class Position.
7231 (location.hh): Use it.
7232 Document a` la Doxygen.
ba1ecc07 7233 With the help of Benoit Perrot.
5d003116 7234
d02b25f9
AD
72352003-02-20 Akim Demaille <akim@epita.fr>
7236
7237 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
7238 AT_YACC_IF.
7239 Redefine AT_YYERROR_SEES_LOC_IF using it.
7240 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
7241 not defined.
7242 Don't use the location in yy::Parser::error_ and
7243 yy::Parser::print_ when not %locations.
7244 Activate more lalr1.cc tests.
7245
0d1c3a04
AD
72462003-02-19 Akim Demaille <akim@epita.fr>
7247
7248 * data/lalr1.cc: When displaying a line number, be sure to make it
7249 an int.
7250
60a777aa
AD
72512003-02-19 Akim Demaille <akim@epita.fr>
7252
7253 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
7254 Remove, useless.
7255 (YYABORT, YYACCEPT, YYERROR): New.
7256 * tests/calc.at: Renable the lalr1.cc test.
7257
0b86fc41
AD
72582003-02-19 Akim Demaille <akim@epita.fr>
7259
7260 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
7261 error recovery, mixing with/without pops and discarding of the
7262 lookahead.
7263 Exercise YYERROR.
7264 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
7265
da99a5dc
PE
72662003-02-17 Paul Eggert <eggert@twinsun.com>
7267
7268 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
7269 * tests/testsuite.at (AT_COMPILE): Use them.
7270 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 7271 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 7272
93b8c255
PE
72732003-02-12 Paul Eggert <eggert@twinsun.com>
7274
7275 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
7276 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 7277 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
7278 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
7279 Check for malloc failure, for consistency with yacc.c.
7280 (yytname_size): Remove, for consistency with yacc.c.
7281
7282 The bug still remains in data/lalr1.cc, as I didn't have time
7283 to fix it there.
7284
7548fed2
AD
72852003-02-06 Akim Demaille <akim@epita.fr>
7286
7287 * configure.ac (GXX): Rename as...
7288 (CXX): this, to keep the original Autoconf semantics.
7289 Require 2.57.
7290 * data/lalr1.cc: Fix b4_copyright invocations.
7291 If YYDEBUG is not defined, don't depend upon name_ being defined.
7292 (location.hh): Include string and iostream.
7293 (Position::filename): New member.
7294 (Position::Position ()): New.
7295 (operator<< (Position)): New.
7296 (operator- (Position, int)): New.
7297 (Location::first, Location::last): Rename as...
7298 (Location::begin, Location::end): these, to mock the conventional
7299 iterator names.
7300 (operator<< (Location)): New.
7301 * tests/atlocal.in (CXX): New.
7302 * tests/testsuite.at (AT_COMPILE_CXX): New.
7303 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
7304 locations in a more synthetic way.
7305 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
7306 lalr1.cc is used.
7307 Adjust the C locations to match those from Emacs: first column is
7308 column 0.
7309 Change all the expected results.
7310 Conform to the GCS: simplify the locations when applicable.
7311 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
7312 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
7313 these CPP macros with the m4 macros new defined by...
7314 (AT_CHECK_PUSHDEFS): this, i.e.:
7315 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 7316 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
7317 New macros.
7318 (AT_CHECK_POPDEFS): Undefine them.
7319 (AT_CHECK_CALC_LALR1_CC): New.
7320 Use it for the first lalr1.cc test.
7321
43a176ef
AD
73222003-02-04 Akim Demaille <akim@epita.fr>
7323
7324 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
7325 Location as is defined.
7326
fc049e9c
AD
73272003-02-04 Akim Demaille <akim@epita.fr>
7328
7329 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
7330 name_ being defined.
7331
a737b216
PE
73322003-02-03 Paul Eggert <eggert@twinsun.com>
7333
7334 * src/gram.h (start_symbol): Remove unused decl.
7335
7336 Use more-consistent naming conventions for local vars.
7337
7338 * src/derives.c (derives_compute): Change type of local var from
7339 int to rule_number.
7340 * src/gram.c (grammar_rules_partial_print): Likewise.
7341 * src/print.c (print_core): Likewise.
7342 * src/reduce.c (reduce_grammar_tables): Likewise.
7343
7344 * src/gram.c (grammar_dump): Change name of item_number *
7345 local var from r to rp.
7346 * src/nullable.c (nullable_compute): Likewise.
7347
7348 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
7349
7350 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
7351 for symbol or symbol_number var.
7352 * src/reader.c (grammar_start_symbol_set): Likewise.
7353 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
7354 Likewise.
7355 * src/state.c (transitions_to): Likewise.
7356 * src/state.h: Likewise.
7357 * src/tables.c (symbol_number_to_vector_number): Likewise.
7358
7359 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
7360 char * var.
7361
7362 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
7363 var.
7364
7365 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
7366 var.
7367
7368 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
7369 Use str, not s, for char * var. Use ch, not c, for character var.
7370 Use size for size var.
7371
7372 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
7373 char * var.
7374 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
7375 uniqstr var.
7376 * src/uniqstr.h: Likewise.
7377
7378 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7379 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7380 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
7381 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
7382 param to have same name as that of enum, so that we don't use
7383 "s" to stand for a non-state.
7384
68e93ad5
AD
73852003-02-02 Akim Demaille <akim@epita.fr>
7386
7387 * src/scan-skel.l: Scan more than one inert character per yylex
7388 invocation.
7389
92898986
PE
73902003-02-01 Paul Eggert <eggert@twinsun.com>
7391
7392 Version 1.875a.
7393
1d9d5d71
PE
7394 * po/LINGUAS: Add ms.
7395
0435d061
AD
73962003-01-30 Akim Demaille <akim@epita.fr>
7397
7398 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
7399
6029a57f
PH
74002003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7401
7402 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
7403 of $1.
0435d061
AD
7404
7405 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 7406 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 7407 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 7408
6029a57f
PH
7409 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
7410 (b4_rhs_location): Ditto.
0435d061 7411 (yyfill): New function to copy from stack tree into array
6029a57f 7412 incrementally.
0435d061
AD
7413 (yyuserAction): Modify to allow incremental move of semantic values
7414 to rhs array when in GLR mode.
7415 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
7416 as needed.
7417 Remove dummy use of yystack, as there is now a guaranteed use.
7418 (yydoAction): Modify to allow incremental move of semantic values
7419 to rhs array when in GLR mode.
7420 (yyresolveAction): Ditto.
7421 (yyglrShiftDefer): Update comment.
0435d061 7422 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
7423 (yyglrReduce): Ditto.
7424 (yydoAction): Ditto
0435d061 7425
6029a57f
PH
7426 * tests/glr-regr1.at: Rename to ...
7427 * tests/glr-regression.at: Add new regression test for the problems
7428 described above (adapted from S. Eken).
7429 Update copyright notice.
7430 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
7431 * tests/Makefile.am: Ditto.
7432
6cee6297
PE
74332003-01-28 Paul Eggert <eggert@twinsun.com>
7434
7435 * data/lalr1.cc: Do not use @output_header_name@ unless
7436 b4_defines_flag is set. This fixes two bugs reported by
7437 Tim Van Holder in
161a71f3
PE
7438 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
7439 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 7440
b2a836b5
PE
74412003-01-21 Paul Eggert <eggert@twinsun.com>
7442
7443 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
7444 we don't need to worry about yyerrlab1 being reported as an
7445 "unused label" by non-GCC C compilers. The downside is that if
7446 locations are used then a couple of statements are duplicated each
7447 time YYERROR is invoked, but the upside is that the warnings
7448 should vanish.
7449 (yyerrlab1): Move code to YERROR.
7450 (yyerrlab2): Remove. Change uses back to yyerrlab1.
7451 This reverts some of the 2002-12-27 change.
7452
4196b931
PE
74532003-01-17 Paul Eggert <eggert@twinsun.com>
7454
7455 * src/output.c (symbol_printers_output): Fix typo that led
7456 to core dump. Problem reported by Antonio Rus in
161a71f3 7457 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 7458
3ae831b4
AD
74592003-01-13 Akim Demaille <akim@epita.fr>,
7460 Quoc Peyrot <chojin@lrde.epita.fr>,
7461 Robert Anisko <anisko_r@lrde.epita.fr>
7462
7463 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
7464 when the stacks contain one element, as the loop would otherwise
7465 free the last state, and then use the top state (the one we just
7466 popped). This means that the initial elements will not be freed
7467 explicitly, as is the case in yacc.c; it is not a problem, as
7468 these elements have fake values.
7469
e3aa65c5
PE
74702003-01-11 Paul Eggert <eggert@twinsun.com>
7471
7472 * NEWS: %expect-violations are now just warnings, reverting
7473 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
7474 bootstrapping problem reported by Matthias Klose; see
161a71f3 7475 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
7476 * src/conflicts.c (conflicts_print): Likewise.
7477 * tests/conflicts.at (%expect not enough, %expect too much,
7478 %expect with reduce conflicts): Likewise.
7479 * doc/bison.texinfo (Expect Decl): Document this. Also mention
7480 that the warning is enabled if the number of conflicts changes
7481 (not necessarily increases).
7482
7483 * src/getargs.c (version): Update copyright year.
7484
f0057011
AD
74852003-01-09 Akim Demaille <akim@epita.fr>
7486
7487 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
7488
1ee6d2a0
PE
74892003-01-08 Paul Eggert <eggert@twinsun.com>
7490
7491 * Makefile.maint (WGETFLAGS):
7492 New macro, containing "-C off" to disable proxy caches.
7493 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
7494 (rel-check): Use $(WGET) instead of wget.
7495
d4fd77c4
PE
74962003-01-06 Paul Eggert <eggert@twinsun.com>
7497
7498 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
7499 the GLR paper of Scott, Johnstone and Hussain.
7500
464c6927
PE
75012003-01-04 Paul Eggert <eggert@twinsun.com>
7502
d600ee67
PE
7503 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
7504 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
7505 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
7506 (EXTRA_LIBRARIES): New var, for liby.a.
7507 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
7508 (EXTRA_SCRIPTS): New var, for yacc.
7509
464c6927
PE
7510 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
7511 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
7512 Problem reported by Nelson H. F. Beebe.
7513
75142003-01-03 Paul Eggert <eggert@twinsun.com>
7515
7516 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
7517 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
7518 when compiling Bison 1.875's `bitset bset = obstack_alloc
7519 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
7520
7521 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
7522 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
7523 grow to a huge size with typical invocation.
d600ee67 7524
464c6927
PE
7525 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
7526 Use the pattern recommended by Autoconf 2.57, except also protect
7527 against double-definition.
7528 * src/system.h: Likewise.
7529 Portability issues reported by Nelson H. F. Beebe.
d600ee67 7530
464c6927
PE
7531 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
7532 All uses changed. Provide a definition in both C and C++.
7533 (yytrue, yyfalse): Define even if defined (__cplusplus).
7534
7535 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
7536 Reported by Nelson H. F. Beebe.
d600ee67 7537
464c6927
PE
7538 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
7539
0f42c7d5
PE
75402003-01-02 Paul Eggert <eggert@twinsun.com>
7541
7542 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
7543 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
7544 Bug reported by Nelson H. F. Beebe.
7545
dc546b0f
PE
75462003-01-01 Paul Eggert <eggert@twinsun.com>
7547
7548 * Version 1.875.
7549
2c09b6a7
PE
75502002-12-30 Paul Eggert <eggert@twinsun.com>
7551
7552 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
7553 Moved here from...
7554 (<INITIAL>","): Here. This causes stray "," to be treated
7555 more uniformly.
7556
dc546b0f 7557 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
7558 last brace in braced code when not in Yacc mode, for compatibility
7559 with Bison 1.35. This resurrects the 2001-12-15 patch to
7560 src/reader.c.
7561
7562 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
7563 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
7564
535c0f63
PE
75652002-12-28 Paul Eggert <eggert@twinsun.com>
7566
7567 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
7568 that of SYM's type. This fixes Debian bug 168069, reported by
7569 Thomas Olsson.
d600ee67 7570
963fcc17
PE
75712002-12-28 Paul Eggert <eggert@twinsun.com>
7572
7573 Version 1.75f.
7574
7575 Switch back to the Yacc style of conflict reports, undoing some
7576 of the 2002-07-30 change.
7577 * doc/bison.texinfo (Understanding): Use Yacc style for
7578 conflict reports. Also, use new way of locating rules.
7579 * src/conflicts.c (conflict_report):
7580 Renamed from conflict_report_yacc, removing the old
7581 'conflict_report'. Translate the entire conflict report at once,
7582 so that we don't assume that "," has the same interpretation in
7583 all languages.
7584 (conflicts_output): Use Yacc-style conflict report for each state,
7585 instead of our more-complicated style.
7586 (conflicts_print): Use Yacc-style conflict report, except print
7587 the input file name when not emulating Yacc.
7588 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
7589 Conflicted Reduction, %expect not enough, %expect too much,
7590 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
7591 * tests/existing.at (GNU Cim Grammar): Likewise.
7592 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
7593
7594 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
7595 fatal): Don't invoke fflush; it's not needed and it might even be
7596 harmful for stdout, as stdout might not be open.
7597 * src/reduce.c (reduce_print): Likewise.
7598
b1efe548
PE
75992002-12-27 Paul Eggert <eggert@twinsun.com>
7600
7601 Fix a bug where error locations were not being recorded correctly.
7602 This problem was originally reported by Paul Hilfinger in
161a71f3 7603 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
7604
7605 * data/yacc.c (yyparse): New local var yylerrsp, to record the
7606 top of the location stack's error locations.
7607 (yyerrlab): Set it. When discarding a token, push its location
7608 onto yylerrsp so that we don't lose track of the error's end.
7609 (yyerrlab1): Now is only the target of YYERROR, so that we can
7610 properly record the location of the action that failed. For GCC
7611 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
7612 GCC warning about yyerrlab1 being unused if YYERROR is unused.
7613 (yyerrlab2): New label, which yyerrlab now falls through to.
7614 Compute the error's location by applying YYLLOC_DEFAULT to
7615 the locations of all the symbols that went into the error.
7616 * doc/bison.texinfo (Location Default Action): Mention that
7617 YYLLOC_DEFAULT is also invoked for syntax errors.
7618 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7619 Error locations include the locations of all the tokens that were
7620 discarded, not just the last token.
d600ee67 7621
983c5c2c
PE
76222002-12-26 Paul Eggert <eggert@twinsun.com>
7623
b1efe548
PE
7624 * src/files.c: Include quote.h.
7625 (compute_output_file_names): Warn if we detect conflicting
7626 outputs to the same file. This should catch the misunderstanding
7627 exemplified by Debian Bug 165349, reported by Bruce Stephens..
7628
7629 * src/conflicts.c (conflicts_print): If the user specifies
7630 "%expect N", report an error if there are any reduce/reduce
7631 conflicts. This is what the manual says should happen.
7632 This fixes Debian bug 130890, reported by Anthony DeRobertis.
7633 * tests/conflicts.at (%expect with reduce conflicts): New test.
7634
983c5c2c
PE
7635 Don't use m4_include on relative file names, as it doesn't work as
7636 desired if there happens to be a file with that name under ".".
d600ee67 7637
983c5c2c
PE
7638 * m4sugar/version.m4: Remove; it was included but it wasn't used.
7639 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
7640 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
7641 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
7642 * src/output.c (output_skeleton): Use full path names when
7643 specifying a file to include; don't rely on include path, as
7644 it's unreliable when the working file contains a file with
7645 that name.
d600ee67 7646
983c5c2c
PE
76472002-12-25 Paul Eggert <eggert@twinsun.com>
7648
7649 Remove obsolete references to bison.simple and bison.hairy.
7650 Problem mentioned by Aubin Mahe in
161a71f3 7651 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
7652 * data/glr.c: Comment fix.
7653 * doc/bison.1: Remove references. Also, mention "yacc".
7654
7655 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
7656 with -g option.
7657
7658 * src/parse-gram.y (declaration): Use enum "report_states" rather
7659 than its numeric value 1.
7660
7661 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
7662 opening a new one. This fixes Debian bug 165349, reported by
7663 Bruce Stephens.
7664
23f2d9dc
PE
76652002-12-24 Paul Eggert <eggert@twinsun.com>
7666
7667 Version 1.75e.
7668
7669 * Makefile.maint (cvs-update): Don't assume that the shell
7670 supports $(...), as Solaris sh doesn't.
7671
7672 * src/parse-gram.y (lloc_default): Remove test for empty
7673 nonterminals at the end, since it didn't change the result.
7674
76752002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
7676
7677 If the user does not define YYSTYPE as a macro, Bison now declares it
7678 using typedef instead of defining it as a macro. POSIX requires this.
7679 For consistency, YYLTYPE is also declared instead of defined.
7680
7681 %union directives can now have a tag before the `{', e.g., the
7682 directive `%union foo {...}' now generates the C code
7683 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
7684 The default union tag is `YYSTYPE', for compatibility with Solaris 9
7685 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
7686 instead of `yyltype'.
7687
7688 `yystype' and `yyltype' are now obsolescent macros instead of being
7689 typedefs or tags; they are no longer documented and will be
7690 withdrawn in a future release.
7691
7692 * data/glr.c (b4_location_type): Remove.
7693 (YYSTYPE): Renamed from yystype.
7694 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
7695 (struct YYLTYPE): Renamed from struct yyltype.
7696 (YYLTYPE): Renamed from yyltype.
7697 (yyltype, yystype): New (and obsolescent) macros,
7698 for backward compatibility.
7699 * data/yacc.c: Likewise.
7700
7701 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
7702 does not specify a union tag. This is for compatibility with
7703 Solaris 9 yacc.
7704
7705 * src/parse-gram.y (add_param): 2nd arg is now char * not char
7706 const *, since it is now modified by stripping surrounding { }.
7707 (current_braced_code): Remove.
7708 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
7709 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
7710 trailing " {...}". Now of type <chars>.
7711 (grammar_declaration): Adjust to bundled tokens.
7712 (code_content): Remove; stripping is now done by add_param.
7713 (print_token_value): Print contents of bundled tokens.
7714 (token_name): New function.
7715
7716 * src/reader.h (braced_code, current_braced_code): Remove.
7717 (token_name): New decl.
7718
7719 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
7720 token_type, not braced_code code_kind. All uses changed.
7721 (SC_PRE_CODE): New state, for scanning after a keyword that
7722 has (or usually has) an immediately-following braced code.
7723 (token_type): New local var, to keep track of which token type
7724 to return when scanning braced code.
7725 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 7726 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
7727 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
7728 instead of returning a token type immediately.
7729 (<INITIAL>"{"): Set token type.
7730 (<SC_BRACED_CODE>"}"): Use it.
7731 (handle_action_dollar, handle_action_at): Now returns bool
7732 indicating success. Fail if ! current_rule; this prevents a core dump.
7733 (handle_symbol_code_dollar, handle_symbol_code_at):
7734 Remove; merge body into caller.
7735 (handle_dollar, handle_at): Complain in invalid contexts.
7736
7737 * NEWS, doc/bison.texinfo: Document the above.
7738 * NEWS: Fix years and program names in copyright notice.
7739
879ca4f8
PE
77402002-12-17 Paul Eggert <eggert@twinsun.com>
7741
7742 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
7743 Reporting, Table of Symbols): Omit mentions of %lex-param and
7744 %parse-param from the documentation for now.
7745
1c5fe69d
PE
77462002-12-15 Paul Eggert <eggert@twinsun.com>
7747
7748 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
7749 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
7750 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
7751 disagreed with the Bison documentation. Bug
7752 reported by Andrew Walrond.
d600ee67 7753
1c5fe69d
PE
7754 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
7755 as the caller now does that.
7756 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
7757 (YYEMPTY): Parenthesize right hand side, since others use it.
7758 (yyparse): Don't assume that our generated code is the only code
7759 that sets yychar.
7760
d1de5372
PE
77612002-12-13 Paul Eggert <eggert@twinsun.com>
7762
7763 Version 1.75d.
7764
7765 POSIX requires a "yacc" command.
7766 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
7767 (MOSTLYCLEANFILES): Add yacc.
7768 (yacc): New rule.
1c5fe69d 7769 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
7770 as an alias for bison y.
7771
7772 * po/LINGUAS: Add da.
d600ee67 7773
d1de5372
PE
7774 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
7775 problem with latest <getopt.h>.
7776 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
7777
7778 * doc/fdl.texi: Upgrade to 1.2.
7779 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
7780 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
7781 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
7782 gnulib.
7783 * config/install-sh: Sync with autotools.
7784
7785 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 7786 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
7787 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
7788 locations are requested.
7789 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
7790 locations are requested.
7791
d0f3fe23
PE
77922002-12-12 Paul Eggert <eggert@twinsun.com>
7793
7794 Remove unportable casts and storage allocation tricks.
7795 While we're at it, remove almost all casts, since they
7796 usually aren't needed and are a sign of trouble.
7797
7798 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
7799
7800 * src/derives.c (derives_compute): Do not subtract NTOKENS from
7801 the pointer DSET returned by malloc; this isn't portable.
7802 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
7803 Similarly for DERIVES.
7804 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
7805 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
7806 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
7807
7808 * src/derives.c (derives_compute): Do not bother invoking
7809 int_of_rule_number, since rule numbers are integers.
7810
7811 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
7812 rather than XMALLOC (char, N).
7813
7814 * src/files.c (filename_split): Rewrite to avoid cast.
7815
7816 * src/gram.h (symbol_number_as_item_number,
7817 item_number_as_symbol_number, rule_number_as_item_number,
7818 item_number_as_rule_number):
7819 Now inline functions rather than macros, to avoid casts.
7820 * src/state.h (state_number_as_int): Likewise.
7821 * src/tables.c (state_number_to_vector_number,
7822 symbol_number_to_vector_number): Likewise.
7823
7824 * src/gram.h (int_of_rule_number): Remove; no longer used.
7825
7826 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
7827 since the resulting storage is always stored into.
7828
7829 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
7830 where it's needed.
7831
7832 * src/muscle_tab.c (muscle_m4_output):
7833 Now inline. Return bool, not int.
7834 * src/state.c (state_compare): Likewise.
7835 * src/symtab.c (symbol_check_defined,
7836 symbol_check_alias_consistency, symbol_pack, symbol_translation,
7837 hash_compare_symbol, hash_symbol):
7838 Likewise.
7839 * src/uniqstr.c (uniqstr_print): Likewise.
7840 * src/muscle_tab.c (muscle_m4_output_processor):
7841 New function, to avoid casts.
7842 * src/state.c (state_comparator, stage_hasher): Likewise.
7843 * src/symtab.c (symbol_check_defined_processor,
7844 symbol_check_alias_consistency_processor, symbol_pack_processor,
7845 symbol_translation_processor, hash_symbol_comparator,
7846 hash_symbol_hasher): Likewise.
7847 * src/uniqstr.c (uniqstr_print_processor): Likewise.
7848 * src/muscle_tab.c (muscles_m4_output):
7849 Use new functions instead of casting old functions unportably.
7850 * src/state.c (state_hash_new): Likewise.
7851 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
7852 symbols_token_translations_init):
7853 Likewise.
7854 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
7855
7856 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
7857 var instead of casting to long, to avoid casts.
7858 (prepare_states): Use MALLOC rather than alloca, so that we don't
7859 have to worry about alloca.
7860 * src/state.c (state_hash_lookup): Likewise.
7861
7862 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
7863 local var instead of casting to unsigned char, to avoid casts.
7864
7865 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
7866 STATE_ALLOC): Remove.
7867 (transitions_new, errs_new, reductions_new, state_new): Use malloc
7868 rather than calloc, and use offsetof to avoid allocating slightly
7869 too much storage.
7870 (state_new): Initialize all members.
7871
7872 * src/state.c (state_hash): Use unsigned accumulator, not signed.
7873
7874 * src/symtab.c (symbol_free): Remove; unused.
7875 (symbol_get): Remove cast in lhs of assignment.
7876 (symbols_do): Now static. Accept generic arguments, not
7877 hashing-related ones.
7878
7879 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
7880 (symbol_processor): Remove.
7881 (symbols_do): Remove decl; now static.
7882
7883 * src/system.h (alloca): Remove; decl no longer needed.
7884 (<stddef.h>): Include, for offsetof.
7885 (<inttypes.>, <stdint.h>): Include if available.
7886 (uintptr_t): New type, if system lacks it.
7887 (CALLOC, MALLOC, REALLOC): New macros.
7888 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
7889 new macros.
7890
7891 * src/tables.c (table_size): Now int, to pacify GCC.
7892 (table_grow, table_ninf_remap): Use signed table size.
7893 (save_row): Don't bother initializing locals when not needed.
7894 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
7895 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
7896
7897 * src/vcg.h: Correct misspellings.
7898
7899 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
7900
7901
7902 * src/getargs.c (getargs): Don't assume EOF == -1.
7903
26b4a969
PE
79042002-12-09 Paul Eggert <eggert@twinsun.com>
7905
7906 Change identifier spellings to avoid collisions with names
7907 that are reserved by POSIX.
7908
7909 Don't use names ending in _t, since POSIX reserves them.
7910 For consistency, remove _e and _s endings -- they're weren't
7911 needed to remove ambiguity. All uses changed.
7912 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
7913 turn was just renamed from struniq_t.
7914 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
7915 which in turn was just renamed from struniq_processor_t.
7916 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
7917 in turn was renamed from hash_compare_struniq_t.
7918 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
7919 (state_list): Renamed from state_list_t.
7920 * src/assoc.h (assoc): Renamed from assoc_t.
7921 * src/conflicts.c (enum conflict_resolution): Renamed from
7922 enum conflict_resolution_e.
7923 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
7924 (rule_list): Renamed from rule_list_t.
7925 * src/getargs.h (enum trace): Renamed from enum trace_e.
7926 (enum report): Renamed from enum report_e.
7927 * src/gram.h (item_number): Renamed from item_number_t.
7928 (rule_number): Renamed from rule_number_t.
7929 (struct rule_s): Remove the "rule_s" part; not used.
7930 (rule): Renamed from rule_t.
7931 (rule_filter): Renamed from rule_filter_t.
7932 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
7933 (goto_list): Renamed from goto_list_t.
7934 * src/lalr.h (goto_number): Renamed from goto_number_t.
7935 * src/location.h (location): Renamed from location_t.
7936 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
7937 and moved here from:
7938 * src/muscle_tab.h (muscle_entry_t): here.
7939 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
7940 (rule_list): Renamed from rule_list_t.
7941 * src/print_graph.c (static_graph): Renamed from graph.
7942 * src/reader.h (braced_code): Renamed from braced_code_t.
7943 Remove brace_code_e tag.
7944 * src/relation.h (relation_node): Renamed from relation_node_t.
7945 (relation_nodes): Renamed from relation_nodes_t.
7946 (relation): Renamed from relation_t.
7947 * src/state.h (state_number): Renamed from state_number_t.
7948 (struct state): Renamed from struct state_s.
7949 (state): Renamed from state_t.
7950 (transitions): Renamed from transitions_t. Unused (and
7951 misspelled) transtion_s tag removed.
7952 (errs): Renamed from errs_t. Unused errs_s tag removed.
7953 (reductions): Renamed from reductions_t. Unused tag
7954 reductions_s removed.
7955 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
7956 (struct symbol_list): Renamed from struct symbol_list_s.
7957 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
7958 (struct symbol): Renamed from struct symbol_s.
7959 (symbol): Renamed from symbol_t.
7960 * src/tables.c (vector_number): Renamed from vector_number_t.
7961 (action_number): Renamed from action_t.
7962 * src/tables.h (base_number): Renamed from base_t.
7963 * src/vcg.h (enum color): Renamed from enum color_e.
7964 (enum textmode): Renamed from enum textmode_e.
7965 (enum shape): Renamed from enum shape_e.
7966 (struct colorentry): Renamed from struct colorentry_s.
7967 (struct classname): Renamed from struct classname_s.
7968 (struct infoname): Renamed from struct infoname_s.
7969 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
7970 (enum decision): Renamed from enum decision_e.
7971 (enum orientation): Renamed from enum orientation_e.
7972 (enum alignment): Renamed from enum alignment_e.
7973 (enum arrow_mode): Renamed from enum arrow_mode_e.
7974 (enum crossing_type): Renamed from enum crossing_type_e.
7975 (enum view): Renamed from enum view_e.
7976 (struct node): Renamed from struct node_s.
7977 (node): Renamed from node_t.
7978 (enum linestyle): Renamed from enum linestyle_e.
7979 (enum arrowstyle): Renamed from enum arrowstyle_e.
7980 (struct edge): Renamed from struct edge.
7981 (edge): Renamed from edge_t.
7982 (struct graph): Renamed from struct graph_s.
7983 (graph): Renamed from graph_t.
7984 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
7985 Rename value_t -> value.
7986 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
7987 value_t_as_yystype -> value_as_yystype.
7988
7989 Don't include <errno.h> in the mainstream code, since it
7990 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
7991 * lib/get-errno.c, lib/get-errno.h: New files.
7992 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
7993 get-errno.c.
7994 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
7995 * src/output.c (output_skeleton): Likewise.
7996 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
7997 instead of errno.
7998 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
7999 Likewise.
8000 (handle_action_dollar, handle_action_at): Likewise.
8001 * src/system.h: Do not include <errno.h>.
8002 (TAB_EXT): Renamed from EXT_TAB.
8003 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
8004
8005 Avoid str[a-z]*, since <string.h> reserves that name space.
8006 Change all instances of "struniq" in names to "uniqstr", and
8007 likewise for "STRUNIQ" and "UNIQSTR".
8008 * src/uniqstr.c: Renamed from src/struniq.c.
8009 * src/uniqstr.h: Renamed from src/struniq.h.
8010 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
8011 * src/files.c (strsuffix): Remove; unused.
8012 (concat2): Renamed from stringappend. Now static.
8013 * src/files.h (strsuffix, stringappend): Remove; unused.
8014 * src/parse-gram.y (<chars>): Renamed from <string>.
8015 (<uniqstr>): Renamed from <struniq>.
8016 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
8017 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
8018 (struct graph_s.expand): Renamed from struct graph_s.stretch.
8019 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
8020 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
8021 (N_EXPAND): Renamed from N_STRETCH.
8022
8023 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
8024 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
8025 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
8026 Remove; unused.
8027 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
8028 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
8029 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
8030 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
8031 (BASE_MAXIMUM): Renamed from BASE_MAX.
8032 (BASE_MINIMUM): Renamed from BASE_MIN.
8033 (ACTION_MAX): Remove; unused.
8034 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
8035 Unnecessary casts removed from above defines.
8036
8037
8038 Fix misspelling in names.
8039 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
8040 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
8041 G_NODE_ALIGNEMENT.
8042
8043
8044 * lib/timevar.c (timevar_report): Renamed from time_report,
8045 for consistency with other names.
8046 * lib/timevar.h (timevar_report): New decl.
8047 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
8048
8049
8050 Sort include-file uses.
8051
8052 Reorder all include files under src to be in the order "system.h".
8053 then the ../lib include files in angle brackets (alphabetized),
8054 then the . include files in double-quotes (alphabetized). Fix
8055 dependency breakages encountered in this process, as follows:
8056 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
8057 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
8058 * src/state.h: Include "symtab.h".
8059
996b1c7e
PE
80602002-12-08 Paul Eggert <eggert@twinsun.com>
8061
8062 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
8063 since this causes problems when __file__ contains character
8064 sequences like "@" that are treated specially by src/scan-skel.l.
8065 Instead, just use the file's basename. This fixes the bug
8066 reported by Martin Mokrejs in
161a71f3 8067 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 8068
e19c4e5d
PE
80692002-12-06 Paul Eggert <eggert@twinsun.com>
8070
8071 Add support for rules that do not have trailing semicolons, as
8072 POSIX requires. Improve the quality of locations in Bison
8073 diagnostics.
26b4a969 8074
e19c4e5d
PE
8075 * src/location.c: Include <quotearg.h>.
8076 (empty_location): Now const.
8077 (location_print): New function. Follow the recommendation of the
8078 GNU Coding Standards for locations that span file boundaries.
8079 * src/location.h: Do not include <quotearg.h>; no longer needed.
8080 (boundary): New type.
8081 (location_t): Use it. This allows locations to span file boundaries.
8082 All member uses changed: file -> start.file or end.file (as needed),
8083 first_line -> start.line, first_column -> start.column,
8084 last_line -> end.line, last_column -> end.column.
8085 (equal_boundaries): New function.
8086 (LOCATION_RESET, LOCATION_STEP): Remove.
8087 (LOCATION_PRINT): Remove. All callers changed to use location_print.
8088 (empty_location): Now const.
8089 (location_print): New decl.
8090 * src/parse-gram.y (lloc_default): New function, which handles
8091 empty locations more accurately.
8092 (YYLLOC_DEFAULT): Use it.
8093 (%token COLON): Remove.
8094 (%token ID_COLON): New token.
26b4a969 8095 (rules): Use it.
e19c4e5d
PE
8096 (declarations, rules): Remove trailing semicolon.
8097 (declaration, rules_or_grammar_declaration):
8098 Allow empty (";") declaration.
8099 (symbol_def): Remove empty actions; no longer needed.
8100 (rules_or_grammar_declaration): Remove trailing semicolon.
8101 (semi_colon.opt): Remove.
8102 * src/reader.h: Include location.h.
8103 (scanner_cursor): New decl.
8104 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
8105 rolling our own.
8106 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
8107 of *loc.
8108 (STEP): Remove. No longer needed, now that adjust_location does
8109 the work. All uses removed.
8110 (scanner_cursor): New var.
8111 (adjust_location): Renamed from extend_location. It now sets
8112 *loc and adjusts the scanner cursor. All uses changed.
8113 Don't bother testing for CR.
8114 (handle_syncline): Remove location arg; now updates scanner cursor.
8115 All callers changed.
8116 (unexpected_end_of_file): Now accepts start boundary of token or
8117 comment, not location. All callers changed. Update scanner cursor,
8118 not the location.
8119 (SC_AFTER_IDENTIFIER): New state.
8120 (context_state): Renamed from c_context. All uses changed.
8121 (id_loc, code_start, token_start): New local vars.
8122 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
8123 processing of Yacc white space and equivalents here.
8124 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
8125 instead of returning ID immediately, since we need to search for
8126 a subsequent colon.
8127 (<INITIAL>"'", "\""): Save token_start.
8128 (<INITIAL>"%{", "{", "%%"): Save code_start.
8129 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
8130 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
8131 BEGIN context_state at end, not INITIAL.
8132 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
8133 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
8134 Return correct token start.
8135 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
8136 the start of a character, string or multiline comment is found.
8137 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
8138 Reduction): Adjust reported locations to match the more-precise
8139 results now expected.
8140 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
8141 * tests/reduce.at (Useless Rules, Reduced Automaton,
8142 Underivable Rules): Likewise.
8143 * tests/regression.at (Invalid inputs): No longer `expecting ";"
8144 or "|"' now that so many other tokens are allowed by the new grammar.
8145
8146 * src/complain.h (current_file): Remove duplicate decl;
8147 current_file is now owned by files.h.
8148 * src/complain.c, src/scan-gram.l: Include files.h.
8149
81502002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 8151
e19c4e5d
PE
8152 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
8153 promotes to int; it might be unsigned int.
8154 * data/yacc.c (yy_reduce_print): Likewise.
8155
8156 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
8157 be #defined in the prologue, not in the Bison declarations.
8158 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 8159
b64755e3
PE
81602002-12-02 Paul Eggert <eggert@twinsun.com>
8161
8162 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
8163 * lib/strtoul.c: New file, from gnulib.
8164 This fixes a porting bug reported by Peter Klein in
161a71f3 8165 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 8166
6e746484
PE
81672002-11-30 Paul Eggert <eggert@twinsun.com>
8168
b64755e3
PE
8169 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
8170 and put only a forward declaration in the prologue. This is for
8171 consistency with the other scanner helper functions.
8172
6ba55592
PE
8173 Type clashes now generate warnings, not errors, since it
8174 appears that POSIX may allow some grammars with type clashes.
8175 * src/reader.c (grammar_current_rule_check): Warn about
8176 type clashes instead of complaining.
8177 * tests/input.at (Type Clashes): Expect warnings, not complaints.
8178
6e746484
PE
8179 Add Yacc library, since POSIX requires it.
8180 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
8181 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
8182 * lib/main.c, lib/yyerror.c: New files.
8183
8184 gram_error can be static; it need not be extern.
8185 * src/reader.h (gram_error): Remove decl.
8186 * src/parse-gram.y (gram_error): Now static. Add static decl.
8187 (print_token_value): Omit parameter names from forward decl,
8188 for consistency.
8189
88510f9c
PE
81902002-11-29 Paul Eggert <eggert@twinsun.com>
8191
6e746484
PE
8192 * doc/bison.texinfo: Emphasize that yylex and yyerror must
8193 be declared before being used. E.g., one should typically
8194 declare them in the prologue. Use GNU coding style in examples.
8195 Put "const" consistently after the type it modifies. Mention
8196 that C99 supports "inline". Mention that yyerror traditionally
8197 returns "int".
8198
88510f9c
PE
8199 %parse-param and %lex-param now take just one argument, the
8200 declaration; the argument name is deduced from the declaration.
8201
8202 * doc/bison.texinfo (Parser Function, Pure Calling, Error
8203 Reporting, Table of Symbols): Document this.
8204 * src/parse-gram.y (add_param): New function.
8205 (COMMA): Remove.
8206 (declaration): Implement new rule for %parse-param and %lex-param.
8207 * src/scan-gram.l: "," now elicits a warning, rather than being
8208 a token; this is more compatible with byacc.
8209 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
8210
bb92250c
PE
82112002-11-27 Paul Eggert <eggert@twinsun.com>
8212
8213 Rename identifiers to avoid real and potential collisions.
8214
8215 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
8216 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 8217 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
8218 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8219 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
8220 * src/parse-gram.y (print_token_value): Renamed from yyprint.
8221 All uses changed.
8222 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
8223 The name "yycontrol" violates the name space rules, and this stuff
8224 wasn't being used anyway.
8225 (input): Remove action; this stuff wasn't being used.
8226 (gram_error): Rename local variable yylloc -> loc.
8227 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
8228 (YY_DECL): Don't use "yy" at start of local variables.
8229 All uses changed, e.g., yylloc -> loc.
8230 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
8231 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
8232 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
8233 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
8234
8235 * src/parse-gram.y (gram_error): loc is now const *.
8236 * src/reader.h (gram_error): Likewise.
8237
3af4feb2
PE
82382002-11-24 Paul Eggert <eggert@twinsun.com>
8239
8240 Version 1.75c.
8241
8242 * tests/actions.at (Actions after errors): Use an output format
8243 more similar to that of the Printers and Destructors test.
8244 Test the position of the ';' token too.
8245 (Printers and Destructors): Likewise.
8246 (Printers and Destructors: %glr-parser): Remove for now, to avoid
8247 unnecessarily alarming people when the test fails.
8248
8249 * data/yacc.c (yyerrlab1): Move this label down, so that the
8250 parser does not discard the lookahead token if the user code
8251 invokes YYERROR. This change is required for POSIX conformance.
8252
8253 * lib/error.c: Sync with gnulib.
8254
82552002-11-22 Paul Eggert <eggert@twinsun.com>
8256
8257 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
8258 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
8259 * lib/xmalloc.c: Likewise.
26b4a969 8260
58004308
PE
82612002-11-20 Paul Eggert <eggert@twinsun.com>
8262
8263 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
8264
82652002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 8266
58004308
PE
8267 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
8268 should use `if (! x) abort ();' rather than `assert (x);', and
8269 anyway it's one less thing to worry about configuring.
8270
8271 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
8272 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
8273 and replace all instances of assert with abort.
8274 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8275 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
8276
8277 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
8278 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
8279 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
8280 hash_find_entry, hash_rehash, hash_insert): Likewise.
8281 * src/conflicts.c (resolve_sr_conflict): Likewise.
8282 * src/lalr.c (set_goto_map, map_goto): Likewise.
8283 * src/nullable.c (nullable_compute): Likewise.
8284 * src/output.c (prepare_rules, token_definitions_output): Likewise.
8285 * src/reader.c (packgram, reader): Likewise.
8286 * src/state.c (state_new, state_free, state_transitions_set,
8287 state_reduction_find): Likewise.
8288 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
8289 symbol_pack): Likewise.
8290 * src/tables.c (conflict_row, pack_vector): Likewise.
8291 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
8292 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
8293 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
8294 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
8295
8296 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
8297 (ARGMATCH_CONSTRAINT): New macro.
8298 (ARGMATCH_ASSERT): Use it.
8299
8300 * src/system.h (verify): New macro.
8301 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
8302 rather than assert.
8303 * src/tables.c (tables_generate): Likewise.
8304
8305 * src/struniq.c (struniq_assert): Now returns void, and aborts
8306 if the assertion is false.
8307 (struniq_assert_p): Remove.
8308 * src/struniq.h: Likewise.
8309
76ae8198
PE
83102002-11-18 Paul Eggert <eggert@twinsun.com>
8311
8312 * data/glr.c (yygetLRActions): Replace `yyindex' with
8313 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
8314 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 8315 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 8316
d3c4e709
AD
83172002-11-18 Akim Demaille <akim@epita.fr>
8318
8319 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
8320 space.
8321 From Tim Van Holder.
8322
8d8a7238
PE
83232002-11-17 Paul Eggert <eggert@twinsun.com>
8324
8325 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
8326 to "SyntaxError" for consistency with my 2002-11-15 change.
8327
8328 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
8329 not define to {}, since this breaks the common use of `YYDPRINTF
8330 ((...));' if a single statement is desired (e.g. before `else').
8331 Work around GCC warnings by surrounding corresponding calls with
8332 {} if needed.
8333 (yyhasResolvedValue): Remove unused function.
8334 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
8335 loop body.
8336 (yyreportSyntaxError): Renamed from yyreportParseError.
8337 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
8338 All uses changed.
8339 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
8340 extern when possible. Remove unused initializations.
8341
b0937b22
AD
83422002-11-16 Akim Demaille <akim@epita.fr>
8343
8344 Augment the similarity between GLR and LALR traces.
8345
8346 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
8347 (YY_REDUCE_PRINT): New.
8348 (yyparse): Use them.
8349 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
8350 YYDPRINT here.
8351 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
8352 state reached after the reduction/recovery, since...
8353 (yyparse, yyprocessOneStack): Report the state we are entering in.
8354
c5e3e510
AD
83552002-11-16 Akim Demaille <akim@epita.fr>
8356
8357 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
8358 Add support for --trace=skeleton.
8359 * src/scan-skel.l: %option debug.
8360 Scan strings of non-@ or \n instead of character by character.
8361 (scan_skel): Handle trace_skeleton.
8362 (QPUTS): New.
8363 (@output_parser_name@, @output_header_name@): ``Restore'' their
8364 support (used to be M4 macros).
8365 * data/yacc.c: Quote larger chunks, a la glr.c.
8366 * data/lalr1.cc: Likewise.
8367 The header guards are no longer available, so use some other
8368 string than `YYLSP_NEEDED'.
8369
4c6cc1db
AD
83702002-11-16 Akim Demaille <akim@epita.fr>
8371
8372 Make the ``Printers and Destructors'' test more verbose, taking
8373 `yacc.c''s behavior as (possibly wrong) reference.
8374
8375 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
8376 instead of fprint on stdout.
8377 Set and report the last_line of the symbols.
8378 Consistently display values and locations.
8379
6d9e8019
PE
83802002-11-16 Paul Eggert <eggert@twinsun.com>
8381
8382 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
8383
6e649e65
PE
83842002-11-15 Paul Eggert <eggert@twinsun.com>
8385
b25d88f6
PE
8386 * tests/actions.at (Actions after errors): New test case.
8387
6e649e65
PE
8388 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
8389 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
8390 tests/action.at, tests/calc.at, tests/conflicts.at,
8391 tests/cxx-type.at, tests/regression.at:
8392 "parse error" -> "syntax error" for POSIX compatibility.
8393 "parsing stack overflow..." -> "parser stack overflow" so
8394 that code matches Bison documentation.
8395
0f39aab9
AD
83962002-11-15 Akim Demaille <akim@epita.fr>
8397
8398 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
8399 take two BRACED_CODE, not two string_content.
8400 Free the scanner's obstack when we are done.
8401 (code_content): New.
8402 * tests/calc.at: Adjust.
8403 * doc/bison.texinfo: Adjust.
8404 Also, make sure to include the `,' for these declarations.
8405
761c1926
AD
84062002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
8407
8408 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
8409 definition; avoids potential autoreconf problems.
8410
b0f98b10
AD
84112002-11-15 Akim Demaille <akim@epita.fr>
8412
8413 Always check the value returned by yyparse.
8414
8415 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
8416 returned by yyparse.
8417 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
8418 Adjust calls.
8419 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
8420 returned by yyparse.
8421
970785f1
PH
84222002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8423
8424 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
8425 on input.at test.
8426
8fcc7db1
PE
84272002-11-14 Paul Eggert <eggert@twinsun.com>
8428
7ec1b48e
PE
8429 * src/output.c (output_skeleton): Call xfopen instead of
8430 duplicating xfopen's body.
8431
cfff7583 8432 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 8433 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 8434
8fcc7db1
PE
8435 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
8436 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
8437 Group compiler. Instead, use "$CC -E bar.c". Include the .h
8438 file twice in the grammar, as an extra check.
8439
8440 * tests/input.at (Torturing the Scanner): Surround the
8441 backslash-newline tests with "#if 0", to make it less likely that
8442 we'll run into compiler bugs. Bring back solitary \ inside
8443 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 8444 test backslash-newline in C character constant.
8fcc7db1 8445
4e8d992c
AD
84462002-11-14 Akim Demaille <akim@epita.fr>
8447
8448 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
8449 status of the compiler.
f32b346d 8450 Calling `exit 1' is no longer needed.
4e8d992c
AD
8451 Reported by Nelson H. F. Beebe.
8452
9501dc6e
AD
84532002-11-14 Akim Demaille <akim@epita.fr>
8454
8455 * tests/atlocal.in (CPPFLAGS): We have config.h.
8456 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
8457 New.
8458 * tests/actions.at, tests/calc.at, tests/conflicts.at,
8459 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
8460 * tests/regression.at, tests/torture.at: Use them for all the
8461 grammars that are to be compiled.
8462 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
8463 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
8464 * doc/bison.texinfo (GLR Parsers): Document `inline'.
8465
18b519c0
AD
84662002-11-14 Akim Demaille <akim@epita.fr>
8467
8468 * doc/bison.texinfo: Various formatting changes (alignments in
8469 samples, additional @group/@end group, GCS in samples.
8470 Use @deffn instead of simple @table to define the directives,
8471 macros, variables etc.
8472
9a86cdb9
PE
84732002-11-13 Paul Eggert <eggert@twinsun.com>
8474
daa33def 8475 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 8476 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 8477
daa33def 8478 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 8479 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
8480 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
8481 * tests/headers.at (export YYLTYPE): Likewise.
8482
8483 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 8484 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 8485
9a86cdb9
PE
8486 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
8487 comments, since they're not portable. Use GNU coding style.
8488
9c1e26bd
AD
84892002-11-13 Akim Demaille <akim@epita.fr>
8490
8491 * data/yacc.c: Leave bigger chunks of quoted text.
8492 (YYDSYMPRINTF): New.
8493 Use it to report symbol activities.
8494 * data/glr.c (YYDSYMPRINTF): New.
8495 Use it.
8496
87f721cc
PE
84972002-11-12 Paul Eggert <eggert@twinsun.com>
8498
8499 Version 1.75b.
8500
8501 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
8502 (yyglrReduce): Return yyok, not 0.
8503 This should avoid the enumerated-type warnings reported
464c6927 8504 by Nelson H. F. Beebe in
161a71f3 8505 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
8506
8507 * lib/bbitset.h (BITSET_INLINE): Remove.
8508 * lib/bitset.h [! BITSET_INLINE]: Remove.
8509 (bitset_set, bitset_reset, bitset_test): Rename local vars
8510 to avoid shadowing warnings by GCC.
8511
8512 * data/glr.c (inline): Remove #define. It's the user's
8513 responsibility to #define it away, just like 'const'.
464c6927 8514 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 8515 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 8516
87f721cc
PE
8517 * Makefile.maint (po-check): Scan .l and .y files instead of the
8518 .c and the .h files that they generate. This fixes the bug
8519 reported by Tim Van Holder in:
161a71f3 8520 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
8521 Look for N_ as well as for _. Try to avoid matching #define for
8522 N_ and _.
8523 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
8524 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
8525 * src/scan-gram.l: Revamp regular expressions so that " and '
8526 do not confuse xgettext.
8527
8528 * src/struniq.h (struniq_new): Do not declare the return type
8529 to be 'const'; this violates the C standard.
8530 * src/struniq.c (struniq_new): Likewise.
8531
be14ade5
AD
85322002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
8533
8534 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
8535 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
8536 linker.
8537
05291fbc
AD
85382002-11-12 Akim Demaille <akim@epita.fr>
8539
8540 * Makefile.maint: Sync with Autoconf:
8541 (local_updates): New.
8542
1f5fd52e
AD
85432002-11-12 Akim Demaille <akim@epita.fr>
8544
8545 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
8546
283f1e64
AD
85472002-11-12 Akim Demaille <akim@epita.fr>
8548
8549 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
8550 locations.
8551
886b69d1
AD
85522002-11-12 Akim Demaille <akim@epita.fr>
8553
8554 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
8555 not yyvalue.
8556
3df37415
AD
85572002-11-12 Akim Demaille <akim@epita.fr>
8558
8559 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
8560 Use it to test the GLR parser.
8561
7bd6c77e
AD
85622002-11-12 Akim Demaille <akim@epita.fr>
8563
8564 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
8565 defines it.
8566 * data/glr.c (yystos): New.
8567 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
8568 (YYDSYMPRINT): New.
8569 (yyval): Don't define it, it is handled via M4.
8570 (yyrecoverParseError): Free verbosely the discarded symbols.
8571 * data/yacc.c (yysymprint): Remove, rather...
8572 (b4_yysymprint_generate): invoke.
8573 * data/c.m4 (b4_yysymprint_generate): New.
8574 Accept pointers as arguments, as opposed to the version from
8575 yacc.c.
8576 (b4_yydestruct_generate): Likewise.
8577 * tests/cations.at (Printers and Destructors): Use Bison directives
8578 instead of CPP macros.
8579 Don't rely on internal details.
8580
b0400cc6
AD
85812002-11-12 Akim Demaille <akim@epita.fr>
8582
8583 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
8584 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
8585 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
8586 it against YYEMPTY and so forth), work on yytoken (i.e., set
8587 it to YYEMPTY etc.).
8588 (yydestruct): Replace with a b4_yydestruct_generate invocation.
8589 (b4_symbol_actions): Remove.
8590 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
8591 for 0, end-of-input.
8592
72f889cc
AD
85932002-11-12 Akim Demaille <akim@epita.fr>
8594
8595 * doc/bison.texinfo (Destructor Decl): New.
8596
b1ae9233
AD
85972002-11-12 Akim Demaille <akim@epita.fr>
8598
8599 * src/tables.c (tables_generate): Use free for pointers that
8600 cannot be NULL, not XFREE.
8601 (pack_vector): Use assert, not fatal, for bound violations.
8602 * src/state.c (state_new): Likewise.
8603 * src/reader.c (reader): Likewise.
8604 * src/lalr.c (set_goto_map): Likewise.
72f889cc 8605 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
8606 the file name.
8607
7ec2d4cd
AD
86082002-11-12 Akim Demaille <akim@epita.fr>
8609
8610 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
8611 Restore.
8612 * src/scan-gram.l (last_string): Is global to the file, not to
8613 yylex.
8614 * src/parse-gram.y (input): Don't append the epilogue here,
8615 (epilogue.opt): do it here, and free the scanner's obstack.
8616 * src/reader.c (epilogue_set): Rename as...
8617 (epilogue_augment): this.
8618 * data/c.m4 (b4_epilogue): Defaults to empty.
8619
573a6cd3
AD
86202002-11-12 Akim Demaille <akim@epita.fr>
8621
8622 * src/getargs.c (long_options): Remove duplicates.
8623 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
8624 Remove.
8625 * doc/bison.rnh: Remove.
8626 * doc/bison.texinfo (VMS Invocation): Remove.
8627
95612cfa
AD
86282002-11-12 Akim Demaille <akim@epita.fr>
8629
8630 * src/struniq.h, src/struniq.c (struniq_t): Is const.
8631 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
8632
8633 Use struniq for symbols.
8634
8635 * src/symtab.h (symbol_t): The tag member is a struniq.
8636 (symbol_type_set): Adjust.
8637 * src/symtab.c (symbol_new): Takes a struniq.
8638 (symbol_free): Don't free the tag member.
8639 (hash_compare_symbol_t, hash_symbol_t): Rename as...
8640 (hash_compare_symbol, hash_symbol): these.
8641 Use the fact that tags as struniqs.
8642 (symbol_get): Use struniq_new.
8643 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
8644 Returns a strniq.
8645 * src/reader.h (merger_list, grammar_currentmerge_set): The name
8646 and type members are struniqs.
8647 * src/reader.c (get_merge_function)
8648 (grammar_current_rule_merge_set): Adjust.
8649 (TYPE, current_type): Are struniq.
8650
8651 Use struniq for file names.
8652
8653 * src/files.h, src/files.c (infile): Split into...
8654 (grammar_file, current_file): these.
8655 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
8656 * src/reduce.c (reduce_print): Likewise.
8657 * src/getargs.c (getargs): Likewise.
8658 * src/complain.h, src/complain.c: Likewise.
8659 * src/main.c (main): Call struniqs_new early enough to use it for
8660 file names.
8661 Don't free the input file name.
8662
3e6656f9
AD
86632002-11-12 Akim Demaille <akim@epita.fr>
8664
8665 * src/symtab.c (symbol_free): Remove dead deactivated code:
8666 type_name are properly removed.
8667 Don't use XFREE to free items that cannot be NULL.
8668 * src/struniq.h, src/struniq.c: New.
8669 * src/main.c (main): Initialize/free struniqs.
8670 * src/parse-gram.y (%union): Add astruniq member.
8671 (yyprint): Adjust.
8672 * src/scan-gram.l (<{tag}>): Return a struniq.
8673 Free the obstack bit that used to store it.
8674 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
8675
7672019c
PE
86762002-11-11 Paul Eggert <eggert@twinsun.com>
8677
8678 Revamp to fix many (but not all) of the C- and M4-related quoting
8679 problems. Among other things, this fixes the Bison bug reported
8680 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 8681 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
8682
8683 Use new @ escapes consistently. Represent brackets with @{ and @}
8684 rather than @<:@ and @:>@, since this works a bit better with dumb
8685 editors like vi. Represent @ with @@, since @ is now consistently
8686 an escape. Use @oline@ and @ofile@ rather than __oline__ and
8687 __ofile__, to avoid unexpected expansions. Similarly, use @output
8688 rather than #output.
8689
8690 * data/c.m4 (b4_copyright): Omit file name from comment, since
8691 the file name could contain "*/".
8692 (b4_synclines_flag): Don't quote the 2nd argument; it should already
8693 be quoted. All uses changed.
8694
8695 * data/glr.c: Use new @ escapes consistently.
8696 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
8697 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
8698 Remove, since they couldn't handle arbitrary characters in file
8699 names.
8700 * data/lalr1.cc: Likewise.
8701 * data/yacc.c: Likewise.
8702
8703 * src/files.c (output_infix): Remove; all uses removed.
8704 * src/files.h: Likewise.
8705
8706 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
8707 mishandled funny characters in file names, and anyway it isn't
8708 needed any more.
8709 * data/yacc.c: Likewise.
8710 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
8711
8712 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
8713 * data/yacc.c: Likewise.
8714
8715 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
8716 strings now.
8717 (muscle_init): Quote filename as a C string.
8718 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
8719 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
8720 * src/output.c (escaped_file_name_output): New function.
8721 (prepare_symbols): Quote tokens for M4.
8722 (prepare): Don't insert output_infix, output_prefix,
8723 output_parser_name, output_header_name; this is now down by scan-skel.
8724 Insert skeleton as a C string.
8725
8726 * src/output.c (user_actions_output, symbol_destructors_output,
8727 symbol_printers_output): Quote filenames for C and M4.
8728 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8729
8730 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
8731 escapes other than \\ and \'; this simplifies the code.
8732 (<SC_STRING>): Likewise, for \\ and \".
8733 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
8734 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
8735 Use new escapes @{ and @} for [ and ].
8736
8737 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
8738 them with auto vars.
8739 Switch to new escape scheme, where @ is the escape character uniformly.
8740 Abort if a stray escape character is found. Avoid unbounded input
8741 buffer when parsing non-escaped text.
8742
8743 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
8744 __oline__, #output, $@, and @{ do not have unintended meanings.
8745
acea4f3b
PE
87462002-11-09 Paul Eggert <eggert@twinsun.com>
8747
8748 Fix the test failure due to GCC warnings described in
161a71f3 8749 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
8750 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
8751 evaluate to 0 if it's impossible for NINF to be in the respective
8752 table.
8753 (yygetLRActions, yyrecoverParseError): Use them.
8754
8755 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
8756 counted in the token inserted at end of file. Now takes
8757 location_t *, not location_t, so that the location can be
8758 adjusted. All uses changed.
8759
8760 * tests/regression.at (Invalid inputs): Adjust wording in
8761 diagnostic to match the new behavior.
8762
8763 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
8764 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
8765 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
8766 abort ();'. This reduces the runtime of the "Many lookaheads"
8767 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
8768 GCC 3.2.
8769
20ef1ad5
PE
87702002-11-07 Paul Eggert <eggert@twinsun.com>
8771
8772 * src/parse-gram.y (CHARACTER): Remove unused token.
8773 All uses removed.
8774
8775 * src/scan-gram.l: Remove stack option. We no longer use the
8776 stack, since the stack was never deeper than 1; instead, use the
8777 new auto var c_context to record the stacked value.
8778
8779 Remove nounput option. At an unexpected end of file, we now unput
8780 the minimal input necessary to end cleanly; this simplifies the
8781 code.
8782
8783 Avoid unbounded token sizes where this is easy.
8784
8785 (unexpected_end_of_file): New function.
8786 Use it to systematize the error message on unexpected EOF.
8787 (last-string): Now auto, not static.
8788 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
8789 (scanner_last_string_free): Remove; not used.
8790 (percent_percent_count): Move decl to just before use.
8791 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
8792 not the (never otherwised-used) CHARACTER.
8793
93724f13
AD
87942002-11-07 Akim Demaille <akim@epita.fr>
8795
8796 Let yyerror always receive the msg as last argument, so that
8797 yyerror can be variadic.
8798
8799 * data/yacc.c (b4_yyerror_args): New.
8800 Use it when calling yyerror.
8801 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
8802 Use it when calling yyerror.
8803 * doc/bison.texinfo (Error Reporting): Adjust.
8804 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
8805 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
8806
6e40b4eb
AD
88072002-11-06 Akim Demaille <akim@epita.fr>
8808
8809 #line should have quoted strings.
8810 Ideally, this should be done by m4_quotearg.
8811
8812 * src/scan-skel.l: Include quotearg.h.
8813 Quote __ofile__.
8814 * src/output.c (symbol_printers_output)
8815 (symbol_destructors_output): Quote the file name.
8816
2dfbfc12
AD
88172002-11-06 Akim Demaille <akim@epita.fr>
8818
8819 * tests/regression.at (Invalid inputs): Adjust to the recent
8820 messages.
8821
437c2d80
AD
88222002-11-06 Akim Demaille <akim@epita.fr>
8823
8824 Restore --no-lines.
8825 Reported by Jim Kent.
8826
8827 * data/c.m4 (b4_syncline): New.
8828 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
8829 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
8830 * src/output.c (user_actions_output): Likewise.
8831 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 8832 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 8833
900c5db5
AD
88342002-11-06 Akim Demaille <akim@epita.fr>
8835
8836 * src/main.c (main): Free `infile'.
8837 * src/scan-gram.l (handle_syncline): New.
8838 Recognize `#line'.
8839 * src/output.c (user_actions_output, symbol_destructors_output)
8840 (symbol_printers_output): Use the location's file name, not
8841 infile.
8842 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8843
e183b123 88442002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 8845
e183b123 8846 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 8847 either has GLR conflict entries.
e183b123 8848
193eb6b7
PE
88492002-11-05 Paul Eggert <eggert@twinsun.com>
8850
e183b123
PE
8851 * src/scan-gram.l: Use more accurate diagnostics, e.g.
8852 "integer out of range" rather than "invalid value".
8853 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
8854 accordingly.
8855
193eb6b7
PE
8856 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
8857 Also, remove one static variable in the scanner.
8858
8859 * src/scan-gram.l (braces_level): Now auto, not static.
8860 Initialize to zero if the compiler is being picky.
8861 (INITIAL): Clear braces_level instead of incrementing it.
8862 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
8863 as POSIX 1003.1-2001 requires.
8864 * src/system.h (IF_LINT): New macro, taken from coreutils.
8865 * configure.ac: Define "lint" if --enable-gcc-warnings.
8866
29c01725
AD
88672002-11-05 Akim Demaille <akim@epita.fr>
8868
8869 * src/scan-gram.l: When it starts with `%', complain about the
8870 whole directive, not just that `invalid character: %'.
8871
8aeac3ca
AD
88722002-11-04 Akim Demaille <akim@epita.fr>
8873
8874 * Makefile.maint: Update from Autoconf.
8875 (update, cvs-update, po-update, do-po-update): New.
8876
793a58bb
AD
88772002-11-04 Akim Demaille <akim@epita.fr>
8878
8879 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
8880 and yyerror.
8881 Have yyerror `use' its arguments.
8882 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
8883 returns true when location & yacc & pure & parse-param.
8884 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
8885
c4d720cd
AD
88862002-11-04 Akim Demaille <akim@epita.fr>
8887
8888 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
8889 clashes.
8890 * src/scan-gram.l: Use [\'] instead of ['] to pacify
8891 font-lock-mode.
8892 Use complain_at.
8893 Use quote, not quote_n since LOCATION_PRINT no longer uses the
8894 slot 0.
8895
613a0dc5
PE
88962002-11-03 Paul Eggert <eggert@twinsun.com>
8897
8898 * src/reader.c (get_merge_function, grammar_current_rule_check):
8899 Use consistent diagnostics for reporting type name clashes.
8900 Quote the types with <>, for consistency with Yacc.
8901 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
8902
2a8d363a
AD
89032002-11-03 Akim Demaille <akim@epita.fr>
8904
8905 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
8906 New.
8907 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
8908 (b4_parse_param): Remove.
8909 Use b4_identification.
8910 Propagate b4_pure_args where needed to pass them to yyerror.
8911 * data/glr.m4 (b4_parse_param): Remove.
8912 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
8913 (b4_lpure_formals): New.
8914 Use b4_identification.
8915 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
8916 b4_user_formals and b4_user_args.
8917 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
8918 (yyreportAmbiguity): When using a pure parser, also need
8919 the location, and the parse-params.
8920 Adjust callers.
8921 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
8922 When using a pure parser, also need the parse-params.
8923 Adjust callers.
8924 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
8925 (%pure-parser + %parse-param) LALR and GLR parsers.
8926 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
8927 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
8928 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
8929 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
8930 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
8931 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
8932 * doc/bison.texinfo: Untabify the whole file.
8933 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
8934 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
8935 (Error Reporting): Adjust to these new directives.
8936 Document %error-verbose, deprecate YYERROR_VERBOSE.
8937
9e32add8
AD
89382002-11-03 Akim Demaille <akim@epita.fr>
8939
8940 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
8941 AT_CHECK_CALC_GLR invocations to use % directives, instead of
8942 command line options.
8943 * tests/cxx-type.at: Formatting changes.
8944
b02d90a5
PE
89452002-11-03 Paul Eggert <eggert@twinsun.com>
8946
8947 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
8948 to count columns correctly, and to check for invalid inputs.
9e32add8 8949
b02d90a5
PE
8950 Use mbsnwidth to count columns correctly. Account for tabs, too.
8951 Include mbswidth.h.
8952 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
8953 (extend_location): New function.
8954 (YY_LINES): Remove.
8955
8956 Handle CRLF in C code rather than in Lex code.
8957 (YY_INPUT): New macro.
8958 (no_cr_read): New function.
8959
8960 Scan UCNs, even though we don't fully handle them yet.
8961 (convert_ucn_to_byte): New function.
8962
8963 Handle backslash-newline correctly in C code.
8964 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
8965 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
8966 all uses changed.
8967 (tag, splice): New EREs. Do not allow NUL or newline in tags.
8968 Use {splice} wherever C allows backslash-newline.
8969 YY_STEP after space, newline, vertical-tab.
8970 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 8971
b02d90a5
PE
8972 (letter, id): Don't assume ASCII; e.g., spell out a-z.
8973
8974 ({int}, handle_action_dollar, handle_action_at): Check for integer
8975 overflow.
9e32add8 8976
b02d90a5
PE
8977 (YY_STEP): Omit trailing semicolon, so that it's more like C.
8978
8979 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
8980 as well as \000. Check for UCHAR_MAX, not 255.
8981 Allow \x with an arbitrary positive number of digits, as in C.
8982 Check for overflow here.
8983 Allow \? and UCNs, for compatibility with C.
8984
8985 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
8986 with quote slot used by complain_at.
8987
8988 * tests/input.at: Add tests for backslash-newline, m4 quotes
8989 in symbols, long literals, and funny escapes in strings.
8990
8991 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
8992 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
8993 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
8994 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
8995 * m4/mbswidth.m4: New file, from GNU coreutils.
8996
8997 * doc/bison.texinfo (Grammar Outline): Document // comments.
8998 (Symbols): Document that trigraphs have no special meaning in Bison,
8999 nor is backslash-newline allowed.
9000 (Actions): Document that trigraphs have no special meaning.
9001
9002 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
9003 no longer used.
9004
90052002-11-02 Paul Eggert <eggert@twinsun.com>
9006
9007 * src/reader.c: Don't include quote.h; not needed.
9008 (get_merge_function): Reword warning to be consistent with
9009 type clash diagnostic in grammar_current_rule_check.
9010
9011 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
9012 bug in trigraph handling.
9013
9014 * src/output.c (prepare_symbols): When printing token names,
9015 escape "[" as "@<:@" and likewise for "]".
9016
9017 * src/system.h (errno): Remove declaration, as we are now
9018 assuming C89 or better, and C89 guarantees errno.
9019
762b212b
PE
90202002-10-30 Paul Eggert <eggert@twinsun.com>
9021
9022 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
9023 Check for close failures.
9024 * src/files.h (xfclose): Return void, not int, since it always
9025 returned zero.
9026 * src/files.c (xfclose): Likewise. Report I/O error if ferror
9027 indicates one.
9028 * src/output.c (output_skeleton): Use xfclose rather than fclose
9029 and ferror. xfclose now checks ferror.
9030
9031 * data/glr.c (YYLEFTMOST_STATE): Remove.
9032 (yyreportTree): Use a stack-based leftmost state. This avoids
9033 our continuing battles with bogus warnings about initializers.
9034
56100c60
AD
90352002-10-30 Akim Demaille <akim@epita.fr>
9036
9037 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
9038 #if.
9039
51b4a04c
PH
90402002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9041
9042 * tests/glr-regr1.at: New test for reported regressions.
9043 * tests/testsuite.at: Add glr-regr1.at test.
9044 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 9045
bf1ebda2
PE
90462002-10-24 Paul Eggert <eggert@twinsun.com>
9047
5c16c6b1
PE
9048 Version 1.75a.
9049
bf1ebda2
PE
9050 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
9051 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
9052 we use malloc. Don't assume 'A' through 'Z' are contiguous.
9053 Don't assume strdup exists; POSIX says its an XSI extension.
9054 Check for buffer overflow on input.
9055
b526ee61
AD
90562002-10-24 Akim Demaille <akim@epita.fr>
9057
9058 * src/output.c (output_skeleton): Don't disable M4sugar comments
9059 too soon: it results in comments being expanded.
9060 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
9061 first output.
9062
f1886bb2
AD
90632002-10-24 Akim Demaille <akim@epita.fr>
9064
9065 * data/yacc.c (m4_int_type): New.
9066 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
9067 char' as only yacc.c wants K&R portability.
9068 * data/glr.c (yysigned_char): Remove.
9069 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
9070 Reported by Quoc Peyrot.
9071
c5576256
PE
90722002-10-23 Paul Eggert <eggert@twinsun.com>
9073
9074 * src/main.c (main): With --trace=time, report times even if a
9075 non-fatal error occurs. Formerly, the times were reported in some
9076 such cases but not in others.
9077 * src/reader.c (reader): Just return if a complaint has been issued,
9078 instead of exiting, so that 'main' can report times.
9079
27b0ffea
AD
90802002-10-22 Akim Demaille <akim@epita.fr>
9081
9082 * src/system.h: Include sys/types.
9083 Reported by Bert Deknuydt.
9084
223a7883
PE
90852002-10-23 Paul Eggert <eggert@twinsun.com>
9086
9087 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
9088 Suggested by Art Haas.
9089
90902002-10-22 Paul Eggert <eggert@twinsun.com>
9091
9092 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
9093 decl; not needed any more.
9094 * src/main.c (main): Use return to exit, undoing yesterday's change.
9095 The last OS that we could find where this wouldn't work is
9096 SunOS 3.5, and that's too old to worry about now.
9097
9098 * data/glr.c (struct yyltype): Define members even when not
9099 doing locations. This is more consistent with yacc.c, and it
9100 works around the following bug reports:
161a71f3
PE
9101 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
9102 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 9103
223a7883
PE
9104 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
9105 @acronym consistently. Standardize on "Yacc" instead of "YACC",
9106 "Algol" instead of "ALGOL". Give a bit more history about BNF.
9107
8b76775a
AD
91082002-10-22 Akim Demaille <akim@epita.fr>
9109
9110 * data/README: New.
9111
6db10d14
PE
91122002-10-21 Paul Eggert <eggert@twinsun.com>
9113
9114 Be consistent about 'bool'; the old code used an enum in one
9115 module and an int in another, and this violates the C standard.
9116 * m4/stdbool.m4: New file, from coreutils 4.5.3.
9117 * configure.ac (AC_HEADER_STDBOOL): Add.
9118 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
9119 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
9120 * src/symtab.c (hash_compare_symbol_t): Likewise.
9121 * src/system.h (bool, false, true): Use a definition consistent
9122 with ../lib/hash.c. All uses changed.
9123
9124 * src/complain.c (warning_issued): Renamed from warn_message_count,
9125 so that we needn't worry about integer overflow (!).
9126 Now of type bool. All uses changed.
9127 (complaint_issued): Renamed from complain_message_count; likewise.
9128
9129 * src/main.c (main): Use exit to exit with failure.
27b0ffea 9130
6db10d14
PE
9131 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
9132 rather than 1 and 0.
9133 * src/main.c (main): Likewise.
9134 * src/getargs.c (getargs): Likewise.
9135 * src/reader.c (reader): Likewise.
9136
9137 * src/getarg.c (getargs): Remove duplicate code for
9138 "Try `bison --help'".
9139
9140 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
9141 What was that "2" for?
9142
9143 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
9144 * src/getargs.c (usage): Likewise.
9145
9146 * src/getargs.c (getargs): When there are too few operands, report
9147 the last one. When there are too many, report the first extra
9148 one. This is how diffutils does it.
9149
92a060fd
PE
91502002-10-20 Paul Eggert <eggert@twinsun.com>
9151
9152 Remove K&R vestiges.
9153 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
9154 * src/complain.c (VA_START): Remove. Assume prototypes.
9155 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
9156 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
9157 fatal): Assume prototypes.
9158 * src/complain.h: Assume prototypes.
9159 * src/system.h (PARAMS): Remove.
9160 Include <limits.h> unconditionally, since it's guaranteeed even
9161 for a freestanding C89 compiler.
9162 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
9163 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 9164
e7cb57c0
AD
91652002-10-20 Akim Demaille <akim@epita.fr>
9166
9167 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
9168 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
9169 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
9170 (yyresolveStates, yyresolveAction, yyresolveStack)
9171 (yyprocessOneStack): Use them.
9172 (yy_reduce_print): New.
9173 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
9174
0245f82d
AD
91752002-10-20 Akim Demaille <akim@epita.fr>
9176
9177 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
9178 arguments and output `void'.
9179 (b4_c_function): Rename as...
9180 (b4_c_function_def): this.
9181 (b4_c_function_decl, b4_c_ansi_function_def)
9182 (b4_c_ansi_function_decl): New.
9183 Change the interpretation of the arguments: before `int, foo', now
9184 `int foo, foo'.
9185 * data/yacc.c (yyparse): Prototype and define thanks to these.
9186 Adjust b4_c_function_def uses.
9187 * data/glr.c (yyparse): Likewise, but ANSI only.
9188
39912f52
AD
91892002-10-20 Akim Demaille <akim@epita.fr>
9190
9191 * src/output.c (prepare): Move the definition of `tokens_number',
9192 `nterms_number', `undef_token_number', `user_token_number_max'
9193 to...
9194 (prepare_tokens): Here.
9195 (prepare_tokens): Rename as...
9196 (prepare_symbols): this.
9197 (prepare): Move the definition of `rules_number' to...
9198 (prepare_rules): here.
9199 (prepare): Move the definition of `last', `final_state_number',
9200 `states_number' to...
9201 (prepare_states): here.
9202 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
9203
20c1e2ad
AD
92042002-10-20 Akim Demaille <akim@epita.fr>
9205
9206 * src/tables.h, src/tables.c, src/output.c: Comment changes.
9207
21964f43
AD
92082002-10-20 Akim Demaille <akim@epita.fr>
9209
9210 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
9211 * data/c.m4: here.
9212
66d30cd4
AD
92132002-10-20 Akim Demaille <akim@epita.fr>
9214
9215 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
9216 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
9217 `pair'.
9218 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
9219 `name' to...
9220 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
9221 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
9222 These.
9223
95f2c9fe
PE
92242002-10-19 Paul Eggert <eggert@twinsun.com>
9225
9226 Do not create a temporary file, as that involves security and
9227 cleanup headaches. Instead, use a pair of pipes.
9228 Derived from a suggestion by Florian Krohm.
9229 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
9230 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
9231 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
9232 (BISON_PREREQ_SUBPIPE): Add.
9233 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
9234 Add subpipe.h, subpipe.c.
9235 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
9236 * po/POTFILES.in: Add lib/subpipe.c.
9237 * src/output.c: Include "subpipe.h".
9238 (m4_invoke): Remove decl.
9239 (scan_skel): New decl.
9240 (output_skeleton): Use pipe rather than temporary file for m4 input.
9241 Check that m4sugar.m4 is readable, to avoid deadlock.
9242 Check for pipe I/O error.
9243 * src/scan-skel.l (readpipe): Remove decl.
9244 (scan_skel): New function, to be used in place of m4_invoke.
9245 Read from stream rather than file.
66d30cd4 9246
95f2c9fe
PE
9247 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
9248 float, as this generates a warning on Solaris 8 + GCC 3.2 with
9249 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
9250 this generates a more-accurate value anyway.
9251
9252 * lib/timevar.c (timervar_accumulate): Rename locals to
9253 avoid confusion with similarly-named more-global.
9254 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
9255
9256 * src/output.c (prepare): Use xstrdup to convert char const *
9257 to char *, to avoid GCC warning.
9258
c19988b7
AD
92592002-10-19 Akim Demaille <akim@epita.fr>
9260
9261 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
9262 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
9263 Use them to have `calc.y' ready for %pure-parser.
9264 * data/yacc.c (YYLEX): Pass a yylex return type to
9265 b4_c_function_call.
9266
ae7453f2
AD
92672002-10-19 Akim Demaille <akim@epita.fr>
9268
9269 Prototype support of %lex-param and %parse-param.
9270
9271 * src/parse-gram.y: Add the definition of the %lex-param and
9272 %parse-param tokens, plus their rules.
9273 Drop the `_' version of %glr-parser.
9274 Add the "," token.
9275 * src/scan-gram.l (INITIAL): Scan them.
9276 * src/muscle_tab.c: Comment changes.
9277 (muscle_insert, muscle_find): Rename `pair' as `probe'.
9278 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
9279 (muscle_entry_s): The `value' member is no longer const.
9280 Adjust all dependencies.
9281 * src/muscle_tab.c (muscle_init): Adjust: use
9282 MUSCLE_INSERT_STRING.
9283 Initialize the obstack earlier.
9284 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
9285 (muscle_pair_list_grow): New.
9286 * data/c.m4 (b4_c_function_call, b4_c_args): New.
9287 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
9288 * tests/calc.at: Use %locations, not --locations.
9289 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
9290
0e575721
AD
92912002-10-19 Akim Demaille <akim@epita.fr>
9292
9293 * src/getargs.c (usage): Take status as argument and exit
9294 accordingly.
9295 Report the traditional `Try ... --help' message when status != 0.
9296 (usage, version): Don't take a FILE * as arg, it is pointless.
9297 (getargs): When there is an incorrect number of arguments, make it
9298 an error, and report it GNUlically thanks to `usage ()'.
9299
724ce7f5
PE
93002002-10-18 Paul Eggert <eggert@twinsun.com>
9301
3a781eb2
PE
9302 * data/glr.c (yyreportParseError): Don't assume that sprintf
9303 yields the length of the printed string, as this is not true
9304 on SunOS 4.1.4. Reported by Peter Klein.
9305
724ce7f5
PE
9306 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
9307 * tests/conflicts.at (%nonassoc and eof): Likewise.
9308 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
9309
473d0a75
AD
93102002-10-17 Akim Demaille <akim@epita.fr>
9311
9312 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
9313 * src/getargs.c (trace_types, trace_args): Adjust.
9314 * src/reader.c (grammar_current_rule_prec_set)
9315 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
9316 Standardize error messages.
9317 And s/@prec/%prec/!
9318 (reader): Use trace_flag to enable scanner/parser debugging,
9319 instead of an adhoc scheme.
9320 * src/scan-gram.l: Remove trailing debugging code.
9321
e76d2469
PE
93222002-10-16 Paul Eggert <eggert@twinsun.com>
9323
93e2236a
PE
9324 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
9325 MUSCLE_TAB_H.
9326
e76d2469
PE
9327 * NEWS: Officially drop support for building Bison with K&R C,
9328 since it didn't work anyway and it's not worth worrying about.
9329 * Makefile.maint (wget_files): Remove ansi2knr.c.
9330 (ansi2knr.c-url_prefix): Remove.
9331 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
9332 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
9333 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
9334
5bd1c419
PE
93352002-10-15 Paul Eggert <eggert@twinsun.com>
9336
9337 Stop using the "enum_" trick for K&R-style function definitions;
9338 it confused me, and I was the author! Instead, assume that people
9339 who want to use K&R C compilers (when using these modules in GCC,
9340 perhaps?) will run ansi2knr.
9341
9342 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
9343 All uses of "enum_" changed to "enum ".
9344 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
9345 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 9346
5bd1c419
PE
9347 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
9348 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
9349 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
9350 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
9351 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
9352 abitset_not, abitset_ones, abitset_or, abitset_or_and,
9353 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
9354 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
9355 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
9356 Use function prototypes; this removes the need for declaring
9357 static functions simply to provide their prototypes.
9358 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
9359 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
9360 bitset_count_, bitset_create, bitset_dump, bitset_first,
9361 bitset_free, bitset_init, bitset_last, bitset_next,
9362 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
9363 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
9364 bitset_print, bitset_release_memory, bitset_toggle_,
9365 bitset_type_choose, bitset_type_get, bitset_type_name_get,
9366 debug_bitset): Likewise.
9367 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
9368 * lib/bitset_stats.c (bitset_log_histogram_print,
9369 bitset_percent_histogram_print, bitset_stats_and,
9370 bitset_stats_and_cmp, bitset_stats_and_or,
9371 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
9372 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
9373 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
9374 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
9375 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
9376 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
9377 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
9378 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
9379 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
9380 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
9381 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
9382 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
9383 bitset_stats_zero): Likewise.
9384 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9385 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9386 bitsetv_dump, debug_bitsetv): Likewise.
9387 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
9388 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
9389 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
9390 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
9391 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
9392 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
9393 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
9394 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
9395 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
9396 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
9397 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
9398 Likewise.
9399 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
9400 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
9401 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
9402 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
9403 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
9404 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
9405 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
9406 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
9407 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
9408 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
9409 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 9410
ae26e1f0
AD
94112002-10-14 Akim Demaille <akim@epita.fr>
9412
9413 Version 1.75.
9414
d43baf71
AD
94152002-10-14 Akim Demaille <akim@epita.fr>
9416
9417 * tests/Makefile.am (maintainer-check-posix): New.
9418
7ebc83e3
AD
94192002-10-14 Akim Demaille <akim@epita.fr>
9420
9421 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
9422 member.
9423
05846dae
AD
94242002-10-14 Akim Demaille <akim@epita.fr>
9425
9426 * src/tables.c (table_ninf_remap): base -> tab.
9427 Reported by Matt Rosing.
9428
1318e37d
PE
94292002-10-14 Paul Eggert <eggert@twinsun.com>
9430
447fbb17
PE
9431 * tests/action.at, tests/calc.at, tests/conflicts.at,
9432 tests/cxx-type.at, tests/headers.at, tests/input.at,
9433 tests/regression.at, tests/synclines.at, tests/torture.at:
9434 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
9435 so that the tests still work even if POSIXLY_CORRECT is set.
9436 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 9437
1318e37d
PE
9438 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
9439 for portability to K&R hosts. Fix typo: signed char is guaranteed
9440 only to 127, not to 128.
9441 * data/glr.c (yysigned_char): New type.
9442 * data/yacc.c (yysigned_char): Likewise.
9443 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
9444
cc0f0794
PE
94452002-10-13 Paul Eggert <eggert@twinsun.com>
9446
5038f418
PE
9447 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
9448 true due to limited range of data type" warning from GCC.
9449
cc0f0794
PE
9450 * data/c.m4 (b4_token_defines): Protect against double-inclusion
9451 by wrapping enum yytokentype's definition inside #ifndef
9452 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
9453
6fed0802
AD
94542002-10-13 Akim Demaille <akim@epita.fr>
9455
9456 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
9457 Un yy- yyrhs to avoid the name clash with the global YYRHS.
9458
32f0598d
AD
94592002-10-13 Akim Demaille <akim@epita.fr>
9460
9461 * Makefile.maint: Update from Autoconf 2.54.
9462 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
9463
7ea9a33f
AD
94642002-10-13 Akim Demaille <akim@epita.fr>
9465
9466 * src/print.c (print_state): Separate the list of solved conflicts
9467 from the other items.
9468 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
9469
ea99527d
AD
94702002-10-13 Akim Demaille <akim@epita.fr>
9471
9472 Let nondeterministic skeletons be usable with deterministic
9473 tables.
9474
9475 With the patch, GAWK compiled by GCC without -O2 passes its test
9476 suite using a GLR parser driven by LALR tables. It fails with -O2
9477 because `struct stat' gives two different answers on my machine:
9478 88 (definition of an auto var) and later 96 (memset on this var).
9479 Hence the stack is badly corrumpted. The headers inclusion is to
9480 blame: if I move the awk.h inclusion before GLR's system header
9481 inclusion, the two struct stat have the same size.
9482
9483 * src/tables.c (pack_table): Always create conflict_table.
9484 (token_actions): Always create conflict_list.
9485 * data/glr.c (YYFLAG): Remove, unused.
9486
f377f69f
AD
94872002-10-13 Akim Demaille <akim@epita.fr>
9488
9489 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
9490 (O0FLAGS): New.
9491 (VALGRIND, GXX): New.
9492 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
9493 * tests/bison.in: Run $PREBISON a pre-command.
9494 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
9495 (maintainer-check-g++): New.
9496 * Makefile.am (maintainer-check): New.
9497
2a1fe6ed
AD
94982002-10-13 Akim Demaille <akim@epita.fr>
9499
9500 * data/glr.c: Formatting changes.
9501 Tweak some trace messages to match yacc.c's.
9502
f50adbbd
AD
95032002-10-13 Akim Demaille <akim@epita.fr>
9504
9505 GLR parsers sometimes raise parse errors instead of performing the
9506 default reduction.
9507 Reported by Charles-Henry de Boysson.
9508
9509 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 9510 check the length of the traces when %glr.
f50adbbd
AD
9511 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
9512 GLR's traces.
9513 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
9514 Test GLR parsers.
9515 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
9516 (yyltype): Remove the yy prefix from the member names.
9517 (yytable): Complete its comment.
9518 (yygetLRActions): Map error action number from YYTABLE from
9519 YYTABLE_NINF to 0.
9520 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
9521 (which was a bug: it should have been YYTABEL_NINF, and yet it was
9522 not satisfying as we could compare an YYACTION computed from
9523 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
9524 only value for error actions.
9525 (yyreportParseError): In verbose parse error messages, don't issue
9526 `error' in the list of expected tokens.
9527 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
9528 next action to perform to match glr.c's decoding.
9529 (yytable): Complete its comment.
9530
bcbad5b9
PE
95312002-10-13 Paul Eggert <eggert@twinsun.com>
9532
9533 Fix problem reported by Henrik Grubbstroem in
161a71f3 9534 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
9535 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
9536 because the Bison parser reads the second action before reducing
9537 the first one.
9538 * src/scan-gram.l (rule_length): New static var.
9539 Use it to keep track of the rule length in the scanner, since
9540 we can't expect the parser to be in lock-step sync with the scanner.
9541 (handle_action_dollar, handle_action_at): Use this var.
9542 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 9543
14904b89
PE
95442002-10-12 Paul Eggert <eggert@twinsun.com>
9545
1fe611e5
PE
9546 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
9547 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
9548 Include <sys/time.h> when checking for clock_t and struct tms.
9549 Use same include order as source.
9550 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 9551 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 9552
1fe611e5
PE
9553 * lib/timevar.c: Update copyright date and clarify comments.
9554 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 9555
1fe611e5
PE
9556 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
9557 GCC version as of today, then merge Bison's changes.
9558 Change "GCC" to "Bison" in copyright notice. timevar.def's
9559 author is Akim, so change that too.
9560
98194095
PE
9561 * src/reader.c (grammar_current_rule_check):
9562 Don't worry about the default action if $$ is untyped.
9563 Prevents bogus warnings reported by Jim Gifford in
161a71f3 9564 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 9565
14904b89
PE
9566 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
9567 * data/glr.c, data/lalr1.cc, data/yacc.c:
9568 Output token definitions before the first part of user declarations.
9569 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 9570 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 9571
ff6dca18
PE
95722002-10-11 Paul Eggert <eggert@twinsun.com>
9573
9574 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
9575 (yyparse): here. This undoes some of the 2002-07-25 change.
9576 Compatibility problem reported by Ralf S. Engelschall with
9577 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
9578
eb714592
AD
95792002-10-11 Akim Demaille <akim@epita.fr>
9580
9581 * tests/regression.at Characters Escapes): New.
9582 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
9583 characters.
9584 Reported by Jan Nieuwenhuizen.
9585
b7195100
AD
95862002-10-11 Akim Demaille <akim@epita.fr>
9587
9588 * po/id.po: New.
9589
f28a0f2d
PE
95902002-10-10 Paul Eggert <eggert@twinsun.com>
9591
9592 Portability fixes for bitsets; this also avoids several GCC
9593 warnings.
9594
9595 * lib/abitset.c: Include <stddef.h>, for offsetof.
9596 * lib/lbitset.c: Likewise.
9597
9598 * lib/abitset.c (abitset_bytes): Return a size that is aligned
9599 properly for vectors of objects. Do not assume that adding a
9600 header size to a multiple of a word size yields a value that is
9601 properly aligned for the whole union.
9602 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9603
9604 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
9605 unique names for structures.
9606 * lib/ebitset.c (ebitset_bytes): Likewise.
9607 * lib/lbitset.c (lbitset_bytes): Likewise.
9608
9609 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
9610 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
9611 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
9612 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
9613 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
9614 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
9615 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
9616 to improve the type-checking that GCC can do.
9617 * lib/bitset.c (bitset_op4_cmp): Likewise.
9618 * lib/bitset_stats.c (bitset_stats_count,
9619 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
9620 bitset_stats_copy, bitset_stats_disjoint_p,
9621 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
9622 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
9623 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
9624 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
9625 bitset_stats_and_or_cmp, bitset_stats_andn_or,
9626 bitset_stats_andn_or_cmp, bitset_stats_or_and,
9627 bitset_stats_or_and_cmp): Likewise.
9628 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
9629 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
9630 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
9631 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
9632
9633 * lib/abitset.h: Include bitset.h, not bbitset.h.
9634 * lib/ebitset.h: Likewise.
9635 * lib/lbitset.h: Likewise.
9636
9637 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
9638 All instances of parameters of type enum bitset_opts are now of
9639 type enum_bitset_opts, to conform to the C Standard, and similarly
9640 for enum_bitset_type.
9641 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
9642 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
9643
9644 Do not use "struct bitset_struct" to mean different things in
9645 different modules. Not only is this confusing, it violates
9646 the C Standard, which requires that structure types in different
9647 modules must be compatible if one is to be passed to the other.
9648 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
9649 All instances of "struct bitset_struct *" replaced with "bitset".
9650 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
9651 (union bitset_union, struct abitset_struct, struct ebitset_struct,
9652 struct lbitset_struct, struct bitset_stats_struct): New types.
9653 All uses of struct bitset_struct changed to union bitset_union,
9654 etc.
ba0fe3c7 9655 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
9656 struct bitset_struct): Remove.
9657 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
9658 struct bitset_struct): Remove.
9659 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
9660 bitset_struct): Remove.
9661 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
9662 Likewise.
9663
9664 Do not call a function of type T using a call that assumes the
9665 function is of a different type U. Standard C requires that a
9666 function must be called with a type that is compatible with its
9667 definition.
9668 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9669 New decls.
9670 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9671 New functions.
9672 * lib/ebitset.c (PFV): Remove.
9673 * lib/lbitset.c (PFV): Likewise.
9674 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
9675 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
9676 decls.
9677 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
9678 (ebitset_vtable): Use them.
9679 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
9680 lbitset_xor): New functions.
9681 (lbitset_vtable): Use them.
9682
9683 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
9684 Declare.
9685
9686 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
9687 GCC warning.
9688 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
9689 Use offsetof, for simplicity.
9690
6fbe4984
PE
96912002-10-06 Paul Eggert <eggert@twinsun.com>
9692
9693 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
9694 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 9695 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
9696 which was inadvertently undone by the 2002-09-30 patch.
9697 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
9698 the same width as int.
9699
420f93c8
PE
97002002-10-04 Paul Eggert <eggert@twinsun.com>
9701
9702 Version 1.50.
9703
9704 * configure.ac (AC_INIT), NEWS: Increment version number.
9705
9706 * doc/bison.texinfo: Minor spelling, grammar, and white space
9707 fixes.
9708 (Symbols): Mention that any negative value returned from yylex
9709 signifies end-of-input. Warn about negative chars. Mention
9710 the portable Standard C character set.
9711
9712 The GNU coding standard says CFLAGS and YFLAGS are reserved
9713 for the installer to set.
9714 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
9715 * src/Makefile.am (AM_CFLAGS): Likewise.
9716 (AM_YFLAGS): Renamed from YFLAGS.
9717
9718 Fix some MAX and MIN problems.
9719 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
9720 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
9721 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
9722 * src/reader.c (reader): Use it.
9723
9724 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
9725 POSIX 1003.1-2001 has removed fgrep.
9726
97272002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9728
9729 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
9730 interpreted as signed.
9731 * lib/ebitset.c (ebitset_list): Fix bug.
9732
ff68026d
PE
97332002-10-01 Paul Eggert <eggert@twinsun.com>
9734
9735 More fixes for 64-bit hosts and large bitsets.
9736
9737 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
9738 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
9739 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
9740 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
9741 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
9742 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
9743 bitset_count_): Likewise.
9744 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
9745 bitset_first, bitset_last): Likewise.
9746 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
9747 bitset_stats_list_reverse, bitset_stats_size,
9748 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
9749 Likewise.
9750 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9751 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9752 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9753 bitsetv_reflexive_transitive_closure): Likewise.
9754 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
9755 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
9756 Likewise.
9757 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
9758 Likewise.
420f93c8 9759
ff68026d
PE
9760 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
9761 Use size_t, not unsigned int, to count bytes.
9762 * lib/abitset.h (abitset_bytes): Likewise.
9763 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
9764 Likewise.
9765 * lib/bitset.h (bitset_bytes): Likewise.
9766 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
9767 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
9768 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9769 * lib/ebitset.c (ebitset_bytes): Likewise.
9770 * lib/ebitset.h (ebitset_bytes): Likewise.
9771 * lib/lbitset.c (lbitset_bytes): Likewise.
9772 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 9773
ff68026d
PE
9774 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
9775 abitset_subset_p, abitset_disjoint_p, abitset_and,
9776 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
9777 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
9778 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
9779 abitset_or_and, abitset_or_and_cmp):
9780 Use bitset_windex instead of unsigned int.
9781 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9782 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
9783 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
9784 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
9785 Likewise.
9786 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 9787
ff68026d
PE
9788 * lib/bitset.c (bitset_print):
9789 Use proper printf formats for widths of integer types.
9790 * lib/bitset_stats.c (bitset_percent_histogram_print,
9791 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
9792 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9793 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9794 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 9795
ff68026d
PE
9796 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
9797 BITSET_SIZE_MAX): New macros.
9798 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
9799 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
9800 to BITSET_WINDEX_MAX.
9801
9802 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
9803 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
9804 since we now return the bitset_bindex type (not int).
9805
9806 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
9807 when computing sizes.
9808 * lib/ebitset.c (ebitset_elts_grow): Likewise.
9809
9810 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
9811 and avoid cast to unsigned.
9812
6aa452a6
AD
98132002-09-30 Akim Demaille <akim@epita.fr>
9814
9815 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9816 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
9817 Updates from Michael Hayes.
9818
927f7817
AD
98192002-09-30 Art Haas <ahaas@neosoft.com>
9820
9821 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
9822 invocations.
9823 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
9824 defined.
9825
9738f41e
AD
98262002-09-27 Akim Demaille <akim@epita.fr>
9827
9828 Version 1.49c.
9829
a5c75d7f
AD
98302002-09-27 Akim Demaille <akim@epita.fr>
9831
9832 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
9833 (Because of AC_LIBSOURCE).
9834
8280e179
AD
98352002-09-27 Akim Demaille <akim@epita.fr>
9836
9837 Playing with Autoscan.
9838
9839 * configure.ac: Remove the old LIBOBJ tweaks.
9840 (AC_REPLACE_FUNCS): Add strrchr and strtol.
9841 * lib/strrchr.c: New.
9842 * lib/strtol.c: New, from the Coreutils 4.5.1.
9843
ae64af35
AD
98442002-09-27 Akim Demaille <akim@epita.fr>
9845
9846 Playing with Autoscan.
9847
9848 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
9849 * lib/Makefile.am (libbison_a_SOURCES): No longer include
9850 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
9851 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
9852 Coreutils 4.5.1.
9853
d1a1114f
AD
98542002-09-24 Akim Demaille <akim@epita.fr>
9855
9856 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
9857 (Frequently Asked Questions, Parser Stack Overflow): New.
9858
b906441c
AD
98592002-09-13 Akim Demaille <akim@epita.fr>
9860
9861 Playing with autoscan.
9862
9863 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
9864 * src/files.c (skeleton_find): Remove, unused.
9865 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
9866 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
9867
bd701811
AD
98682002-09-13 Akim Demaille <akim@epita.fr>
9869
9870 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
9871 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
9872
e0a13e7b
AD
98732002-09-13 Akim Demaille <akim@epita.fr>
9874
9875 * configure.ac: Require 2.54.
9876 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
9877 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
9878 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
9879 Remove, provided by Autoconf macros.
9880
c97011bf
AD
98812002-09-12 Akim Demaille <akim@epita.fr>
9882
9883 * m4/prereq.m4: Update, from Coreutils 4.5.1.
9884
d862b1be
AD
98852002-09-12 Akim Demaille <akim@epita.fr>
9886
9887 * m4/prereq.m4: Update, from Fileutils 4.1.5.
9888 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
9889 Reported by Martin Mokrejs.
9890
3d38c03a
AD
98912002-09-10 Akim Demaille <akim@epita.fr>
9892
9893 * src/parse-gram.y: Associate a human readable string to each
9894 token type.
9895 * tests/regression.at (Invalid inputs): Adjust.
9896
b6347355
AD
98972002-09-10 Gary V. Vaughan <gary@gnu.org>
9898
9899 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
9900 with an Autoconf-2.5x style configure.ac.
9901
09ba4ab2
PE
99022002-09-06 Paul Eggert <eggert@twinsun.com>
9903
9904 * doc/bison.texinfo (Conditions): Make explicit that the GPL
9905 exception applies only to yacc.c. This is a modification of a
9906 patch originally suggested by Akim Demaille.
9907
21846f69
AD
99082002-09-06 Akim Demaille <akim@epita.fr>
9909
09ba4ab2
PE
9910 * data/c.m4 (b4_copyright): Move the GPL exception comment from
9911 here to...
9912 * data/yacc.c: here.
9913
21846f69
AD
9914 * data/lalr1.cc (struct yyltype): Don't define it, since we use
9915 LocationType.
9916 (b4_ltype): Default to yy::Location from location.hh.
9917
c0ad8bf3
AD
99182002-09-04 Jim Meyering <jim@meyering.net>
9919
9920 * data/yacc.c: Guard the declaration of yytoknum also with
9921 `#ifdef YYPRINT', so it is declared only when used.
9922
3a93251e
AD
99232002-09-04 Akim Demaille <akim@epita.fr>
9924
9925 * configure.in: Rename as...
9926 * configure.ac: this.
9927 Bump to 1.49c.
9928
427c0dda
AD
99292002-09-04 Akim Demaille <akim@epita.fr>
9930
9931 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
9932 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
9933 translate maintainer only messages.
9934
6a254321
PE
99352002-08-12 Paul Eggert <eggert@twinsun.com>
9936
645e30d1
PE
9937 Version 1.49b.
9938
6a254321
PE
9939 * Makefile.am (SUBDIRS): Remove intl.
9940 (DISTCLEANFILES): Remove.
9941 * NEWS: Mention that GNU M4 is now required. Clarify what is
9942 meant by "larger grammars". Mention the pt_BR translation.
9943 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
9944 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
9945 Bump version from 0.11.2 to 0.11.5.
9946 (BISON_PREREQ_STAGE): Remove.
9947 (AM_GNU_GETTEXT): Use external gettext.
9948 (AC_OUTPUT): Remove intl/Makefile.
9949
9950 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
9951
9952 * data/glr.c: Include string.h, for strlen.
9953 (yyreportParseError): Use size_t for yysize.
9954 (yy_yypstack): No longer nested inside yypstates, as nested
9955 functions are not portable. Do not assume size_t is the
9956 same width as int.
9957 (yypstates): Do not assume that ptrdiff_t is the same width
9958 as int, and similarly for yyposn and YYINDEX.
9959
9960 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
9961
9962 * lib/Makefile.am (INCLUDES): Do not include from the intl
9963 directory, which has been removed.
9964 * src/Makefile.am (INCLUDES): Likewise.
9965
9966 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
9967 (bitsets_sources, additional_bitsets_sources, timevars_sources):
9968 New vars.
9969
9970 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
9971 * tests/Makefile.am (EXTRA_DIST): Likewise.
9972
9973 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
9974 Do not assume that bitset_windex is the same width as unsigned.
9975
9976 * lib/abitset.c (abitset_unused_clear): Do not assume that
9977 bitset_word is the same width as int.
9978 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
9979 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
9980 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
9981 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
9982 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
9983
9984 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
9985 portability to one's complement hosts!).
9986 * lib/ebitset.c (ebitset_op1): Likewise.
9987 * lib/lbitset.c (lbitset_op1): Likewise.
9988
9989 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
9990 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9991 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
9992 Sync with fileutils.
9993 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
9994 lib/gettext.h: Sync with diffutils.
9995
9996 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
9997 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
9998
9999 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
10000 PROTOTYPES to check for prototypes, and "defined __STDC__" to
10001 check for void *.
10002
10003 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
10004 size_t; the old version tried to do this but casted improperly.
10005 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
10006 (bitset_test): Now returns int, not unsigned long.
10007
10008 * lib/bitset_stats.c: Include "gettext.h".
10009 (_): New macro.
10010 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
10011 name locals "index", as it generates unnecessary warnings on some
10012 hosts that have an "index" function.
10013
10014 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
10015 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
10016 they need translation.
10017 * src/LR0.c (state_list_append, new_itemsets, get_state,
10018 append_states, generate_states): Likewise.
10019 * src/assoc.c (assoc_to_string): Likewise.
10020 * src/closure.c (print_closure, set_firsts, closure): Likewise.
10021 * src/gram.c (grammar_dump): Likewise.
10022 * src/injections.c (injections_compute): Likewise.
10023 * src/lalr.c (lookaheads_print): Likewise.
10024 * src/relation.c (relation_transpose): Likewise.
10025 * src/scan-gram.l: Likewise.
10026 * src/tables.c (table_grow, pack_vector): Likewise.
10027
10028 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
10029 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
10030 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
10031 * m4/mbstate_t.m4: Sync with fileutils.
10032 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
10033
10034 * po/LINGUAS: Add pt_BR.
10035 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
10036 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
10037 lib/timevar.c.
10038 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
10039 manual recommends.
10040 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
10041
10042 * src/complain.c (strerror_r): Remove decl; not needed.
10043 (strerror): Use same pattern as ../lib/error.c.
10044
10045 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
10046
10047 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
10048
10049 * src/main.c (main): Cast result of bindtextdomain and textdomain
10050 to void, to avoid a GCC warning when --disable-nls is in effect.
10051
10052 * src/scan-gram.l: Use strings rather than escapes when possible,
10053 to minimize the number of warnings from xgettext.
10054 (handle_action_dollar, handle_action_at): Don't use isdigit,
10055 as it mishandles negative chars and it may not work as expected
10056 outside the C locale.
10057
10058 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
10059 this is a GCC extension and is not portable to other compilers.
10060
10061 * src/system.h (alloca): Use same pattern as ../lib/error.c.
10062 Do not include <ctype.h>; no longer needed.
10063 Do not include <malloc.h>; no longer needed (and generates
10064 warnings on OpenBSD 3.0).
10065
10066 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
10067 it's not portable.
10068
10069 * tests/regression.at: Do not use 'cc -c input.c -o input';
10070 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
10071
10072 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
10073 exit status as failure, not just exit status 1. Sun C exits
10074 with status 2 sometimes.
10075
10076 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
10077 Use it for the two large tests.
10078
c8f002c7
AD
100792002-08-02 Akim Demaille <akim@epita.fr>
10080
10081 * src/conflicts.c (conflicts_output): Don't output rules never
10082 reduced here, since anyway that computation doesn't work.
10083 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
10084 (rule_useless_p, rule_never_reduced_p): New.
10085 (grammar_rules_partial_print): Use a filter instead of a range.
10086 Display the title only if needed.
10087 (grammar_rules_print): Adjust.
10088 (grammar_rules_never_reduced_report): New.
10089 * src/tables.c (action_row): Move the computation of rules never
10090 reduced to...
10091 (token_actions): here.
10092 * src/main.c (main): Make the parser before making the report, so
10093 that rules never reduced are computed.
10094 Call grammar_rules_never_reduced_report.
10095 * src/print.c (print_results): Report rules never reduced.
10096 * tests/conflicts.at, tests/reduce.at: Adjust.
10097
cd08e51e
AD
100982002-08-01 Akim Demaille <akim@epita.fr>
10099
10100 Instead of attaching lookaheads and duplicating the rules being
10101 reduced by a state, attach the lookaheads to the reductions.
10102
10103 * src/state.h (state_t): Remove the `lookaheads',
10104 `lookaheads_rule' member.
10105 (reductions_t): Add a `lookaheads' member.
10106 Use a regular array for the `rules'.
10107 * src/state.c (reductions_new): Initialize the lookaheads member
10108 to 0.
10109 (state_rule_lookaheads_print): Adjust.
10110 * src/state.h, src/state.c (state_reductions_find): New.
10111 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
10112 (count_rr_conflicts): Adjust.
10113 * src/lalr.c (LArule): Remove.
10114 (add_lookback_edge): Adjust.
10115 (state_lookaheads_count): New.
10116 (states_lookaheads_initialize): Merge into...
10117 (initialize_LA): this.
10118 (lalr_free): Adjust.
10119 * src/main.c (main): Don't free nullable and derives too early: it
10120 is used by --verbose.
10121 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
10122
bb0027a9
AD
101232002-08-01 Akim Demaille <akim@epita.fr>
10124
10125 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
10126 `rule_number_t**'.
10127 (set_derives, free_derives): Rename as...
10128 (derives_compute, derives_free): this.
10129 Adjust all dependencies.
10130 * src/nullable.c (set_nullable, free_nullable): Rename as...
10131 (nullable_compute, nullable_free): these.
10132 (rule_list_t): Store rule_t *, not rule_number_t.
10133 * src/state.c (state_rule_lookaheads_print): Directly compare rule
10134 pointers, instead of their numbers.
10135 * src/main.c (main): Call nullable_free, and derives_free earlier,
10136 as they were lo longer used.
10137
3325ddc4
AD
101382002-08-01 Akim Demaille <akim@epita.fr>
10139
10140 * lib/timevar.c (get_time): Include children time.
10141 * src/lalr.h (LA, LArule): Don't export them: used with the
10142 state_t.
10143 * src/lalr.c (LA, LArule): Static.
10144 * src/lalr.h, src/lalr.c (lalr_free): New.
10145 * src/main.c (main): Call it.
10146 * src/tables.c (pack_vector): Check whether loc is >= to the
10147 table_size, not >.
10148 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
10149 (tables_generate): do it, since that's also it which allocates
10150 them.
10151 Don't free LA and LArule, main does.
10152
c6f1a33c
AD
101532002-07-31 Akim Demaille <akim@epita.fr>
10154
10155 Separate parser tables computation and output.
10156
10157 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
10158 (conflict_list, conflict_list_cnt, table, check, table_ninf)
10159 (yydefgoto, yydefact, high): Move to...
10160 * src/tables.h, src/tables.c: here.
10161 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
10162 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
10163 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
10164 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
10165 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
10166 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
10167 (action_row, save_row, token_actions, save_column, default_goto)
10168 (goto_actions, sort_actions, matching_state, pack_vector)
10169 (table_ninf_remap, pack_table, prepare_actions): Move to...
10170 * src/tables.c: here.
10171 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
10172 * src/output.c (token_actions, output_base, output_conflicts)
10173 (output_check): Merge into...
10174 (prepare_actions): this.
10175 (actions_output): Rename as...
10176 (user_actions_output): this.
10177 * src/main.c (main): Call tables_generate and tables_free.
10178
1509d42f
AD
101792002-07-31 Akim Demaille <akim@epita.fr>
10180
10181 Steal GCC's --time-report support.
10182
10183 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
10184 stolen/adjusted from GCC.
10185 * m4/stage.m4: Remove time related checks.
10186 * m4/timevar.m4: New.
10187 * configure.in: Adjust.
10188 * src/system.h: Adjust to using timevar.h.
10189 * src/getargs.h, src/getargs.c: Support trace_time for
10190 --trace=time.
10191 * src/main.c (stage): Remove.
10192 (main): Replace `stage' invocations with timevar calls.
10193 * src/output.c: Insert pertinent timevar calls.
10194
273a74fa
AD
101952002-07-31 Akim Demaille <akim@epita.fr>
10196
10197 Let --trace have arguments.
10198
10199 * src/getargs.h (enum trace_e): New.
10200 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
10201 (long_options, short_options): --trace/-T takes an optional
10202 argument.
10203 Change all the uses of trace_flag to reflect the new flags.
10204 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
10205
10206 Strengthen `stage' portability.
10207
10208 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
10209 * configure.in: Use it.
10210 Don't check for malloc.h and sys/times.h.
10211 * src/system.h: Include them when appropriate.
10212 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
10213 times and struct tms are available.
10214
217598da
AD
102152002-07-30 Akim Demaille <akim@epita.fr>
10216
10217 In verbose parse error message, don't report `error' as an
10218 expected token.
10219 * tests/actions.at (Printers and Destructors): Adjust.
10220 * tests/calc.at (Calculator $1): Adjust.
10221 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
10222 error message, do not report the parser accepts the error token in
10223 that state.
10224
52489d44
AD
102252002-07-30 Akim Demaille <akim@epita.fr>
10226
10227 Normalize conflict related messages.
10228
10229 * src/complain.h, src/complain.c (warn, complain): New.
10230 * src/conflicts.c (conflicts_print): Use them.
10231 (conflict_report_yacc): New, extracted from...
10232 (conflicts_print): here.
10233 * tests/conflicts.at, tests/existing.at: Adjust.
10234
e8832397
AD
102352002-07-30 Akim Demaille <akim@epita.fr>
10236
10237 Report rules which are never reduced by the parser: those hidden
10238 by conflicts.
10239
10240 * src/LR0.c (save_reductions): Don't make the final state too
10241 different: save its reduction (accept) instead of having a state
10242 without any action (no shift or goto, no reduce).
10243 Note: the final state is now a ``regular'' state, i.e., the
10244 parsers now contain `reduce 0' as default reduction.
10245 Nevertheless, since they decide to `accept' when yystate =
10246 final_state, they still will not reduce rule 0.
10247 * src/print.c (print_actions, print_reduction): Adjust.
10248 * src/output.c (action_row): Track reduced rules.
10249 (token_actions): Report rules never reduced.
10250 * tests/conflicts.at, tests/regression.at: Adjust.
10251
caf23d24
AD
102522002-07-30 Akim Demaille <akim@epita.fr>
10253
10254 `stage' was accidently included in a previous patch.
10255 Initiate its autoconfiscation.
10256
10257 * configure.in: Look for malloc.h and sys/times.h.
10258 * src/main.c (stage): Adjust.
10259 Report only when trace_flag.
10260
640748ee
AD
102612002-07-29 Akim Demaille <akim@epita.fr>
10262
10263 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
10264 state_number_t.
10265 (errs_t): symbol_t*, not symbol_number_t.
10266 (reductions_t): rule_t*, not rule_number_t.
10267 (FOR_EACH_SHIFT): New.
10268 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
10269 * src/print.c, src/print_graph.c: Adjust.
10270
88bce5a2
AD
102712002-07-29 Akim Demaille <akim@epita.fr>
10272
10273 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
10274
10275 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
10276 (endtoken, accept): these.
10277 * src/reader.c (reader): Set endtoken's default tag to "$end".
10278 Set undeftoken's tag to "$undefined" instead of "$undefined.".
10279 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
10280 Adjust.
10281
1bfb97db
AD
102822002-07-29 Akim Demaille <akim@epita.fr>
10283
10284 * src/reduce.c (reduce_grammar): When the language is empty,
10285 complain about the start symbol, not the axiom.
10286 Use its location.
10287 * tests/reduce.at (Empty Language): New.
10288
fc5734fe
AD
102892002-07-26 Akim Demaille <akim@epita.fr>
10290
10291 * src/reader.h, src/reader.c (gram_error): ... can't get
10292 yycontrol without making too strong assumptions on the parser
10293 itself.
10294 * src/output.c (prepare_tokens): Use the real 0th value of
10295 token_translations instead of `0'.
10296 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
10297 visible here.
10298 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
10299 for the time being: %locations ought to provide it to yyerror.
10300
3650b4b8
AD
103012002-07-25 Akim Demaille <akim@epita.fr>
10302
10303 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
10304 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
10305 * tests/regression.at (Web2c Actions): Adjust.
10306
4b3d3a8e
AD
103072002-07-25 Akim Demaille <akim@epita.fr>
10308
10309 Stop storing rules from 1 to nrules + 1.
10310
10311 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
10312 * src/nullable.c, src/output.c, src/print.c, src/reader.c
10313 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
10314 Iterate from 0 to nrules.
10315 Use rule_number_as_item_number and item_number_as_rule_number.
10316 Adjust to `derive' now containing possibly 0.
10317 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
10318 Handle the `- 1' part in rule numbers from/to item numbers.
10319 * src/conflicts.c (log_resolution): Fix the message which reversed
10320 shift and reduce.
10321 * src/output.c (action_row): Initialize default_rule to -1.
10322 (token_actions): Adjust.
10323 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
10324 expected output.
10325 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
10326
4a2a22f4
AD
103272002-07-25 Akim Demaille <akim@epita.fr>
10328
10329 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
10330 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
10331 (b4_c_knr_arg_decl): New.
10332 * data/yacc.c: Use it to define yysymprint, yydestruct, and
10333 yyreport_parse_error.
10334
b8df3223
AD
103352002-07-25 Akim Demaille <akim@epita.fr>
10336
10337 * data/yacc.c (yyreport_parse_error): New, extracted from...
10338 (yyparse): here.
10339 (yydestruct, yysymprint): Move above yyparse.
10340 Be K&R compliant.
10341
a762e609
AD
103422002-07-25 Akim Demaille <akim@epita.fr>
10343
10344 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
10345 replace...
10346 (b4_sint_type, b4_uint_type): these.
10347 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
10348 * tests/regression.at (Web2c Actions): Adjust.
10349
12b0043a
AD
103502002-07-25 Akim Demaille <akim@epita.fr>
10351
10352 * src/gram.h (TIEM_NUMBER_MAX): New.
10353 (item_number_of_rule_number, rule_number_of_item_number): Rename
10354 as...
10355 (rule_number_as_item_number, item_number_as_rule_number): these.
10356 Adjust dependencies.
10357 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
10358 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
10359 (symbol_number_to_vector_number): New.
10360 (order): Of vector_number_t* type.
10361 (base_t, BASE_MAX, BASE_MIN): New.
10362 (froms, tos, width, pos, check): Of base_t type.
10363 (action_number_t, ACTION_MIN, ACTION_MAX): New.
10364 (actrow): Of action_number_t type.
10365 (conflrow): Of unsigned int type.
10366 (table_ninf, base_ninf): New.
10367 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
10368 (muscle_insert_int_table, muscle_insert_base_table)
10369 (muscle_insert_rule_number_table): New.
10370 (prepare_tokens): Output `toknum' as int_table.
10371 (action_row): Returns a rule_number_t.
10372 Use ACTION_MIN, not SHRT_MIN.
10373 (token_actions): yydefact is rule_number_t*.
10374 (table_ninf_remap): New.
10375 (pack_table): Use it for `base' and `table'.
10376 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
10377 replaced with...
10378 (YYPACT_NINF, YYTABLE_NINF): these.
10379 (yypact, yytable): Compute their types instead of hard-coded
10380 `short'.
10381 * tests/regression.at (Web2c Actions): Adjust.
10382
5dde258a
AD
103832002-07-19 Akim Demaille <akim@epita.fr>
10384
10385 * src/scan-gram.l (id): Can start with an underscore.
10386
a945ec39
AD
103872002-07-16 Akim Demaille <akim@epita.fr>
10388
10389 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
10390 Adjust all former `associativity' dependencies.
10391 * src/symtab.c (symbol_new): Default associativity is `undef', not
10392 `right'.
10393 (symbol_check_alias_consistence): Adjust.
10394
fae437e8
AD
103952002-07-09 Akim Demaille <akim@epita.fr>
10396
10397 * doc/bison.texinfo: Properly set the ``header'' part.
10398 Use @dircategory ``GNU programming tools'' as per Texinfo's
10399 documentation.
10400 Use @copying.
10401
1a715ef2
AD
104022002-07-09 Akim Demaille <akim@epita.fr>
10403
10404 * lib/quotearg.h: Protect against multiple inclusions.
10405 * src/location.h (location_t): Add a `file' member.
10406 (LOCATION_RESET, LOCATION_PRINT): Adjust.
10407 * src/complain.c (warn_at, complain_at, fatal_at): Drop
10408 `error_one_per_line' support.
10409
a5d50994
AD
104102002-07-09 Akim Demaille <akim@epita.fr>
10411
10412 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
10413 * src/reader.c (lineno): Remove.
10414 Adjust all dependencies.
10415 (get_merge_function): Take a location and use complain_at.
10416 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
10417 * tests/regression.at (Invalid inputs, Mixing %token styles):
10418 Adjust.
10419
b275314e
AD
104202002-07-09 Akim Demaille <akim@epita.fr>
10421
10422 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
10423 recovery rule, and forbid extensions when --yacc.
10424 (gram_error): Use complain_at.
10425 * src/reader.c (reader): Exit if there were parse errors.
10426
865b9df1
AD
104272002-07-09 Akim Demaille <akim@epita.fr>
10428
10429 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
10430 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
10431 Reported by R Blake <blakers@mac.com>.
10432
c76e14da
AD
104332002-07-09 Akim Demaille <akim@epita.fr>
10434
10435 * data/yacc.c: Output the copyright notive in the header.
10436
7db2ed2d
AD
104372002-07-03 Akim Demaille <akim@epita.fr>
10438
10439 * src/output.c (froms, tos): Are state_number_t.
10440 (save_column): sp, sp1, and sp2 are state_number_t.
10441 (prepare): Rename `final' as `final_state_number', `nnts' as
10442 `nterms_number', `nrules' as `rules_number', `nstates' as
10443 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
10444 unused.
10445 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
10446 * data/lalr1.cc (nsym_): Remove, unused.
10447
e68e0410
AD
104482002-07-03 Akim Demaille <akim@epita.fr>
10449
10450 * src/lalr.h, src/lalr.c (goto_number_t): New.
10451 * src/lalr.c (goto_list_t): New.
10452 Propagate them.
10453 * src/nullable.c (rule_list_t): New.
10454 Propagate.
10455 * src/types.h: Remove.
10456
e1a4f3a4
AD
104572002-07-03 Akim Demaille <akim@epita.fr>
10458
10459 * src/closure.c (print_fderives): Use rule_rhs_print.
10460 * src/derives.c (print_derives): Use rule_rhs_print.
10461 (rule_list_t): New, replaces `shorts'.
10462 (set_derives): Add comments.
10463 * tests/sets.at (Nullable, Firsts): Adjust.
10464
536545f3
AD
104652002-07-03 Akim Demaille <akim@epita.fr>
10466
10467 * src/output.c (prepare_actions): Free `tally' and `width'.
10468 (prepare_actions): Allocate and free `order'.
10469 * src/symtab.c (symbols_free): Free `symbols'.
10470 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
10471 * src/output.c (m4_invoke): Move to...
10472 * src/scan-skel.l: here.
10473 (<<EOF>>): Close yyout, and free its name.
10474
8b752b00
AD
104752002-07-03 Akim Demaille <akim@epita.fr>
10476
10477 Fix some memory leaks, and fix a bug: state 0 was examined twice.
10478
10479 * src/LR0.c (new_state): Merge into...
10480 (state_list_append): this.
10481 (new_states): Merge into...
10482 (generate_states): here.
10483 (set_states): Don't ensure a proper `errs' state member here, do it...
10484 * src/conflicts.c (conflicts_solve): here.
10485 * src/state.h, src/state.c: Comment changes.
10486 (state_t): Rename member `shifts' as `transitions'.
10487 Adjust all dependencies.
10488 (errs_new): For consistency, also take the values as argument.
10489 (errs_dup): Remove.
10490 (state_errs_set): New.
10491 (state_reductions_set, state_transitions_set): Assert that no
10492 previous value was assigned.
10493 (state_free): New.
10494 (states_free): Use it.
10495 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
10496 temporary storage: use `errs' and `nerrs' as elsewhere.
10497 (set_conflicts): Allocate and free this `errs'.
10498
613f5e1a
AD
104992002-07-02 Akim Demaille <akim@epita.fr>
10500
10501 * lib/libiberty.h: New.
10502 * lib: Update the bitset implementation from upstream.
10503 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
10504 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
10505 * src/main.c: Adjust bitset stats calls.
10506
26e0cadc
PE
105072002-07-01 Paul Eggert <eggert@twinsun.com>
10508
10509 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
10510 char, so that negative chars don't collide with $.
10511
1154cced
AD
105122002-06-30 Akim Demaille <akim@epita.fr>
10513
10514 Have the GLR tests be `warning' checked, and fix the warnings.
10515
10516 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
10517 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
10518 (yyremoveDeletes): `yyi' and `yyj' are size_t.
10519 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
10520 (yyaddDeferredAction): static.
10521 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
10522 (yyreportParseError): yyprefix is const.
10523 yytokenp is used only when verbose.
10524 (yy__GNUC__): Replace with __GNUC__.
10525 (yypdumpstack): yyi is size_t.
10526 (yypreference): Un-yy local variables and arguments, to avoid
10527 clashes with `yyr1'. Anyway, we are not in the user name space.
10528 (yytname_size): be an int, as is compared with ints.
10529 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
10530 Use them.
10531 * tests/cxx-gram.at: Use quotation to protect $1.
10532 Use AT_COMPILE to enable warnings hunts.
10533 Prototype yylex and yyerror.
10534 `Use' argc.
10535 Include `string.h', not `strings.h'.
10536 Produce and prototype stmtMerge only when used.
10537 yylex takes a location.
10538
97650f4e
AD
105392002-06-30 Akim Demaille <akim@epita.fr>
10540
10541 We spend a lot of time in quotearg, in particular when --verbose.
10542
10543 * src/symtab.c (symbol_get): Store a quoted version of the key.
10544 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
10545 Adjust all callers.
10546
d2576365
AD
105472002-06-30 Akim Demaille <akim@epita.fr>
10548
10549 * src/state.h (reductions_t): Rename member `nreds' as num.
10550 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
10551 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
10552
ccaf65bc
AD
105532002-06-30 Akim Demaille <akim@epita.fr>
10554
10555 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
10556 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
10557 (shifts_to): Rename as...
10558 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
10559 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
10560 (TRANSITION_IS_DISABLED, transitions_to): these.
10561
87675353
AD
105622002-06-30 Akim Demaille <akim@epita.fr>
10563
10564 * src/print.c (print_shifts, print_gotos): Merge into...
10565 (print_transitions): this.
10566 (print_transitions, print_errs, print_reductions): Align the
10567 lookaheads columns.
10568 (print_core, print_transitions, print_errs, print_state,
10569 print_grammar): Output empty lines separator before, not after.
10570 (state_default_rule_compute): Rename as...
10571 (state_default_rule): this.
10572 * tests/conflicts.at (Defaulted Conflicted Reduction),
10573 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
10574 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
10575
ce4ccb4b
AD
105762002-06-30 Akim Demaille <akim@epita.fr>
10577
10578 Display items as we display rules.
10579
10580 * src/gram.h, src/gram.c (rule_lhs_print): New.
10581 * src/gram.c (grammar_rules_partial_print): Use it.
10582 * src/print.c (print_core): Likewise.
10583 * tests/conflicts.at (Defaulted Conflicted Reduction),
10584 (Unresolved SR Conflicts): Adjust.
10585 (Unresolved SR Conflicts): Adjust and rename as...
10586 (Resolved SR Conflicts): this, as was meant.
10587 * tests/regression.at (Web2c Report): Adjust.
10588
bc933ef1
AD
105892002-06-30 Akim Demaille <akim@epita.fr>
10590
10591 * src/print.c (state_default_rule_compute): New, extracted from...
10592 (print_reductions): here.
10593 Pessimize, but clarify the code.
10594 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
10595
53d4308d
AD
105962002-06-30 Akim Demaille <akim@epita.fr>
10597
10598 * src/output.c (action_row): Let default_rule be always a rule
10599 number.
10600
574fb2d5
AD
106012002-06-30 Akim Demaille <akim@epita.fr>
10602
10603 * src/closure.c (print_firsts, print_fderives, closure):
10604 Use BITSET_EXECUTE.
10605 * src/lalr.c (lookaheads_print): Likewise.
10606 * src/state.c (state_rule_lookaheads_print): Likewise.
10607 * src/print_graph.c (print_core): Likewise.
10608 * src/print.c (print_reductions): Likewise.
10609 * src/output.c (action_row): Likewise.
10610 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
10611
05811fd7
AD
106122002-06-30 Akim Demaille <akim@epita.fr>
10613
10614 * src/print_graph.c: Use report_flag.
10615
0e4d5753
AD
106162002-06-30 Akim Demaille <akim@epita.fr>
10617
10618 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
10619 to...
10620 * src/relation.h, src/relation.c (traverse, relation_digraph)
10621 (relation_print, relation_transpose): New.
10622
24c7d800
AD
106232002-06-30 Akim Demaille <akim@epita.fr>
10624
10625 * src/state.h, src/state.c (shifts_to): New.
10626 * src/lalr.c (build_relations): Use it.
10627
9222837b
AD
106282002-06-30 Akim Demaille <akim@epita.fr>
10629
10630 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
10631 (item_number_of_rule_number, rule_number_of_item_number): New.
10632 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
10633 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
10634 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
10635 Propagate their use.
10636 Much remains to be done, in particular wrt `shorts' from types.h.
10637
260008e5
AD
106382002-06-30 Akim Demaille <akim@epita.fr>
10639
10640 * src/symtab.c (symbol_new): Initialize the `printer' member.
10641
8a731ca8
AD
106422002-06-30 Akim Demaille <akim@epita.fr>
10643
10644 * src/LR0.c (save_reductions): Remove, replaced by...
10645 * src/state.h, src/state.c (state_reductions_set): New.
10646 (reductions, errs): Rename as...
10647 (reductions_t, errs_t): these.
10648 Adjust all dependencies.
10649
32e1e0a4
AD
106502002-06-30 Akim Demaille <akim@epita.fr>
10651
10652 * src/LR0.c (state_list_t, state_list_append): New.
10653 (first_state, last_state): Now symbol_list_t.
10654 (this_state): Remove.
10655 (new_itemsets, append_states, save_reductions): Take a state_t as
10656 argument.
10657 (set_states, generate_states): Adjust.
10658 (save_shifts): Remove, replaced by...
10659 * src/state.h, src/state.c (state_shifts_set): New.
10660 (shifts): Rename as...
10661 (shifts_t): this.
10662 Adjust all dependencies.
10663 * src/state.h (state_t): Remove the `next' member.
10664
e5fb6710
AD
106652002-06-30 Akim Demaille <akim@epita.fr>
10666
10667 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
10668 escaped in slot 0.
10669
c7ca99d4
AD
106702002-06-30 Akim Demaille <akim@epita.fr>
10671
10672 Use hash.h for the state hash table.
10673
10674 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
10675 (allocate_storage): Use state_hash_new.
10676 (free_storage): Use state_hash_free.
10677 (new_state, get_state): Adjust.
10678 * src/lalr.h, src/lalr.c (states): Move to...
10679 * src/states.h (state_t): Remove the `link' member, no longer
10680 used.
10681 * src/states.h, src/states.c: here.
10682 (state_hash_new, state_hash_free, state_hash_lookup)
10683 (state_hash_insert, states_free): New.
10684 * src/states.c (state_table, state_compare, state_hash): New.
10685 * src/output.c (output_actions): Do not free states now, since we
10686 still need to know the final_state number in `prepare', called
10687 afterwards. Do it...
10688 * src/main.c (main): here: call states_free after `output'.
10689
df0e7316
AD
106902002-06-30 Akim Demaille <akim@epita.fr>
10691
10692 * src/state.h, src/state.c (state_new): New, extracted from...
10693 * src/LR0.c (new_state): here.
10694 * src/state.h (STATE_ALLOC): Move to...
10695 * src/state.c: here.
10696 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
10697 * src/state.h, src/state.c: here.
10698
39f41916
AD
106992002-06-30 Akim Demaille <akim@epita.fr>
10700
10701 * src/reader.c (gensym): Rename as...
10702 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
10703 (getsym): Rename as...
10704 (symbol_get): this.
10705
d57650a5
AD
107062002-06-30 Akim Demaille <akim@epita.fr>
10707
10708 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
10709 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
10710 * src/output.c, src/print.c, src/print_graph.c: Propagate.
10711 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
10712
5a08f1ce
AD
107132002-06-30 Akim Demaille <akim@epita.fr>
10714
10715 Make the test suite pass with warnings checked.
10716
10717 * tests/actions.at (Printers and Destructors): Improve.
10718 Avoid unsigned vs. signed issues.
10719 * tests/calc.at: Don't exercise the scanner here, do it...
10720 * tests/input.at (Torturing the Scanner): here.
10721
720623af
PH
107222002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10723
88e7e941 10724 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
10725 reorganize first lines parallel to yacc.c.
10726
fb8135fa
AD
107272002-06-28 Akim Demaille <akim@epita.fr>
10728
10729 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
10730 (b4_token_enum, b4_token_defines): New, factored from...
10731 * data/lalr1.cc, data/yacc.c, glr.c: here.
10732
41442480
AD
107332002-06-28 Akim Demaille <akim@epita.fr>
10734
10735 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
10736 unused variables.
10737 * src/output.c (merger_output): static.
10738
e0e5bf84
AD
107392002-06-28 Akim Demaille <akim@epita.fr>
10740
ba0fe3c7 10741 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
10742 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
10743 pacify GCC.
10744 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 10745
676385e2
PH
107462002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10747
10748 Accumulated changelog for new GLR parsing features.
10749
6a254321 10750 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
10751 conflicts_total_count.
10752 * src/conflicts.h: Ditto.
10753 * src/output.c (token_actions): Use the new name.
10754 (output_conflicts): Change conflp => conflict_list_heads, and
10755 confl => conflict_list for better readability.
10756 * data/glr.c: Use the new names.
10757 * NEWS: Add self to GLR announcement.
e0e5bf84 10758
676385e2
PH
10759 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
10760
10761 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
10762 Akim Demaille.
10763
10764 * data/bison.glr: Change name to glr.c
10765 * data/glr.c: Renamed from bison.glr.
10766 * data/Makefile.am: Add glr.c
e0e5bf84
AD
10767
10768 * src/getargs.c:
10769
676385e2 10770 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 10771 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 10772
676385e2
PH
10773 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10774
10775 * data/bison.glr: Be sure to restore the
10776 current #line when returning to the skeleton contents after having
10777 exposed the input file's #line.
10778
10779 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10780
10781 * data/bison.glr: Bring up to date with changes to bison.simple.
10782
10783 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10784
10785 * data/bison.glr: Correct definitions that use b4_prefix.
10786 Various reformatting.
10787 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
10788 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
10789 yytokenp argument; now part of stack.
10790 (yychar): Define to behave as documented.
10791 (yyclearin): Ditto.
e0e5bf84 10792
676385e2
PH
10793 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10794
10795 * src/reader.h: Add declaration for free_merger_functions.
10796
10797 * src/reader.c (merge_functions): New variable.
10798 (get_merge_function): New function.
10799 (free_merger_functions): New function.
10800 (readgram): Check for %prec that is not followed by a symbol.
10801 Handle %dprec and %merge declarations.
10802 (packgram): Initialize dprec and merger fields in rules array.
10803
10804 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
10805 conflict_list_cnt, conflict_list_free): New variables.
10806 (table_grow): Also grow conflict_table.
e0e5bf84 10807 (prepare_rules): Output dprec and merger tables.
676385e2 10808 (conflict_row): New function.
e0e5bf84 10809 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
10810 default reduction in conflicted states for GLR parser so that there
10811 are spaces for the conflict lists.
10812 (save_row): Also save conflict information.
10813 (token_actions): Allocate conflict list.
10814 (merger_output): New function.
10815 (pack_vector): Pack conflict table, too.
10816 (output_conflicts): New function to output yyconflp and yyconfl.
10817 (output_check): Allocate conflict_tos.
10818 (output_actions): Output conflict tables, also.
10819 (output_skeleton): Output b4_mergers definition.
10820 (prepare): Output b4_max_rhs_length definition.
10821 Use 'bison.glr' as default skeleton for GLR parsers.
10822
10823 * src/gram.c (glr_parser): New flag.
10824 (grammar_free): Call free_merger_functions.
10825
10826 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
10827 all pairs of conflicting reductions, rather than just all tokens
10828 causing conflicts. Needed to size conflict tables.
e0e5bf84 10829 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
10830 interface.
10831 (conflicts_print): Ditto.
10832 (count_total_conflicts): New function.
10833
10834 * src/reader.h (merger_list): New type.
10835 (merge_functions): New variable.
10836
10837 * src/lex.h (tok_dprec, tok_merge): New token types.
10838
10839 * src/gram.h (rule_s): Add dprec and merger fields.
10840 (glr_parser): New flag.
10841
10842 * src/conflicts.h (count_total_conflicts): New function.
10843
10844 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
10845
10846 * doc/bison.texinfo (Generalized LR Parsing): New section.
10847 (GLR Parsers): New section.
10848 (Language and Grammar): Mention GLR parsing.
10849 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
10850 Correct typo ("tge" -> "the").
10851
10852 * data/bison.glr: New skeleton for GLR parsing.
10853
10854 * tests/cxx-gram.at: New tests for GLR parsing.
10855
10856 * tests/testsuite.at: Include cxx-gram.at.
10857
10858 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 10859
676385e2
PH
10860 * src/parse-gram.y:
10861
10862 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
10863
10864 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 10865
b5480d74 108662002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
10867
10868 * src/options.h, src/options.c: Remove.
10869 * src/getargs.c (short_options, long_options): New.
10870
60491a94
AD
108712002-06-27 Akim Demaille <akim@epita.fr>
10872
10873 * data/bison.simple, data/bison.c++: Rename as...
10874 * data/yacc.c, data/lalr1.cc: these.
10875 * doc/bison.texinfo (Environment Variables): Remove.
10876
9be0c25b
AD
108772002-06-25 Raja R Harinath <harinath@cs.umn.edu>
10878
10879 * src/getargs.c (report_argmatch): Initialize strtok().
10880
1ae72863
AD
108812002-06-20 Akim Demaille <akim@epita.fr>
10882
10883 * data/bison.simple (b4_symbol_actions): New, replaces...
10884 (b4_symbol_destructor, b4_symbol_printer): these.
10885 (yysymprint): Be sure to call YYPRINT only for tokens, and using
10886 user token numbers.
10887
87542d29
AD
108882002-06-20 Akim Demaille <akim@epita.fr>
10889
10890 * data/bison.simple (yydestructor): Rename as...
10891 (yydestruct): this.
10892
1a31ed21
AD
108932002-06-20 Akim Demaille <akim@epita.fr>
10894
10895 * src/symtab.h, src/symtab.c (symbol_type_set)
10896 (symbol_destructor_set, symbol_precedence_set): The location is
10897 the last argument.
10898 Adjust all callers.
10899
e776192e
AD
109002002-06-20 Akim Demaille <akim@epita.fr>
10901
10902 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
10903 internals.
10904 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
10905 Takes a location.
10906 * src/symtab.h, src/symtab.c (symbol_class_set)
10907 (symbol_user_token_number_set): Likewise.
10908 Adjust all callers.
10909 Promote complain_at.
10910 * tests/input.at (Type Clashes): Adjust.
10911
5c1180b3
AD
109122002-06-20 Akim Demaille <akim@epita.fr>
10913
10914 * data/bison.simple (YYLEX): Fix the declaration when
10915 %pure-parser.
10916
e3170060
AD
109172002-06-20 Akim Demaille <akim@epita.fr>
10918
10919 * data/bison.simple (yysymprint): Don't print the token number,
10920 just its name.
10921 * tests/actions.at (Destructors): Rename as...
10922 (Printers and Destructors): this.
10923 Also exercise %printer.
10924
253862fd
AD
109252002-06-20 Akim Demaille <akim@epita.fr>
10926
10927 * data/bison.simple (YYDSYMPRINT): New.
10928 Use it to remove many of the #if YYDEBUG/if (yydebug).
10929
366eea36
AD
109302002-06-20 Akim Demaille <akim@epita.fr>
10931
10932 * src/symtab.h, src/symtab.c (symbol_t): printer and
10933 printer_location are new members.
10934 (symbol_printer_set): New.
10935 * src/parse-gram.y (PERCENT_PRINTER): New token.
10936 Handle its associated rule.
10937 * src/scan-gram.l: Adjust.
10938 (handle_destructor_at, handle_destructor_dollar): Rename as...
10939 (handle_symbol_code_at, handle_symbol_code_dollar): these.
10940 * src/output.c (symbol_printers_output): New.
10941 (output_skeleton): Call it.
10942 * data/bison.simple (yysymprint): New. Cannot be named yyprint
10943 since there are already many grammar files with a user `yyprint'.
10944 Replace the calls to YYPRINT to calls to yysymprint.
10945 * tests/calc.at: Adjust.
10946 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
10947 taking advantage of parser very internal details (stack size!).
10948
4f25ebb0
AD
109492002-06-20 Akim Demaille <akim@epita.fr>
10950
10951 * src/scan-gram.l: Complete the scanner with the missing patterns
10952 to pacify Flex.
10953 Use `quote' and `symbol_tag_get' where appropriate.
10954
93b68a0e
AD
109552002-06-19 Akim Demaille <akim@epita.fr>
10956
10957 * tests/actions.at (Destructors): Augment to test locations.
10958 * data/bison.simple (yydestructor): Pass it the current location
10959 if locations are enabled.
10960 Prototype only when __STDC__ or C++.
10961 Change the argument names to move into the yy name space: there is
10962 user code here.
10963
58612f1d
AD
109642002-06-19 Akim Demaille <akim@epita.fr>
10965
74310291
AD
10966 * data/bison.simple (b4_pure_if): New.
10967 Use it instead of #ifdef YYPURE.
10968
109692002-06-19 Akim Demaille <akim@epita.fr>
10970
10971 * data/bison.simple (b4_location_if): New.
58612f1d
AD
10972 Use it instead of #ifdef YYLSP_NEEDED.
10973
f25bfb75
AD
109742002-06-19 Akim Demaille <akim@epita.fr>
10975
10976 Prepare @$ in %destructor, but currently don't bind it in the
10977 skeleton, as %location use is not cleaned up yet.
10978
10979 * src/scan-gram.l (handle_dollar, handle_destructor_at)
10980 (handle_action_at): New.
10981 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
10982 a braced_code_t and a location as additional arguments.
10983 (handle_destructor_dollar): Instead of requiring `b4_eval', just
10984 unquote one when outputting `b4_dollar_dollar'.
10985 Adjust callers.
10986 * data/bison.simple (b4_eval): Remove.
10987 (b4_symbol_destructor): Adjust.
10988 * tests/input.at (Invalid @n): Adjust.
10989
c732d2c6
AD
109902002-06-19 Zack Weinberg <zack@codesourcery.com>
10991
10992 * doc/bison.texinfo: Document ability to have multiple
10993 prologue sections.
10994
8c165d89
AD
109952002-06-18 Akim Demaille <akim@epita.fr>
10996
10997 * src/files.c (compute_base_names): When computing the output file
10998 names from the input file name, strip the directory part.
10999
ca98bf57
AD
110002002-06-18 Akim Demaille <akim@epita.fr>
11001
11002 * data/bison.simple.new: Comment changes.
11003 Reported by Andreas Schwab.
11004
0bfb02ff
AD
110052002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
11006
11007 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
11008 there are no `label `yyoverflowlab' defined but not used' warnings
11009 when yyoverflow is defined.
11010
24c0aad7
AD
110112002-06-18 Akim Demaille <akim@epita.fr>
11012
11013 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
11014 new member.
11015 (symbol_destructor_set): Adjust.
11016 * src/output.c (symbol_destructors_output): Output the destructor
11017 locations.
11018 Output the symbol name.
11019 * data/bison.simple (b4_symbol_destructor): Adjust.
11020
5719c109
AD
110212002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
11022 and Akim Demaille <akim@epita.fr>
11023
11024 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
11025 what's left on the stack when the error recovery hits EOF.
11026 * tests/actions.at (Destructors): Complete to exercise this case.
11027
9280d3ef
AD
110282002-06-17 Akim Demaille <akim@epita.fr>
11029
11030 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
11031 arguments is really empty, not only equal to `[]'.
11032 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
11033 member.
11034 (symbol_destructor_set): New.
11035 * src/output.c (symbol_destructors_output): New.
11036 * src/reader.h (brace_code_t, current_braced_code): New.
11037 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
11038 (handle_dollar): Rename as...
11039 (handle_action_dollar): this.
11040 (handle_destructor_dollar): New.
11041 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
11042 (grammar_declaration): Use it.
11043 * data/bison.simple (yystos): Is always defined.
11044 (yydestructor): New.
11045 * tests/actions.at (Destructors): New.
11046 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
11047
dafdc66f
AD
110482002-06-17 Akim Demaille <akim@epita.fr>
11049
11050 * src/symlist.h, src/symlist.c (symbol_list_length): New.
11051 * src/scan-gram.l (handle_dollar, handle_at): Compute the
11052 rule_length only when needed.
11053 * src/output.c (actions_output, token_definitions_output): Output
11054 the full M4 block.
11055 * src/symtab.c: Don't access directly to the symbol tag, use
11056 symbol_tag_get.
11057 * src/parse-gram.y: Use symbol_list_free.
11058
56c47203
AD
110592002-06-17 Akim Demaille <akim@epita.fr>
11060
11061 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
11062 (symbol_list_prepend, get_type_name): Move to...
11063 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
11064 (symbol_list_prepend, symbol_list_n_type_name_get): here.
11065 Adjust all callers.
11066 (symbol_list_free): New.
11067 * src/scan-gram.l (handle_dollar): Takes a location.
11068 * tests/input.at (Invalid $n): Adjust.
11069
1e0bab92
AD
110702002-06-17 Akim Demaille <akim@epita.fr>
11071
11072 * src/reader.h, src/reader.c (symbol_list_new): Export it.
11073 (symbol_list_prepend): New.
11074 * src/parse-gram.y (%union): `list' is a new member.
11075 (symbols.1): New, replaces...
11076 (terms_to_prec.1, nterms_to_type.1): these.
11077 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
11078 Take a location as additional argument.
11079 Adjust all callers.
11080
04e60654
AD
110812002-06-15 Akim Demaille <akim@epita.fr>
11082
11083 * src/parse-gram.y: Move %token in the declaration section so that
11084 we don't depend upon CVS Bison.
11085
10e5b8bd
AD
110862002-06-15 Akim Demaille <akim@epita.fr>
11087
11088 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
11089 * src/print.c (print_core): Use it.
11090
9801d40c
AD
110912002-06-15 Akim Demaille <akim@epita.fr>
11092
11093 * src/conflicts.c (log_resolution): Accept the rule involved in
11094 the sr conflicts instead of the lookahead number that points to
11095 that rule.
11096 (flush_reduce): Accept the current lookahead vector as argument,
11097 instead of the index in LA.
11098 (resolve_sr_conflict): Accept the current number of lookahead
11099 bitset to consider for the STATE, instead of the index in LA.
11100 (set_conflicts): Adjust.
11101 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
11102
c0263492
AD
111032002-06-15 Akim Demaille <akim@epita.fr>
11104
11105 * src/state.h (state_t): Replace the `lookaheadsp' member, a
11106 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
11107 Adjust all dependencies.
11108 * src/lalr.c (initialize_lookaheads): Split into...
11109 (states_lookaheads_count, states_lookaheads_initialize): these.
11110 (lalr): Adjust.
11111
9757c359
AD
111122002-06-15 Akim Demaille <akim@epita.fr>
11113
11114 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
11115 out of...
11116 (grammar_rules_print): here.
11117 * src/reduce.c (reduce_output): Use it.
11118 * tests/reduce.at (Useless Rules, Reduced Automaton)
11119 (Underivable Rules): Adjust.
11120
6b98e4b5
AD
111212002-06-15 Akim Demaille <akim@epita.fr>
11122
11123 Copy BYacc's nice way to report the grammar.
11124
11125 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
11126 New.
11127 Don't print the rules' location, it is confusing and useless.
11128 (rule_print): Use grammar_rhs_print.
11129 * src/print.c (print_grammar): Use grammar_rules_print.
11130
6b98e4b5
AD
111312002-06-15 Akim Demaille <akim@epita.fr>
11132
11133 Complete and rationalize `useless thing' warnings.
11134
11135 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
11136 (symbol_tag_print): New.
11137 Use them everywhere in place of accessing directly the tag member.
11138 * src/gram.h, src/gram.c (rule_print): New.
11139 Use it where a rule used to be printed `by hand'.
11140 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
11141 (reduce_grammar_tables): Report the useless rules.
11142 (reduce_print): Useless things are a warning, not an error.
11143 Report it as such.
11144 * tests/reduce.at (Useless Nonterminals, Useless Rules):
11145 (Reduced Automaton, Underivable Rules): Adjust.
11146 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
11147 * tests/conflicts.at (Unresolved SR Conflicts)
11148 (Solved SR Conflicts): Adjust.
11149
ee000ba4
AD
111502002-06-15 Akim Demaille <akim@epita.fr>
11151
11152 Let symbols have a location.
11153
11154 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
11155 (getsym): Adjust.
11156 Adjust all callers.
11157 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
11158 Use location_t, not int.
11159 * src/symtab.c (symbol_check_defined): Take advantage of the
11160 location.
11161 * tests/regression.at (Invalid inputs): Adjust.
11162
8efe435c
AD
111632002-06-15 Akim Demaille <akim@epita.fr>
11164
11165 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
11166 (input): Don't try to initialize yylloc here, do it in the
11167 scanner.
11168 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
11169 * src/gram.h (rule_t): Change line and action_line into location
11170 and action_location, of location_t type.
11171 Adjust all dependencies.
11172 * src/location.h, src/location.c (empty_location): New.
11173 * src/reader.h, src/reader.c (grammar_start_symbol_set)
11174 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
11175 (grammar_current_rule_symbol_append)
11176 (grammar_current_rule_action_append): Expect a location as argument.
11177 * src/reader.c (grammar_midrule_action): Adjust to attach an
11178 action's location as dummy symbol location.
11179 * src/symtab.h, src/symtab.c (startsymbol_location): New.
11180 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
11181 the line numbers.
11182
1921f1d7
AD
111832002-06-14 Akim Demaille <akim@epita.fr>
11184
11185 Grammar declarations may be found in the grammar section.
11186
11187 * src/parse-gram.y (rules_or_grammar_declaration): New.
11188 (declarations): Each declaration may end with a semicolon, not
11189 just...
11190 (grammar_declaration): `"%union"'.
11191 (grammar): Branch to rules_or_grammar_declaration.
11192
4515534c
AD
111932002-06-14 Akim Demaille <akim@epita.fr>
11194
11195 * src/main.c (main): Invoke scanner_free.
11196
f958596b
AD
111972002-06-14 Akim Demaille <akim@epita.fr>
11198
11199 * src/output.c (m4_invoke): Extracted from...
11200 (output_skeleton): here.
11201 Free tempfile.
11202
2c569025
AD
112032002-06-14 Akim Demaille <akim@epita.fr>
11204
11205 * src/parse-gram.y (directives, directive, gram)
11206 (grammar_directives, precedence_directives, precedence_directive):
11207 Rename as...
11208 (declarations, declaration, grammar, grammar_declaration)
11209 (precedence_declaration, precedence_declarator): these.
11210 (symbol_declaration): New.
11211
592e8d4d
AD
112122002-06-14 Akim Demaille <akim@epita.fr>
11213
11214 * src/files.c (action_obstack): Remove, unused.
11215 (output_obstack): Remove it, and all its dependencies, as it is no
11216 longer needed.
11217 * src/reader.c (epilogue_set): Build the epilogue in the
11218 muscle_obstack.
11219 * src/output.h, src/output.c (muscle_obstack): Move to...
11220 * src/muscle_tab.h, src/muscle_tab.h: here.
11221 (muscle_init): Initialize muscle_obstack.
11222 (muscle_free): New.
11223 * src/main.c (main): Call it.
11224
0c15323d
AD
112252002-06-14 Akim Demaille <akim@epita.fr>
11226
11227 * src/location.h: New, extracted from...
11228 * src/reader.h: here.
11229 * src/Makefile.am (noinst_HEADERS): Merge into
11230 (bison_SOURCES): this.
11231 Add location.h.
11232 * src/parse-gram.y: Use location_t instead of Bison's.
11233 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
11234 Use location_t instead of ints.
11235
e96c9728
AD
112362002-06-14 Akim Demaille <akim@epita.fr>
11237
11238 * data/bison.simple, data/bison.c++: Be sure to restore the
11239 current #line when returning to the skeleton contents after having
11240 exposed the input file's #line.
11241
75d1fe16
AD
112422002-06-12 Akim Demaille <akim@epita.fr>
11243
11244 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
11245 eager.
11246 * tests/actions.at (Exotic Dollars): New.
11247
6c35d22c
AD
112482002-06-12 Akim Demaille <akim@epita.fr>
11249
11250 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
11251 ['"/] too eagerly.
11252 * tests/input.at (Torturing the Scanner): New.
11253
1d6412ad
AD
112542002-06-11 Akim Demaille <akim@epita.fr>
11255
11256 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
11257 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
11258 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
11259 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
11260 * src/reader.c (reader): Use it.
11261
4cdb01db
AD
112622002-06-11 Akim Demaille <akim@epita.fr>
11263
11264 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
11265 Adjust all callers.
11266 (scanner_last_string_free): New.
11267
44995b2e
AD
112682002-06-11 Akim Demaille <akim@epita.fr>
11269
11270 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
11271 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
11272 (last_string, YY_OBS_FREE): New.
11273 Use them when returning an ID.
11274
e9955c83
AD
112752002-06-11 Akim Demaille <akim@epita.fr>
11276
11277 Have Bison grammars parsed by a Bison grammar.
11278
11279 * src/reader.c, src/reader.h (prologue_augment): New.
11280 * src/reader.c (copy_definition): Remove.
11281
11282 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
11283 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
11284 (grammar_current_rule_prec_set, grammar_current_rule_check)
11285 (grammar_current_rule_symbol_append)
11286 (grammar_current_rule_action_append): Export.
11287 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
11288 (symbol_list_action_append): Remove.
11289 Hook the routines from reader.
11290 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
11291 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
11292
11293 * src/reader.c (read_declarations): Remove, unused.
11294
11295 * src/parse-gram.y: Handle the epilogue.
11296 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
11297 (grammar_start_symbol_set): this.
11298 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
11299 * src/reader.c (readgram): Remove, unused.
11300 (reader): Adjust to insert eoftoken and axiom where appropriate.
11301
11302 * src/reader.c (copy_dollar): Replace with...
11303 * src/scan-gram.h (handle_dollar): this.
11304 * src/parse-gram.y: Remove `%thong'.
11305
11306 * src/reader.c (copy_at): Replace with...
11307 * src/scan-gram.h (handle_at): this.
11308
11309 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
11310 New.
11311
11312 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
11313 time being.
11314
11315 * src/reader.h, src/reader.c (grammar_rule_end): New.
11316
11317 * src/parse.y (current_type, current_class): New.
11318 Implement `%nterm', `%token' support.
11319 Merge `%term' into `%token'.
11320 (string_as_id): New.
11321 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
11322 type name.
11323
11324 * src/parse-gram.y: Be sure to handle properly the beginning of
11325 rules.
11326
11327 * src/parse-gram.y: Handle %type.
11328 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
11329
11330 * src/parse-gram.y: More directives support.
11331 * src/options.c: No longer handle source directives.
11332
11333 * src/parse-gram.y: Fix %output.
11334
11335 * src/parse-gram.y: Handle %union.
11336 Use the prologue locations.
11337 * src/reader.c (parse_union_decl): Remove.
11338
11339 * src/reader.h, src/reader.c (epilogue_set): New.
11340 * src/parse-gram.y: Use it.
11341
11342 * data/bison.simple, data/bison.c++: b4_stype is now either not
11343 defined, then default to int, or to the contents of %union,
11344 without `union' itself.
11345 Adjust.
11346 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
11347
11348 * src/output.c (actions_output): Don't output braces, as they are
11349 already handled by the scanner.
11350
11351 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
11352 characters to themselves.
11353
11354 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
11355 that the epilogue has a proper #line.
11356
11357 * src/parse-gram.y: Handle precedence/associativity.
11358
11359 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
11360 a terminal.
11361 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
11362 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
11363 at all to define terminals that cannot be emitted.
11364
11365 * src/scan-gram.l: Escape M4 characters.
11366
11367 * src/scan-gram.l: Working properly with escapes in user
11368 strings/characters.
11369
11370 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
11371 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
11372 grammar.
11373 Use more modest sizes, as for the time being the parser does not
11374 release memory, and therefore the process swallows a huge amount
11375 of memory.
11376
11377 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
11378 stricter %token grammar.
11379
11380 * src/symtab.h (associativity): Add `undef_assoc'.
11381 (symbol_precedence_set): Do nothing when passed an undef_assoc.
11382 * src/symtab.c (symbol_check_alias_consistence): Adjust.
11383
11384 * tests/regression.at (Invalid %directive): Remove, as it is now
11385 meaningless.
11386 (Invalid inputs): Adjust to the new error messages.
11387 (Token definitions): The new grammar doesn't allow too many
11388 eccentricities.
11389
11390 * src/lex.h, src/lex.c: Remove.
11391 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
11392 (copy_character, copy_string2, copy_string, copy_identifier)
11393 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
11394 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
11395 (parse_action): Remove.
11396 * po/POTFILES.in: Adjust.
11397
2e047461
AD
113982002-06-11 Akim Demaille <akim@epita.fr>
11399
cd05d13c 11400 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
11401 rule's action member: return the action as a string.
11402 Don't require `rule_length' as an argument: compute it.
11403 (grammar_current_rule_symbol_append)
11404 (grammar_current_rule_action_append): New, eved out from
11405 (readgram): here.
11406 Remove `action_flag', `rulelength', unused now.
11407
9af3fbce
AD
114082002-06-11 Akim Demaille <akim@epita.fr>
11409
11410 * src/reader.c (grammar_current_rule_prec_set).
11411 (grammar_current_rule_check): New, eved out from...
11412 (readgram): here.
11413 Remove `xaction', `first_rhs': useless.
11414 * tests/input.at (Type clashes): New.
11415 * tests/existing.at (GNU Cim Grammar): Adjust.
11416
1485e106
AD
114172002-06-11 Akim Demaille <akim@epita.fr>
11418
11419 * src/reader.c (grammar_midrule_action): New, Eved out from
11420 (readgram): here.
11421
da4160c3
AD
114222002-06-11 Akim Demaille <akim@epita.fr>
11423
11424 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
11425 New.
11426 (readgram): Use them as replacement of inlined code, crule and
11427 crule1.
11428
f6d0f937
AD
114292002-06-11 Akim Demaille <akim@epita.fr>
11430
11431 * src/reader.c (grammar_end, grammar_symbol_append): New.
11432 (readgram): Use them.
11433 Make the use of `p' as local as possible.
11434
69078d4b
AD
114352002-06-10 Akim Demaille <akim@epita.fr>
11436
11437 GCJ's parser requires the tokens to be defined before the prologue.
11438
11439 * data/bison.simple: Output the token definition before the user's
11440 prologue.
11441 * tests/regression.at (Braces parsing, Duplicate string)
11442 (Mixing %token styles): Check the output from bison.
11443 (Early token definitions): New.
11444
5e424082
AD
114452002-06-10 Akim Demaille <akim@epita.fr>
11446
11447 * src/symtab.c (symbol_user_token_number_set): Don't complain when
11448 assigning twice the same user number to a token, so that we can
11449 use it in...
11450 * src/lex.c (lex): here.
11451 Also use `symbol_class_set' instead of hand written code.
11452 * src/reader.c (parse_assoc_decl): Likewise.
11453
44536b35
AD
114542002-06-10 Akim Demaille <akim@epita.fr>
11455
11456 * src/symtab.c, src/symtab.c (symbol_class_set)
11457 (symbol_user_token_number_set): New.
11458 * src/reader.c (parse_token_decl): Use them.
11459 Use a switch instead of ifs.
11460 Use a single argument.
11461
8b9f2372
AD
114622002-06-10 Akim Demaille <akim@epita.fr>
11463
11464 Remove `%thong' support as it is undocumented, unused, duplicates
11465 `%token's job, and creates useless e-mail traffic with people who
11466 want to know what it is, why it is undocumented, unused, and
11467 duplicates `%token's job.
11468
11469 * src/reader.c (parse_thong_decl): Remove.
11470 * src/options.c (option_table): Remove "thong".
11471 * src/lex.h (tok_thong): Remove.
11472
3ae2b51f
AD
114732002-06-10 Akim Demaille <akim@epita.fr>
11474
11475 * src/symtab.c, src/symtab.c (symbol_type_set)
11476 (symbol_precedence_set): New.
11477 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
11478 (value_components_used): Remove, unused.
11479
2f1afb73
AD
114802002-06-09 Akim Demaille <akim@epita.fr>
11481
11482 Move symbols handling code out of the reader.
11483
11484 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
11485 (axiom): Move to...
11486 * src/symtab.h, src/symtab.c: here.
11487
11488 * src/gram.c (start_symbol): Remove: use startsymbol->number.
11489 * src/reader.c (startval): Rename as...
11490 * src/symtab.h, src/symtab.c (startsymbol): this.
11491 * src/reader.c: Adjust.
11492
11493 * src/reader.c (symbol_check_defined, symbol_make_alias)
11494 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11495 (token_translations_init)
11496 Move to...
11497 * src/symtab.c: here.
11498 * src/reader.c (packsymbols): Move to...
11499 * src/symtab.h, src/symtab.c (symbols_pack): here.
11500 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
11501 argument.
11502
e9bca3ad
AD
115032002-06-03 Akim Demaille <akim@epita.fr>
11504
11505 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
11506 then statements.
11507
86eff183
AD
115082002-06-03 Akim Demaille <akim@epita.fr>
11509
11510 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
11511 structs with non literals.
11512 * src/scan-skel.l: never-interactive.
11513 * src/conflicts.c (enum conflict_resolution_e): No trailing
11514 comma.
11515 * src/getargs.c (usage): Split long literal strings.
11516 Reported by Hans Aberg.
11517
717be197
AD
115182002-05-28 Akim Demaille <akim@epita.fr>
11519
11520 * data/bison.c++: Use C++ ostreams.
11521 (cdebug_): New member.
11522
670ddffd
AD
115232002-05-28 Akim Demaille <akim@epita.fr>
11524
11525 * src/output.c (output_skeleton): Be sure to allocate enough room
11526 for `/' _and_ for `\0' in full_skeleton.
11527
769b430f
AD
115282002-05-28 Akim Demaille <akim@epita.fr>
11529
11530 * data/bison.c++: Catch up with bison.simple:
11531 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11532 and Paul Eggert <eggert@twinsun.com>: `error' handing.
11533 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
11534 and popping traces.
11535
7067cb36
PH
115362002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11537
11538 * src/output.c (output_skeleton): Put an explicit path in front of
11539 the skeleton file name, rather than relying on the -I directory,
11540 to partially alleviate effects of having a skeleton file lying around
11541 in the current directory.
769b430f 11542
4a713ec2
PH
115432002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11544
769b430f 11545 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
11546 obstack_printf should be obstack_fgrow1.
11547
b408954b
AD
115482002-05-26 Akim Demaille <akim@epita.fr>
11549
11550 * src/state.h (state_t): `solved_conflicts' is a new member.
11551 * src/LR0.c (new_state): Set it to 0.
11552 * src/conflicts.h, src/conflicts.c (print_conflicts)
11553 (free_conflicts, solve_conflicts): Rename as...
11554 (conflicts_print, conflicts_free, conflicts_solve): these.
11555 Adjust callers.
11556 * src/conflicts.c (enum conflict_resolution_e)
11557 (solved_conflicts_obstack): New, used by...
11558 (log_resolution): this.
11559 Adjust to attach the conflict resolution to each state.
11560 Complete the description with the precedence/associativity
11561 information.
11562 (resolve_sr_conflict): Adjust.
11563 * src/print.c (print_state): Output its solved_conflicts.
11564 * tests/conflicts.at (Unresolved SR Conflicts)
11565 (Solved SR Conflicts): Exercise --report=all.
11566
a49aecd5
AD
115672002-05-26 Akim Demaille <akim@epita.fr>
11568
11569 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11570 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11571 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
11572 (token_number_t, item_number_as_token_number)
11573 (token_number_as_item_number, muscle_insert_token_number_table):
11574 Rename as...
11575 (symbol_number_t, item_number_as_symbol_number)
11576 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
11577 these, since it is more appropriate.
11578
5504898e
AD
115792002-05-26 Akim Demaille <akim@epita.fr>
11580
11581 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
11582 `Error:' lines.
11583 * data/bison.simple (yystos) [YYDEBUG]: New.
11584 (yyparse) [YYDEBUG]: Display the symbols which are popped during
11585 error recovery.
11586 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
11587
ec3bc396
AD
115882002-05-25 Akim Demaille <akim@epita.fr>
11589
11590 * doc/bison.texinfo (Debugging): Split into...
11591 (Tracing): this new section, its former contents, and...
11592 (Understanding): this new section.
11593 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
11594 by...
11595 (report_flag): this.
11596 Adjust all dependencies.
11597 (report_args, report_types, report_argmatch): New.
11598 (usage, getargs): Report/support -r, --report.
11599 * src/options.h
11600 (struct option_table_struct): Rename as..,
11601 (struct option_table_s): this.
11602 Rename the `set_flag' member to `flag' to match with getopt_long's
11603 struct.
11604 * src/options.c (option_table): Split verbose into an entry for
11605 %verbose, and another for --verbose.
11606 Support --report/-r, so remove -r from the obsolete --raw.
11607 * src/print.c: Attach full item sets and lookaheads reports to
11608 report_flag instead of trace_flag.
11609 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
11610
78df8250
PE
116112002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11612 and Paul Eggert <eggert@twinsun.com>
769b430f 11613
78df8250
PE
11614 * data/bison.simple (yyparse): Correct error handling to conform to
11615 POSIX and yacc. Specifically, after syntax error is discovered,
11616 do not reduce further before shifting the error token.
11617 Clean up the code a bit by removing the labels yyerrdefault,
11618 yyerrhandle, yyerrpop.
11619 * NEWS: Document the above.
11620
c0c9ea05
PH
116212002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11622
11623 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
11624 type; it isn't always big enough, since it doesn't necessarily
11625 include non-terminals.
769b430f 11626 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
11627 the latter can be removed.
11628 (yy_token_number_type): Remove, only one use.
11629 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
11630 don't use TokenNumberType as element type.
769b430f 11631
c0c9ea05
PH
11632 * tests/regression.at: Modify expected output to agree with change
11633 to yyr1 and yytranslate.
769b430f 11634
6390a83f
FK
116352002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
11636
11637 * src/reader.c (parse_action): Use copy_character instead of
11638 obstack_1grow.
11639
db7c8e9a
AD
116402002-05-13 Akim Demaille <akim@epita.fr>
11641
11642 * tests/regression.at (Token definitions): Prototype yylex and
11643 yyerror.
11644
fcc61800
PH
116452002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11646
158c687b 11647 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
11648 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
11649 32-bit arithmetic.
11650 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
11651
5683e9b2
AD
116522002-05-07 Akim Demaille <akim@epita.fr>
11653
11654 * tests/synclines.at: Be sure to prototype yylex and yyerror to
11655 avoid GCC warnings.
11656
0c2d3f4c
AD
116572002-05-07 Akim Demaille <akim@epita.fr>
11658
11659 Kill GCC warnings.
11660
11661 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
11662 over the RHS of each rule.
11663 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
11664 * src/state.h (state_t): Member `nitems' is unsigned short.
11665 * src/LR0.c (get_state): Adjust.
11666 * src/reader.c (packgram): Likewise.
11667 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
11668 `Type'.
11669 (muscle_insert_int_table): Remove, unused.
11670 (prepare_rules): Remove `max'.
11671
1565b720
AD
116722002-05-06 Akim Demaille <akim@epita.fr>
11673
11674 * src/closure.c (print_firsts): Display of the symbol tags.
11675 (bitmatrix_print): Move to...
11676 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
11677 here.
11678 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
11679
cfaee611
AD
116802002-05-06 Akim Demaille <akim@epita.fr>
11681
11682 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
11683 hash_do_for_each.
11684
458be8e0
AD
116852002-05-06 Akim Demaille <akim@epita.fr>
11686
11687 * src/LR0.c (new_state, get_state): Instead of using the global
11688 `kernel_size' and `kernel_base', have two new arguments:
11689 `core_size' and `core'.
11690 Adjust callers.
11691
a900a624
AD
116922002-05-06 Akim Demaille <akim@epita.fr>
11693
11694 * src/reader.c (packgram): No longer end `ritem' with a 0
11695 sentinel: it is not used.
11696
d4e7d3a1
AD
116972002-05-05 Akim Demaille <akim@epita.fr>
11698
11699 New experimental feature: display the lookaheads in the report and
11700 graph.
11701
11702 * src/print (print_core): When --trace-flag, display the rules
11703 lookaheads.
11704 * src/print_graph.c (print_core): Likewise.
11705 Swap the arguments.
11706 Adjust caller.
11707
39ceb25b
AD
117082002-05-05 Akim Demaille <akim@epita.fr>
11709
11710 * tests/torture.at (Many lookaheads): New test.
11711
5372019f
AD
117122002-05-05 Akim Demaille <akim@epita.fr>
11713
11714 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
11715 (GENERATE_MUSCLE_INSERT_TABLE): this.
11716 (output_int_table, output_unsigned_int_table, output_short_table)
11717 (output_token_number_table, output_item_number_table): Replace with...
11718 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
11719 (muscle_insert_short_table, muscle_insert_token_number_table)
11720 (muscle_insert_item_number_table): these.
11721 Adjust all callers.
11722 (prepare_tokens): Don't free `translations', since...
11723 * src/reader.h, src/reader.c (grammar_free): do it.
11724 Move to...
11725 * src/gram.h, src/gram.c (grammar_free): here.
11726 * data/bison.simple, data/bison.c++: b4_token_number_max is now
11727 b4_translate_max.
11728
5df5f6d5
AD
117292002-05-05 Akim Demaille <akim@epita.fr>
11730
11731 * src/output.c (output_unsigned_int_table): New.
11732 (prepare_rules): `i' is unsigned.
11733 `prhs', `rline', `r2' are unsigned int.
11734 Rename muscle `rhs_number_max' as `rhs_max'.
11735 Output muscles `prhs_max', `rline_max', and `r2_max'.
11736 Free rline and r1.
11737 * data/bison.simple, data/bison.c++: Adjust to use these muscles
11738 to compute types instead of constant types.
11739 * tests/regression.at (Web2c Actions): Adjust.
11740
b87f8b21
AD
117412002-05-04 Akim Demaille <akim@epita.fr>
11742
11743 * src/symtab.h (SALIAS, SUNDEF): Rename as...
11744 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
11745 Adjust dependencies.
11746 * src/output.c (token_definitions_output): Be sure not to output a
11747 `#define 'a'' when fed with `%token 'a' "a"'.
11748 * tests/regression.at (Token definitions): New.
11749
8bb936e4
PE
117502002-05-03 Paul Eggert <eggert@twinsun.com>
11751
11752 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
11753 for K&R C.
11754
117552002-05-03 gettextize <bug-gnu-gettext@gnu.org>
11756
11757 * Makefile.am (SUBDIRS): Remove intl.
11758 (EXTRA_DIST): Add config/config.rpath.
11759
53c71a12
AD
117602002-05-03 Akim Demaille <akim@epita.fr>
11761
11762 * data/bison.simple (m4_if): Don't output empty enums.
11763 And actually, output valid enum definitions :(.
11764
289dd0cf
AD
117652002-05-03 Akim Demaille <akim@epita.fr>
11766
11767 * configure.bat: Remove, completely obsolete.
11768 * Makefile.am (EXTRA_DIST): Adjust.
11769 Don't distribute config.rpath...
11770 * config/Makefile.am (EXTRA_DIST): Do it.
11771
db85e524
AD
117722002-05-03 Akim Demaille <akim@epita.fr>
11773
11774 * configure.in (GETTEXT_VERSION): New.
11775 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
11776
83ccf991
AD
117772002-05-03 Akim Demaille <akim@epita.fr>
11778
11779 * data/bison.simple (b4_token_enum): New.
11780 (b4_token_defines): Use it to output tokens both as #define and
11781 enums.
11782 Suggested by Paul Eggert.
11783 * src/output.c (token_definitions_output): Don't output spurious
11784 white spaces.
11785
1f418995
AD
117862002-05-03 Akim Demaille <akim@epita.fr>
11787
11788 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11789
45119f04
RA
117902002-05-02 Robert Anisko <robert@lrde.epita.fr>
11791
11792 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
11793 Update the stack class, give a try to deque as the default container.
11794
b2d52318
AD
117952002-05-02 Akim Demaille <akim@epita.fr>
11796
11797 * data/bison.simple (yyparse): Do not implement @$ = @1.
11798 (YYLLOC_DEFAULT): Adjust to do it.
11799 * doc/bison.texinfo (Location Default Action): Fix.
11800
3a8b4109
AD
118012002-05-02 Akim Demaille <akim@epita.fr>
11802
11803 * src/reader.c (parse_braces): Merge into...
11804 (parse_action): this.
11805
84614e13
AD
118062002-05-02 Akim Demaille <akim@epita.fr>
11807
11808 * configure.in (ALL_LINGUAS): Remove.
11809 * po/LINGUAS, hr.po: New.
11810
fdbcd8e2
AD
118112002-05-02 Akim Demaille <akim@epita.fr>
11812
11813 Remove the so called hairy (semantic) parsers.
11814
11815 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
11816 * src/gram.h, src/gram.c (semantic_parser): Remove.
11817 (rule_t): Remove the guard and guard_line members.
11818 * src/lex.h (token_t): remove tok_guard.
11819 * src/options.c (option_table): Remove %guard and %semantic_parser
11820 support.
11821 * src/output.c, src/output.h (guards_output): Remove.
11822 (prepare): Adjust.
11823 (token_definitions_output): Don't output the `T'
11824 tokens (???).
11825 (output_skeleton): Don't output the guards.
11826 * src/files.c, src/files.c (attrsfile): Remove.
11827 * src/reader.c (symbol_list): Remove the guard and guard_line
11828 members.
11829 Adjust dependencies.
11830 (parse_guard): Remove.
11831 * data/bison.hairy: Remove.
11832 * doc/bison.texinfo (Environment Variables): Remove occurrences of
11833 BISON_HAIRY.
11834
82b6cb3f
AD
118352002-05-02 Akim Demaille <akim@epita.fr>
11836
11837 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
11838 (parse_guard): Rename the formal argument `stack_offset' as
11839 `rule_length', which is more readable.
11840 Adjust callers.
11841 (copy_at, copy_dollar): Instead of outputting the hard coded
11842 values of $$, $n and so forth, output invocation to b4_lhs_value,
11843 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
11844 Note: this patch partially drops `semantic-parser' support: it
11845 always does `rule_length - n', where semantic parsers ought to
11846 always use `-n'.
82b6cb3f
AD
11847 * data/bison.simple, data/bison.c++ (b4_lhs_value)
11848 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
11849
6cbfbcc5
AD
118502002-05-02 Akim Demaille <akim@epita.fr>
11851
11852 * configure.in (AC_INIT): Bump to 1.49b.
11853 (AM_INIT_AUTOMAKE): Short invocation.
11854
b8548114
AD
118552002-05-02 Akim Demaille <akim@epita.fr>
11856
11857 Version 1.49a.
11858
c20cd1fa
AD
118592002-05-01 Akim Demaille <akim@epita.fr>
11860
11861 * src/skeleton.h: Remove.
11862
8a9566d4
AD
118632002-05-01 Akim Demaille <akim@epita.fr>
11864
11865 * src/skeleton.h: Fix the #endif.
11866 Reported by Magnus Fromreide.
11867
8c6d399a
PE
118682002-04-26 Paul Eggert <eggert@twinsun.com>
11869
11870 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
11871 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 11872 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 11873
2b7ed18a
RA
118742002-04-25 Robert Anisko <robert@lrde.epita.fr>
11875
11876 * src/scan-skel.l: Postprocess quadrigraphs.
11877
11878 * src/reader.c (copy_character): New function, used to output
11879 single characters while replacing `[' and `]' with quadrigraphs, to
11880 avoid troubles with M4 quotes.
11881 (copy_comment): Output characters with copy_character.
11882 (read_additionnal_code): Likewise.
11883 (copy_string2): Likewise.
11884 (copy_definition): Likewise.
11885
11886 * tests/calc.at: Exercise M4 quoting.
11887
34a89c50
AD
118882002-04-25 Akim Demaille <akim@epita.fr>
11889
11890 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
11891 between `!' and the command.
11892 Reported by Paul Eggert.
11893
0dd1580a
RA
118942002-04-24 Robert Anisko <robert@lrde.epita.fr>
11895
11896 * tests/calc.at: Exercise prologue splitting.
11897
11898 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
11899 `b4_post_prologue' instead of `b4_prologue'.
11900
11901 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
11902 muscles.
11903 (output): Free pre_prologue_obstack and post_prologue_obstack.
11904 * src/files.h, src/files.c (attrs_obstack): Remove.
11905 (pre_prologue_obstack, post_prologue_obstack): New.
11906 * src/reader.c (copy_definition): Add a parameter to specify the
11907 obstack to fill, instead of using attrs_obstack unconditionally.
11908 (read_declarations): Pass pre_prologue_obstack to copy_definition if
11909 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
11910
83c1796f
PE
119112002-04-23 Paul Eggert <eggert@twinsun.com>
11912
11913 * data/bison.simple: Remove unnecessary commentary and white
11914 space differences from 1_29-branch.
11915 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
11916
11917 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
11918 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
11919 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
11920 constructors or destructors.
11921
11922 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
11923
1207eeac
AD
119242002-04-23 Akim Demaille <akim@epita.fr>
11925
11926 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
11927 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
11928 location with columns.
11929 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
11930 All reported by Paul Eggert.
11931
78ab8f67
AD
119322002-04-22 Akim Demaille <akim@epita.fr>
11933
11934 * src/reduce.c (dump_grammar): Move to...
11935 * src/gram.h, src/gram.c (grammar_dump): here.
11936 Be sure to separate long item numbers.
11937 Don't read the members of a rule's prec if its nil.
11938
133c20e2
AD
119392002-04-22 Akim Demaille <akim@epita.fr>
11940
11941 * src/output.c (table_size, table_grow): New.
11942 (MAXTABLE): Remove, replace uses with table_size.
11943 (pack_vector): Instead of dying when the table is too big, grow it.
11944
9515e8a7
AD
119452002-04-22 Akim Demaille <akim@epita.fr>
11946
11947 * data/bison.simple (yyr1): Its type is that of a token number.
11948 * data/bison.c++ (r1_): Likewise.
11949 * tests/regression.at (Web2c Actions): Adjust.
11950
23c5a174
AD
119512002-04-22 Akim Demaille <akim@epita.fr>
11952
11953 * src/reader.c (token_translations_init): 256 is now the default
11954 value for the error token, i.e., it will be assigned another
11955 number if the user assigned 256 to one of her tokens.
11956 (reader): Don't force 256 to error.
11957 * doc/bison.texinfo (Symbols): Adjust.
11958 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
11959 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
11960 etc. instead of 10, 20, 30 (which was used to `jump' over error
11961 (256) and undefined (2)).
11962
5fbb0954
AD
119632002-04-22 Akim Demaille <akim@epita.fr>
11964
11965 Propagate more token_number_t.
11966
11967 * src/gram.h (token_number_as_item_number)
11968 (item_number_as_token_number): New.
11969 * src/output.c (GENERATE_OUTPUT_TABLE): New.
11970 Use it to create output_item_number_table and
11971 output_token_number_table.
11972 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11973 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
11974 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
11975 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
11976
4f940944
AD
119772002-04-22 Akim Demaille <akim@epita.fr>
11978
11979 * src/output.h, src/output.c (get_lines_number): Remove.
11980
3ded9a63
AD
119812002-04-19 Akim Demaille <akim@epita.fr>
11982
11983 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
11984 as Lex/Flex'.
11985 (Debugging): More details about enabling the debugging features.
11986 (Table of Symbols): Describe $$, $n, @$, and @n.
11987 Suggested by Tim Josling.
11988
e0c471a9
AD
119892002-04-19 Akim Demaille <akim@epita.fr>
11990
11991 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
11992
fecc10cd
AD
119932002-04-10 Akim Demaille <akim@epita.fr>
11994
11995 * src/system.h: Rely on HAVE_LIMITS_H.
11996 Suggested by Paul Eggert.
11997
51dec47b
AD
119982002-04-09 Akim Demaille <akim@epita.fr>
11999
12000 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
12001 full stderr, and strip it according to the bison options, instead
12002 of composing the error message from different bits.
12003 This makes it easier to check for several error messages.
12004 Adjust all the invocations.
12005 Add an invocation exercising the error token.
12006 Add an invocation demonstrating a stupid error message.
12007 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
12008 Adjust the tests.
12009 Error message are for stderr, not stdout.
12010
007a50a4
AD
120112002-04-09 Akim Demaille <akim@epita.fr>
12012
12013 * src/gram.h, src/gram.c (error_token_number): Remove, use
12014 errtoken->number.
12015 * src/reader.c (reader): Don't specify the user token number (2)
12016 for $undefined, as it uselessly prevents using it.
12017 * src/gram.h (token_number_t): Move to...
12018 * src/symtab.h: here.
12019 (state_t.number): Is a token_number_t.
12020 * src/print.c, src/reader.c: Use undeftoken->number instead of
12021 hard coded 2.
12022 (Even though this 2 is not the same as above: the number of the
12023 undeftoken remains being 2, it is its user token number which
12024 might not be 2).
12025 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
12026 `user_token_number_max'.
12027 Output `undef_token_number'.
12028 * data/bison.simple, data/bison.c++: Use them.
12029 Be sure to map invalid yylex return values to
12030 `undef_token_number'. This saves us from gratuitous SEGV.
12031
12032 * tests/conflicts.at (Solved SR Conflicts)
12033 (Unresolved SR Conflicts): Adjust.
12034 * tests/regression.at (Web2c Actions): Adjust.
12035
06446ccf
AD
120362002-04-08 Akim Demaille <akim@epita.fr>
12037
12038 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
12039 Adding #line.
12040 Remove the duplicate `typedefs'.
12041 (RhsNumberType): Fix the declaration and various other typos.
12042 Use __ofile__.
12043 * data/bison.simple: Use __ofile__.
12044 * src/scan-skel.l: Handle __ofile__.
12045
62a3e4f0
AD
120462002-04-08 Akim Demaille <akim@epita.fr>
12047
12048 * src/gram.h (item_number_t): New, the type of item numbers in
12049 RITEM. Note that it must be able to code symbol numbers as
12050 positive number, and the negation of rule numbers as negative
12051 numbers.
12052 Adjust all dependencies (pretty many).
12053 * src/reduce.c (rule): Remove this `short *' pointer: use
12054 item_number_t.
12055 * src/system.h (MINSHORT, MAXSHORT): Remove.
12056 Include `limits.h'.
12057 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
12058 (shortcpy): Remove.
12059 (MAXTABLE): Move to...
12060 * src/output.c (MAXTABLE): here.
12061 (prepare_rules): Use output_int_table to output rhs.
12062 * data/bison.simple, data/bison.c++: Adjust.
12063 * tests/torture.at (Big triangle): Move the limit from 254 to
12064 500.
12065 * tests/regression.at (Web2c Actions): Ajust.
12066
12067 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
12068 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
12069 passes, but produces negative #line number, once fixed, GCC is
12070 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
12071 C), it passes.
12072 * src/state.h (state_h): Code input lines on ints, not shorts.
12073
bb88b0fc
AD
120742002-04-08 Akim Demaille <akim@epita.fr>
12075
12076 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
12077 and then the grammar.
12078
9a636f47
AD
120792002-04-08 Akim Demaille <akim@epita.fr>
12080
12081 * src/system.h: No longer using strndup.
12082
680e8701
AD
120832002-04-07 Akim Demaille <akim@epita.fr>
12084
12085 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
12086 * src/output.c (output_table_data): Return the longest number.
12087 (prepare_tokens): Output `token_number_max').
12088 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
12089 New.
12090 Use them to define yy_token_number_type/TokenNumberType.
12091 Use this type for yytranslate.
12092 * tests/torture.at (Big triangle): Push the limit from 124 to
12093 253.
12094 * tests/regression.at (Web2c Actions): Adjust.
12095
817e9f41
AD
120962002-04-07 Akim Demaille <akim@epita.fr>
12097
12098 * tests/torture.at (Big triangle): New.
12099 (GNU AWK Grammar, GNU Cim Grammar): Move to...
12100 * tests/existing.at: here.
12101
5123689b
AD
121022002-04-07 Akim Demaille <akim@epita.fr>
12103
12104 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
12105 nritems.
12106 Adjust dependencies.
12107
f3849179
AD
121082002-04-07 Akim Demaille <akim@epita.fr>
12109
12110 * src/reader.c: Normalize increments to prefix form.
12111
bd02036a
AD
121122002-04-07 Akim Demaille <akim@epita.fr>
12113
12114 * src/reader.c, symtab.c: Remove debugging code.
12115
db8837cb
AD
121162002-04-07 Akim Demaille <akim@epita.fr>
12117
12118 Rename all the `bucket's as `symbol_t'.
12119
12120 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
12121 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
12122 * src/symtab.c, src/symtab.h (bucket): Rename as...
12123 (symbol_t): this.
12124 (symbol_list_new, bucket_check_defined, bucket_make_alias)
12125 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
12126 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
12127 (buckets_new, buckets_free, buckets_do): Rename as...
12128 (symbol_list_new, symbol_check_defined, symbol_make_alias)
12129 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
12130 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
12131 (symbols_new, symbols_free, symbols_do): these.
12132
72a23c97
AD
121332002-04-07 Akim Demaille <akim@epita.fr>
12134
12135 Use lib/hash for the symbol table.
12136
12137 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
12138 EOF.
12139 * src/lex.c (lex): Set the `number' member of new terminals.
12140 * src/reader.c (bucket_check_defined, bucket_make_alias)
12141 (bucket_check_alias_consistence, bucket_translation): New.
12142 (reader, grammar_free, readgram, token_translations_init)
12143 (packsymbols): Adjust.
12144 (reader): Number the predefined tokens.
12145 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
12146 for predefined tokens.
12147 * src/symtab.h (bucket): Remove all the hash table related
12148 members.
12149 * src/symtab.c (symtab): Replace by...
12150 (bucket_table): this.
12151 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
12152 (buckets_new, buckets_do): New.
12153
280a38c3
AD
121542002-04-07 Akim Demaille <akim@epita.fr>
12155
12156 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
12157 (start_symbol, max_user_token_number, semantic_parser)
12158 (error_token_number): Initialize.
12159 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
12160 Initialize.
12161 (reader): Don't.
12162 (errtoken, eoftoken, undeftoken, axiom): Extern.
12163
03b31c0c
AD
121642002-04-07 Akim Demaille <akim@epita.fr>
12165
12166 * src/gram.h (rule_s): prec and precsym are now pointers
12167 to the bucket giving the priority/associativity.
12168 Member `associativity' removed: useless.
12169 * src/reduce.c, src/conflicts.c: Adjust.
12170
8b3df748
AD
121712002-04-07 Akim Demaille <akim@epita.fr>
12172
12173 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
12174 Properly escape the symbols' TAG when outputting them.
12175
e601aa1d
AD
121762002-04-07 Akim Demaille <akim@epita.fr>
12177
12178 * src/lalr.h (LA): Is a bitsetv, not bitset*.
12179
b0299a2e
AD
121802002-04-07 Akim Demaille <akim@epita.fr>
12181
12182 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
12183 (LArule): this, which is an array to rule_t*.
12184 * src/print.c, src/conflicts.c: Adjust.
12185
d7e1f00c
AD
121862002-04-07 Akim Demaille <akim@epita.fr>
12187
12188 * src/gram.h (rule_t): Rename `number' as `user_number'.
12189 `number' is a new member.
12190 Adjust dependencies.
12191 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
12192
cc9305dd
AD
121932002-04-07 Akim Demaille <akim@epita.fr>
12194
12195 As a result of the previous patch, it is no longer needed
12196 to reorder ritem itself.
12197
12198 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
12199
b0940840
AD
122002002-04-07 Akim Demaille <akim@epita.fr>
12201
12202 Be sure never to walk through RITEMS, but use only data related to
12203 the rules themselves. RITEMS should be banished.
12204
12205 * src/output.c (output_token_translations): Rename as...
12206 (prepare_tokens): this.
12207 In addition to `translate', prepare the muscles `tname' and
12208 `toknum', which were handled by...
12209 (output_rule_data): this.
12210 Remove, and move the remainder of its outputs into...
12211 (prepare_rules): this new routines, which also merges content from
12212 (output_gram): this.
12213 (prepare_rules): Be sure never to walk through RITEMS.
12214 (output_stos): Rename as...
12215 (prepare_stos): this.
12216 (output): Always invoke prepare_states, after all, just don't use it
12217 in the output if you don't need it.
12218
643a5994
AD
122192002-04-07 Akim Demaille <akim@epita.fr>
12220
12221 * src/LR0.c (new_state): Display `nstates' as the name of the
12222 newly created state.
12223 Adjust to initialize first_state and last_state if needed.
12224 Be sure to distinguish the initial from the final state.
12225 (new_states): Create the itemset of the initial state, and use
12226 new_state.
12227 * src/closure.c (closure): Now that the initial state has its
12228 items properly set, there is no need for a special case when
12229 creating `ruleset'.
12230
12231 As a result, now the rule 0, reducing to $axiom, is visible in the
12232 outputs. Adjust the test suite.
12233
12234 * tests/conflicts.at (Solved SR Conflicts)
12235 (Unresolved SR Conflicts): Adjust.
12236 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
12237 * tests/conflicts.at (S/R in initial): New.
12238
b4c4ccc2
AD
122392002-04-07 Akim Demaille <akim@epita.fr>
12240
12241 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
12242 the RHS of the rules.
12243 * src/output.c (output_gram): Likewise.
12244
bba97eb2
AD
122452002-04-07 Akim Demaille <akim@epita.fr>
12246
12247 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
12248 bucket.
12249 Adjust all dependencies.
12250 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
12251 `number' of the buckets too.
12252 * src/gram.h: Include `symtab.h'.
12253 (associativity): Move to...
12254 * src/symtab.h: here.
12255 No longer include `gram.h'.
12256
c3b407f4
AD
122572002-04-07 Akim Demaille <akim@epita.fr>
12258
12259 * src/gram.h, src/gram.c (rules_rhs_length): New.
12260 (ritem_longest_rhs): Use it.
12261 * src/gram.h (rule_t): `number' is a new member.
12262 * src/reader.c (packgram): Set it.
12263 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
12264 the end of `rules', and count them out of `nrules'.
12265 (reduce_output, dump_grammar): Adjust.
12266 * src/print.c (print_grammar): It is no longer needed to check for
12267 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
12268 * tests/reduce.at (Reduced Automaton): New test.
12269
11652ab3
AD
122702002-04-07 Akim Demaille <akim@epita.fr>
12271
12272 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
12273 lacking `+ 1' to nrules, Bison reported as useless a token if it
12274 was used solely to set the precedence of the last rule...
12275
26b23c1a
AD
122762002-04-07 Akim Demaille <akim@epita.fr>
12277
12278 * data/bison.c++, data/bison.simple: Don't output the current file
12279 name in #line, to avoid useless diffs between two identical
12280 outputs under different names.
12281
18bcecb0
AD
122822002-04-07 Akim Demaille <akim@epita.fr>
12283
12284 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
12285 Normalize loops to using `< nrules + 1', not `<= nrules'.
12286
fa770c86
AD
122872002-04-07 Akim Demaille <akim@epita.fr>
12288
12289 * TODO: Update.
12290
d9b739c3
AD
122912002-04-07 Akim Demaille <akim@epita.fr>
12292
12293 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
12294 bucket.value as bucket.number.
12295
99013900
AD
122962002-04-07 Akim Demaille <akim@epita.fr>
12297
12298 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
12299 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
12300 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
12301 RHS, instead of being an index in RITEMS.
12302
e966383b
PE
123032002-04-04 Paul Eggert <eggert@twinsun.com>
12304
12305 * doc/bison.texinfo: Update copyright date.
12306 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
12307 (Symbols): Warn about running Bison in one character set,
12308 but compiling and/or running in an incompatible one.
12309 Warn about character code 256, too.
12310
123112002-04-03 Paul Eggert <eggert@twinsun.com>
12312
12313 * src/bison.data (YYSTACK_ALLOC): Depend on whether
12314 YYERROR_VERBOSE is nonzero, not whether it is defined.
12315
12316 Merge changes from bison-1_29-branch.
c307773e 12317
8d6c48b9
PE
123182002-03-20 Paul Eggert <eggert@twinsun.com>
12319
12320 Merge fixes from Debian bison_1.34-1.diff.
12321
12322 * configure.in (AC_PREREQ): 2.53.
12323
e53c6322
AD
123242002-03-20 Akim Demaille <akim@epita.fr>
12325
12326 * src/conflicts.c (log_resolution): Argument `resolution' is const.
12327
9ffbeca7
PE
123282002-03-19 Paul Eggert <eggert@twinsun.com>
12329
21db0b2a
PE
12330 * src/bison.simple (YYCOPY): New macro.
12331 (YYSTACK_RELOCATE): Use it.
12332 Remove Type arg; no longer needed. All callers changed.
12333 (yymemcpy): Remove; no longer needed.
12334
9ffbeca7
PE
12335 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
12336 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12337
642cb8f8
AD
123382002-03-19 Akim Demaille <akim@epita.fr>
12339
12340 Test and fix the #line outputs.
12341
12342 * tests/atlocal.at (GCC): New.
12343 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 12344 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
12345 (Action synch line, Epilogue synch line): New tests.
12346 * src/reader.c (parse_union_decl): Define the muscle stype_line.
12347 * data/bison.simple, data/bison.c++: Use it.
12348
3c31a486
AD
123492002-03-19 Akim Demaille <akim@epita.fr>
12350
12351 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
12352 (Solved SR Conflicts, %expect not enough, %expect right)
12353 (%expect too much): Move to...
12354 * tests/conflicts.at: this new file.
12355
0d8bed56
AD
123562002-03-19 Akim Demaille <akim@epita.fr>
12357
12358 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
12359 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
12360 that we can move to enums for instance.
12361 * src/output.c (token_definitions_output): Output a list of
12362 `token-name, token-number' instead of the #define.
12363 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
12364
9208d17f
AD
123652002-03-14 Akim Demaille <akim@epita.fr>
12366
12367 Use Gettext 0.11.1.
12368
af27eacb
RA
123692002-03-09 Robert Anisko <robert@lrde.epita.fr>
12370
12371 * data/bison.c++: Make the user able to add members to the generated
12372 parser by subclassing.
12373
9101a310
RA
123742002-03-05 Robert Anisko <robert@lrde.epita.fr>
12375
12376 * src/reader.c (read_additionnal_code): `c' should be an integer, not
12377 a character.
12378 Reported by Nicolas Tisserand and Nicolas Burrus.
12379
fff9bf0b
RA
123802002-03-04 Robert Anisko <robert@lrde.epita.fr>
12381
12382 * src/reader.c: Warn about lacking semi-colons, do not complain.
12383
64dba31e
RA
123842002-03-04 Robert Anisko <robert@lrde.epita.fr>
12385
12386 * data/bison.c++: Remove a debug line.
12387
374f5a14
RA
123882002-03-04 Robert Anisko <robert@lrde.epita.fr>
12389
12390 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
12391 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
12392 provide a default implementation.
12393
bfcf1f3a
AD
123942002-03-04 Akim Demaille <akim@epita.fr>
12395
12396 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
12397 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
12398 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
12399 * tests/semantic.at (Parsing Guards): Similarly.
12400 * src/reader.at (readgram): Complain if the last rule is not ended
12401 with a semi-colon.
12402
65ccf9fc
AD
124032002-03-04 Akim Demaille <akim@epita.fr>
12404
12405 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
12406 * src/closure.c: here.
12407 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
12408 RTC.
12409 * src/warshall.h, src/warshall.c: Remove.
12410 * tests/sets.at (Broken Closure): Adjust.
12411
d0039cbc
AD
124122002-03-04 Akim Demaille <akim@epita.fr>
12413
12414 * src/output.c (output_skeleton): tempdir is const.
12415 bytes_read is unused.
12416
345cea78
AD
124172002-03-04 Akim Demaille <akim@epita.fr>
12418
12419 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12420 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
12421 Update.
12422 From Michael Hayes.
12423
564801f7
AD
124242002-03-04 Akim Demaille <akim@epita.fr>
12425
12426 * src/closure.c (closure): `r' is unused.
12427
e5352bc7
AD
124282002-03-04 Akim Demaille <akim@epita.fr>
12429
12430 * tests/sets.at (Broken Closure): Add the ending `;'.
12431 * src/reader.at (readgram): Complain if a rule is not ended with a
12432 semi-colon.
12433
914feea9
AD
124342002-03-04 Akim Demaille <akim@epita.fr>
12435
12436 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
12437 (count_sr_conflicts): Use bitset_count.
12438 * src/reduce.c (inaccessable_symbols): Ditto.
12439 (bits_size): Remove.
12440 * src/warshall.h, src/warshall.c: Convert to bitsetv.
12441
f0250de6
AD
124422002-03-04 Akim Demaille <akim@epita.fr>
12443
12444 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
12445 * src/reduce.c: Remove the `bitset_zero's following the
12446 `bitset_create's, as now it is performed by the latter.
12447
ef017502
AD
124482002-03-04 Akim Demaille <akim@epita.fr>
12449
12450 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
12451 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
12452 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
12453 latest sources from Michael.
12454
76514394
AD
124552002-03-04 Akim Demaille <akim@epita.fr>
12456
12457 * src/output.c (output): Don't free the grammar.
12458 * src/reader.c (grammar_free): New.
12459 * src/main.c (main): Call it and don't free symtab here.
12460
55024580
AD
124612002-03-04 Akim Demaille <akim@epita.fr>
12462
12463 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
12464 before returning.
12465 Reported by Benoit Perrot.
12466
f9abaa2c
AD
124672002-03-04 Akim Demaille <akim@epita.fr>
12468
12469 Use bitset operations when possible, not loops over bits.
12470
12471 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
12472 bitset_or.
12473 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
12474 * src/reduce.c (useless_nonterminals): Formatting changes.
12475 * src/warshall.c (TC): Use bitset_or.
12476
0e721e75
AD
124772002-03-04 Akim Demaille <akim@epita.fr>
12478
12479 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
12480 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
12481 Ditto.
12482
0fb1ffb1
AD
124832002-03-04 Akim Demaille <akim@epita.fr>
12484
12485 * src/lalr.c (F): Now a bitset*.
12486 Adjust all dependencies.
12487
b86796bf
AD
124882002-03-04 Akim Demaille <akim@epita.fr>
12489
12490 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
12491 Adjust all dependencies.
12492
602bbf31
AD
124932002-03-04 Akim Demaille <akim@epita.fr>
12494
12495 * src/L0.c, src/LR0.h (nstates): Be size_t.
12496 Adjust comparisons (signed vs unsigned).
12497 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
12498 bitset*.
12499 Adjust all dependencies.
12500
d8a0245c
AD
125012002-03-04 Akim Demaille <akim@epita.fr>
12502
12503 * src/closure.c (firsts): Now, also a bitset.
12504 Adjust all dependencies.
12505 (varsetsize): Remove, now unused.
12506 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
12507
34ba9743
AD
125082002-03-04 Akim Demaille <akim@epita.fr>
12509
12510 * src/print.c: Convert to use bitset.h, not hand coded iterations
12511 over ints.
12512
ed86e78c
AD
125132002-03-04 Akim Demaille <akim@epita.fr>
12514
12515 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
12516
dfdb1797
AD
125172002-03-04 Akim Demaille <akim@epita.fr>
12518
12519 * src/closure.c (ruleset): Be a bitset.
12520 (rulesetsize): Remove.
12521
7086e707
AD
125222002-03-04 Akim Demaille <akim@epita.fr>
12523
12524 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12525 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
12526 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
12527 * src/closure.c (fderives): Be an array of bitsets.
12528
98254360
RA
125292002-02-28 Robert Anisko <robert@lrde.epita.fr>
12530
12531 * data/bison.c++: Merge the two generated headers. Insert a copyright
12532 notice in each output file.
12533
a75c057f
AD
125342002-02-28 Akim Demaille <akim@epita.fr>
12535
12536 * data/bison.c++: Copy the prologue of bison.simple to fetch
12537 useful M4 definitions, such as b4_header_guard.
12538
06b00abc
AD
125392002-02-25 Akim Demaille <akim@epita.fr>
12540
12541 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
12542 translator friendly scheme for the bgr
12543 copyright notice.
06b00abc 12544
70e7d534
AD
125452002-02-25 Akim Demaille <akim@epita.fr>
12546
12547 * src/output.c (header_output): Remove, now handled completely via
12548 M4.
12549
abe017f6
AD
125502002-02-25 Akim Demaille <akim@epita.fr>
12551
12552 * m4/m4.m4: New, from CVS Autoconf.
12553 * configure.in: Invoke it.
12554 * src/output.c (output_skeleton): Use its result instead of the
12555 hard coded name.
12556
381fb12e
AD
125572002-02-25 Akim Demaille <akim@epita.fr>
12558
12559 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
12560 Fileutils 4.1.5.
12561 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
12562 * src/output.c (output_skeleton): Use mkstemp to create a real
12563 temporary file.
12564 Move the filling of `skeleton' and its muscle to...
12565 (prepare): here.
12566 (output): Move the definition of the prologue muscle to...
12567 (prepare): here.
12568 * src/system.h (DEFAULT_TMPDIR): New.
12569
6f38107f
PE
125702002-02-14 Paul Eggert <eggert@twinsun.com>
12571
12572 Remove the support for C++ namespace cleanliness; it was
12573 causing more problems than it was curing, since it didn't work
12574 properly on some nonstandard C++ compilers. This can wait
12575 for a proper C++ parser.
12576
12577 * NEWS: Document this.
12578 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
12579 of C++, as it's treated like C now.
12580 * src/bison.simple (YYSTD): Remove.
12581 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
12582 Treat C++ just like Standard C instead of trying to support
12583 namespace cleanliness.
12584
80cce3da
AD
125852002-02-14 Akim Demaille <akim@epita.fr>
12586
12587 * tests/regression.at (else): Adjust to Andreas' change.
12588
842e8679
AD
125892002-02-14 Akim Demaille <akim@epita.fr>
12590
12591 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
12592
4bda3f10
AD
125932002-02-13 Andreas Schwab <schwab@suse.de>
12594
12595 * src/output.c (output_rule_data): Don't output NULL, it might
12596 not be defined yet.
12597
4162fa07 125982002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 12599
4162fa07
RA
12600 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
12601 (Copyright notice): Update.
b418ecd8 12602
bd16a5dc
AD
126032002-02-11 Akim Demaille <akim@epita.fr>
12604
12605 * tests/regression.at (%nonassoc and eof): Don't include
12606 nonportable headers.
12607
8d69a1a3
RA
126082002-02-08 Robert Anisko <robert@lrde.epita.fr>
12609
12610 * data/bison.c++: Correct error recovery. Make the user able to
12611 initialize the starting location.
12612
9b2d0677
AD
126132002-02-07 Akim Demaille <akim@epita.fr>
12614
12615 * tests/input.at: New.
12616
69e2658b
RA
126172002-02-07 Robert Anisko <robert@lrde.epita.fr>
12618
12619 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 12620 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
12621 directives around tables only needed for debugging.
12622
4aacc3a7
RA
126232002-02-07 Robert Anisko <robert@lrde.epita.fr>
12624
12625 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
12626 C++ parsers.
12627 (yy::b4_name::parse): Use print_.
12628
762a801e
RA
126292002-02-07 Robert Anisko <robert@lrde.epita.fr>
12630
12631 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
12632
4bb2bc3f
RA
126332002-02-07 Robert Anisko <robert@lrde.epita.fr>
12634
12635 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
12636 C++ parsers.
12637 (yy::b4_name::parse): Build verbose error messages, and use error_.
12638
6b45a3ca
RA
126392002-02-06 Robert Anisko <robert@lrde.epita.fr>
12640
12641 * data/bison.c++: Fix m4 quoting in comments.
12642
50997c6e
RA
126432002-02-06 Robert Anisko <robert@lrde.epita.fr>
12644
12645 * data/bison.c++: Adjust the parser code. Fix some muscles that were
12646 not expanded by m4.
12647
3f3eed27
AD
126482002-02-05 Akim Demaille <akim@epita.fr>
12649
12650 * data/bison.c++: Adjust to the M4 back end.
12651 More is certainly needed.
12652
be2a1a68
AD
126532002-02-05 Akim Demaille <akim@epita.fr>
12654
12655 Give a try to M4 as a back end.
12656
12657 * lib/readpipe.c: New, from wdiff.
12658 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
12659 BISON_HAIRY.
12660 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
12661 specific values. Now it is m4 that performs the lookup.
12662 * src/parse-skel.y: Remove.
12663 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
12664 * src/output.c (actions_output, guards_output)
12665 (token_definitions_output): No longer keeps track of the output
12666 line number, hence remove the second argument.
12667 (guards_output): Check against the guard member of a rule, not the
12668 action member.
12669 Adjust callers.
12670 (output_skeleton): Don't look for the skeleton location, let m4 do
12671 that.
12672 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
12673 file will be used.
12674 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
12675 (prepare): Given that for the time being changesyntax is not
12676 usable in M4, rename the muscles using `-' to `_'.
12677 Define `defines_flag', `output_parser_name' and `output_header_name'.
12678 * src/output.h (actions_output, guards_output)
12679 (token_definitions_output): Adjust prototypes.
12680 * src/scan-skel.l: Instead of scanning the skeletons, it now
12681 processes the output of m4: `__oline__' and `#output'.
12682 * data/bison.simple: Adjust to be used by M4(sugar).
12683 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
12684 to date.
12685 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
12686 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
12687 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
12688 shamelessly stolen from CVS Autoconf.
12689
beda758b
AD
126902002-02-05 Akim Demaille <akim@epita.fr>
12691
12692 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
12693 * configure.in: Check for the declarations of free and malloc.
12694 * src/muscle_tab.c: Adjust.
12695
5ece6d43
AD
126962002-02-05 Akim Demaille <akim@epita.fr>
12697
12698 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
12699 which have no values.
12700
5bb18f9a
AD
127012002-02-05 Akim Demaille <akim@epita.fr>
12702
12703 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
12704 * data/: here.
12705
894dd62e
PE
127062002-01-29 Paul Eggert <eggert@twinsun.com>
12707
12708 * src/bison.simple (YYSIZE_T): Do not define merely because
12709 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
12710 On some platforms, <alloca.h> does not declare YYSTD (size_t).
12711
82841af7
AD
127122002-01-27 Akim Demaille <akim@epita.fr>
12713
12714 Fix `%nonassoc and eof'.
12715
12716 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
12717 which were not properly copied! Replace
12718 memcpy (res->errs, src->errs, src->nerrs);
12719 with
12720 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
12721 !!!
12722 * tests/regression.at (%nonassoc and eof): Adjust to newest
12723 Autotest: `.' is not in the PATH.
12724
318b76e9
AD
127252002-01-27 Akim Demaille <akim@epita.fr>
12726
12727 * tests/sets.at (AT_EXTRACT_SETS): New.
12728 (Nullable): Use it.
12729 (Firsts): New.
12730
30d2f3d5
AD
127312002-01-26 Akim Demaille <akim@epita.fr>
12732
12733 * tests/actions.at, tests/calc.at, tests/headers.at,
12734 * tests/torture.at: Adjust to the newest Autotest which no longer
12735 forces `.' in the PATH.
12736
30f8c395
AD
127372002-01-25 Akim Demaille <akim@epita.fr>
12738
12739 * tests/regression.at (%nonassoc and eof): New.
12740 Suggested by Robert Anisko.
12741
29ae55f1
AD
127422002-01-24 Akim Demaille <akim@epita.fr>
12743
12744 Bison dumps core when trying to complain about broken input files.
12745 Reported by Cris van Pelt.
12746
12747 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
12748 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
12749 into...
12750 (Invalid inputs): Strengthen: exercise parse_percent_token.
12751
2b548aa6
RA
127522002-01-24 Robert Anisko <robert.anisko@epita.fr>
12753
12754 * src/Makefile.am: Add bison.c++.
12755 * src/bison.c++: New skeleton.
12756
bb0146c2
AD
127572002-01-21 Paolo Bonzini <bonzini@gnu.org>
12758
12759 * po/it.po: New.
12760
bec30531
AD
127612002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
12762
12763 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
12764
fc6edc45
MA
127652002-01-20 Marc Autret <marc@gnu.org>
12766
12767 * src/files.c (compute_output_file_names): Fix
12768
5e5d5415
MA
127692002-01-20 Marc Autret <marc@gnu.org>
12770
12771 * tests/output.at: New test.
12772 * src/files.c (compute_base_names): Don't map extensions when
12773 the YACC flag is set, use defaults.
12774 Reported by Evgeny Stambulchik.
12775
44ea3fbd
MA
127762002-01-20 Marc Autret <marc@gnu.org>
12777
ba0fe3c7
PE
12778 * src/system.h: Need to define __attribute__ away for non-GCC
12779 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
12780 Suggested by Albert Chin-A-Young.
12781
338963d1
TVH
127822002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
12783
12784 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
12785 canonical definition.
12786 * src/system.h: Use the canonical definition for PARAMS (avoids
12787 a conflict with the macro from lib/hash.h).
12788
c57b2479
AD
127892002-01-11 Akim Demaille <akim@epita.fr>
12790
12791 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 12792 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 12793
b85810ae
AD
127942002-01-09 Akim Demaille <akim@epita.fr>
12795
12796 * src/files.c, src/files.h (output_infix): New.
12797 (tab_extension): Remove.
12798 (compute_base_names): Compute the former, drop the latter.
12799 * src/output.c (prepare): Insert the muscles `output-infix', and
12800 `output-suffix'.
12801 * src/parse-skel.y (string, string.1): New.
12802 (section.header): Use it.
12803 (section.yacc): Remove.
12804 (prefix): Remove too.
12805 * src/scan-skel.l: Adjust.
12806 * src/bison.simple, src/bison.hairy: Adjust.
12807
cae60122
AD
128082002-01-09 Akim Demaille <akim@epita.fr>
12809
12810 * configure.in (WERROR_CFLAGS): Compute it.
12811 * src/Makefile.am (CFLAGS): Pass it.
12812 * tests/atlocal.in (CFLAGS): Idem.
12813 * src/files.c: Fix a few warnings.
12814 (get_extension_index): Remove, unused.
12815
ae404801
AD
128162002-01-08 Akim Demaille <akim@epita.fr>
12817
12818 * src/getargs.c (AS_FILE_NAME): New.
12819 (getargs): Use it to convert DOSish file names.
12820 * src/files.c (base_name): Rename as full_base_name to avoid
12821 clashes with `base_name ()'.
12822 (filename_split): New.
12823 (compute_base_names): N-th rewrite, using filename_split.
12824
22312b71
AD
128252002-01-08 Akim Demaille <akim@epita.fr>
12826
12827 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
12828 New, stolen from the Fileutils 4.1.
12829 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
12830 * configure.in: Check for the presence of memrchr, and of its
12831 prototype.
12832
a67cef01
TVH
128332002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
12834
12835 * lib/hash.h (__P): Added definition for this macro.
12836 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
12837 BUILT_SOURCES, to ensure they are generated first.
12838 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
12839 %error-verbose to allow bootstrapping with bison 1.30x.
12840
2b25d624
AD
128412002-01-06 Akim Demaille <akim@epita.fr>
12842
12843 * src/reader.c (parse_braces): Don't fetch the next char, the
12844 convention is to fetch on entry.
12845 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
12846 'switch' without a following semicolon.
12847 * tests/regression.at (braces parsing): New.
12848
3460813b
AD
128492002-01-06 Akim Demaille <akim@epita.fr>
12850
12851 Bison is dead wrong in its RR conflict reports.
12852
12853 * tests/torture.at (GNU Cim Grammar): New.
12854 * src/conflicts.c (count_rr_conflicts): Fix.
12855
73784c64
AD
128562002-01-06 Akim Demaille <akim@epita.fr>
12857
12858 Creating package.m4 from configure.ac causes too many problems.
12859
12860 * tests/Makefile.am (package.m4): Create it by hand,
12861 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
12862
25d81090
AD
128632002-01-06 Akim Demaille <akim@epita.fr>
12864
12865 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
12866 skeleton.h.
12867
a9b8959e
PE
128682002-01-04 Paul Eggert <eggert@twinsun.com>
12869
12870 * doc/bison.texinfo (Debugging):
12871 Remove YYSTDERR; it's no longer defined or used.
12872 Also, s/cstdio.h/cstdio/.
12873
25d81090
AD
128742002-01-03 Akim Demaille <akim@epita.fr>
12875
12876 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
12877
1109455c
AD
128782002-01-03 Akim Demaille <akim@epita.fr>
12879
12880 * src/parse-skel.y (process_skeleton): Don't bind the parser's
12881 tracing code to --trace, wait for a better --trace option, with
12882 args.
12883
7ea5e977
AD
128842002-01-03 Akim Demaille <akim@epita.fr>
12885
12886 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
12887 The ISO C++ standard is extremely clear about it: stderr is
12888 considered a macro, not a regular symbol (see table 94 `Header
12889 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
12890 Therefore std:: does not apply to it. It still does with fprintf.
12891 Also, s/cstdio.h/cstdio/.
12892
fab5b110
AD
128932002-01-03 Akim Demaille <akim@epita.fr>
12894
12895 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
12896 for non system headers.
12897
aed7fd9b
AD
128982002-01-02 Akim Demaille <akim@epita.fr>
12899
12900 Equip the skeleton chain with location tracking, runtime trace,
12901 pure parser and scanner.
12902
12903 * src/parse-skel.y: Request a pure parser, locations, and prefix
12904 renaming.
12905 (%union): Having several members with the same type does not help
12906 type mismatches, simplify.
12907 (YYPRINT, yyprint): New.
12908 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
12909 (skel_error): this.
12910 Handle locations.
12911 * src/scan-skel.l: Adjust to these changes.
12912 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
12913 (LOCATION_PRINT, skel_control_t): New.
12914
24fad99e
AD
129152001-12-30 Akim Demaille <akim@epita.fr>
12916
12917 * src/parse-skel.y: Get rid of the shift/reduce conflict:
12918 replace `gb' with BLANKS.
12919 * src/scan-skel.l: Adjust.
12920
a4b36db4
AD
129212001-12-30 Akim Demaille <akim@epita.fr>
12922
12923 * src/system.h: We don't need nor want bcopy.
12924 Throw away MS-DOS crap: we don't need getpid.
12925 * configure.in: We don't need strndup. It was even causing
12926 problems: because Flex includes the headers *before* us,
12927 _GNU_SOURCE is not defined by config.h, and therefore strndup was
12928 not visible.
12929 * lib/xstrndup.c: New.
12930 * src/scan-skel.l: Use it.
12931 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
12932 * src/parse-skel.y: Use %directives instead of #defines.
12933
1239777d
AD
129342001-12-30 Akim Demaille <akim@epita.fr>
12935
12936 * src/skeleton.h: New.
12937 * src/output.c (output_parser, output_master_parser): Remove, dead
12938 code.
12939 * src/output.h (get_lines_number, actions_output, guards_output)
12940 (token_definitions_output): Prototype them.
12941 * src/parse-skel.y: Add the license notice.
12942 Include output.h and skeleton.h.
12943 (process_skeleton): Returns void, and takes a single parameter.
12944 * src/scan-skel.l: Add the license notice.
12945 Include skeleton.h.
12946 Don't use %option yylineno: it seems that then Flex imagines
12947 REJECT has been used, and therefore it won't reallocate its
12948 buffers (which makes no other sense to me than a bug). It results
12949 in warnings for `unused: yy_flex_realloc'.
12950
9b3add5b
RA
129512001-12-30 Robert Anisko <robert.anisko@epita.fr>
12952
12953 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12954 (MUSCLE_INSERT_PREFIX): ...to there.
12955 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12956 (MUSCLE_INSERT_PREFIX): Move from here...
12957
12958 * src/bison.hairy: Add a section directive. Put braces around muscle
12959 names. This parser skeleton is still broken, but Bison should not
12960 choke on a bad muscle 'syntax'.
12961 * src/bison.simple: Add a section directive. Put braces around muscle
12962 names.
12963
12964 * src/files.h (strsuffix, stringappend): Add declarations.
12965 (tab_extension): Add declaration.
12966 (short_base_name): Add declaration.
12967
12968 * src/files.c (strsuffix, stringappend): No longer static. These
12969 functions are used in the skeleton parser.
12970 (tab_extension): New.
12971 (compute_base_names): Use the computations done in this function
fab5b110 12972 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
12973 names.
12974 (short_base_name): No longer static.
12975
12976 * src/output.c (output_skeleton): New.
12977 (output): Disable call to output_master_parser, and give a try to
12978 a new skeleton handling system.
12979 (guards_output, actions_output): No longer static.
12980 (token_definitions_output, get_lines_number): No longer static.
12981
12982 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
12983
fab5b110 12984 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
12985 parse-skel.y.
12986
12987 * src/parse-skel.y: New file.
12988 * src/scan-skel.l: New file.
12989
b5b61c61
AD
129902001-12-29 Akim Demaille <akim@epita.fr>
12991
12992 %name-prefix is broken.
12993
12994 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
12995 Adjust all dependencies.
12996 * tests/headers.at (export YYLTYPE): Strengthen this test: use
12997 %name-prefix.
12998
12999 Renaming yylval but not yylloc is not consistent. Now we do.
13000
13001 * src/bison.simple: Prefix yylloc if used.
13002 * doc/bison.texinfo (Decl Summary): Document that.
13003
8c9a50be
AD
130042001-12-29 Akim Demaille <akim@epita.fr>
13005
13006 * doc/bison.texinfo: Promote `%long-directive' over
13007 `%long_directive'.
13008 Remove all references to fixed-output-files, yacc is enough.
13009
d99361e6
AD
130102001-12-29 Akim Demaille <akim@epita.fr>
13011
13012 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
13013 user prologue. These are defaults.
13014 * tests/actions.at (Mid-rule actions): Make sure the user can
13015 define YYDEBUG and YYERROR_VERBOSE.
13016
b9cecb91
AD
130172001-12-29 Akim Demaille <akim@epita.fr>
13018
13019 * src/output.c (header_output): Don't forget to export YYLTYPE and
13020 yylloc.
13021 * tests/headers.at (export YYLTYPE): New, make sure it does.
13022 * tests/regression.at (%union and --defines, Invalid CPP headers):
13023 Move to...
13024 * tests/headers.at: here.
13025
aea13e97
AD
130262001-12-29 Akim Demaille <akim@epita.fr>
13027
13028 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
13029
931394cb
AD
130302001-12-29 Akim Demaille <akim@epita.fr>
13031
13032 * tests/actions.at (Mid-rule actions): Output on a single line
13033 instead of several.
13034
704a47c4
AD
130352001-12-29 Akim Demaille <akim@epita.fr>
13036
13037 * doc/bison.texinfo: Formatting changes.
13038
091e20bb
AD
130392001-12-29 Akim Demaille <akim@epita.fr>
13040
13041 Don't store the token defs in a muscle, just be ready to output it
13042 on command. Now possible via `symbols'. Fixes a memory leak.
13043
13044 * src/output.c (token_definitions_output): New.
13045 (output_parser, header_output): Use it.
13046 * src/reader.c (symbols_save): Remove.
13047
cce71710
AD
130482001-12-29 Akim Demaille <akim@epita.fr>
13049
13050 * src/bison.simple: Do not provide a default for YYSTYPE and
13051 YYLTYPE before the user's prologue. Otherwise it's hardly... a
13052 default.
13053
82c035a8
AD
130542001-12-29 Akim Demaille <akim@epita.fr>
13055
13056 Mid-rule actions are simply... ignored!
13057
13058 * src/reader.c (readgram): Be sure to attach mid-rule actions to
13059 the empty-rule associated to the dummy symbol, not to the host
13060 rule.
13061 * tests/actions.at (Mid-rule actions): New.
13062
8419d367
AD
130632001-12-29 Akim Demaille <akim@epita.fr>
13064
13065 Memory leak.
13066
13067 * src/reader.c (reader): Free grammar.
13068
375d5806
AD
130692001-12-29 Akim Demaille <akim@epita.fr>
13070
13071 Memory leak.
13072
13073 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
13074 since it allocates it for each state, although only one is needed.
13075 (allocate_storage): Do it here.
13076
f51cb8ff
AD
130772001-12-29 Akim Demaille <akim@epita.fr>
13078
13079 * src/options.h, src/options.c (create_long_option_table): Rename
13080 as...
13081 (long_option_table_new): this, with a clearer prototype.
13082 (percent_table): Remove, unused,
13083 * src/getargs.c (getargs): Adjust.
13084
29e88316
AD
130852001-12-29 Akim Demaille <akim@epita.fr>
13086
13087 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
13088 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
13089 as states.
13090
b9f71f19
AD
130912001-12-29 Akim Demaille <akim@epita.fr>
13092
13093 * src/lalr.c (build_relations): Rename `states' as `states1'.
13094 Sorry, I don't understand exactly what it is, no better name...
13095
1a2b5d37
AD
130962001-12-29 Akim Demaille <akim@epita.fr>
13097
13098 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
13099 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
13100 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
13101 as rules.
13102
1cca533e
AD
131032001-12-29 Akim Demaille <akim@epita.fr>
13104
13105 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
13106 ago.
13107
c03ae966
AD
131082001-12-29 Akim Demaille <akim@epita.fr>
13109
13110 * src/reader.c, src/reader.h (user_toknums): Remove.
13111 Adjust all users to use symbols[i]->user_token_number.
13112
5a670b1e
AD
131132001-12-29 Akim Demaille <akim@epita.fr>
13114
13115 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
13116 Adjust all users to use symbols[i]->prec or ->assoc.
13117
ad949da9
AD
131182001-12-29 Akim Demaille <akim@epita.fr>
13119
13120 * src/reader.c, src/reader.h (tags): Remove.
13121 Adjust all users to use symbols[i]->tag.
13122
0e78e603
AD
131232001-12-29 Akim Demaille <akim@epita.fr>
13124
13125 * src/gram.h, src/gram.c (symbols): New, similar to state_table
13126 and rule_table.
13127 * src/reader.c (packsymbols): Fill this table.
13128 Drop sprec.
13129 * src/conflicts.c (resolve_sr_conflict): Adjust.
13130 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
13131 single table.
13132 Use symbols[i]->tag instead of tags[i].
13133
213e640e
AD
131342001-12-29 Akim Demaille <akim@epita.fr>
13135
13136 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
13137 In addition, put a comment in there, to replace...
13138 * tests/regression.at (%union and C comments): Remove.
13139
e7b8bef1
AD
131402001-12-29 Akim Demaille <akim@epita.fr>
13141
13142 * tests/regression.at (Web2c Actions): Blindly move the actual
13143 output as expected output. The contents *seem* right to me, but I
13144 can't pretend reading perfectly parser tables... Nonetheless, all
13145 the other tests pass correctly, the table look OK, even though the
13146 presence of `$axiom' is to be noted: AFAICS it is useless (but
13147 harmless).
13148
b68e7744
AD
131492001-12-29 Akim Demaille <akim@epita.fr>
13150
13151 * src/reader.c (readgram): Don't add the rule 0 if there were no
13152 rules read. In other words, add it _after_ having performed
13153 grammar sanity checks.
13154 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
13155
78d5bae9
AD
131562001-12-29 Akim Demaille <akim@epita.fr>
13157
13158 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
13159 visible, and some states have now a different number.
13160
ff442794
AD
131612001-12-29 Akim Demaille <akim@epita.fr>
13162
13163 * src/reader.c (readgram): Bind the initial rule's lineno to that
13164 of the first rule.
13165 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
13166 (Solved SR Conflicts): Adjust rule 0's line number.
13167
610ab194
AD
131682001-12-29 Akim Demaille <akim@epita.fr>
13169
13170 Fix the `GAWK Grammar' failure.
13171
13172 * src/LR0.c (final_state): Initialize to -1 so that we do compute
13173 the reductions of the first state which was mistakenly confused
13174 with the final state because precisely final_state was initialized
13175 to 0.
13176 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
13177 now noticed by Bison.
13178 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
13179 have a reduction on $default.
13180
29d29c8f
AD
131812001-12-29 Akim Demaille <akim@epita.fr>
13182
13183 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
13184 rule line numbers.
13185 * src/closure.c (print_closure): Likewise.
13186 * src/derives.c (print_derives): Likewise.
13187 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
13188 now.
13189
7c6b64d0
AD
131902001-12-29 Akim Demaille <akim@epita.fr>
13191
13192 * src/lalr.c (lookaheads_print): New.
13193 (lalr): Call it when --trace-flag.
13194 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
13195 are dumped.
13196
3d4daee3
AD
131972001-12-29 Akim Demaille <akim@epita.fr>
13198
13199 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
13200 when walking through ritem, even via rule->rhs.
13201 * src/reduce.c (dump_grammar, useful_production, reduce_output)
13202 (useful_production, useless_nonterminals): Likewise.
13203 (reduce_grammar_tables): Likewise, plus update nritems.
13204 * src/nullable.c (set_nullable): Likewise.
13205 * src/lalr.c (build_relations): Likewise.
13206 * tests/sets.at (Nullable): Adjust.
13207 Fortunately, now, the $axiom is no longer nullable.
13208
9e7f6bbd
AD
132092001-12-29 Akim Demaille <akim@epita.fr>
13210
13211 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
13212 the 0-sentinel.
13213 * src/gram.c (ritem_longest_rhs): Likewise.
13214 * src/reduce.c (nonterminals_reduce): Likewise.
13215 * src/print_graph.c (print_graph): Likewise.
13216 * src/output.c (output_rule_data): Likewise.
13217 * src/nullable.c (set_nullable): Likewise.
13218
255ef638
AD
132192001-12-29 Akim Demaille <akim@epita.fr>
13220
13221 * src/output.c: Comment changes.
13222
0d8a7363
AD
132232001-12-27 Paul Eggert <eggert@twinsun.com>
13224
13225 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
13226 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
13227 Sparc, as they were causing more porting problems than the
13228 (minor) performance improvement was worth.
13229
13230 Also, catch up with 1.31's YYSTD.
13231
3db472b9
AD
132322001-12-27 Akim Demaille <akim@epita.fr>
13233
13234 * src/output.c (output_gram): Rely on nritems, not the
13235 0-sentinel. See below.
13236 Use -1 as separator, not 0.
13237 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
13238 Rely on -1 as separator in yyrhs, instead of 0.
13239 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
13240 twice `Now at end of input', therefore there are two lines less to
13241 expect.
13242
b365aa05
AD
132432001-12-27 Akim Demaille <akim@epita.fr>
13244
13245 * tests/regression.at (Unresolved SR Conflicts):
13246 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
13247 below.
13248
30171f79
AD
132492001-12-27 Akim Demaille <akim@epita.fr>
13250
13251 * src/LR0.c (new_state): Recognize the final state by the fact it
13252 is reached by eoftoken.
13253 (insert_start_shifting_state, insert_eof_shifting_state)
13254 (insert_accepting_state, augment_automaton): Remove, since now
13255 these states are automatically computed from the initial state.
13256 (generate_states): Adjust.
13257 * src/print.c: When reporting a rule number to the user, substract
13258 1, so that the axiom rule is rule 0, and the first user rule is 1.
13259 * src/reduce.c: Likewise.
13260 * src/print_graph.c (print_core): For the time being, just as for
13261 the report, depend upon --trace-flags to dump the full set of
13262 items.
13263 * src/reader.c (readgram): Once the grammar read, insert the rule
13264 0: `$axiom: START-SYMBOL $'.
13265 * tests/set.at: Adjust: rule 0 is now displayed, and since the
13266 number of the states has changed (the final state is no longer
13267 necessarily the last), catch up.
13268
75142d45
AD
132692001-12-27 Akim Demaille <akim@epita.fr>
13270
13271 Try to make the use of the eoftoken valid. Given that its value
13272 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
13273 is used instead of > 0 where appropriate, (ii), depend upon nritems
13274 instead of the 0-sentinel.
13275
13276 * src/gram.h, src/gram.c (nritems): New.
13277 Expected to be duplication of nitems, but for the time being...
13278 * src/reader.c (packgram): Assert nritems and nitems are equal.
13279 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
13280 * src/closure.c (print_closure, print_fderives): Likewise.
13281 * src/gram.c (ritem_print): Likewise.
13282 * src/print.c (print_core, print_grammar): Likewise.
13283 * src/print_graph.c: Likewise.
13284
b7c49edf
AD
132852001-12-27 Akim Demaille <akim@epita.fr>
13286
13287 * src/main.c (main): If there are complains after grammar
13288 reductions, then output the report anyway if requested, then die.
13289 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
13290 * src/reader.c (eoftoken): New.
13291 (parse_token_decl): If the token being defined has value `0', it
13292 is the eoftoken.
13293 (packsymbols): No longer hack `tags' to insert `$' by hand.
13294 Be sure to preserve the value of the eoftoken.
13295 (reader): Make sure eoftoken is defined.
13296 Initialize nsyms to 0: now eoftoken is created just like the others.
13297 * src/print.c (print_grammar): Don't special case the eof token.
13298 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
13299 lie anyway, albeit pleasant.
13300 * tests/calc.at: Exercise error messages with eoftoken.
13301 Change the grammar so that empty input is invalid.
13302 Adjust expectations.
13303 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
13304
ec2da99f
AD
133052001-12-27 Akim Demaille <akim@epita.fr>
13306
13307 * configure.in: Check the protos of strchr ans strspn.
13308 Replace strchr if needed.
13309 * src/system.h: Provide the protos of strchr, strspn and memchr if
13310 missing.
13311 * lib/strchr.c: New.
13312 * src/reader.c (symbols_save): Use strchr.
13313
8adfa272
AD
133142001-12-27 Akim Demaille <akim@epita.fr>
13315
13316 * src/print.c, src/print_graph.c (escape): New.
13317 Use it to quote the TAGS outputs.
13318 * src/print_graph.c (print_state): Now errors are in red, and
13319 reductions in green.
13320 Prefer high to wide: output the state number on a line of its own.
13321
80dac38c
AD
133222001-12-27 Akim Demaille <akim@epita.fr>
13323
13324 * src/state.h, src/state.c (reductions_new): New.
13325 * src/LR0.c (set_state_table): Let all the states have a
13326 `reductions', even if reduced to 0.
13327 (save_reductions): Adjust.
13328 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
13329 * src/print.c (print_reductions, print_actions): Adjust.
13330 * src/output.c (action_row): Adjust.
13331
2cec70b9
AD
133322001-12-27 Akim Demaille <akim@epita.fr>
13333
13334 * src/state.h, src/state.c (errs_new, errs_dup): New.
13335 * src/LR0.c (set_state_table): Let all the states have an errs,
13336 even if reduced to 0.
13337 * src/print.c (print_errs, print_reductions): Adjust.
13338 * src/output.c (output_actions, action_row): Adjust.
13339 * src/conflicts.c (resolve_sr_conflict): Adjust.
13340
13ca549a
AD
133412001-12-27 Akim Demaille <akim@epita.fr>
13342
13343 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
13344
5092aba5
AD
133452001-12-27 Akim Demaille <akim@epita.fr>
13346
13347 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
13348 * src/print.c: here.
13349 (lookaheadset, shiftset): New, used as additional storage by
13350 print_reductions.
13351 (print_results): Adjust.
13352 (print_shifts, print_gotos, print_errs): New, extracted from...
13353 (print_actions): here.
13354 * src/print_graph.c (print_actions): Remove dead code.
13355
11e2beca
AD
133562001-12-27 Akim Demaille <akim@epita.fr>
13357
13358 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
13359 `$n' and `@n'.
13360
dac3c910
AD
133612001-12-27 Akim Demaille <akim@epita.fr>
13362
13363 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
13364 (build_relations): Adjust.
13365
d0b0fefa
AD
133662001-12-27 Akim Demaille <akim@epita.fr>
13367
13368 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
13369 duplication.
13370
adc8c848
AD
133712001-12-27 Akim Demaille <akim@epita.fr>
13372
13373 * src/reader.c (packgram): Catch nitems overflows.
13374
14d293ac
AD
133752001-12-27 Akim Demaille <akim@epita.fr>
13376
13377 * src/files.c, src/files.h (guard_obstack): Remove.
13378 * src/output.c (output): Adjust.
13379 * src/reader.c (parse_braces): New, factoring...
13380 (copy_action, copy_guard): these two which are renamed as...
13381 (parse_action, parse_guard): these.
13382 As a voluntary consequence, using braces around guards is now
13383 mandatory.
13384
f499b062
AD
133852001-12-27 Akim Demaille <akim@epita.fr>
13386
13387 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
13388 * src/reader.c (symbol_list): `guard' and `guard_line' are new
13389 members.
13390 (symbol_list_new): Adjust.
13391 (copy_action): action_line is the first line, not the last.
13392 (copy_guard): Just as for actions, store the `action' only, not
13393 the switch/case/break flesh.
13394 Don't parse the user action that might follow the guard, let...
13395 (readgram): do it, i.e., now, there can be an action after a
13396 guard.
13397 In other words the guard is just explicitly optional.
13398 (packgram): Adjust.
13399 * src/output.c (guards_output): New.
13400 (output_parser): Call it when needed.
13401 (output): Also free the guard and attrs obstacks.
13402 * src/files.c, src/files.h (obstack_save): Remove.
13403 (output_files): Remove.
13404 As a result, if one needs the former `.act' file, using an
13405 appropriate skeleton which requires actions and guards is now
13406 required.
13407 * src/main.c (main): Adjust.
13408 * tests/semantic.at: New.
13409 * tests/regression.at: Use `input.y' as input file name.
13410 Avoid 8+3 problems by requiring input.c when the test needs the
13411 parser.
13412
d945f5cd
AD
134132001-12-27 Akim Demaille <akim@epita.fr>
13414
13415 * src/reader.c (symbol_list_new): Be sure to initialize all the
13416 fields.
13417
d200e455
AD
134182001-12-27 Akim Demaille <akim@epita.fr>
13419
13420 All the hacks using a final pseudo state are now useless.
13421
13422 * src/LR0.c (set_state_table): state_table holds exactly nstates.
13423 * src/lalr.c (nLA): New.
13424 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
13425 instead of lookaheadsp from the pseudo state (nstate + 1).
13426
f9507c28
AD
134272001-12-27 Akim Demaille <akim@epita.fr>
13428
13429 * src/output.c (action_row, token_actions): Use a state_t instead
13430 of a integer, and nlookaheads instead of the following state's
13431 lookaheadsp.
13432
065fbd27
AD
134332001-12-27 Akim Demaille <akim@epita.fr>
13434
13435 * src/conflicts.c (log_resolution, flush_shift)
13436 (resolve_sr_conflict, set_conflicts, solve_conflicts)
13437 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
13438 (conflicts_print, print_reductions): Use a state_t instead of an
13439 integer when referring to a state.
13440 As much as possible, depend upon nlookaheads, instead of the
13441 `lookaheadsp' member of the following state (since lookaheads of
13442 successive states are successive, the difference between state n + 1
13443 and n served as the number of lookaheads for state n).
13444 * src/lalr.c (add_lookback_edge): Likewise.
13445 * src/print.c (print_core, print_actions, print_state)
13446 (print_results): Likewise.
13447 * src/print_graph.c (print_core, print_actions, print_state)
13448 (print_graph): Likewise.
13449 * src/conflicts.h: Adjust.
13450
1b177bd7
AD
134512001-12-27 Akim Demaille <akim@epita.fr>
13452
13453 * src/bison.hairy: Formatting/comment changes.
13454 ANSIfy.
13455 Remove `register' indications.
13456 Add plenty of `static'.
13457
7742ddeb
AD
134582001-12-27 Akim Demaille <akim@epita.fr>
13459
13460 * src/output.c (prepare): Drop the muscle `ntbase' which
13461 duplicates ntokens.
13462 * src/bison.simple: Formatting/comment changes.
13463 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
13464 is an undocumented synonym.
13465
1fa14068
AD
134662001-12-22 Akim Demaille <akim@epita.fr>
13467
13468 * src/output.c (output_table_data): Change the prototype to use
13469 `int' for array ranges: some invocations do pass an int, not a
13470 short.
13471 Reported by Wayne Green.
13472
b9752825
AD
134732001-12-22 Akim Demaille <akim@epita.fr>
13474
13475 Some actions of web2c.y are improperly triggered.
13476 Reported by Mike Castle.
13477
13478 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
13479 * tests/regression.at (Web2c): Rename as...
13480 (Web2c Report): this.
13481 (Web2c Actions): New.
13482
776209d6
AD
134832001-12-22 Akim Demaille <akim@epita.fr>
13484
13485 Reductions in web2c.y are improperly reported.
13486 Reported by Mike Castle.
13487
13488 * src/conflicts.c (print_reductions): Fix.
13489 * tests/regression.at (Web2c): New.
13490
275fc3ad
AD
134912001-12-18 Akim Demaille <akim@epita.fr>
13492
13493 Some host fail on `assert (!"foo")', which expands to
13494 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
13495 Reported by Nelson Beebee.
13496
13497 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
13498 `#define it_succeeded 0' and `assert (it_succeeded)'.
13499
897668ee
MA
135002001-12-17 Marc Autret <autret_m@epita.fr>
13501
13502 * src/bison.simple: Don't hard code the skeleton line and filename.
13503 * src/output.c (output_parser): Rename 'line' as 'output_line'.
13504 New line counter 'skeleton_line' (skeleton-line muscle).
13505
ab3399e0
PE
135062001-12-17 Paul Eggert <eggert@twinsun.com>
13507
13508 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
13509 YYDEBUG must be defined to a nonzero value.
13510
13511 * src/bison.simple (yytname): Do not assume that the user defines
13512 YYDEBUG to a properly parenthesized expression.
13513
3877f72b
AD
135142001-12-17 Akim Demaille <akim@epita.fr>
13515
13516 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
13517 nlookaheads is a new member.
13518 Adjust all users.
13519 * src/lalr.h (nlookaheads): Remove this orphan declaration.
13520 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
13521 state.
776209d6 13522
331dbc1b
AD
135232001-12-17 Akim Demaille <akim@epita.fr>
13524
13525 * src/files.h, src/files.c (open_files, close_files): Remove.
13526 * src/main.c (main): Don't open/close files, nor invoke lex_free,
13527 let...
13528 * src/reader.c (reader): Do it.
776209d6 13529
be750e4c
AD
135302001-12-17 Akim Demaille <akim@epita.fr>
13531
13532 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 13533
709ae8c6
AD
135342001-12-17 Akim Demaille <akim@epita.fr>
13535
13536 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
13537 (flush_reduce): New.
13538 (resolve_sr_conflict): Adjust.
776209d6 13539
f87685c3
AD
135402001-12-17 Akim Demaille <akim@epita.fr>
13541
13542 * src/output.c (output_obstack): Be static and rename as...
13543 (format_obstack): this, to avoid any confusion with files.c's
13544 output_obstack.
13545 * src/reader.h (muscle_obstack): Move to...
13546 * src/output.h: here, since it's defined in output.c.
13547
837491d8
AD
135482001-12-17 Akim Demaille <akim@epita.fr>
13549
13550 * src/output.c (action_row, save_column, default_goto)
13551 (sort_actions, matching_state, pack_vector): Better variable
13552 locality.
13553
796d61fb
AD
135542001-12-17 Akim Demaille <akim@epita.fr>
13555
13556 * src/output.c: Various formatting changes.
776209d6 13557
64d15509
AD
135582001-12-17 Akim Demaille <akim@epita.fr>
13559
13560 * src/files.c (output_files): Free the output_obstack.
13561 * src/main.c (main): Call print and print_graph conditionally.
13562 * src/print.c (print): Work unconditionally.
13563 * src/print_graph.c (print_graph): Work unconditionally.
13564 * src/conflicts.c (log_resolution): Output only if verbose_flag.
13565
fbc8ecb7
MA
135662001-12-16 Marc Autret <autret_m@epita.fr>
13567
13568 * src/output.c (actions_output): Fix. When we use %no-lines,
13569 there is one less line per action.
13570
f0440388
MA
135712001-12-16 Marc Autret <autret_m@epita.fr>
13572
13573 * src/bison.simple: Remove a useless #line directive.
13574 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
13575 * src/output.c (get_lines_number): New.
776209d6 13576 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
13577 output muscles.
13578 Fix line numbering.
13579 (actions_output): Computes the number of lines taken by actions.
13580 (output_master_parser): Insert new skeleton which is the name of
13581 the output parser file name.
13582
a79986b8
MA
135832001-12-15 Marc Autret <autret_m@epita.fr>
13584
13585 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
13586
4ec8e00f
MA
135872001-12-15 Marc Autret <autret_m@epita.fr>
13588
13589 * src/output.c (output_gram): Keep track of the hairy one.
13590
1a4648ff
AD
135912001-12-15 Akim Demaille <akim@epita.fr>
13592
13593 Make `make distcheck' work.
13594
13595 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
13596 system.h which uses libgettext.h.
13597
9c2c67e6
AD
135982001-12-15 Akim Demaille <akim@epita.fr>
13599
13600 * src/nullable.c (set_nullable): Useless rules must be skipped,
13601 otherwise, since we range over their symbols, we might look at a
13602 nonterminal which no longer ``exists'', i.e., it is not counted in
13603 `nvars', hence we overflow our arrays.
13604
93ede233
AD
136052001-12-15 Akim Demaille <akim@epita.fr>
13606
13607 The header can also be produced directly, without any obstack!
13608 Yahoo!
13609
13610 * src/files.c, src/files.h (defines_obstack): Remove.
13611 (compute_header_macro): Global.
13612 (defines_obstack_save): Remove.
13613 * src/reader.c (parse_union_decl): No longer output to
13614 defines_obstack: its content can be found in the `stype' muscle
13615 anyway.
13616 (output_token_translations): Merge into...
13617 (symbols_output): this.
13618 Rename as...
13619 (symbols_save): this.
13620 (reader): Adjust.
13621 * src/output.c (header_output): New.
13622 (output): Call it.
13623
2666f928
AD
136242001-12-15 Akim Demaille <akim@epita.fr>
13625
13626 * src/reader.c (parse_union_decl): Instead of handling two obstack
13627 simultaneously, use one to define the `stype' muscle, and use the
13628 value of the latter to fill defines_obstack.
13629 (copy_comment): Remove.
13630 (copy_comment2): Work for a single obstack.
13631 Rename as...
13632 (copy_comment): this.
13633
428046f8
AD
136342001-12-15 Akim Demaille <akim@epita.fr>
13635
13636 * src/lex.c, src/lex.h (xgetc): No longer static.
13637 * src/reader.c (parse_union_decl): Revamp.
13638
ea52d706
AD
136392001-12-15 Akim Demaille <akim@epita.fr>
13640
13641 Still making progress in separating Bison into (i) input, (ii)
13642 process, (iii) output: now we can directly output the parser file
13643 without using table_obstack at all.
13644
13645 * src/files.c, src/files.h (table_obstack): Bye bye.
13646 (parser_file_name): New.
13647 * src/files.c (compute_output_file_names): Compute it.
13648 * src/output.c (actions_output, output_parser)
13649 (output_master_parser): To a file instead of an obstack.
13650
3f96f4dc
AD
136512001-12-15 Akim Demaille <akim@epita.fr>
13652
13653 Attach actions to rules, instead of pre-outputting them to
13654 actions_obstack.
13655
13656 * src/gram.h (rule_t): action and action_line are new members.
13657 * src/reader.c (symbol_list): Likewise.
13658 (copy_action): Save the actions within the rule.
13659 (packgram): Save them in rule_table.
13660 * src/output.c (actions_output): New.
13661 (output_parser): Use it on `%%actions'.
13662 (output_rule_data): Don't free rule_table.
13663 (output): Do it.
13664 (prepare): Don't save the `action' muscle.
13665 * src/bison.simple: s/%%action/%%actions/.
13666
51576fb3
AD
136672001-12-15 Akim Demaille <akim@epita.fr>
13668
13669 * src/reader.c (copy_action): When --yacc, don't append a `;'
13670 to the user action: let it fail if lacking.
dee049eb 13671 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 13672
2648a72d
AD
136732001-12-14 Akim Demaille <akim@epita.fr>
13674
13675 * src/lex.c (literalchar): Simply return the char you decoded, non
13676 longer mess around with obstacks and int pointers.
13677 Adjust all callers.
13678
92790e5b
AD
136792001-12-14 Akim Demaille <akim@epita.fr>
13680
13681 * src/lex.c (literalchar): Don't escape the special characters,
13682 just decode them, and keep them as char (before, eol was output as
13683 the 2 char string `\n' etc.).
13684 * src/output.c (output_rule_data): Use quotearg to output the
13685 token strings.
13686
927c1557
PE
136872001-12-13 Paul Eggert <eggert@twinsun.com>
13688
13689 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
13690 Do not infringe on the global user namespace when using C++.
13691 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
13692 All uses of `fprintf' and `stderr' changed.
13693
13694 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
13695
ed8e1f68
AD
136962001-12-13 Akim Demaille <akim@epita.fr>
13697
13698 The computation of nullable is broken: it doesn't handle empty
13699 RHS's properly.
13700
13701 * tests/torture.at (GNU AWK Grammar): New.
13702 * tests/sets.at (Nullable): New.
13703 * src/nullable.c (set_nullable): Instead of blindly looping over
13704 `ritems', loop over the rules, and then over their rhs's.
13705
13706 Work around Autotest bugs.
13707
13708 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
13709 frame, because Autotest understand lines starting with a `+' as
13710 traces from the shell. Then, they are not processed properly.
13711 Admittedly an Autotest bug, but we don't have time to wait for
13712 Autotest to catch up.
13713 * tests/regression.at (Broken Closure): Adjust to the new table
13714 frames.
13715 Move to...
13716 * tests/sets.at: here.
13717
cb581495
AD
137182001-12-13 Akim Demaille <akim@epita.fr>
13719
13720 * src/closure.c (closure): Use nrules instead of playing tricks
13721 with BITS_PER_WORD.
13722
2e729273
AD
137232001-12-13 Akim Demaille <akim@epita.fr>
13724
13725 * src/print.c (print_actions): Output the handling of `$' as the
13726 traces do: shifting the token EOF. Before EOF was treated as a
13727 nonterminal.
13728 * tests/regression.at: Adjust some tests.
13729 * src/print_graph.c (print_core): Complete the set of items via
13730 closure. The next-to-final and final states are still unsatisfying,
13731 but that's to be addressed elsewhere.
13732 No longer output the rule numbers, but do output the state number.
13733 A single loop for the shifts + gotos is enough, but picked a
13734 distinct color for each.
13735 (print_graph): Initialize and finalize closure.
13736
107f7dfb
AD
137372001-12-13 Akim Demaille <akim@epita.fr>
13738
13739 * src/reader.c (readgram): Remove dead code, an strip useless
13740 braces.
13741 (get_type): Remove, unused.
13742
9b53a24f
AD
137432001-12-12 Akim Demaille <akim@epita.fr>
13744
13745 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
13746 on that of lib/error.c.
13747
dbfb6dcd
AD
137482001-12-12 Akim Demaille <akim@epita.fr>
13749
13750 Some hosts don't like `/' in includes.
13751
13752 * src/system.h: Include libgettext.h without qualifying the path.
13753 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
13754 $(top_srcdir).
13755
c25fb648
MA
137562001-12-11 Marc Autret <autret_m@epita.fr>
13757
13758 * src/output.c (output_parser): Remove useless muscle.
13759
710ddc4f
MA
137602001-12-11 Marc Autret <autret_m@epita.fr>
13761
13762 * src/bison.simple: Remove #line just before %%epilogue. It
13763 is now handled in ...
13764 * src/reader.c (read_additionnal_code): Add the output of a
13765 #line for the epilogue.
13766
e83d80b8
MA
137672001-12-10 Marc Autret <autret_m@epita.fr>
13768
927c1557 13769 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
13770 replace precedent remove.
13771 * src/bison.simple: Remove #line before %%prologue because
13772 %%input-line is wrong at this time.
13773
971d5158
MA
137742001-12-10 Marc Autret <autret_m@epita.fr>
13775
13776 * src/reader.c (symbols_output): Clean up.
927c1557 13777 * src/output.c (output_gram, output): Clean up.
971d5158 13778
5edafffd
AD
137792001-12-10 Akim Demaille <akim@epita.fr>
13780
13781 * src/lalr.c (initialize_lookaheads): New. Extracted from...
13782 * src/LR0.c (set_state_table): here.
13783 * src/lalr.c (lalr): Call it.
13784
0279f8e9
AD
137852001-12-10 Akim Demaille <akim@epita.fr>
13786
13787 * src/state.h (shifts): Remove the `number' member: shifts are
13788 attached to state, hence no longer need to be labelled with a
13789 state number.
13790
190c4f5f
AD
137912001-12-10 Akim Demaille <akim@epita.fr>
13792
13793 Now that states have a complete set of members, the linked list of
13794 shifts is useless: just fill directly the state's shifts member.
13795
13796 * src/state.h (shifts): Remove the `next' member.
13797 * src/LR0.c (first_state, last_state): Remove.
13798 Adjust the callers.
13799 (augment_automaton): Don't look for the shifts that must be added
13800 a shift on EOF: it is those of the state we looked for! But now,
13801 since shifts are attached, it is no longer needed to looking
13802 merely by its id: its number.
13803
2a73b93d
AD
138042001-12-10 Akim Demaille <akim@epita.fr>
13805
13806 * src/LR0.c (augment_automaton): Better variable locality.
13807 Remove an impossible branch: if there is a state corresponding to
13808 the start symbol being shifted, then there is shift for the start
13809 symbol from the initial state.
13810
74392f6a
AD
138112001-12-10 Akim Demaille <akim@epita.fr>
13812
13813 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
13814 only when appropriate: when insert_start_shifting_state' is not
13815 invoked.
13816 * tests/regression.at (Rule Line Numbers): Adjust.
13817
37c82725
AD
138182001-12-10 Akim Demaille <akim@epita.fr>
13819
13820 * src/LR0.c (augment_automaton): Now that all states have shifts,
13821 merge the two cases addition shifts to the initial state.
13822
6a164e0c
AD
138232001-12-10 Akim Demaille <akim@epita.fr>
13824
13825 * src/lalr.c (set_state_table): Move to...
13826 * src/LR0.c: here.
13827 * src/lalr.c (lalr): Don't call it...
13828 * src/LR0.c (generate_states): do it.
13829 * src/LR0.h (first_state): Remove, only the table is used.
13830
7215de24
AD
138312001-12-10 Akim Demaille <akim@epita.fr>
13832
13833 * src/LR0.h (first_shift, first_reduction): Remove.
13834 * src/lalr.c: Don't use first_shift: find shifts through the
13835 states.
13836
80e25d4d
AD
138372001-12-10 Akim Demaille <akim@epita.fr>
13838
13839 * src/LR0.c: Attach shifts to states as soon as they are
13840 computed.
13841 * src/lalr.c (set_state_table): Instead of assigning shifts to
13842 state, just assert that the mapping was properly done.
13843
0ab3728b
AD
138442001-12-10 Akim Demaille <akim@epita.fr>
13845
13846 * src/LR0.c (insert_start_shift): Rename as...
13847 (insert_start_shifting_state): this.
13848 (insert_eof_shifting_state, insert_accepting_state): New.
13849 (augment_automaton): Adjust.
13850 Better locality of the variables.
13851 When looking if the start_symbol is shifted from the initial
13852 state, using `while (... symbol != start_symbol ...)' sounds
13853 better than `while (... symbol < start_symbol ...)': If fail
13854 to see how the order between symbols could be relevant!
13855
78af9bbc
AD
138562001-12-10 Akim Demaille <akim@epita.fr>
13857
13858 * src/getargs.h: Don't declare `spec_name_prefix' and
13859 `spec_file_prefix', declared by src/files.h.
13860 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
13861 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
13862 * src/output.c (prepare): Adjust.
13863 * src/reader.c (symbols_output): Likewise.
13864 * src/vmsgetargs.c: Vaguely adjust, but who cares?
13865
bdef2a41
AD
138662001-12-10 Akim Demaille <akim@epita.fr>
13867
13868 * src/muscle_tab.c (muscle_init): NULL is a better default than
13869 `"0"'.
13870
3735969c
AD
138712001-12-10 Akim Demaille <akim@epita.fr>
13872
13873 * src/reader.c (reader): Calling symbols_output once is enough.
13874
49701457
AD
138752001-12-10 Akim Demaille <akim@epita.fr>
13876
13877 Now that states have a complete set of members, the linked list of
13878 reductions is useless: just fill directly the state's reductions
13879 member.
13880
13881 * src/state.h (struct reductions): Remove member `number' and
13882 `next'.
13883 * src/LR0.c (first_reduction, last_reduction): Remove.
13884 (save_reductions): Don't link the new reductions, store them in
13885 this_state.
13886 * src/lalr.c (set_state_table): No need to attach reductions to
13887 states, it's already done.
13888 * src/output.c (output_actions): No longer free the shifts, then
13889 the reductions, then the states: free all the states and their
13890 members.
13891
0edad749
AD
138922001-12-10 Akim Demaille <akim@epita.fr>
13893
13894 * src/options.c (OPTN, DRTV, BOTH): New.
13895 (option_table): Use them.
13896
0edad749
AD
13897 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
13898 the job of system.h.
13899 * src/options.c: Don't include stdio.h and xalloc.h for the same
13900 reasons.
13901
5449dd0f
AD
139022001-12-10 Akim Demaille <akim@epita.fr>
13903
13904 * src/output.c (output, prepare): Make sure the values of the
13905 muscles `action' and `prologue' are 0-terminated.
13906
a870c567
AD
139072001-12-10 Akim Demaille <akim@epita.fr>
13908
13909 Clean up GCC warnings.
13910
13911 * src/reader.c (copy_action): `buf' is not used.
13912 (parse_skel_decl): Be static.
13913 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
13914 * src/options.h (create_long_option_table): Have a real prototype.
13915 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
13916 (hash_delete_at): Return const void *.
13917 Adjust casts to preserve the const.
13918
80df8768
AD
139192001-12-10 Akim Demaille <akim@epita.fr>
13920
13921 * configure.in: Require 2.52g.
13922 M4 is not needed, but AUTOM4TE is.
13923 * m4/m4.m4: Remove.
13924 * tests/Makefile.am: Adjust.
13925
f693ad14
AD
139262001-12-10 Akim Demaille <akim@epita.fr>
13927
13928 One structure for states is enough, even though theoretically
13929 there are LR(0) states and LALR(1) states.
13930
13931 * src/lalr.h (state_t): Remove.
13932 (state_table): Be state_t **, not state_t *.
13933 * src/state.h (core, CORE_ALLOC): Rename as...
13934 (state_t, STATE_ALLOC): this.
13935 Add the LALR(1) members: shifts, reductions, errs.
13936 * src/LR0.c (state_table): Rename as...
13937 (state_hash): this, to avoid name clashes with the global
13938 `state_table'.
13939 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
13940 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
13941
74ffbcb6
AD
139422001-12-10 Akim Demaille <akim@epita.fr>
13943
13944 Bison dumps core on bash.y.
13945 Reported by Pascal Bart.
13946
13947 * src/warshall.c (bitmatrix_print): New.
13948 (TC): Use it.
ba0fe3c7 13949 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
13950 j must be the outer loop.
13951 * tests/regression.at (Broken Closure): New.
13952
07708e19
AD
139532001-12-05 Akim Demaille <akim@epita.fr>
13954
13955 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
13956 its argument.
ba1ecc07 13957 Reported by Peter Hamorsky.
07708e19 13958
92b16366
AD
139592001-12-05 Akim Demaille <akim@epita.fr>
13960
13961 * src/conflicts.c (err_table): Remove.
13962 (resolve_sr_conflict): Adjust.
13963 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
13964 Rename as...
13965 (state_t.reductions, state_t.shifts): this.
13966
076ab033
AD
139672001-12-05 Akim Demaille <akim@epita.fr>
13968
13969 * src/reduce.c (reduce_grammar_tables): No longer disable the
13970 removal of useless rules via CPP but via `if (0)', so that the
13971 compiler still check the code is valid.
13972 For instance, it should have noticed `rline' no longer exists: use
13973 the `line' member of rule_t.
13974 * src/gram.c (dummy, rline): Remove, unused.
13975
3843c413
AD
139762001-12-05 Akim Demaille <akim@epita.fr>
13977
13978 * src/output.c (pack_vector): Use assert, not berror.
13979 * src/main.c (berror): Remove, unused.
13980
43168960
AD
139812001-12-05 Akim Demaille <akim@epita.fr>
13982
13983 New experimental feature: if --verbose --trace output all the
13984 items of a state, not only its kernel.
13985
13986 * src/print.c (print_core): If `trace_flag', then invoke closure
13987 before outputting the items of the state (print_core is no longer
13988 a correct name them).
13989 (print_results): Invoke new_closure/free_closure if needed.
13990
b2872512
AD
139912001-12-05 Akim Demaille <akim@epita.fr>
13992
13993 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
13994 * src/closure.c, src/closure.h (itemsetsize): Rename as...
13995 (nitemset): for consistency with the rest of the project.
13996
23cbcc6c
AD
139972001-12-05 Akim Demaille <akim@epita.fr>
13998
13999 * src/closure.c (print_closure): Improve.
14000 (closure): Use it for printing input and output.
14001
03ec521c
AD
140022001-12-05 Akim Demaille <akim@epita.fr>
14003
14004 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
14005 indexed by nonterminals.
14006
3a7456dd
AD
140072001-12-05 Akim Demaille <akim@epita.fr>
14008
14009 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
14010 what it was!).
14011 * src/warshall.h: Remove accidental duplication of the content.
14012
1cbcf2e7
AD
140132001-12-05 Akim Demaille <akim@epita.fr>
14014
14015 * src/closure.c (set_fderives): De-obfuscate.
14016
84182270
AD
140172001-12-05 Akim Demaille <akim@epita.fr>
14018
14019 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
14020
3f6f053c
AD
140212001-12-05 Akim Demaille <akim@epita.fr>
14022
14023 * src/closure.c (set_firsts): De-obfuscate.
14024
7a5350ba
AD
140252001-12-05 Akim Demaille <akim@epita.fr>
14026
14027 * src/output.c (action_row): De-obfuscate
14028 using the good o' techniques: arrays not pointers, variable
14029 locality, BITISSET, RESETBIT etc.
14030
d954473d
AD
140312001-12-05 Akim Demaille <akim@epita.fr>
14032
14033 Pessimize the code to simplify it: from now on, all the states
14034 have a valid SHIFTS, which NSHIFTS is possibly 0.
14035
14036 * src/LR0.c (shifts_new): Be global and move to..
14037 * src/state.c, src/state.h: here.
14038 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
14039 * src/print_graph: Adjust.
14040
9839bbe5
AD
140412001-12-05 Akim Demaille <akim@epita.fr>
14042
14043 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
14044 * src/conflicts.c: Use it.
14045 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
14046 incorrectly ``simplified''.
14047
9f136c07
AD
140482001-12-05 Akim Demaille <akim@epita.fr>
14049
14050 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
14051 using the good o' techniques: arrays not pointers, variable
14052 locality, BITISSET, RESETBIT etc.
14053
b608206e
AD
140542001-12-05 Akim Demaille <akim@epita.fr>
14055
14056 * src/state.h (SHIFT_SYMBOL): New.
14057 * src/conflicts.c: Use it to deobfuscate.
14058
52afa962
AD
140592001-12-05 Akim Demaille <akim@epita.fr>
14060
14061 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
14062 (print_reductions): De-obfuscate using the good o' techniques:
14063 arrays not pointers, variable locality, BITISSET.
14064
e74dc321
AD
140652001-12-05 Akim Demaille <akim@epita.fr>
14066
14067 * src/conflicts.c (print_reductions): Arrays, not pointers.
14068 Use BITISSET.
14069
768fca83
AD
140702001-12-05 Akim Demaille <akim@epita.fr>
14071
14072 * src/conflicts.c (print_reductions): Pessimize, but clarify.
14073
a17e599f
AD
140742001-12-05 Akim Demaille <akim@epita.fr>
14075
14076 * src/conflicts.c (print_reductions): Improve variable locality.
14077
a04bc341
AD
140782001-12-05 Akim Demaille <akim@epita.fr>
14079
14080 * src/conflicts.c (print_reductions): Pessimize, but clarify.
14081
c8ea038e
AD
140822001-12-05 Akim Demaille <akim@epita.fr>
14083
14084 * src/conflicts.c (print_reductions): Improve variable locality.
14085
aa2aab3c
AD
140862001-12-05 Akim Demaille <akim@epita.fr>
14087
14088 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
14089 * src/lalr.c: Use them.
14090
b178c8cc
AD
140912001-12-05 Akim Demaille <akim@epita.fr>
14092
14093 * src/LR0.c (augment_automaton): Formatting changes.
14094 Better variable locality.
14095
f67d13aa
AD
140962001-12-05 Akim Demaille <akim@epita.fr>
14097
14098 * src/lalr.c (matrix_print): New.
14099 (transpose): Use it.
14100 Use arrays instead of pointers.
14101
c2713865
AD
141022001-12-05 Akim Demaille <akim@epita.fr>
14103
14104 * src/lalr.c (maxrhs): Move to...
14105 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
14106 * src/lalr.c (build_relations): Adjust.
14107
9887c18a
AD
141082001-12-05 Akim Demaille <akim@epita.fr>
14109
14110 * src/lalr.c (transpose): Free the memory allocated to the
14111 argument, as it is replaced by the results by the unique caller.
14112 (build_relations): Merely invoke transpose: it handles the memory
14113 deallocation.
14114 Improve variable locality.
14115 Avoid variables used as mere abbreviations.
14116 (compute_lookaheads): Use arrays instead of pointers.
14117
4d4f699c
AD
141182001-12-05 Akim Demaille <akim@epita.fr>
14119
14120 * src/lalr.c (initialize_F): Improve variable locality.
14121 Avoid variables used as mere abbreviations.
14122
80a69750
AD
141232001-12-05 Akim Demaille <akim@epita.fr>
14124
14125 * src/derives.c (print_derives): Display the ruleno.
14126 * src/lalr.c (initialize_F, transpose): Better variable locality
14127 to improve readability.
14128 Avoid variables used as mere abbreviations.
14129
fe961097
AD
141302001-12-05 Akim Demaille <akim@epita.fr>
14131
14132 * src/lalr.c (traverse): Use arrays instead of pointers.
14133
e3e4e814
AD
141342001-12-05 Akim Demaille <akim@epita.fr>
14135
14136 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
14137 the handling of squeue.
14138 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
14139
630e182b
AD
141402001-12-05 Akim Demaille <akim@epita.fr>
14141
14142 Because useless nonterminals are now kept alive (instead of being
14143 `destroyed'), we now sometimes examine them, and store information
14144 related to them. Hence we need to know their number, and adjust
14145 memory allocations.
14146
14147 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
14148 static.
14149 * src/LR0.c (allocate_itemsets): The memory allocated to
14150 `symbol_count' was used for two different purpose: once to count
14151 the number of occurrences of each symbol, and later reassigned to
14152 `shift_symbol', containing the symbol that can be shifted from a
14153 given state.
14154 Deobfuscate, i.e., allocate, use and free `symbol_count' here
14155 only, and...
14156 (new_itemsets): Allocate `shift_symbol' here.
14157 (allocate_itemsets): symbol_count includes useless nonterminals.
14158 Make room for them.
14159 (free_storage): Use `free', not `XFREE', for pointers that cannot
14160 be null.
14161
81b51460
AD
141622001-12-05 Akim Demaille <akim@epita.fr>
14163
14164 * src/nullable.c (set_nullable): Deobfuscate the handling of
14165 ritem.
14166 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
14167
3067fbef
AD
141682001-12-05 Akim Demaille <akim@epita.fr>
14169
14170 * src/gram.c, src/gram.h (ritem_print): New.
14171 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
14172 (This useless function was defined only to work around VMS linkers
14173 that can't handle compilation units with variables only).
14174 * src/reduce.c (dump_grammar): Use it to trace the construction of
14175 ritem.
14176
c2bea5f9
PE
141772001-12-04 Paul Eggert <eggert@twinsun.com>
14178
7d27c823
PE
14179 * src/bison.simple (union yyalloc): Change member names
14180 to be the same as the stack names.
14181 (yyparse): yyptr is now union yyalloc *, not char *.
14182 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
14183 and may generate better code on some machines.
c2bea5f9
PE
14184 (yystpcpy): Use prototype if __STDC__ is defined, not just
14185 if __cplusplus is defined.
35687a9d 14186
2c8a9dfa
AD
141872001-11-30 Akim Demaille <akim@epita.fr>
14188
14189 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
14190 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
14191 Gettext doesn't compile cleanly, and dies with -Werror.
14192 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
14193 Include WARNING_CFLAGS here.
14194 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
14195 before being defined.
14196
f4e421e6
AD
141972001-11-27 Paul Eggert <eggert@twinsun.com>
14198
14199 * lib/quotearg.h (quotearg_n, quotearg_n_style):
14200 First arg is int, not unsigned.
14201 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
14202 (SIZE_MAX, UINT_MAX): New macros.
14203 (quotearg_n_options): Abort if N is negative.
14204 Avoid overflow check on hosts where size_t is 64 bits and int
14205 is 32 bits, as overflow is impossible there.
14206 Fix off-by-one typo that caused unnecessary reallocation.
14207
7093d0f5
AD
142082001-11-29 Paul Eggert <eggert@twinsun.com>
14209
14210 Name space cleanup in generated parser.
14211
14212 * doc/bison.texinfo (Bison Parser): Discuss system headers
14213 and their effect on the user name space.
14214
14215 * src/bison.simple:
14216 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
14217 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
14218 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
14219
14220 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
14221 on user names when possible.
14222
14223 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
14224 Simplify test for whather <alloca.h> exists.
14225
14226 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
14227
14228 (<stdio.h>): Include if YYDEBUG.
14229
14230 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
14231 ! defined (yyoverflow) && ! defined (yymemcpy).
14232
14233 (yymemcpy, yyparse): Rename local variables as needed so that
14234 they all begin with 'yy'.
14235
14236 (yystrlen, yystpcpy): New functions.
14237
14238 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
14239 All uses changed.
14240
14241 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
14242 instead of relying on string.h functions. Use YYSTACK_ALLOC
14243 and YYSTACK_FREE instead of malloc and free.
14244
fd51e5ff
AD
142452001-11-30 Akim Demaille <akim@epita.fr>
14246
14247 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
14248 before their first uses.
14249 (YYBISON, YYPURE): Move to the top of the output.
14250
7d13ff5f
AD
142512001-11-30 Akim Demaille <akim@epita.fr>
14252
14253 * tests/reduce.at (Useless Nonterminals): Fix.
14254
892a3995
AD
142552001-11-30 Akim Demaille <akim@epita.fr>
14256
14257 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
14258 if body instead of `;' to pacify GCC's warnings.
14259
68f1e3ed
AD
142602001-11-30 Akim Demaille <akim@epita.fr>
14261
14262 Instead of mapping the LHS of unused rules to -1, keep the LHS
14263 valid, but flag the rules as invalid.
14264
14265 * src/gram.h (rule_t): `useful' is a new member.
14266 * src/print.c (print_grammar): Adjust.
14267 * src/derives.c (set_derives): Likewise.
14268 * src/reader.c (packgram, reduce_output): Likewise.
14269 * src/reduce.c (reduce_grammar_tables): Likewise.
14270 * tests/reduce.at (Underivable Rules, Useless Rules): New.
14271
d2d1b42b
AD
142722001-11-30 Akim Demaille <akim@epita.fr>
14273
14274 * src/reduce.c (reduce_output): Formatting changes.
14275 * src/print.c (print_results, print_grammar): Likewise.
14276 * tests/regression.at (Rule Line Numbers)
14277 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
14278
760b53a8
AD
142792001-11-30 Akim Demaille <akim@epita.fr>
14280
14281 * src/reduce.c (nonterminals_reduce): Instead of throwing away
14282 useless nonterminals, move them at the end of the symbol arrays.
14283 (reduce_output): Adjust.
14284 * tests/reduce.at (Useless Nonterminals): Adjust.
14285
00238958
AD
142862001-11-30 Akim Demaille <akim@epita.fr>
14287
14288 * src/reduce.c: Various comment/formatting changes.
14289 (nonterminals_reduce): New, extracted from...
14290 (reduce_grammar_tables): here.
14291 (reduce_grammar): Call nonterminals_reduce.
14292
396452de
PE
142932001-11-29 Paul Eggert <eggert@twinsun.com>
14294
14295 * src/bison.simple (YYSTACK_REALLOC): Remove.
14296 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
14297 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
14298 New macros.
14299 (union yyalloc): New type.
14300 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
14301 an arbitrary restriction on hosts where size_t is wider than int.
14302
14303 (yyparse): Don't dump core if alloca or malloc fails; instead, report
14304 a parser stack overflow. Allocate just one block of memory for all
14305 three stacks, instead of allocating three blocks; this typically is
14306 faster and reduces fragmentation.
14307
14308 Do not limit the number of items in the stack to a value that fits
14309 in 'int', as this is an arbitrary limit on hosts with 64-bit
14310 size_t and 32-bit int.
14311
147e184c
MA
143122001-11-29 Marc Autret <autret_m@epita.fr>
14313
14314 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
14315 of defining YYERROR_VERBOSE.
14316 [AT_DATA]: $4 is now out of C declarations in the prologue.
14317
426cf563
MA
143182001-11-28 Marc Autret <autret_m@epita.fr>
14319
14320 * src/reader.c (parse_dquoted_param): New.
14321 (parse_skel_decl): Use it.
14322 * src/lex.h: Add its prototype.
14323 * src/lex.c (literalchar): Become not static.
14324
c7925b99
MA
143252001-11-28 Marc Autret <autret_m@epita.fr>
14326
14327 * src/output.h: And put its extern declaration here.
14328 * src/output.c (error_verbose): Define here.
14329 (prepare): Echo name modification.
14330 * src/getargs.h: Clean its extern declaration.
14331 * src/getargs.c (error_verbose_flag): Remove.
14332 (getargs): Remove case 'e'.
14333 * src/options.c (option_table): 'error-verbose' is now seen as simple
14334 percent option.
14335 Include output.h.
14336
14337 * src/reader.c (read_declarations): Remove case tok_include.
14338 (parse_include_decl): Remove.
14339 * src/lex.h (token_t): Remove tok_include.
14340 * src/options.c (option_table): 'include' is now a simple command line
14341 option.
14342
5b5d1929
MA
143432001-11-28 Marc Autret <autret_m@epita.fr>
14344
14345 * src/bison.simple: Adjust muscle names.
14346 * src/muscle_tab.c (muscle_init): Also rename the muscles.
14347 * src/output.c (prepare): s/_/-/ for the muscles names.
14348 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
14349
8850be4b
MA
143502001-11-28 Marc Autret <autret_m@epita.fr>
14351
14352 * src/bison.simple: Fix debug.
14353 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
14354
4a38e613
AD
143552001-11-28 Akim Demaille <akim@epita.fr>
14356
14357 * src/LR0.c (shifts_new): New.
14358 (save_shifts, insert_start_shift, augment_automaton): Use it.
14359
4b35e1c1
AD
143602001-11-28 Akim Demaille <akim@epita.fr>
14361
14362 * src/closure.c (closure): `b' and `ruleno' denote the same value:
14363 keep ruleno only.
14364
d2b04478
AD
143652001-11-28 Akim Demaille <akim@epita.fr>
14366
14367 * src/closure.c (closure): Instead of looping over word in array
14368 then bits in words, loop over bits in array.
14369
2c4c30aa
AD
143702001-11-28 Akim Demaille <akim@epita.fr>
14371
14372 * src/closure.c (closure): No longer optimize the special case
14373 where all the bits of `ruleset[r]' are set to 0, to make the code
14374 clearer.
14375
576890b7
AD
143762001-11-28 Akim Demaille <akim@epita.fr>
14377
14378 * src/closure.c (closure): `r' and `c' are new variables, used to
14379 de-obfuscate accesses to RULESET and CORE.
14380
cb487d7d
AD
143812001-11-28 Akim Demaille <akim@epita.fr>
14382
14383 * src/reduce.c (reduce_print): Use ngettext.
14384 (dump_grammar): Improve the trace accuracy.
14385
6013d43f
AD
143862001-11-28 Akim Demaille <akim@epita.fr>
14387
14388 * src/reduce.c (dump_grammar): Don't translate trace messages.
14389
cb4956ee
AD
143902001-11-28 Akim Demaille <akim@epita.fr>
14391
14392 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
14393 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
14394 as all tags are free'ed afterwards.
14395 From Enrico Scholz.
14396
648185ab
PE
143972001-11-27 Paul Eggert <eggert@twinsun.com>
14398
14399 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
14400 use alloca when we didn't want to, and vice versa.
14401
68254a03
MA
144022001-11-27 Marc Autret <autret_m@epita.fr>
14403
9113b58f
AD
14404 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
14405 initialization.
68254a03
MA
14406 * src/output.c (prepare): Remove its update.
14407
04d843a2
MA
144082001-11-27 Marc Autret <autret_m@epita.fr>
14409
14410 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
14411 Use %error-verbose.
14412
d2079671 144132001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
14414
14415 * src/bison.simple: Remove YYERROR_VERBOSE using.
14416 Use %%error_verbose.
14417 (yyparse): Likewise.
14418 * src/output.c (prepare): Give its final value.
14419 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
14420 * src/getargs.h: Add its extern declaration.
14421 * src/getargs.c (error_verbose_flag): New int.
14422 (getargs): Update to catch new case.
14423 * src/options.c (option_table): 'error-verbose' is a new option.
14424 (shortopts): Update.
14425
e0327bc8
AD
144262001-11-27 Akim Demaille <akim@epita.fr>
14427
14428 * src/system.h: Use intl/libgettext.h.
14429 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
14430
000f1a3c
AD
144312001-11-27 Akim Demaille <akim@epita.fr>
14432
14433 * tests/torture.at (Exploding the Stack Size with Malloc):
14434 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
14435
26cfe0be
AD
144362001-11-27 Akim Demaille <akim@epita.fr>
14437
14438 * src/files.c: Include error.h.
14439 Reported by Hans Aberg.
14440
f6bd5427
MA
144412001-11-26 Marc Autret <autret_m@epita.fr>
14442
d2079671 14443 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
14444 (read_declarations): Add case tok_include.
14445 * src/getargs.h (include): Add its extern definition.
14446 * src/getargs.c (include): New const char *.
14447 (getargs): Add case '-I'.
14448 * src/options.c (option_table): Add include as command line and
14449 percent option.
14450 * src/lex.h (token_t): Add tok_include.
14451
2ca209c1
AD
144522001-11-26 Akim Demaille <akim@epita.fr>
14453
14454 * src/reader.c (readgram): Make sure rules for mid-rule actions
14455 have a lineno equal to that of their host rule.
14456 Reported by Hans Aberg.
14457 * tests/regression.at (Rule Line Numbers): New.
14458
0e41b407
AD
144592001-11-26 Akim Demaille <akim@epita.fr>
14460
14461 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
14462 size_ts.
14463
144642001-11-26 Akim Demaille <akim@epita.fr>
14465
14466 * src/complain.c, src/complain.h (error): Remove, provided by
14467 lib/error.[ch].
14468
e0c40012
AD
144692001-11-26 Akim Demaille <akim@epita.fr>
14470
14471 * src/reader.c (read_declarations): Don't abort on tok_illegal,
14472 issue an error message.
14473 * tests/regression.at (Invalid %directive): New.
14474 Reported by Hans Aberg.
14475
5e147124
AD
144762001-11-26 Akim Demaille <akim@epita.fr>
14477
14478 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
14479 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
14480
a034c8b8
AD
144812001-11-26 Akim Demaille <akim@epita.fr>
14482
14483 * src/conflicts.c (conflicts_print): Don't complain at all when
14484 there are no reduce/reduce conflicts, and as many shift/reduce
14485 conflicts as expected.
14486 * tests/regression.at (%expect right): Adjust.
14487
c64a20f3
AD
144882001-11-23 Akim Demaille <akim@epita.fr>
14489
14490 * lib/alloca.c: Update, from fileutils.
14491
5b0d29bb
AD
144922001-11-23 Akim Demaille <akim@epita.fr>
14493
14494 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
14495
722c4bfe
AD
144962001-11-23 Akim Demaille <akim@epita.fr>
14497
14498 * src/system.h: Include alloca.h.
14499 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
14500
6255b435
AD
145012001-11-23 Akim Demaille <akim@epita.fr>
14502
14503 * src/print_graph.c (print_actions): Remove `rule', unused.
14504 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
14505 pacify GCC's signed < unsigned warnings.
14506 * src/closure.c (itemsetsize): Likewise.
14507 * src/reader.c (symbol_list_new): Static.
14508
b29b2ed5
AD
145092001-11-23 Akim Demaille <akim@epita.fr>
14510
14511 Attaching lineno to buckets is stupid, since only one copy of each
14512 symbol is kept, only the line of the first occurrence is kept too.
14513
14514 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
14515 * src/reader.c (rline_allocated): Remove, unused.
14516 (symbol_list): Have a `line' member.
14517 (symbol_list_new): New.
14518 (readgram): Use it.
14519 * src/print.c (print_grammar): Output the rule line numbers.
14520 * tests/regression.at (Solved SR Conflicts)
14521 (Unresolved SR Conflicts): Adjust.
14522 Reported by Hans Aberg.
14523
a81b1d4a
MA
145242001-11-22 Marc Autret <autret_m@epita.fr>
14525
14526 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
14527
c1ecb3c1
MA
145282001-11-22 Marc Autret <autret_m@epita.fr>
14529
14530 * src/muscle_tab.c (muscle_init): Remove initialization of
14531 skeleton muscle.
14532 * src/output.c (output_master_parser): Do it here.
14533
fbe01355
AD
145342001-11-20 Akim Demaille <akim@epita.fr>
14535
14536 * po/sv.po: New.
14537 * configure.in (ALL_LINGUAS): Adjust.
14538 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
14539 longer contains strings to translate.
14540
81e895c0
AD
145412001-11-19 Akim Demaille <akim@epita.fr>
14542
14543 * src/conflicts.c (conflicts_print): Add a missing \n.
14544
6bb1878b
AD
145452001-11-19 Akim Demaille <akim@epita.fr>
14546
14547 * src/nullable.c (nullable_print): New.
14548 (set_nullable): Call it when tracing.
14549 Better locality of variables.
14550
d9ec2d07
AD
145512001-11-19 Akim Demaille <akim@epita.fr>
14552
14553 * src/print.c (print_actions): Better locality of variables.
14554
720e5c1b
AD
145552001-11-19 Akim Demaille <akim@epita.fr>
14556
14557 * src/derives.c (print_derives): Fix and enrich.
14558 * src/closure.c (print_fderives): Likewise.
14559
fb908786
AD
145602001-11-19 Akim Demaille <akim@epita.fr>
14561
14562 * src/closure.c (itemsetend): Remove, replaced with...
14563 (itemsetsize): new.
14564
125ecb56
AD
145652001-11-19 Akim Demaille <akim@epita.fr>
14566
14567 * src/LR0.c (kernel_end): Remove, replaced with...
14568 (kernel_size): new.
14569
d8cf039f
AD
145702001-11-19 Akim Demaille <akim@epita.fr>
14571
14572 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
14573 to clarify.
14574
7bec0760
AD
145752001-11-19 Akim Demaille <akim@epita.fr>
14576
14577 * src/closure.c (closure): Use arrays instead of pointers to clarify.
14578
c87d4863
AD
145792001-11-19 Akim Demaille <akim@epita.fr>
14580
14581 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
14582 trace messages.
14583 * src/LR0.c: Likewise.
14584 (allocate_itemsets): Use arrays instead of pointers to clarify.
14585
9bfe901c
AD
145862001-11-19 Akim Demaille <akim@epita.fr>
14587
14588 * src/getargs.c (statistics_flag): Replace with...
14589 (trace_flag): New.
14590 (longopts): Accept --trace instead of --statistics.
14591 * src/getargs.h, src/options.c: Adjust.
14592 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
14593 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
14594
97db7bd4
AD
145952001-11-19 Akim Demaille <akim@epita.fr>
14596
cc72668c 14597 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
14598 pointers to clarify the code.
14599 (save_reductions, save_shifts): Factor common parts of alternatives.
14600
2c5f66ed
AD
146012001-11-19 Akim Demaille <akim@epita.fr>
14602
14603 * src/LR0.c (new_state, get_state): Complete TRACE code.
14604 * src/closure.c: Include `reader.h' to get `tags', needed by the
14605 trace code.
14606 Rename the conditional DEBUG as TRACE.
14607 Output consistently TRACEs to stderr, not stdout.
14608 * src/derives.c: Likewise.
14609 * src/reduce.c: (inaccessable_symbols): Using if is better style
14610 than goto.
14611 Use `#if TRACE' instead of `#if 0' for tracing code.
14612
300f275f
AD
146132001-11-19 Akim Demaille <akim@epita.fr>
14614
14615 * src/system.h (LIST_FREE, shortcpy): New.
14616 * src/LR0.c: Use them.
14617 * src/output.c (free_itemsets, free_reductions, free_shifts):
14618 Remove, replaced by LIST_FREE.
14619
f59c437a
AD
146202001-11-19 Akim Demaille <akim@epita.fr>
14621
14622 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
14623 (REDUCTIONS_ALLOC): New.
14624 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
14625 allocation.
14626
6986fd9e
AD
146272001-11-19 Akim Demaille <akim@epita.fr>
14628
14629 * src/LR0.c (new_state): Complete trace code.
14630 * src/nullable.c (set_nullable): Don't translate traces.
14631
4bc30f78
AD
146322001-11-19 Akim Demaille <akim@epita.fr>
14633
14634 * src/print_graph.c (print_core): Better locality of variables.
14635 * src/print.c (print_core): Likewise.
14636
08a946e0
AD
146372001-11-19 Akim Demaille <akim@epita.fr>
14638
14639 * src/vcg.c: You do the output, so you are responsible of the
14640 handling of VCG syntax, in particular: use quotearg.
14641 * src/print_graph.c: Don't.
14642 (print_actions): Don't output the actions as part of the nodes,
14643 since that's the job of the edges.
14644 (print_state): Don't output by hand: fill the node description,
9bfe901c 14645 and ask for its output.
08a946e0 14646
f0473484
AD
146472001-11-19 Akim Demaille <akim@epita.fr>
14648
cc72668c
AD
14649 * src/bison.simple (yyparse): When verbosely reporting an error,
14650 no longer put additional quotes around token names.
f0473484
AD
14651 * tests/calc.at: Adjust.
14652
e41dc700
AD
146532001-11-19 Akim Demaille <akim@epita.fr>
14654
14655 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
14656 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
14657 * src/output.c: Adjust.
14658
652a871c
AD
146592001-11-19 Akim Demaille <akim@epita.fr>
14660
14661 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
14662 (rule_t): this.
14663 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
14664
b2ed6e58
AD
146652001-11-19 Akim Demaille <akim@epita.fr>
14666
14667 * src/gram.h (rule_t): New.
14668 (rule_table): New.
14669 (rrhs, rlhs): Remove, part of state_t.
14670 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
14671 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14672 * src/reader.c, src/reduce.c: Adjust.
14673
edad7067
AD
146742001-11-19 Akim Demaille <akim@epita.fr>
14675
14676 * src/reader.c (symbols_output): New, extracted from...
14677 (packsymbols): Here.
14678 (reader): Call it.
14679
3feec034
AD
146802001-11-19 Akim Demaille <akim@epita.fr>
14681
14682 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
14683 (maxrhs): this new function.
14684
ddcd5fdf
AD
146852001-11-19 Akim Demaille <akim@epita.fr>
14686
cc72668c 14687 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
14688 Adjust.
14689
bb527fc2
AD
146902001-11-19 Akim Demaille <akim@epita.fr>
14691
cc72668c 14692 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
14693 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14694 * src/lalr.c: Adjust.
14695
a845a697
AD
146962001-11-19 Akim Demaille <akim@epita.fr>
14697
14698 * src/lalr.c (initialize_LA): Only initialize LA. Let...
14699 (set_state_table): handle the `lookaheads' members.
14700
f004bf6a
AD
147012001-11-19 Akim Demaille <akim@epita.fr>
14702
cc72668c
AD
14703 * src/lalr.h (lookaheads): Removed array, whose contents is now
14704 a member of...
f004bf6a
AD
14705 (state_t): this structure.
14706 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14707 Adjust.
14708
de326cc0
AD
147092001-11-19 Akim Demaille <akim@epita.fr>
14710
cc72668c
AD
14711 * src/lalr.h (consistent): Removed array, whose contents is now
14712 a member of...
de326cc0
AD
14713 (state_t): this structure.
14714 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14715 Adjust.
14716
90b4416b
AD
147172001-11-19 Akim Demaille <akim@epita.fr>
14718
cc72668c
AD
14719 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
14720 contents are now members of...
90b4416b
AD
14721 (state_t): this structure.
14722 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14723 Adjust.
14724
9703cc49
AD
147252001-11-19 Akim Demaille <akim@epita.fr>
14726
14727 * src/lalr.h (state_t): New.
14728 (state_table): Be a state_t * instead of a core **.
14729 (accessing_symbol): Remove, part of state_t.
14730 * src/lalr.c: Adjust.
14731 (set_accessing_symbol): Merge into...
14732 (set_state_table): this.
14733 * src/print_graph.c, src/conflicts.c: Adjust.
14734
d803322e
AD
147352001-11-14 Akim Demaille <akim@epita.fr>
14736
14737 * tests/calc.at, tests/output.at, tests/regression.at,
14738 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
14739 now the tests are run in private dirs, therefore AC_CLEANUP and
14740 family can be simplified to 0-ary.
14741 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
14742 use abs. path to find config.h.
14743 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
14744 stderr, there can be way too much random noise.
14745 Instead pass -Werror to GCC and rely on the exit status.
14746 Reported by Wolfram Wagner.
14747
3d76b07d
AD
147482001-11-14 Akim Demaille <akim@epita.fr>
14749
14750 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
14751 defined only if yyoverflow is defined, to avoid `warning: unused
14752 variable `yyvs1''.
14753 Reported by The Test Suite.
14754
09b503c8
AD
147552001-11-14 Akim Demaille <akim@epita.fr>
14756
14757 * src/print.c: Include reduce.h.
14758 Reported by Hans Aberg.
14759
147602001-11-14 Akim Demaille <akim@epita.fr>
14761
14762 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
14763 Revert a previous patch: these are really const.
14764 * src/conflicts.c (conflict_report): Additional useless pair of
14765 braces to pacify GCC's warnings for `if () if () {} else {}'.
14766 * src/lex.c (parse_percent_token): Replace equal_offset with
14767 arg_offset.
14768 arg is const.
14769 Be sure to strdup `arg' when used, since there is no reason for
14770 token_buffer not to change.
14771
0f37a994
AD
147722001-11-14 Akim Demaille <akim@epita.fr>
14773
14774 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
14775 definition.
14776 * src/main.c (main): Use them.
14777 Suggested by Hans Aberg.
14778
d39d93b8
AD
147792001-11-12 Akim Demaille <akim@epita.fr>
14780
14781 * src/system.h (ngettext): Now that we use ngettext, be sure to
14782 provide a default definition when NLS are not used.
14783
9edcd895
AD
147842001-11-12 Akim Demaille <akim@epita.fr>
14785
14786 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
14787 Use @kbd to denote user input.
14788 (Language and Grammar): ANSIfy the example.
14789 Adjust its layout for info/notinfo.
14790 (Location Tracking Calc): Output error messages to stderr.
14791 Output locations in a more GNUtically correct way.
14792 Fix a couple of Englishos.
14793 Adjust @group/@end group pairs.
14794
7da99ede
AD
147952001-11-12 Akim Demaille <akim@epita.fr>
14796
e3aa65c5 14797 %expect was not functioning at all.
7da99ede
AD
14798
14799 * src/conflicts.c (expected_conflicts): Set to -1.
14800 (conflict_report): Use ngettext.
14801 (conflicts_print): Check %expect and make its violation an error.
14802 * doc/bison.texinfo (Expect Decl): Adjust.
14803 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
14804 * tests/regression.at (%expect not enough, %expect right)
14805 (%expect too much): New.
14806
ba9dda1a
AD
148072001-11-12 Akim Demaille <akim@epita.fr>
14808
14809 * tests/regression.at (Conflicts): Rename as...
14810 (Unresolved SR Conflicts): this.
14811 (Solved SR Conflicts): New.
14812
337c5bd1
AD
148132001-11-12 Akim Demaille <akim@epita.fr>
14814
14815 * src/reduce.c (print_results): Rename as...
14816 (reduce_output): This.
14817 Output to OUT, passed as argument, instead of output_obstack.
14818 (dump_grammar): Likewise.
14819 (reduce_free): New.
14820 Also free V1.
14821 (reduce_grammar): No longer call reduce_output, since...
14822 * src/print.c (print_results): do it.
14823 * src/main.c (main): Call reduce_free;
14824
c73a41af
AD
148252001-11-12 Akim Demaille <akim@epita.fr>
14826
14827 * src/conflicts.c (print_reductions): Accept OUT as argument.
14828 Output to it, not to output_obstack.
14829 * src/print.c (print_actions): Adjust.
14830
0df87bb6
AD
148312001-11-12 Akim Demaille <akim@epita.fr>
14832
14833 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
14834 the result instead of using...
14835 (src_total, rrc_total, src_count, rrc_count): Remove.
14836 (any_conflicts): Remove.
14837 (print_conflicts): Split into...
14838 (conflicts_print, conflicts_output): New.
14839 * src/conflicts.h: Adjust.
14840 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 14841 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
14842 * tests/regression.at (Conflicts): New.
14843 Reported by Tom Lane.
14844
e4d3d4de
AD
148452001-11-12 Akim Demaille <akim@epita.fr>
14846
14847 * tests/regression.at (Invalid input): Remove, duplicate with
14848 ``Invalid input: 1''.
14849
6d7d248e
AD
148502001-11-12 Akim Demaille <akim@epita.fr>
14851
14852 * tests/torture.at (AT_DATA_STACK_TORTURE)
14853 (Exploding the Stack Size with Alloca)
14854 (Exploding the Stack Size with Malloc): New.
14855
e9e4c321
AD
148562001-11-12 Akim Demaille <akim@epita.fr>
14857
14858 * src/bison.simple (YYSTACK_REALLOC): New.
14859 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 14860 Reported by Per Allansson.
e9e4c321 14861
5f7e0832
AD
148622001-11-12 Pascal Bart <pascal.bart@epita.fr>
14863
14864 * src/bison.simple: Define type yystype instead of YYSTYPE, and
14865 define CPP macro, which substitute YYSTYPE by yystype.
14866 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
14867 with yyltype/YYLTYPE. This allows inclusion of the generated
14868 header within the parser if the compiler, such as GGC, accepts
14869 multiple equivalent #defines.
14870 From Akim.
14871
e3f1699f
AD
148722001-11-05 Akim Demaille <akim@epita.fr>
14873
14874 * src/reader.c (symbols_output): New, extracted from...
14875 (packsymbols): here.
14876 (reader): Adjust.
14877
65be0866
AD
148782001-11-05 Akim Demaille <akim@epita.fr>
14879
14880 * src/lex.c (parse_percent_token): s/quotearg/quote/.
14881
e4d910bf
AD
148822001-11-05 Akim Demaille <akim@epita.fr>
14883
14884 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
14885 pattern.
14886
951366c1
AD
148872001-11-05 Akim Demaille <akim@epita.fr>
14888
14889 * src/options.h (struct option_table_struct): set_flags is void*.
14890 * src/options.c (longopts): Support `--output' and `%output'.
14891 (usage): Adjust.
14892 * src/lex.h (tok_setopt): Remove, replaced with...
14893 (tok_intopt, tok_stropt): these new guys.
14894 * src/lex.c (getopt.h): Not needed.
14895 (token_buffer, unlexed_token_buffer): Not const.
14896 (percent_table): Promote `-' over `_' in directive names.
14897 Active `%name-prefix', `file-prefix', and `output'.
14898 (parse_percent_token): Accept possible arguments to directives.
14899 Promote `-' over `_' in directive names.
14900
d8988b2f
AD
149012001-11-04 Akim Demaille <akim@epita.fr>
14902
14903 * doc/bison.texinfo (Decl Summary): Split the list into
14904 `directives for grammars' and `directives for bison'.
14905 Sort'em.
14906 Add description of `%name-prefix', `file-prefix', and `output'.
14907 Promote `-' over `_' in directive names.
14908 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
14909 Simplify the description of `--name-prefix'.
14910 Promote `-' over `_' in directive names.
14911 Promote `--output' over `--output-file'.
14912 Fix the description of `--defines'.
14913 * tests/output.at: Exercise %file-prefix and %output.
14914
6468d18e
AD
149152001-11-02 Akim Demaille <akim@epita.fr>
14916
14917 * doc/refcard.tex: Update.
14918
6b7e85b9
AD
149192001-11-02 Akim Demaille <akim@epita.fr>
14920
14921 * src/symtab.h (SUNDEF): New.
14922 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
14923 stand for `uninitialized', instead of 0.
14924 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
14925 * src/lex.c (lex): Adjust.
14926
14927 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
14928 Number it 0.
14929 Let yylex return it instead of a plain 0.
14930 Reported by Dick Streefland.
14931
cd5aafcf
AD
149322001-11-02 Akim Demaille <akim@epita.fr>
14933
14934 * tests/regression.at (Mixing %token styles): New test.
14935
037ca2f1
AD
149362001-11-02 Akim Demaille <akim@epita.fr>
14937
14938 * src/reader.c (parse_thong_decl): Formatting changes.
14939 (token_translations_init): New, extracted from...
14940 (packsymbols): Here.
14941 Adjust.
14942
270a173c
AD
149432001-11-01 Akim Demaille <akim@epita.fr>
14944
14945 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
14946 Check that `9foo.y' produces correct cpp guards.
14947 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
14948 guards.
14949 Reported by Wwp.
14950
561f9a30
AD
149512001-11-01 Akim Demaille <akim@epita.fr>
14952
14953 * tests/regression.at (Invalid input: 2): New.
14954 * src/lex.c (unlexed_token_buffer): New.
14955 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
14956 too.
14957 Reported by Wwp.
14958
f987e9d2
AD
149592001-11-01 Akim Demaille <akim@epita.fr>
14960
14961 * tests/calc.at: Catch up with 1.30.
14962 * configure.in: Bump to 1.49a.
14963 Adjust to newer Autotest.
14964
0846f581
PB
149652001-10-19 Pascal Bart <pascal.bart@epita.fr>
14966
14967 * src/conflicts.c: Move global variables rrc_total and src_total ...
14968 (print_conflicts): here.
14969 * src/output.c (output): Free global variable user_toknums.
14970 * src/lex.c (token_obstack): Become static.
14971
3c1a79b3
AD
149722001-10-18 Akim Demaille <akim@epita.fr>
14973
14974 * tests/atlocal.in (GCC): Add.
14975 * tests/calc.at: s/m4_match/m4_bmatch/.
14976 s/m4_patsubst/m4_bpatsubst/.
14977 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
14978 * configure.in: AC_SUBST(GCC).
14979
5d52e7d0
MA
149802001-10-14 Marc Autret <autret_m@epita.fr>
14981
14982 * src/options.c (create_long_option_table): Fix.
14983
631aa1d3
AD
149842001-10-10 Akim Demaille <akim@epita.fr>
14985
14986 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
14987
f6ec6d13
AD
149882001-10-04 Akim Demaille <akim@epita.fr>
14989
14990 * src/reader.c (parse_union_decl): Push the caracters in
14991 union_obstack, not attrs_obstack.
14992
342b8b6e
AD
149932001-10-04 Akim Demaille <akim@epita.fr>
14994
14995 Merge in the branch 1.29.
14996
14997 * src/reader.c (packsymbols): Use a temporary obstack for
14998 `%%tokendef', since output_stack is already used elsewhere.
14999
15000 2001-10-02 Akim Demaille <akim@epita.fr>
15001
15002 Bump 1.29d.
15003
15004 2001-10-02 Akim Demaille <akim@epita.fr>
15005
15006 Version 1.29c.
15007
15008 2001-10-02 Akim Demaille <akim@epita.fr>
15009
15010 * tests/regression.at (Invalid CPP headers): New.
15011 From Alexander Belopolsky.
15012 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
15013
15014 2001-10-02 Akim Demaille <akim@epita.fr>
15015
15016 * tests/regression.at (Invalid input): New.
15017 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
15018 Reported by Shura.
15019
15020 2001-10-02 Akim Demaille <akim@epita.fr>
15021
15022 * tests/calc.at: Now that --debug works, the tests must be adjusted.
15023
15024 2001-10-02 Akim Demaille <akim@epita.fr>
15025
15026 * src/output.c (output_parser): Assert `skeleton'.
15027 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
15028 systems.
15029 From Shura.
15030
15031 2001-10-01 Marc Autret <autret_m@epita.fr>
15032
15033 * src/lex.h: Echo modifications.
15034 * src/lex.c (unlex): Parameter is now token_t.
15035 From Hans Aberg.
15036
15037 2001-10-01 Marc Autret <autret_m@epita.fr>
15038
15039 * src/main.c: Include lex.h.
15040 From Hans Aberg.
15041
15042 2001-09-29 Akim Demaille <akim@epita.fr>
15043
15044 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
15045
15046 2001-09-28 Akim Demaille <akim@epita.fr>
15047
15048 * tests/testsuite.at: Update to newer Autotest.
15049 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
15050
15051 2001-09-27 Akim Demaille <akim@epita.fr>
15052
15053 Position independent wrapper.
15054
15055 * tests/bison: Remove.
15056 * tests/bison.in: New.
15057 * configure.in: Adjust.
15058
15059 2001-09-27 Paul Eggert <eggert@twinsun.com>
15060
15061 Port quotearg fixes from tar 1.13.24.
15062
15063 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
15064 tm to be declared.
15065 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
15066 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
15067
15068 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
15069 * m4/mbrtowc.m4: New file.
15070 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
15071 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
15072
15073 2001-09-27 Akim Demaille <akim@epita.fr>
15074
15075 Bump to 1.29c.
15076
15077 2001-09-27 Akim Demaille <akim@epita.fr>
15078
15079 Version 1.29b.
15080
15081 2001-09-25 Akim Demaille <akim@epita.fr>
15082
15083 * src/system.h: Include `xalloc.h'.
15084 Remove it from the C files.
15085 * src/files.c (output_files): Free the obstacks.
15086 * src/lex.c (init_lex): Rename as...
15087 (lex_init): this.
15088 (lex_free): New.
15089 * src/main.c (main): Use it.
15090
15091 2001-09-24 Marc Autret <autret_m@epita.fr>
15092
15093 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
15094 to output informations in fout (FILE*).
15095 (open_graph, close_graph): Likewise.
15096 (output_graph, output_edge, output_node): Likewise.
15097 * src/vcg.h: Update function prototypes.
15098 * src/print_graph.c (print_graph): Open output graph file.
15099 (print_actions): Adjust.
15100 * src/files.h: Remove extern declaration.
15101 * src/files.c: Remove graph_obstack declaration.
15102 (open_files): Remove graph_obstack initialization.
15103 (output_files): Remove graph_obstack saving.
15104
15105 2001-09-24 Marc Autret <autret_m@epita.fr>
15106
15107 * src/files.c (compute_output_file_names): Fix.
15108
15109 2001-09-24 Marc Autret <autret_m@epita.fr>,
15110 Akim Demaille <akim@epita.fr>
15111
15112 * src/reader.c (reader): Remove call to free_symtab ().
15113 * src/main.c (main): Call it here.
15114 Include symtab.h.
15115 * src/conflicts.c (initialize_conflicts): Rename as...
15116 (solve_conflicts): this.
15117 * src/print.c (print_core, print_actions, print_state)
15118 (print_grammar): Dump to a file instead a `output_obstack'.
15119 (print_results): Dump `output_obstack', and then proceed with the
15120 FILE *.
15121 * src/files.c (compute_output_file_names, close_files): New.
15122 (output_files): Adjust.
15123 * src/main.c (main): Adjust.
15124
15125 2001-09-23 Marc Autret <autret_m@epita.fr>
15126
15127 * src/files.c (compute_header_macro): Computes header macro name
15128 from spec_defines_file when given.
15129
15130 2001-09-23 Marc Autret <autret_m@epita.fr>
15131
15132 * src/files.c (output_files): Add default extensions.
15133
15134 2001-09-22 Akim Demaille <akim@epita.fr>
15135
15136 * src/conflicts.c (finalize_conflicts): Rename as...
15137 (free_conflicts): this.
15138
15139 2001-09-22 Akim Demaille <akim@epita.fr>
15140
15141 * src/gram.c (gram_free): Rename back as...
15142 (dummy): this.
15143 (output_token_translations): Free `token_translations'.
15144 * src/symtab.c (free_symtab): Free the tag field.
15145
15146 2001-09-22 Akim Demaille <akim@epita.fr>
15147
15148 Remove `translations' as it is always set to true.
15149
15150 * src/gram.h: Adjust.
15151 * src/reader.c (packsymbols, parse_token_decl): Adjust
15152 * src/print.c (print_grammar): Adjust.
15153 * src/output.c (output_token_translations): Adjust.
15154 * src/lex.c (lex): Adjust.
15155 * src/gram.c: Be sure the set pointers to NULL.
15156 (dummy): Rename as...
15157 (gram_free): this.
15158
15159 2001-09-22 Akim Demaille <akim@epita.fr>
15160
15161 * configure.in: Invoke AM_LIB_DMALLOC.
15162 * src/system.h: Use dmalloc.
15163 * src/LR0.c: Be sure to have pointers initialized to NULL.
15164 (allocate_itemsets): Allocate kernel_items only if needed.
15165
15166 2001-09-22 Akim Demaille <akim@epita.fr>
15167
15168 * configure.in: Bump to 1.29b.
15169 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
15170 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
15171 need xmalloc.c in calc.y.
15172 From Pascal Bart.
15173
15174 2001-09-21 Akim Demaille <akim@epita.fr>
15175
15176 Version 1.29a.
15177 * Makefile.maint, config/config.guess, config/config.sub,
15178 * config/missing: Update from masters.
15179 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
15180 upon package.m4.
15181 * configure.in (ALL_LINGUAS): Add `tr'.
15182
15183 2001-09-21 Akim Demaille <akim@epita.fr>
15184
15185 * tests/Makefile.am (package.m4): Move to...
15186 ($(srcdir)/$(TESTSUITE)): here.
15187
15188 2001-09-20 Akim Demaille <akim@epita.fr>
15189
15190 * src/complain.c: No longer try to be standalone: use system.h.
15191 Don't assume __STDC__ is defined to 1. Just test if it is defined.
15192 * src/complain.h: Likewise.
15193 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
15194 Remove the unused variable `n'.
15195 From Albert Chin-A-Young.
15196
15197 2001-09-18 Marc Autret <autret_m@epita.fr>
15198
15199 * doc/bison.1: Update.
15200 * doc/bison.texinfo (Bison Options): Update --defines and --graph
15201 descriptions.
15202 (Option Cross Key): Update.
15203 Add --graph.
15204
15205 2001-09-18 Marc Autret <autret_m@epita.fr>
15206
15207 * tests/regression.at: New test (comment in %union).
15208
15209 2001-09-18 Marc Autret <autret_m@epita.fr>
15210
15211 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
15212 do that.
15213 Reported by Keith Browne.
15214
15215 2001-09-18 Marc Autret <autret_m@epita.fr>
15216
15217 * tests/output.at: Add tests for --defines and --graph.
15218
15219 2001-09-18 Marc Autret <autret_m@epita.fr>
15220
15221 * tests/output.at: Removes tests of %{header,src}_extension features.
15222
15223 2001-09-18 Akim Demaille <akim@epita.fr>
15224
15225 * tests/Makefile.am (package.m4): New.
15226 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
15227 (_AT_CHECK_CALC_ERROR): Likewise.
15228 Factor the `, ' part of verbose error messages.
15229
15230 2001-09-18 Marc Autret <autret_m@epita.fr>
15231
15232 * src/getargs.c (longopts): Declare --defines and --graph as options
15233 with optional arguments.
15234 * src/files.h: Add extern declarations.
15235 * src/files.c (spec_graph_file, spec_defines_file): New.
15236 (output_files): Update.
15237 Remove CPP-outed code.
15238
15239 2001-09-18 Marc Autret <autret_m@epita.fr>
15240
15241 Turn off %{source,header}_extension feature.
15242
15243 * src/files.c (compute_exts_from_gf): Update.
15244 (compute_exts_from_src): Update.
15245 (output_files): CPP-out useless code.
15246 * src/files.h: Remove {header,source}_extension extern declarations.
15247 * src/reader.c (parse_dquoted_param): CPP-out.
15248 (parse_header_extension_decl): Remove.
15249 (parse_source_extension_decl): Remove.
15250 (read_declarations): Remove cases tok_{hdrext,srcext}.
15251 * src/lex.c (percent_table): Remove {header,source}_extension entries.
15252 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
15253
15254 2001-09-10 Akim Demaille <akim@epita.fr>
15255
15256 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
15257 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
15258 (AT_CHECK_OUTPUT): this.
15259 Merely check ls' exit status, its output is useless.
15260
15261 2001-09-10 Akim Demaille <akim@epita.fr>
15262
15263 * tests/calc.at: Use m4_match.
15264 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
15265
15266 2001-09-10 Marc Autret <autret_m@epita.fr>,
15267 Akim Demaille <akim@epita.fr>
15268
15269 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
15270 enum color_e.
15271 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
15272 to `normal'.
15273 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
15274 * src/lex.h: Adjust prototype.
15275 (token_t): Add `tok_undef'.
15276 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
15277 (parse_percent_token): Now returns token_t.
15278 Add default statement in switch.
15279 (lex): Separate `c' as an input variable, from the token_t result
15280 part.
15281 (unlexed): Is a token_t.
15282
15283 2001-09-10 Akim Demaille <akim@epita.fr>
15284
15285 * configure.in: Bump to 1.29a.
15286
15287 2001-09-07 Akim Demaille <akim@epita.fr>
15288
15289 Version 1.29.
15290
15291 2001-08-30 Akim Demaille <akim@epita.fr>
15292
15293 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
15294 * m4/atconfig.m4: Remove.
15295 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
15296 * tests/bison: New.
15297 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
15298 m4_if, m4_patsubst, and m4_regexp.
15299 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
15300 `input' file instead of echo.
15301
15302 2001-08-29 Akim Demaille <akim@epita.fr>
15303
15304 Bump to 1.28e.
15305
15306 2001-08-29 Akim Demaille <akim@epita.fr>
15307
15308 Version 1.28d.
15309
15310 2001-08-29 Paul Eggert <eggert@twinsun.com>
15311
15312 * src/bison.simple (yyparse): Don't take the address of an
15313 item before the start of an array, as that doesn't conform to
15314 the C Standard.
15315
15316 2001-08-29 Robert Anisko <anisko_r@epita.fr>
15317
15318 * doc/bison.texinfo (Location Tracking Calc): New node.
15319
15320 2001-08-29 Paul Eggert <eggert@twinsun.com>
15321
15322 * src/output.c (output): Do not define const, as this now
15323 causes more problems than it cures.
15324
15325 2001-08-29 Akim Demaille <akim@epita.fr>
15326
15327 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
15328 the nodes.
15329 Be sure to tag the `detailmenu'.
15330
15331 2001-08-29 Akim Demaille <akim@epita.fr>
15332
15333 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
15334 download in a tmp dir.
15335
15336 2001-08-28 Marc Autret <autret_m@epita.fr>
15337
15338 * config/depcomp: New file.
15339
15340 2001-08-28 Marc Autret <autret_m@epita.fr>
15341
15342 * doc/bison.1 (mandoc): Adjust.
15343 From Juan Manuel Guerrero.
15344
15345 2001-08-28 Marc Autret <autret_m@epita.fr>
15346
15347 * src/print_graph.c (print_state): Fix.
15348
15349 2001-08-27 Marc Autret <autret_m@epita.fr>
15350
15351 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
15352 char * members.
15353 Echo modifications to the functions prototypes.
15354 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
15355
15356 2001-08-27 Marc Autret <autret_m@epita.fr>
15357
15358 * src/vcg.c: Include `xalloc.h'.
15359 (add_colorentry): New.
15360 (add_classname): New.
15361 (add_infoname): New.
15362 * src/vcg.h: Add new prototypes.
15363
15364 2001-08-27 Akim Demaille <akim@epita.fr>
15365
15366 * Makefile.maint: Sync. again with CVS Autoconf.
15367
15368 2001-08-27 Akim Demaille <akim@epita.fr>
15369
15370 * Makefile.maint: Formatting changes.
15371 (po-update, cvs-update, update): New targets.
15372 (AMTAR): Remove.
15373
15374 2001-08-27 Akim Demaille <akim@epita.fr>
15375
15376 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15377 * Makefile.maint: Sync. with CVS Autoconf.
15378
15379 2001-08-27 Marc Autret <autret_m@epita.fr>
15380
15381 * src/vcg.h (struct infoname_s): New.
15382 (struct colorentry_s): New.
15383 (graph_s): New fields {vertical,horizontal}_order in structure.
15384 Add `infoname' field.
15385 Add `colorentry' field;
15386 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
15387 (G_HORIZONTAL_ORDER): New.
15388 (G_INFONAME): New.
15389 (G_COLORENTRY): New.
15390 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
15391 Add output of `infoname'.
15392 Add output of `colorentry'.
15393
15394 2001-08-27 Marc Autret <autret_m@epita.fr>
15395
15396 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
15397 This one shadowed a global parameter.
15398
15399 2001-08-24 Marc Autret <autret_m@epita.fr>
15400
15401 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
15402 instead of `unsigned'.
15403 (print_state): Do not call obstack_object_size () in obstack_grow ()
15404 to avoid macro variables shadowing.
15405
15406 2001-08-23 Marc Autret <autret_m@epita.fr>
15407
15408 * src/lex.c (percent_table): Typo: s/naem/name/.
15409 Add graph option.
15410 Normalize new options declarations.
15411
15412 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
15413
15414 * tests/suite.at: Exercise %header_extension and %source_extension.
15415
15416 2001-08-16 Marc Autret <autret_m@epita.fr>
15417
15418 * src/reader.c (parse_dquoted_param): New.
15419 (parse_header_extension_decl): Use it.
15420 (parse_source_extension_decl): Likewise.
15421
15422 2001-08-16 Marc Autret <autret_m@epita.fr>
15423
15424 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
15425 (get_xxxx_str): Use assert () instead of complain ().
15426 Remove return invokations in default cases.
15427 (get_decision_str): Modify default behaviour. Remove second argument.
15428 Echo modifications on calls.
15429 (output_graph): Fix.
15430
15431 2001-08-16 Marc Autret <autret_m@epita.fr>
15432
15433 * src/getargs.c (usage): Update with ``-g, --graph''.
15434
15435 2001-08-16 Marc Autret <autret_m@epita.fr>
15436
15437 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
15438 (Option Cross Key): Likewise.
15439 * doc/bison.1: Update.
15440
1c8c2190
PB
154412001-09-25 Pascal Bart <pascal.bart@epita.fr>
15442
15443 * src/output.c (output_master_parser): Don't finish action_obstack.
15444 (output_parser): Don't care about the muscle action, here.
15445 (prepare): Copy the action_obstack in the action muscle.
15446 (output): Free action_obstack.
15447
180d45ba
PB
154482001-09-23 Pascal Bart <pascal.bart@epita.fr>
15449
15450 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
15451 will contain `%union' declaration.
15452 (parse_union_decl): Delete #line directive output.
15453 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
15454 informations about %union.
15455 (parse_union_decl): Copy the union_obstack in the muscle stype.
15456 * src/bison.simple: Add new #line directive.
15457 Add typdef %%stype YYSTYPE.
15458
c51d1a19
PB
154592001-09-23 Pascal Bart <pascal.bart@epita.fr>
15460
15461 * src/bison.simple: Add new `#line' directive.
15462
6f9344da
PB
154632001-09-22 Pascal Bart <pascal.bart@epita.fr>
15464
15465 * src/bison.simple: New `#line' directive.
15466 * src/output.c (output_parser): Support new dynamic muscle input_line.
15467
652def80
MA
154682001-09-22 Marc Autret <autret_m@epita.fr>
15469
15470 * src/output.c (output_master_parser): New.
15471 (output_parser): Be more re-entrant.
15472
25b222fa
MA
154732001-09-21 Marc Autret <autret_m@epita.fr>
15474
15475 * src/reader.c (copy_definition, parse_union_decl): Update and use
15476 `linef' muscle.
15477 (copy_action): Likewise.
15478 Use obstack_1grow ().
15479 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
15480
6bc35ae5
MA
154812001-09-21 Marc Autret <autret_m@epita.fr>
15482
15483 * src/options.c (option_table): Adjust.
15484 * src/lex.c (parse_percent_token): Fix.
15485
c0629aa1
PB
154862001-09-20 Pascal Bart <pascal.bart@epita.fr>
15487
15488 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 15489
82b6d266
PB
154902001-09-20 Pascal Bart <pascal.bart@epita.fr>
15491
15492 * src/lex.c (parse_percent_token): Change type of variable `tx', which
15493 is now an option_table_struct*.
15494 (option_strcmp): New function option_strcmp.
15495 (parse_percent_token): Call option_strcmp.
15496 * src/getargs.c (xalloc.h, options.h): Include it.
15497 (getargs): Call create_long_option_table.
15498 (getargs): Free longopts at the end of the function.
15499 (shortopts): Move in options.c.
15500 * src/options.c (create_long_option_table): New function. Convert
15501 information from option_table to option structure.
15502 * src/reader.c (options.h): Include it.
15503
15504 * src/Makefile.am: Adjust.
15505 * src/options.c (option_table): Create from longopts and percent_table.
15506 * src/getargs.c (longopts): Delete.
15507 * src/lex.c (struct percent_table_struct): Delete.
15508 (percent_table): Delete.
15509 (options.h): Include it.
15510 * src/options.c: Create.
15511 * src/options.h: Create.
15512 Declare enum opt_access_e.
15513 Define struct option_table_struct.
15514
75f5aaea
MA
155152001-09-20 Marc Autret <autret_m@epita.fr>
15516
15517 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
15518 sections of Bison.
15519
f508cb0a
PB
155202001-09-19 Pascal Bart <pascal.bart@epita.fr>
15521
15522 * src/bison.simple: s/%%filename/%%skeleton.
15523 * src/muscle_tab.c (getargs.h): Include it.
15524 (muscle_init): Insert new muscle skeleton.
15525
13105fc1
PB
155262001-09-18 Pascal Bart <pascal.bart@epita.fr>
15527
15528 * src/output.c (output_parser): Delete unused variable actions_dumped.
15529
b0c4483e
PB
155302001-09-07 Pascal Bart <pascal.bart@epita.fr>
15531
15532 * src/output.c (output): Delete call to reader_output_yylsp.
15533 * src/reader.c (reader): Likewise.
ba0fe3c7 15534 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 15535
11d82f03
MA
155362001-09-02 Marc Autret <autret_m@epita.fr>
15537
15538 * src/reader.c: Include muscle_tab.h.
15539 (parse_union_decl): Update.
15540 (parse_macro_decl): Rename parse_muscle_decl.
15541 Update to use renamed functions and variable.
15542 (read_declarations, copy_action, read_additionnal_code, : Updated
15543 with correct variables and functions names.
15544 (packsymbols, reader): Likewise.
342b8b6e 15545
11d82f03 15546 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 15547
11d82f03
MA
15548 * src/output.c: Include muscle_tab.h
15549 In all functions using macro_insert, change by using muscle_insert ().
15550 (macro_obstack): Rename muscle_obstack.
15551 Echo modifications in the whole file.
15552 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
15553 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
15554 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
15555
15556 * src/muscle_tab.h: Update double inclusion macros.
15557 (macro_entry_s): Rename muscle_entry_s.
15558 Update prototypes.
342b8b6e 15559
11d82f03
MA
15560 * src/muscle_tab.c: Include muscle_tab.h.
15561 Rename macro_tabble to muscle_table.
15562 (mhash1, mhash2, mcmp): Use muscle_entry.
15563 (macro_init): Rename muscle_init. Update.
15564 (macro_insert): Rename muscle_insert. Update.
15565 (macro_find): Rename muscle_find. Update.
15566
15567 * src/main.c: Include muscle_tab.h.
15568 (main): Call muscle_init ().
15569 * src/Makefile.am (bison_SOURCES): Echo modifications.
15570
93a37297
MA
155712001-09-02 Marc Autret <autret_m@epita.fr>
15572
f753cd62 15573 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 15574
f753cd62
MA
15575 * src/muscle_tab.c, src/muscle_tab.h: Add files.
15576
155772001-09-02 Marc Autret <autret_m@epita.fr>
15578
15579 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 15580
682d48cd
PB
155812001-09-01 Pascal Bart <pascal.bart@epita.fr>
15582
342b8b6e 15583 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
15584 filename.
15585
087c8fda
MA
155862001-09-01 Marc Autret <autret_m@epita.fr>
15587
15588 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
15589 to an explicit value to activate the feature. We do it here.
15590
dda680cb
PB
155912001-08-31 Pascal Bart <pascal.bart@epita.fr>
15592
15593 * src/output.c (prepare): Delete the `filename' muscule insertion.
15594 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
15595 (parse_union_decl): Likewise.
15596 * src/macrotab.c (macro_init): Initialize filename by infile.
15597
9e644e64
MA
155982001-08-31 Marc Autret <autret_m@epita.fr>
15599
15600 * src/bison.simple (YYLSP_NEEDED): New definition.
15601 * src/output.c (prepare): Add macro insertion of `locations_flag'
15602
17da6427
PB
156032001-08-31 Pascal Bart <pascal.bart@epita.fr>
15604
15605 * src/output.c (prepare): Delete insertion of previous muscles,
15606 and insert the `prefix' muscles.
15607 * src/macrotab.c (macro_init): Likewise.
15608 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 15609 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
15610 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
15611 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 15612 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
15613 name_prefix.
15614
e8cb70b9
PB
156152001-08-31 Pascal Bart <pascal.bart@epita.fr>
15616
15617 * src/main.c (main): Standardize.
15618 * src/output.c (output_table_data, output_parser): Likewise.
15619 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
15620
63c2d5de
MA
156212001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
15622
342b8b6e 15623 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
15624 %%epilogue.
15625 * src/output.c (output): Rename %%declarations to %%prologue.
15626 * src/bison.simple: Echo modifications.
342b8b6e 15627
d8cb5183
MA
156282001-08-31 Marc Autret <autret_m@epita.fr>
15629
15630 * src/reader.c (readgram): CleanUp.
15631 (output_token_defines): Likewise.
15632 (packsymbols): Likewise.
15633 (reader): Likewise.
15634 * src/output.c (output): CPP-out useless code.
15635
6c686258
PB
156362001-08-31 Pascal Bart <pascal.bart@epita.fr>
15637
342b8b6e 15638 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
15639 output_trailers and output_headers.
15640 * src/output.h: Remove obsolete functions prototypes of output_headers
15641 and output_trailers.
15642
8f451ef7
PB
156432001-08-30 Pascal Bart <pascal.bart@epita.fr>
15644
15645 * src/main.c: Include macrotab.h.
342b8b6e 15646 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
15647 Adjust functions prototypes.
15648 * src/macrotab.c (macro_insert): Constify key and value.
15649 (macro_find): Constify key.
15650 (macro_insert): Include 'xalloc.h'
15651 (macro_insert): Use XMALLOC.
15652 (macro_find): Constify return value.
15653 * src/output.c (output_table_data): Rename table to table_data.
15654 (output_parser): Constify macro_key, macro_value.
15655
997b6fd0 156562001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
15657
15658 * src/reader.c (parse_skel_decl): New.
342b8b6e 15659 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
15660 * src/lex.h (token_t): New token `tok_skel'.
15661 * src/lex.c (percent_table): Add skeleton option entry.
15662 Standardize.
15663
ff48177d
MA
156642001-08-29 Marc Autret <autret_m@epita.fr>
15665
15666 * src/bison.simple: Add %%user_code directive at the end.
15667 * src/reader.c (read_additionnal_code): New.
15668 (reader): Use it.
15669 * src/output.c (output_program): Remove.
15670 (output): Update.
15671
b33160bf
MA
156722001-08-28 Marc Autret <autret_m@epita.fr>
15673
15674 * src/output.c (output_actions): Clean up.
4e5caae2 15675 (output_gram): CPP-out useless code.
b33160bf
MA
15676 * src/reader.c (reader): Clean up, CPP-out useless code.
15677
d1a2daf7
PB
156782001-08-28 Pascal Bart <pascal.bart@epita.fr>
15679
342b8b6e 15680 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 15681 directive.
d1a2daf7
PB
15682 * src/bison.simple: Add `%%definitions'.
15683
2b763dfe
MA
156842001-08-28 Marc Autret <autret_m@epita.fr>
15685
15686 * config/depcomp: New file.
15687
f1a87ef6
PE
156882001-08-27 Paul Eggert <eggert@twinsun.com>
15689
15690 * src/bison.simple (yyparse): Don't take the address of an
15691 item before the start of an array, as that doesn't conform to
15692 the C Standard.
15693
82e236e2
RA
156942001-08-27 Robert Anisko <robert.anisko@epita.fr>
15695
f1a87ef6 15696 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
15697 obstack. It was done too late here.
15698
15699 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
15700 completely wrong.
15701 (reader): Initialize the macro obstack here, since we need it to grow
15702 '%define' directives.
15703
15704 * src/reader.h: Declare the macro obstack as extern.
15705
b0cfa28a
RA
157062001-08-27 Robert Anisko <robert.anisko@epita.fr>
15707
15708 * src/output.c (output_parser): Fix. Store single '%' characters in
15709 the output obstack instead of throwing them away.
15710
6fc74234
AD
157112001-08-27 Akim Demaille <akim@epita.fr>
15712
15713 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15714
9c76d118
RA
157152001-08-25 Robert Anisko <robert.anisko@epita.fr>
15716
15717 * lib/Makefile.am: Adjust.
15718
a8289c62
RA
157192001-08-25 Robert Anisko <robert.anisko@epita.fr>
15720
15721 * src/bison.simple: Update and add '%%' directives.
15722
b6610515
RA
157232001-08-25 Robert Anisko <robert.anisko@epita.fr>
15724
15725 * src/reader.c (reader): Remove calls to 'output_headers' and
15726 'output_trailers'. Remove some C output.
15727 (readgram): Disable a piece of code that was writing a default
15728 definition for 'YYSTYPE'.
15729 (reader_output_yylsp): Remove.
15730 (packsymbols): Output token defintions to a macro.
15731 (copy_definition): Disable C output.
6fc74234 15732
b6610515
RA
15733 * src/reader.c (parse_macro_decl): New function used to parse macro
15734 declarations.
15735 (copy_string2): Put the body of copy_string into this new function.
15736 Add a parameter to let the caller choose whether he wants to copy the
15737 string delimiters or not.
15738 (copy_string): Be a simple call to copy_string2 with the last argument
15739 bound to true.
15740 (read_declarations): Add case for macro definition.
15741 (copy_identifier): New.
6fc74234 15742 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
15743 rather than lex.
15744
26f609ff
RA
157452001-08-25 Robert Anisko <robert.anisko@epita.fr>
15746
15747 * src/output.c (prepare): Add prefixed names.
15748 (output_parser): Output semantic actions.
15749 (output_parser): Fix bug on '%%line' directives.
6fc74234 15750
26f609ff
RA
15751 * src/output.c (output_headers): Remove. The C code printed by this
15752 function should now be in the skeletons.
15753 (output_trailers): Remove.
15754 (output): Disable call to 'reader_output_yylsp'.
15755 (output_rule_data): Do not output tables to the table obstack.
15756
15757 * src/output.c: Remove some C dedicated output.
15758 Improve the use of macro and output obstacks.
15759 (output_defines): Remove.
6fc74234 15760
26f609ff
RA
15761 * src/output.c (output_token_translations): Associate 'translate'
15762 table with a macro. No output to the table obstack.
15763 (output_gram): Same for 'rhs' and 'prhs'.
15764 (output_stos): Same for 'stos'.
15765 (output_rule_data): Same for 'r1' and 'r2'.
15766 (token_actions): Same for 'defact'.
15767 (goto_actions): Same for 'defgoto'.
15768 (output_base): Same for 'pact' and 'pgoto'.
15769 (output_table): Same for 'table'.
15770 (output_check): Same for 'check'.
6fc74234 15771
26f609ff
RA
15772 * src/output.c (output_table_data): New function.
15773 (output_short_table): Remove.
15774 (output_short_or_char_table): Remove.
6fc74234 15775
26f609ff
RA
15776 * src/output.c (output_parser): Replace most of the skeleton copy code
15777 with something new. Skeletons are now processed character by character
15778 rather than line by line, and Bison looks for '%%' macros. This is the
15779 first step in making Bison's output process (a lot) more flexible.
15780 (output_parser): Use the macro table.
15781
6f43b113
RA
157822001-08-25 Robert Anisko <robert.anisko@epita.fr>
15783
15784 * src/main.c (main): Initialize the macro table.
15785
dd3127cf
RA
157862001-08-25 Robert Anisko <robert.anisko@epita.fr>
15787
15788 * src/lex.c (percent_table): Add tok_define.
15789 * src/lex.h: Add tok_define.
15790
aa321494
RA
157912001-08-25 Robert Anisko <robert.anisko@epita.fr>
15792
15793 * src/macrotab.c: New file.
15794 * src/macrotab.h: New file.
15795 * src/Makefile.am: Update.
15796
68bd3b6b
RA
157972001-08-25 Robert Anisko <robert.anisko@epita.fr>
15798
15799 * lib/hash.c: New file.
15800 * lib/hash.h: New file.
15801 * lib/Makefile.am: Update.
15802
45f8dd1e
AD
158032001-08-15 Akim Demaille <akim@epita.fr>
15804
15805 Version 1.28c.
15806
40a64a7a 158072001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
15808
15809 * src/reader.c (readgram): Indent output macro YYSTYPE.
15810 (packsymbols): Likewise.
15811 (output_token_defines): Likewise.
15812 * src/files.c: Standardize.
15813 (compute_header_macro): New.
15814 (defines_obstack_save): New. Use compute_header_macro.
15815 (output_files): Update. Use defines_obstack_save.
15816
f9a8293a
AD
158172001-08-15 Akim Demaille <akim@epita.fr>
15818
15819 * doc/bison.texinfo (Table of Symbols): Document
15820 YYSTACK_USE_ALLOCA.
15821
150ca7a7
AD
158222001-08-15 Akim Demaille <akim@epita.fr>
15823
15824 * missing: Update from CVS Automake.
15825 * config/config.guess, config/config.sub, config/texinfo.tex:
15826 Update from gnu.org.
15827
69b5cec4
AD
158282001-08-15 Akim Demaille <akim@epita.fr>
15829
15830 * Makefile.maint: Sync with CVS Autoconf.
15831
f2b5126e
PB
158322001-08-14 Pascal Bart <pascal.bart@epita.fr>
15833
69b5cec4 15834 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
15835 `fdl.texi'.
15836 * doc/fdl.texi: Add to package.
15837
4ecbf796
MA
158382001-08-14 Marc Autret <autret_m@epita.fr>
15839
15840 Turn on %{source,header}_extension features.
15841
69b5cec4 15842 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
15843 source_extension.
15844 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 15845 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
15846 between options.
15847
95fb5662
MA
158482001-08-14 Marc Autret <autret_m@epita.fr>
15849
15850 * src/files.c (compute_base_names): Add extensions computing when
15851 `--file-prefix' used.
15852 Standardize function calls.
15853
78d09da9
MA
158542001-08-13 Marc Autret <autret_m@epita.fr>
15855
69b5cec4 15856 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
15857 defining it (defined but null disables alloca).
15858
5a009f2c
MA
158592001-08-13 Marc Autret <autret_m@epita.fr>
15860
15861 * src/bison.simple (_yy_memcpy): CPP reformat.
15862
1e41465a
PB
158632001-08-13 Pascal Bart <pascal.bart@epita.fr>
15864
15865 * tests/atconfig.in (CPPFLAGS): Fix.
15866
c67a198d
PB
158672001-08-10 Pascal Bart <pascal.bart@epita.fr>
15868
79282c6c 15869 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
15870 `gpl.texi'.
15871 * doc/gpl.texi: Add to package.
15872
09a6de7e
MA
158732001-08-10 Marc Autret <autret_m@epita.fr>
15874
15875 * src/print_graph.h: Fix.
15876 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
15877
b77b9ee0
AD
158782001-08-10 Akim Demaille <akim@epita.fr>
15879
15880 * src/system.h: Provide default declarations for stpcpy, strndup,
15881 and strnlen.
15882
3e259915
MA
158832001-08-10 Robert Anisko <anisko_r@epita.fr>
15884
15885 * doc/bison.texinfo (Locations): Update @$ stuff.
15886
ca96bc2d
MA
158872001-08-09 Robert Anisko <anisko_r@epita.fr>
15888
15889 * src/bison.simple (YYLLOC_DEFAULT): Update.
15890 (yyparse): Adjust.
15891
fdc6758b
MA
158922001-08-08 Marc Autret <autret_m@epita.fr>
15893
b77b9ee0 15894 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
15895 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
15896 Reported by Fabrice Bauzac.
957d4dbf 15897
600cad3b
MA
158982001-08-08 Marc Autret <autret_m@epita.fr>
15899
15900 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
15901 * src/vcg.c (output_node): Fix.
15902 * src/vcg.h: Cleanup.
15903 * src/print_graph.c: Add comments.
b77b9ee0 15904 (node_output_size): New global variable. Simplify the formatting of
600cad3b 15905 the VCG graph output.
b77b9ee0 15906 (print_actions): Unused code is now used. It notifies the final state
600cad3b 15907 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 15908 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
15909 blue.
15910 Get the current node name and node_obstack by argument.
15911 (node_obstack): New variable.
15912 (print_state): Manage node_obstack.
15913 (print_core): Use node_obstack given by argument.
15914 A node is not only computed here but in print_actions also.
15915 (print_graph): CPP out useless code instead of commenting it.
15916
976e528f
AD
159172001-08-07 Pascal Bart <pascal.bart@epita.fr>
15918
15919 * tests/atconfig.in (CPPFLAGS): Fix.
15920
20e8e5ca
AD
159212001-08-07 Akim Demaille <akim@epita.fr>
15922
15923 * src/print_graph.c (quote): New.
15924 (print_core): Use it.
15925
957d4dbf 159262001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 15927
3e3da797
AD
15928 * src/vcg.c (complain.h): Include it.
15929 Unepitaize `return' invocations.
c4b66126 15930 [NDEBUG] (main): Remove.
79282c6c 15931 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
15932 * src/files.c (open_files): Initialize graph_obstack.
15933 * src/print_graph.c (print_actions): CPP out useless code.
15934 (print_core): Don't output the last `\n' in labels.
15935 Use `quote'.
15936 * src/files.c (output_files): Output the VCG file.
15937 * src/main.c (main): Invoke print_graph ();
3e3da797 15938
957d4dbf 159392001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
15940
15941 Automaton VCG graph output.
15942 Using option ``-g'' or long option ``--graph'', you can generate
15943 a gram_filename.vcg file containing a VCG description of the LALR (1)
15944 automaton of your grammar.
15945
15946 * src/main.c: Call to print_graph() function.
15947 * src/getargs.h: Update.
15948 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
15949 (graph_flag): New flag.
15950 (longopts): Update.
15951 (getargs): Add case `g'.
15952 * src/files.c (graph_obstack): New obstack struct.
15953 (open_files): Initialize new obstack.
15954 (output_files): Saves graph_obstack if required.
15955 * src/files.h (graph_obstack): New extern declaration.
15956 * src/Makefile.am: Add new source files.
15957
927c1557 159582001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
15959
15960 * src/print_graph.c, src/print_graph.h (graph): New.
15961 * src/vcg.h: New file.
15962 * src/vcg.c: New file, VCG graph handling.
15963
7333d403
AD
159642001-08-06 Marc Autret <autret_m@epita.fr>
15965
15966 Add of %source_extension and %header_extension which specify
15967 the source or/and the header output file extension.
15968
15969 * src/files.c (compute_base_names): Remove initialisation of
15970 src_extension and header_extension.
15971 (compute_exts_from_gf): Update.
15972 (compute_exts_from_src): Update.
15973 (output_files): Update.
15974 * src/reader.c (parse_header_extension_decl): New.
15975 (parse_source_extension_decl): New.
15976 (read_declarations): New case statements for the new tokens.
15977 * src/lex.c (percent_table): Add entries for %source_extension
15978 and %header_extension.
15979 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
15980
84163231
AD
159812001-08-06 Marc Autret <autret_m@epita.fr>
15982
15983 * configure.in: Bump to 1.28c.
15984 * doc/bison.texinfo: Texinfo thingies.
15985
8303fc42
AD
159862001-08-04 Pascal Bart <pascal.bart@epita.fr>
15987
15988 * tests/atconfig.in (CPPFLAGS): Add.
15989 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
15990
70a84437
AD
159912001-08-03 Akim Demaille <akim@epita.fr>
15992
15993 Version 1.28b.
15994
2ce10144
AD
159952001-08-03 Akim Demaille <akim@epita.fr>
15996
15997 * tests/Makefile.am (check-local): Ship testsuite.
15998 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
15999 Include `string.h'.
16000
1e3e4bc1
AD
160012001-08-03 Akim Demaille <akim@epita.fr>
16002
16003 * configure.in: Try using -Wformat when compiling.
16004
42b45b7f
AD
160052001-08-03 Akim Demaille <akim@epita.fr>
16006
16007 * configure.in: Bump to 1.28b.
16008
8f13fe33
AD
160092001-08-03 Akim Demaille <akim@epita.fr>
16010
16011 * src/complain.c: Adjust strerror_r portability issues.
16012
b37ba92c
AD
160132001-08-03 Akim Demaille <akim@epita.fr>
16014
16015 Version 1.28a.
16016
b0ce6046
AD
160172001-08-03 Akim Demaille <akim@epita.fr>
16018
16019 * src/getargs.c, src/getarg.h (skeleton)): Constify.
16020 * src/lex.c (literalchar): Avoid name clashes on `buf'.
16021 * src/getargs.c: Include complain.h.
16022 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
16023 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
16024
d01c415b
AD
160252001-08-03 Akim Demaille <akim@epita.fr>
16026
16027 * src/reader.c (readgram): Display hidden chars in error messages.
16028
459dd1a6
AD
160292001-08-03 Akim Demaille <akim@epita.fr>
16030
16031 Update to gettext 0.10.39.
16032
53b74c0c
AD
160332001-08-03 Akim Demaille <akim@epita.fr>
16034
16035 * lib/strspn.c: New.
16036
234a3be3
AD
160372001-08-01 Marc Autret <autret_m@epita.fr>
16038
16039 * doc/bison.texinfo: Update.
16040 * doc/bison.1 (mandoc): Update.
16041 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
16042 * src/files.c: Support output files extensions computing.
16043 (src_extension): New static variable.
16044 (header_extension): New static variable.
16045 (tr): New function.
16046 (get_extension_index): New function, gets the index of an extension
16047 filename in a string.
16048 (compute_exts_from_gf): New function, computes extensions from the
16049 grammar file extension.
16050 (compute_exts_from_src): New functions, computes extensions from the
16051 C source file extension, file given by ``-o'' option.
16052 (compute_base_names): Update.
16053 (output_files): Update.
16054
847bf1f5
AD
160552001-08-01 Robert Anisko <anisko_r@epita.fr>
16056
d995fee7 16057 * doc/bison.texi: Document @$.
847bf1f5
AD
16058 (Locations): New section.
16059
d074a105
AD
160602001-07-18 Akim Demaille <akim@epita.fr>
16061
16062 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
16063 * config/prev-version.txt, config/move-if-change: New.
16064 * Makefile.am: Adjust.
16065
3419715d
AD
160662001-07-08 Pascal Bart <pascal.bart@epita.fr>
16067
16068 * src/bison.simple (yyparse): Suppress warning `comparaison
16069 between signed and unsigned'.
16070
62ab6972
AD
160712001-07-05 Pascal Bart <pascal.bart@epita.fr>
16072
16073 * src/getargs.h (raw_flag): Remove.
16074 * src/getargs.c: Die on `-r'/`--raw'.
16075 * src/lex.c (parse_percent_token): Die on `%raw'.
16076 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
16077 * tests/calc.at: Suppress test with option `--raw'.
16078
1e24cc5b
AD
160792001-07-14 Akim Demaille <akim@epita.fr>
16080
16081 * config/: New.
16082 * configure.in: Require Autoconf 2.50.
16083 Update to gettext 0.10.38.
16084
32dfccf8
AD
160852001-03-16 Akim Demaille <akim@epita.fr>
16086
16087 * doc/bison.texinfo: ANSIfy the examples.
16088
cd5bd6ac
AD
160892001-03-16 Akim Demaille <akim@epita.fr>
16090
16091 * getargs.c (skeleton): New variable.
16092 (longopts): --skeleton is a new option.
16093 (shortopts, getargs): -S is a new option.
16094 * getargs.h: Declare skeleton.
16095 * output.c (output_parser): Use it.
16096
5141b016
AD
160972001-03-16 Akim Demaille <akim@epita.fr>
16098
16099 * m4/strerror_r.m4: New.
16100 * m4/error.m4: Run AC_FUNC_STRERROR_R.
16101 * lib/error.h, lib/error.c: Update.
16102
447992b9
AD
161032001-03-16 Akim Demaille <akim@epita.fr>
16104
16105 * src/getargs.c (longopts): Clean up.
16106
274d42ce
AD
161072001-02-21 Akim Demaille <akim@epita.fr>
16108
16109 * src/reader.c (gensym): `gensym_count' is your own.
16110 Use a static buf to create the symbol name, as token_buffer is no
16111 longer a buffer.
16112
22c821f3
AD
161132001-02-08 Akim Demaille <akim@epita.fr>
16114
16115 * src/conflicts.c (conflict_report): Be sure not to append to res
16116 between two calls, which could happen if both first sprintf were
16117 skipped, but not the first cp += strlen.
16118
18569462
AD
161192001-02-08 Akim Demaille <akim@epita.fr>
16120
16121 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
16122 New, from fileutils 4.0.37.
16123 * configure.in: Require Autoconf 2.49c. I took some time before
16124 making this decision. This is the only way out for portability
16125 issues in Bison, it would mean way too much duplicate effort to
16126 import in Bison features implemented in 2.49c since 2.13.
16127 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
16128
0d8f3c8a
AD
161292001-02-02 Akim Demaille <akim@epita.fr>
16130
16131 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 16132 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 16133
f17bcd1f
AD
161342001-01-19 Akim Demaille <akim@epita.fr>
16135
16136 Get rid of the ad hoc handling of token_buffer in the scanner: use
16137 the obstacks.
16138
16139 * src/lex.c (token_obstack): New.
16140 (init_lex): Initialize it. No longer call...
16141 (grow_token_buffer): this. Remove it.
16142 Adjust all the places which used it to use the obstack.
16143
511e79b3
AD
161442001-01-19 Akim Demaille <akim@epita.fr>
16145
16146 * src/lex.h: Rename all the tokens:
16147 s/\bENDFILE\b/tok_eof/g;
16148 s/\bIDENTIFIER\b/tok_identifier/g;
16149 etc.
16150 Let them be enums, not #define, to ease debugging.
16151 Adjust all the code.
16152
0d6508ef
AD
161532001-01-18 Akim Demaille <akim@epita.fr>
16154
16155 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
16156 * src/lex.c (maxtoken, grow_token_buffer): Static.
16157
6deb4447
AD
161582001-01-18 Akim Demaille <akim@epita.fr>
16159
16160 Since we now use obstacks, more % directives can be enabled.
16161
16162 * src/lex.c (percent_table): Also accept `%yacc',
16163 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
16164 `%debug'.
16165 Handle the actions for `%semantic_parser' and `%pure_parser' here,
16166 instead of returning a token.
16167 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
16168 * src/reader.c (read_declarations): Adjust.
16169 * src/files.c (open_files): Don't call `compute_base_names', don't
16170 compute `attrsfile' since they depend upon data which might be
16171 *in* the input file now.
16172 (output_files): Do it here.
16173 * src/output.c (output_headers): Document the fact that this patch
16174 introduces a guaranteed SEGV for semantic parsers.
16175 * doc/bison.texinfo: Document them.
16176 * tests/suite.at: Exercise these %options.
16177
ff4423cc
AD
161782000-12-20 Akim Demaille <akim@epita.fr>
16179
16180 Also handle the output file (--verbose) with obstacks.
16181
16182 * files.c (foutput): Remove.
16183 (output_obstack): New.
16184 Adjust all dependencies.
16185 * src/conflicts.c: Return a string.
16186 * src/system.h (obstack_grow_string): Rename as...
16187 (obstack_sgrow): this. Be ready to work with non literals.
16188 (obstack_fgrow4): New.
16189
956dba3a
AD
161902000-12-20 Akim Demaille <akim@epita.fr>
16191
16192 * src/files.c (open_files): Fix the computation of short_base_name
16193 in the case of `-o foo.tab.c'.
16194
337bab46
AD
161952000-12-20 Akim Demaille <akim@epita.fr>
16196
16197 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
16198 (copy_dollar): Now that everything uses obstacks, get rid of the
16199 FILE * parameters.
16200
5d3214b8
AD
162012000-12-20 Akim Demaille <akim@epita.fr>
16202
16203 * src/files.c (open_files): Actually the `.output' file is based
16204 on the short_base_name, not base_name.
16205 * tests/suite.at (Checking output file names): Adjust.
16206
29092a57
AD
162072000-12-20 Akim Demaille <akim@epita.fr>
16208
16209 * src/bison.s1: Remove, we now use directly...
16210 * src/bison.simple: this.
16211 * src/Makefile.am: Use pkgdata instead of data.
16212
ea5607fd
AD
162132000-12-20 Akim Demaille <akim@epita.fr>
16214
16215 * src/files.c (guard_obstack): New.
16216 (open_files): Initialize it.
16217 (output_files): Dump it...
16218 * src/files.h: Export it.
16219 * src/reader.c (copy_guard): Use it.
16220
27110317
AD
162212000-12-19 Akim Demaille <akim@epita.fr>
16222
16223 * src/files.c (outfile, defsfile, actfile): Removed as global
16224 vars.
16225 (open_files): Don't compute them.
16226 (output_files): Adjust.
16227 (base_name, short_base_name): Be global.
16228 Adjust dependencies.
16229
19c50364
AD
162302000-12-19 Akim Demaille <akim@epita.fr>
16231
16232 * src/files.c (strsuffix): New.
16233 (stringappend): Be just like strcat but allocate.
16234 (base_names): Eve out from open_files.
16235 Try to simplify the rather hairy computation of base_name and
16236 short_base_name.
16237 (open_files): Use it.
16238 * tests/suite.at (Checking output file names): New test.
16239
573c1d9f
AD
162402000-12-19 Akim Demaille <akim@epita.fr>
16241
16242 * src/system.h (obstack_grow_literal_string): Rename as...
16243 (obstack_grow_string): this.
16244 * src/output.c (output_parser): Recognize `%% actions' instead of
16245 `$'.
16246 * src/bison.s1: s/$/%% actions/.
16247 * src/bison.hairy: Likewise.
16248
ef7ddedd
AD
162492000-12-19 Akim Demaille <akim@epita.fr>
16250
16251 * src/output.c (output_parser): Compute the `#line' lines when
16252 there are.
16253 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
16254 Suggested by Hans Aberg.
16255
ff61dabd
AD
162562000-12-19 Akim Demaille <akim@epita.fr>
16257
16258 Let the handling of the skeleton files be local to the procedures
16259 that use it.
16260
16261 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
16262 longer static.
16263 (fparser, open_extra_files): Remove.
16264 (open_files, output_files): Don't take care of fparser.
16265 * src/files.h: Adjust.
16266 * src/output.c (output_parser): Open and close the file to the
16267 skeleton.
16268 * src/reader.c (read_declarations): When %semantic_parser, open
16269 fguard.
16270
55b96341
AD
162712000-12-19 Akim Demaille <akim@epita.fr>
16272
16273 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
16274 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
16275
358c15b7
AD
162762000-12-19 Akim Demaille <akim@epita.fr>
16277
16278 * src/files.c (open_files): Yipee! We no longer need all the code
16279 looking for `/tmp' since we have no tmp file.
16280
7de3329e
AD
162812000-12-19 Akim Demaille <akim@epita.fr>
16282
16283 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
16284 New macros.
16285 * src/files.c (open_files): Less dependency on MSDOS etc.
16286
3abcd459
AD
162872000-12-14 Akim Demaille <akim@epita.fr>
16288
16289 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
16290 Provide a default definition.
16291 Use it when executing the default @ action.
16292 * src/reader.c (reader_output_yylsp): No longer include
16293 `timestamp' and `text' in the default YYLTYPE.
16294
2a91a95e
AD
162952000-12-12 Akim Demaille <akim@epita.fr>
16296
16297 * src/reader.c (copy_definition, parse_union_decl, copy_action)
16298 (copy_guard): Quote the file names.
16299 Reported by Laurent Mascherpa.
16300
14d3eb9b
AD
163012000-12-12 Akim Demaille <akim@epita.fr>
16302
16303 * src/output.c (output_headers, output_program, output): Be sure
16304 to escape special characters when outputting filenames.
16305 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
16306 (output_headers): Don't depend on them, Use ACTSTR.
16307
d7045ec6
AD
163082000-11-17 Akim Demaille <akim@epita.fr>
16309
16310 * lib/obstack.h: Formatting changes.
16311 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
16312 prevents type checking.
16313 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
16314 cast the value to (void *): assigning a `foo *' to a `void *'
16315 variable is valid.
16316 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
16317 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
16318 append characters.
16319
6fd54b73
AD
163202000-11-17 Akim Demaille <akim@epita.fr>
16321
16322 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
16323 as...
16324 (suite.m4, regression.m4, calc.m4): these.
16325 * tests/atgeneral.m4: Update from CVS Autoconf.
16326
4c50eae6
AD
163272000-11-17 Akim Demaille <akim@epita.fr>
16328
16329 * tests/regression.m4 (%union and --defines): New test,
16330 demonstrating a current bug in the obstack implementation.
16331
a35f64ea
AD
163322000-11-17 Akim Demaille <akim@epita.fr>
16333
16334 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
16335 macros.
16336 Use them to declare the variables which are global or local to
16337 `yyparse'.
16338
7de23534
AD
163392000-11-17 Akim Demaille <akim@epita.fr>
16340
16341 * acconfig.h: Remove, no longer used.
16342
aa7815f5
AD
163432000-11-07 Akim Demaille <akim@epita.fr>
16344
16345 * src: s/Copyright (C)/Copyright/g.
16346
5af1f549
AD
163472000-11-07 Akim Demaille <akim@epita.fr>
16348
16349 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
16350 defining.
16351 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
16352
553e2b22
AD
163532000-11-07 Akim Demaille <akim@epita.fr>
16354
16355 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
16356 Merge in a single CPP if/else.
16357
8a4f41d6
AD
163582000-11-07 Akim Demaille <akim@epita.fr>
16359
16360 * src/output.c (output): Remove useless variables.
16361 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
16362 argument `data' for consistency with the prototypes.
16363 Qualify it `const'.
16364 (obstack_copy, obstack_copy0): Rename the second argument as
16365 `address' for consistency. Qualify it `const'.
16366 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
16367 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
16368 `const' their input argument (`data' or `address').
16369 Adjust the corresponding macros to include `const' in casts.
16370
095a3fb5
AD
163712000-11-03 Akim Demaille <akim@epita.fr>
16372
16373 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
16374 s/PFILE1/BISON_HAIRY/.
16375 Adjust dependencies.
16376
d1cdce7c
AD
163772000-11-03 Akim Demaille <akim@epita.fr>
16378
090c5ebf 16379 For some reason, this was not applied.
d1cdce7c
AD
16380
16381 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
16382 `unlink': it's no longer used.
16383
9311529b
AD
163842000-11-03 Akim Demaille <akim@epita.fr>
16385
16386 * src/files.c (skeleton_find): New function, eved out of...
16387 (open_files, open_extra_files): here.
16388
d8880f69
AD
163892000-11-03 Akim Demaille <akim@epita.fr>
16390
16391 Don't use `atexit'.
16392
16393 * src/files.c (obstack_save): New function.
16394 (done): Rename as...
16395 (output_files): this.
16396 Use `obstack_save'.
16397 * src/main.c (main): Don't use `atexit' to register `done', since
16398 it no longer has to remove tmp files, just call `output_files'
16399 when there are no errors.
16400
0dbb648e
AD
164012000-11-02 Akim Demaille <akim@epita.fr>
16402
16403 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
16404 `unlink': it's no longer used.
16405 * src/files.h: Formatting changes.
16406
896fe5c1
AD
164072000-11-02 Akim Demaille <akim@epita.fr>
16408
16409 Remove the last uses of mktemp and unlink/delete.
16410
16411 * src/files.c (fdefines, ftable): Removed.
16412 (defines_ostack, table_obstack): New.
16413 Adjust dependencies of the former into uses of the latter.
16414 * src/output.c (output_short_or_char_table, output_short_table):
16415 Convert to using obstacks.
16416 * src/reader.c (copy_comment2): Accept one FILE * and two
16417 obstacks.
16418 (output_token_defines, reader_output_yylsp): Use obstacks.
16419 * src/system.h (obstack_fgrow3): New.
1f65350a 16420 * po/POTFILES.in: Adjust.
896fe5c1 16421
dd60faec
AD
164222000-11-01 Akim Demaille <akim@epita.fr>
16423
16424 Change each use of `fattrs' into a use of `attrs_obstack'.
16425
16426 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
16427 * src/files.c (fattrs): Remove.
16428 (attrs_obstack): New.
16429 Adjust all dependencies.
16430 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
16431
8c7ebe49
AD
164322000-11-01 Akim Demaille <akim@epita.fr>
16433
16434 Introduce obstacks.
16435 Change each use of `faction' into a use of `action_obstack'.
16436
16437 * lib/obstack.h, lib/obstack.c: New files.
16438 * src/files.c (faction): Remove.
16439 (action_obstack): New.
16440 Adjust all dependencies.
16441
77aee789
AD
164422000-10-20 Akim Demaille <akim@epita.fr>
16443
16444 * lib/quote.h (PARAMS): New macro. Use it.
16445
43591cec
AD
164462000-10-16 Akim Demaille <akim@epita.fr>
16447
16448 * src/output.c (output_short_or_char_table): New function.
16449 (output_short_table, output_token_translations): Use it.
16450 (goto_actions): Use output_short_table.
16451
1e9798d5
AD
164522000-10-16 Akim Demaille <akim@epita.fr>
16453
16454 * src/symtab.c (bucket_new): New function.
16455 (getsym): Use it.
16456
16457 * src/output.c (output_short_table): New argument to display the
16458 comment associated with the table.
16459 Adjust dependencies.
16460 (output_gram): Use it.
16461 (output_rule_data): Nicer output layout for YYTNAME.
16462
f282676b
AD
164632000-10-16 Akim Demaille <akim@epita.fr>
16464
16465 * src/lex.c (read_typename): New function.
16466 (lex): Use it.
16467 * src/reader.c (copy_dollar): Likewise.
16468
550a72a3
AD
164692000-10-16 Akim Demaille <akim@epita.fr>
16470
16471 * src/reader.c (copy_comment2): Expect the input stream to be on
16472 the `/' which is suspected to open a comment, instead of being
16473 called after `//' or `/*' was read.
16474 (copy_comment, copy_definition, parse_union_decl, copy_action)
16475 (copy_guard): Adjust.
16476
131e2fef
AD
164772000-10-16 Akim Demaille <akim@epita.fr>
16478
16479 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
16480 `read_signed_integer'.
16481
79282c5a
AD
164822000-10-16 Akim Demaille <akim@epita.fr>
16483
16484 * src/reader.c (copy_dollar): New function.
16485 (copy_guard, copy_action): Use it.
16486
ff4a34be
AD
164872000-10-16 Akim Demaille <akim@epita.fr>
16488
16489 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
16490 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
16491 New files, from Fileutils 4.0.27.
16492 * src/main.c (printable_version): Remove.
16493 * src/lex.c, src/reader.c: Use `quote'.
16494
164952000-10-04 Akim Demaille <akim@epita.fr>
16496
16497 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
16498
14ded682
AD
164992000-10-04 Akim Demaille <akim@epita.fr>
16500
16501 * doc/bison.texinfo: Various typos spotted by Neil Booth.
16502
8e03724b
AD
165032000-10-04 Akim Demaille <akim@epita.fr>
16504
16505 When a literal string is used to define two different tokens,
16506 `bison -v' segfaults.
16507 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
16508
16509 * tests/regression.m4: New file.
16510 Include the core of the sample provided by Piotr Gackiewicz.
16511 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
16512 properly.
16513
a9e64249
AD
165142000-10-04 Akim Demaille <akim@epita.fr>
16515
16516 * src/reader.c (parse_expect_decl): Keep `count' within the size
16517 of `buffer'.
16518 From Neil Booth.
16519
da9abf43
AD
165202000-10-02 Paul Eggert <eggert@twinsun.com>
16521
16522 * bison.s1 (yyparse): Assign the default value
16523 unconditionally, to avoid a GCC warning and make the parser a
16524 tad smaller.
16525
c33638bb
AD
165262000-10-02 Akim Demaille <akim@epita.fr>
16527
16528 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
16529 options.
16530
444c570a
AD
165312000-10-02 Akim Demaille <akim@epita.fr>
16532
16533 * src/derives.c, src/print.c, src/reduce.c: To ease the
16534 translation, move some `\n' out of the translated strings.
16535
89cab50d
AD
165362000-10-02 Akim Demaille <akim@epita.fr>
16537
16538 The location tracking mechanism is precious for parse error
16539 messages. Nevertheless, it is enabled only when `@n' is used in
16540 the grammar, which is a different issue (you can use it in error
16541 message, but not in the grammar per se). Therefore, there should
16542 be another means to enable it.
16543
16544 * src/getargs.c (getargs): Support `--locations'.
16545 (usage): Report it.
16546 * src/getargs.h (locationsflag): Export it.
16547 * src/lex.c (percent_table): Support `%locations'.
16548 * src/reader.c (yylsp_needed): Remove this variable, now replaced
16549 with `locationsflag'.
16550 * doc/bison.texinfo: Document `--locations' and `%locations'.
16551 Sort the options.
16552 * tests/calc.m4: Test it.
16553
16554 For regularity of the names, replace each
16555 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
16556 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
16557 In addition replace each `flag' with `_flag'.
16558
d6c2cba0
AD
165592000-10-02 Akim Demaille <akim@epita.fr>
16560
16561 Also test parse error messages, including with YYERROR_VERBOSE.
16562
16563 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
16564 associative).
16565 Use it to check the computations.
16566 Use it to check `nonassoc' is honored.
16567 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
16568 `--yyerror-verbose'.
16569 (_AT_CHECK_CALC): Adjust to this option.
16570 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
16571
5a35a6cb
AD
165722000-10-02 Akim Demaille <akim@epita.fr>
16573
16574 Test also `--verbose', `--defines' and `--name-prefix'. Testing
16575 the latter demonstrates a flaw in the handling of non debugging
16576 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
16577 was used in order to simplify:
16578
16579 #if YYDEBUG
16580 if (yydebug)
16581 {
16582 ...
16583 }
16584 #endif
16585
16586 into
16587
16588 if (yydebug)
16589 {
16590 ...
16591 }
16592
16593 unfortunately this leads to a CPP conflict when
16594 `--name-prefix=foo' is used since it produces `#define yydebug
16595 foodebug'.
16596
16597 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
16598 (YYDPRINTF): New macro.
16599 Spread its use.
16600 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
16601 the bison options.
16602 Also test `--verbose', `--defines' and `--name-prefix'.
16603
71da9eea
AD
166042000-10-02 Akim Demaille <akim@epita.fr>
16605
16606 Improve the readability of the produced parsers.
16607
16608 * src/bison.s1: Formatting changes.
16609 Improve the comment related to the `$' mark.
16610 (yydefault): Don't fall through to `yyresume': `goto' there.
16611 * src/output.c (output_parser): When the `$' is met, skip the end
16612 of its line.
16613 New variable, `number_of_dollar_signs', to check there's exactly
16614 one `$' in the parser skeleton.
16615
95e36146
AD
166162000-10-02 Akim Demaille <akim@epita.fr>
16617
16618 * lib/xstrdup.c: New file, from the fileutils.
16619 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
16620 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
16621 instead of strlen + xmalloc + strcpy.
16622 * src/symtab.c (copys): Remove, use xstrdup instead.
16623
d7020c20
AD
166242000-10-02 Akim Demaille <akim@epita.fr>
16625
16626 * src/gram.h (associativity): New enum type which replaces the
16627 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
16628 `right_assoc', `left_assoc' and `non_assoc'.
16629 Adjust all dependencies.
16630 * src/reader.c: Formatting changes.
16631 (LTYPESTR): Don't define it, use it as a literal in
16632 `reader_output_yylsp'.
16633 * src/symtab.h (symbol_class): New enum type which replaces the
16634 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
16635 `sunknown', `stoken and `snterm'.
16636
1916f98e
AD
166372000-10-02 Akim Demaille <akim@epita.fr>
16638
16639 * src/getargs.c (fixed_outfiles): Rename as...
16640 (yaccflag): for consistency and accuracy.
16641 Adjust dependencies.
16642
d7913476
AD
166432000-10-02 Akim Demaille <akim@epita.fr>
16644
16645 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
16646 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
16647 difficult and introduced a lot of core dump. It turns out that
16648 Bison used an implementation of `xmalloc' based on `calloc', and
16649 at various places it does depend upon the initialization to 0. I
16650 have not tried to isolate the pertinent places, and all the former
16651 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
16652 someone should address this issue.
16653
16654 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
16655 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
16656 files.
16657 Adjust dependencies.
16658 * src/warshall.h: New file.
16659 Propagate.
16660
340ef489
AD
166612000-10-02 Akim Demaille <akim@epita.fr>
16662
16663 Various anti-`extern in *.c' changes.
16664
16665 * src/system.h: Include `assert.h'.
16666
b2ca4022
AD
166672000-10-02 Akim Demaille <akim@epita.fr>
16668
16669 * src/state.h (nstates, final_state, first_state, first_shift)
16670 (first_reduction): Move their exportation from here...
16671 * src/LR0.h: to here.
16672 Adjust dependencies.
16673 * src/getargs.c (statisticsflag): New variable.
16674 Add support for `--statistics'.
16675 Adjust dependencies.
16676
16677 Remove a lot of now useless `extern' statements in most files.
16678
403b315b
AD
166792000-10-02 Akim Demaille <akim@epita.fr>
16680
16681 * src/LR0.h: New file.
16682 Propagate its use.
16683
07a58c13
AD
166842000-10-02 Akim Demaille <akim@epita.fr>
16685
16686 * src/print.h: New file.
16687 Propagate its use.
16688 * src/print.c: Formatting and ordering changes.
16689 (verbose, terse): Replace with...
16690 (print_results): this new function.
16691 Adjust dependencies.
16692
0619caf0
AD
166932000-10-02 Akim Demaille <akim@epita.fr>
16694
16695 * src/conflicts.c (conflict_report): New function.
16696 (conflict_log, verbose_conflict_log): Replace with...
16697 (print_conflicts): this function.
16698 Adjust dependencies.
16699 * src/conflicts.h: New file.
16700 Propagate its inclusion.
16701
3519ec76
AD
167022000-10-02 Akim Demaille <akim@epita.fr>
16703
16704 * src/nullable.h: New file.
16705 Propagate its inclusion.
16706 * src/nullable.c: Formatting changes.
16707
015acc48
AD
167082000-10-02 Akim Demaille <akim@epita.fr>
16709
16710 * src/reduce.h: New file.
16711 Propagate its inclusion.
16712 * src/reduce.c: Topological sort and other formatting changes.
16713 (bool, TRUE, FALSE): Move their definition to...
16714 * src/system.h: here.
16715
8963a27b
AD
167162000-10-02 Akim Demaille <akim@epita.fr>
16717
16718 * src/files.c: Formatting changes.
16719 (tryopen, tryclose, openfiles): Rename as...
16720 (xfopen, xfclose, open_files): this.
16721 (stringappend): static.
16722 * src/files.h: Complete the list of exported symbols.
16723 Propagate its use.
16724
a70083a3
AD
167252000-10-02 Akim Demaille <akim@epita.fr>
16726
16727 * src/reader.h: New file.
16728 Propagate its use instead of tedious list of `extern' and
16729 prototypes.
16730 * src/reader.c: Formatting changes, topological sort,
16731 s/register//.
16732
abadc117
AD
167332000-10-02 Akim Demaille <akim@epita.fr>
16734
16735 * src/lex.h: Prototype `lex.c' exported functions.
16736 * src/reader.c: Adjust.
16737 * src/lex.c: Formatting changes.
16738 (safegetc): Rename as...
16739 (xgetc): this.
16740
720d742f
AD
167412000-10-02 Akim Demaille <akim@epita.fr>
16742
16743 * src/lalr.h: New file.
16744 Propagate its inclusion instead of prototypes and `extern'.
16745 * src/lalr.c: Formatting changes, topological sorting etc.
16746
f2acea59
AD
167472000-10-02 Akim Demaille <akim@epita.fr>
16748
16749 * src/output.c (token_actions): Introduce a temporary array,
16750 YYDEFACT, that makes it possible for this function to use
16751 output_short_table.
16752
d019d655
AD
167532000-10-02 Akim Demaille <akim@epita.fr>
16754
16755 `user_toknums' is output as a `short[]' in `output.c', while it is
16756 defined as a `int[]' in `reader.c'. For consistency with the
16757 other output tables, `user_toknums' is now defined as a table of
16758 shorts.
16759
16760 * src/reader.c (user_toknums): Be a short table instead of an int
16761 table.
16762 Adjust dependencies.
16763
16764 Factor the short table outputs.
16765
16766 * src/output.c (output_short_table): New function.
16767 * src/output.c (output_gram, output_stos, output_rule_data)
16768 (output_base, output_table, output_check): Use it.
16769
6c89f1c1
AD
167702000-10-02 Akim Demaille <akim@epita.fr>
16771
16772 * src/output.c (output): Topological sort of the functions, in
16773 order to get rid of the `static' prototypes.
16774 No longer use `register'.
16775 * src/output.h: New file.
16776 Propagate its inclusion in files explicitly prototyping functions
16777 from output.c.
16778
d9efd181
AD
167792000-09-21 Akim Demaille <akim@epita.fr>
16780
16781 * src/atgeneral.m4: Update from Autoconf.
16782
c29240e7 167832000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
16784
16785 * src/closure.h: New file.
16786 * src/closure.c: Formatting changes, topological sort over the
16787 functions, use of closure.h.
16788 (initialize_closure, finalize_closure): Rename as...
16789 (new_closure, free_closure): these. Adjust dependencies.
16790 * src/LR0.c: Formatting changes, topological sort, use of
16791 cloture.h.
16792 (initialize_states): Rename as...
16793 (new_states): this.
16794 * src/Makefile.am (noinst_HEADERS): Adjust.
16795
499daa50
AD
167962000-09-20 Akim Demaille <akim@epita.fr>
16797
16798 * src/acconfig.h: Don't protect config.h against multiple
16799 inclusion.
16800 Don't define PARAMS.
16801 * src/system.h: Define PARAMS.
16802 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
16803 purpose of config.h. system.h must not try to fix wrong
16804 definitions in config.h.
16805
cc84fd5d
AD
168062000-09-20 Akim Demaille <akim@epita.fr>
16807
16808 * src/derives.h: New file.
16809 * src/main.c, src/derives.h: Use it.
16810 Formatting changes.
16811 * src/Makefile.am (noinst_HEADERS): Adjust.
16812
db5b3a89
AD
168132000-09-20 Akim Demaille <akim@epita.fr>
16814
16815 * tests/atgeneral.m4: Update from Autoconf.
16816 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
16817 (AT_CHECK_CALC): New macros.
16818 Use these macros to test bison with options `', `--raw',
16819 `--debug', `--yacc', `--yacc --debug'.
16820
ceed8467
AD
168212000-09-19 Akim Demaille <akim@epita.fr>
16822
16823 * src/output.c: Formatting changes.
16824 * src/machine.h: Remove, leaving its contents in...
16825 * src/system.h: here.
16826 Include stdio.h.
16827 Adjust all dependencies on stdio.h and machine.h.
16828 * src/getargs.h: New file.
16829 Let all `extern' declarations about getargs.c be replaced with
16830 inclusion of `getargs.h'.
16831 * src/Makefile.am (noinst_HEADERS): Adjust.
16832
16833 * tests/calc.m4 (yyin): Be initialized in main, not on the global
16834 scope.
16835 (yyerror): Returns void, not int.
16836 * doc/bison.texinfo: Formatting changes.
16837
05a1d24b
AD
168382000-09-19 Akim Demaille <akim@epita.fr>
16839
16840 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
16841 portable.
16842
cbd25751
AD
168432000-09-18 Akim Demaille <akim@epita.fr>
16844
16845 * configure.in: Append WARNING_CFLAGS to CFLAGS.
16846 * src/Makefile.am (INCLUDES): Don't.
16847 Be ready to fetch headers in lib/.
16848
13863333
AD
168492000-09-18 Akim Demaille <akim@epita.fr>
16850
16851 * doc/bison.texinfo: Update the copyright.
16852 ANSIfy and GNUify the examples.
16853 Remove the old menu.
16854
0d533154
AD
168552000-09-18 Akim Demaille <akim@epita.fr>
16856
16857 First set of tests: use the `calc' example from the documentation.
16858
16859 * src/bison.s1 (yyparse): Condition the code using `yytname' which
16860 is defined only when YYDEBUG is.
16861 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
16862 * src/files.c (tryopen, tryclose): Formatting changes.
16863 Move to the top and be static.
16864 * src/reader.c (read_signed_integer): Likewise.
16865 * tests/calc.m4: New file.
16866 * Makefile.am, suite.m4: Adjust.
16867 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
16868
e79137ac
AD
168692000-09-18 Akim Demaille <akim@epita.fr>
16870
16871 Add support for an Autotest test suite for Bison.
16872
16873 * m4/m4.m4, m4/atconfig.m4: New files.
16874 * m4/Makefile.am (EXTRA_DIST): Adjust.
16875 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
16876 files.
16877 * src/getargs.c: Display a more standard --version message.
16878 * src/reader.c (reader): Formatting changes.
16879 No longer depend upon VERSION_STRING.
16880 * configure.in: No longer use `dnl'.
16881 Set up the test suite and the new directory `tests/.
16882 (VERSION_STRING): Remove.
16883
27821bff
AD
168842000-04-14 Akim Demaille <akim@epita.fr>
16885
16886 * src/reader.c (copy_comment2): New function, same as former
16887 `copy_comment', but outputs into two FILE *.
16888 (copy_comment): Use it.
16889 (parse_union_decl): Use it.
16890 (get_type, parse_start_decl): Use the same `invalid' message.
16891 (parse_start_decl, parse_union_decl): Use the same `multiple'
16892 message.
16893 (parse_union_decl, copy_guard, copy_action): Use the same
16894 `unmatched' message.
16895 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
16896
cfe5fbc0
AD
168972000-03-31 Akim Demaille <akim@epita.fr>
16898
16899 * src/files.c (tryopen, tryclose): Move to the top.
16900 Be static.
16901
cb7db13e
AD
169022000-03-31 Akim Demaille <akim@epita.fr>
16903
16904 * src/main.c (main): Don't call `done', exit does it.
16905
a0f6b076
AD
169062000-03-31 Akim Demaille <akim@epita.fr>
16907
36281465
AD
16908 * allocate.c: s/return (foo)/return foo/.
16909 * lalr.c: Likewise.
16910 * LR0.c: Likewise.
16911 * output.c: Likewise.
16912 * reader.c: Likewise.
16913 * symtab.c: Likewise.
16914 * vmsgetargs.c: Likewise.
16915
169162000-03-31 Akim Demaille <akim@epita.fr>
16917
16918 Clean up the error reporting functions.
a0f6b076
AD
16919
16920 * src/report.c: New file.
16921 * src/report.h: Likewise.
16922 * src/Makefile.am: Adjust.
16923 * m4/error.m4: New file.
16924 * m4/Makefile.am: Adjust.
16925 * configure.in (jm_PREREQ_ERROR): Call it.
16926 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
16927 Remove.
16928 (fatal, fatals): Remove. All callers use complain.c::fatal.
16929 (warn, warni, warns, warnss, warnss): Remove. All callers use
16930 complain.c::complain.
16931 (toomany): Remove, use fatal instead.
16932 * src/files.c (done): No argument, use complain_message_count.
16933 * src/main.c (main): Register `done' to `atexit'.
16934
16935 * src/getargs.c (usage): More `fputs', less `fprintf'.
16936
18539825
AD
169372000-03-28 Akim Demaille <akim@epita.fr>
16938
16939 * lib/: New directory.
16940 * Makefile.am (SUBDIRS): Adjust.
16941 * configure.in: Adjust.
16942 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
16943 useless.
16944 * src/alloca.c: Moved to lib/.
16945 * src/getopt.c: Likewise.
16946 * src/getopt1.c: Likewise.
16947 * src/getopt.h: Likewise.
16948 * src/ansi2knr.c: Likewise.
16949 * src/ansi2knr.1: Likewise.
16950 * src/Makefile.am: Adjust.
16951 * lib/Makefile.am: New file.
16952
9f306f2a
AD
169532000-03-28 Akim Demaille <akim@epita.fr>
16954
16955 * src/getargs.c (usage): Refresh the help message.
16956
0ba347b6
AD
169572000-03-17 Akim Demaille <akim@epita.fr>
16958
16959 * src/getopt1.c: Updated from textutils 2.0e
16960 * src/getopt.c: Likewise.
16961 * src/getopt.h: Likewise.
16962
dbe7f271
AD
169632000-03-17 Akim Demaille <akim@epita.fr>
16964
16965 * src/Makefile.am (bison.simple): Fix the awk program: quote only
16966 the file name, not the whole `#line LINE FILE'.
16967
75bbe78d
AD
169682000-03-17 Akim Demaille <akim@epita.fr>
16969
16970 On syntax errors, report the token on which we choked.
16971
aa5fd0ee
AD
16972 * src/bison.s1 (yyparse): In the label yyerrlab, when
16973 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 16974
7b306f52
AD
169752000-03-17 Akim Demaille <akim@epita.fr>
16976
aa5fd0ee 16977 * src/reader.c (copy_at): New function.
7b306f52
AD
16978 (copy_guard): Use it.
16979 (copy_action): Use it.
16980
e87b5700
AD
169812000-03-17 Akim Demaille <akim@epita.fr>
16982
16983 Be kind to translators, save some useless translations.
16984
aa5fd0ee 16985 * src/main.c (banner): New function.
e87b5700
AD
16986 (fatal_banner): Use it.
16987 (warn_banner): Use it.
16988
ae3c3164
AD
169892000-03-17 Akim Demaille <akim@epita.fr>
16990
aa5fd0ee
AD
16991 * src/reader.c (copy_definition): Use copy_string and
16992 copy_comment. Removed now unused `match', `ended',
16993 `cplus_comment'.
ae3c3164
AD
16994 (copy_comment, copy_string): Moved, to be visible from
16995 copy_definition.
16996
4dc58e7c
AD
169972000-03-17 Akim Demaille <akim@epita.fr>
16998
aa5fd0ee
AD
16999 * src/reader.c (copy_string): Declare `static inline'. No
17000 problems with inline, since it is checked by configure.
4dc58e7c
AD
17001 (copy_comment): Likewise.
17002
0a6384c4
AD
170032000-03-17 Akim Demaille <akim@epita.fr>
17004
aa5fd0ee 17005 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 17006
3cef001a
AD
170072000-03-17 Akim Demaille <akim@epita.fr>
17008
aa5fd0ee 17009 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
17010 (copy_action): Use it. Removed now unused `match', `ended',
17011 `cplus_comment'.
17012 (copy_guard): Likewise.
17013
ca36d2ef
AD
170142000-03-17 Akim Demaille <akim@epita.fr>
17015
aa5fd0ee 17016 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
17017 (copy_action): Use it.
17018 (copy_guard): Likewise.
17019
6666f98f
AD
170202000-03-17 Akim Demaille <akim@epita.fr>
17021
17022 Change the handling of @s so that they behave exactly like $s.
17023 There is now a pseudo variable @$ (readble and writable), location
17024 of the lhs of the rule (by default ranging from the location of
17025 the first symbol of the rhs, to the location of the last symbol,
17026 or, if the rhs is empty, YYLLOC).
17027
17028 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
17029 yyval.
17030 (yyparse): When providing a default semantic action, provide a
17031 default location action.
17032 (after the $): No longer change `*YYLSP', just stack YYLOC the
17033 same way you stack YYVAL.
17034 * src/reader.c (read_declarations): Use warns.
17035 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
17036 (copy_action, case '@'): Likewise.
17037 Use a standard error message, to save useless work from
17038 translators.
17039
41aca2e0
AD
170402000-03-17 Akim Demaille <akim@epita.fr>
17041
aa5fd0ee
AD
17042 * src/bison.s1: Formatting and cosmetics changes.
17043 * src/reader.c: Likewise.
41aca2e0
AD
17044 Update the Copyright notice.
17045
dc08c1d5
AD
170462000-03-17 Akim Demaille <akim@epita.fr>
17047
aa5fd0ee
AD
17048 * src/bison.s1 (#line): All set to `#line' only, since the
17049 Makefile now handles them.
dc08c1d5 17050
9ee3c97b
AD
170512000-03-16 Akim Demaille <akim@epita.fr>
17052
17053 * src/output.c (output_rule_data): Output the documentation of
17054 some of the tables.
17055 (Copyright notice): Update.
17056 Formatting changes.
17057
0de741ca
AD
170582000-03-16 Akim Demaille <akim@epita.fr>
17059
17060 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
17061 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
17062 One `#if YYDEBUG' remains, since it uses variables which are
17063 defined only if `YYDEBUG != 0'.
17064
bb10be54
AD
170652000-03-16 Akim Demaille <akim@epita.fr>
17066
17067 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
17068 and related variables so that the similarities are highlighted.
17069
b07b484a
AD
170702000-03-16 Akim Demaille <akim@epita.fr>
17071
17072 * src/bison.s1: Properly indent CPP directives.
17073
361f60b3
AD
170742000-03-16 Akim Demaille <akim@epita.fr>
17075
17076 * src/bison.s1: Properly indent the `alloca' CPP section.
17077
8c44d3ec
AD
170782000-03-16 Akim Demaille <akim@epita.fr>
17079
17080 Do not hard code values of directories in `configure.in'.
17081 Update the `configure' tool chain.
17082
17083 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
17084 src/makefile.am.
17085 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
17086 (AC_OUTPUT): Add m4/Makefile.
17087 Bump to bison 1.28a, 1.29 has never been released.
17088 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
17089 handled via src/Makefile.am.
17090 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
17091 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
17092 autoheader.
17093 * Makefile.am (SUBDIRS): Add m4.
17094 (ACLOCAL_AM_FLAGS): New variable.
17095 (AUTOMAKE_OPTIONS): Add check-news.
17096 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
17097 the proper line number and file name.
17098 (DEFS): Propagate the location of bison library files and of the
17099 locale files.
17100 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
17101 builddir.
17102 * acinclude.m4: Remove, replaced by the directory m4.
17103 * m4/Makefile.am (EXTRA_DIST): New variable.
17104 * m4/gettext.m4: New file, from the fileutils.
17105 * m4/lcmessage.m4: Likewise
17106 * m4/progtest.m4: Likewise.
17107 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
17108
f95997e7
AD
171092000-03-10 Akim Demaille <akim@epita.fr>
17110
17111 * src/closure.c:
17112 Formatting changes of various comments.
17113 Respect the GNU coding standards at various places.
17114 Don't use `_()' when no translation is needed.
17115
171161999-12-13 Jesse Thilo <jthilo@gnu.org>
17117
17118 * src/files.c:
17119 OS/2 honors TMPDIR environment variable.
17120
171211999-12-13 Jesse Thilo <jthilo@gnu.org>
17122
17123 * doc/bison.texinfo: Tweaked spelling and grammar.
17124 Updated ISBN.
17125 Removed reference to price of printed copy.
17126 Mention BISON_SIMPLE and BISON_HAIRY.
17127
171281999-12-13 Jesse Thilo <jthilo@gnu.org>
17129
17130 * configure.in, NEWS:
17131 Bison 1.29 released.
17132
171331999-10-27 Jesse Thilo <jthilo@gnu.org>
17134
17135 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
17136 Added reference card.
17137
171381999-07-26 Jesse Thilo <jthilo@gnu.org>
17139
17140 * po/ru.po: Added Russian translation.
17141
171421999-07-26 Jesse Thilo <jthilo@gnu.org>
17143
17144 * configure.in: Added Russian translation.
17145
171461999-07-06 Jesse Thilo <jthilo@gnu.org>
17147
17148 * configure.in, NEWS, README:
17149 Released version 1.28.
17150
171511999-06-14 Jesse Thilo <jthilo@gnu.org>
17152
17153 * src/system.h:
17154 Squashed redefinition warning on some systems.
17155
17156 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
17157 Have configure build version string instead of relying on ANSI string
17158 concatentation.
17159
171601999-06-14 Jesse Thilo <jthilo@gnu.org>
17161
17162 * po/POTFILES.in: Got rid of version.c.
17163
171641999-06-14 Jesse Thilo <jthilo@gnu.org>
17165
17166 * acconfig.h, configure.in:
17167 Have configure build version string instead of relying on ANSI string
17168 concatentation.
17169
171701999-06-08 Jesse Thilo <jthilo@gnu.org>
17171
17172 * doc/bison.1:
17173 Dropped mention of `+' for long-named options.
17174
171751999-05-30 Jesse Thilo <jthilo@gnu.org>
17176
17177 * src/files.c: Added <unistd.h> for unlink().
17178
17179 * src/Makefile.am, src/system.h:
17180 I18n fixes.
17181
171821999-05-30 Jesse Thilo <jthilo@gnu.org>
17183
17184 * README: Added a FAQ list.
17185
17186 * configure.in, acconfig.h:
17187 I18n fixes.
17188
171891999-05-30 Jesse Thilo <jthilo@gnu.org>
17190
17191 * doc/FAQ, doc/Makefile.am:
17192 Added a FAQ list.
17193
171941999-05-19 Jesse Thilo <jthilo@gnu.org>
17195
17196 * src/alloc.h, src/symtab.h, src/version.c:
17197 Protected inclusion of "config.h" with HAVE_CONFIG_H.
17198
171991999-04-18 Jesse Thilo <jthilo@gnu.org>
17200
17201 * src/.cvsignore, src/Makefile.am:
17202 Reorganized: sources in `src', documentation in `doc'.
17203
17204 * src/lex.c (literalchar):
17205 fixed the code for escaping double quotes (thanks
17206 Jonathan Czisny.)
17207
172081999-04-18 Jesse Thilo <jthilo@gnu.org>
17209
17210 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
17211 Adjusted paths to reflect directory reorganization.
17212
172131999-04-18 Jesse Thilo <jthilo@gnu.org>
17214
17215 * doc/.cvsignore, doc/Makefile.am:
17216 Reorganized: sources in `src', documentation in `doc'.
17217
172181999-04-18 Jesse Thilo <jthilo@gnu.org>
17219
17220 * configure.in:
17221 Updated AC_INIT file to reflect directory reorganization.
17222
17223 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
17224 Reorganized: sources in `src', documentation in `doc'.
17225
172261999-04-13 Jesse Thilo <jthilo@gnu.org>
17227
17228 * src/allocate.c:
17229 Don't declare calloc() and realloc() if not necessary.
17230
172311999-04-13 Jesse Thilo <jthilo@gnu.org>
17232
17233 * configure.in, acconfig.h, acinclude.m4:
17234 Don't declare calloc() and realloc() if not necessary.
17235
172361999-03-23 Jesse Thilo <jthilo@gnu.org>
17237
17238 * po/.cvsignore: Added i18n support.
17239
172401999-03-23 Jesse Thilo <jthilo@gnu.org>
17241
17242 * acconfig.h, configure.in, Makefile.am:
17243 Added i18n support.
17244
172451999-03-22 Jesse Thilo <jthilo@gnu.org>
17246
17247 * src/bison.s1: Fixed #line numbers.
17248
172491999-03-15 Jesse Thilo <jthilo@gnu.org>
17250
17251 * po/es.po, po/fr.po, po/nl.po, po/de.po:
17252 Added PO files from Translation Project.
17253
172541999-03-03 Jesse Thilo <jthilo@gnu.org>
17255
17256 * Makefile.am:
17257 Added support for non-ANSI compilers (ansi2knr).
17258
172591999-02-16 Jesse Thilo <jthilo@gnu.org>
17260
17261 * configure.in: Bumped version number to 1.27.
17262
17263 * Makefile.am:
17264 Added `bison.simple' to list of files removed by `make distclean'.
17265
172661999-02-12 Jesse Thilo <jthilo@gnu.org>
17267
17268 * src/files.c, src/files.h:
17269 Defined locations of parser files in config.h instead of Makefile.
17270
172711999-02-12 Jesse Thilo <jthilo@gnu.org>
17272
17273 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
17274 Defined locations of parser files in config.h instead of Makefile.
17275
172761999-02-09 Jesse Thilo <jthilo@gnu.org>
17277
17278 * Makefile.am:
17279 Removed inappropriate use of $< macro.
17280
172811999-02-05 Jesse Thilo <jthilo@gnu.org>
17282
17283 * po/Makefile.in.in, po/POTFILES.in:
17284 Add `po' directory skeleton.
17285
172861999-01-27 Jesse Thilo <jthilo@gnu.org>
17287
17288 * README: Document help-bison list.
17289
17290 * configure.in: Add check for mkstemp().
17291
172921999-01-20 Jesse Thilo <jthilo@gnu.org>
17293
17294 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
17295 Hush a few compiler warnings.
17296
17297 * src/files.c:
17298 Add tryclose(), which verifies that fclose was successful.
17299 Hush a couple of compiler warnings.
17300
173011999-01-20 Jesse Thilo <jthilo@gnu.org>
17302
17303 * Makefile.am, OChangeLog:
17304 ChangeLog is now automatically generated. Include the old version as
17305 OChangeLog.
17306
173071999-01-14 Jesse Thilo <jthilo@gnu.org>
17308
17309 * 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:
17310 Update FSF address.
17311
173121999-01-14 Jesse Thilo <jthilo@gnu.org>
17313
17314 * doc/bison.texinfo: Fix formatting glitch.
17315
17316 * doc/bison.texinfo: Update FSF address.
17317
173181999-01-14 Jesse Thilo <jthilo@gnu.org>
17319
17320 * acconfig.h: Update FSF address.
17321
173221999-01-08 Jesse Thilo <jthilo@gnu.org>
17323
17324 * src/system.h:
17325 Don't define PACKAGE here, since config.h defines it.
17326
173271998-12-30 Jesse Thilo <jthilo@gnu.org>
17328
17329 * src/reader.c: Update copyright date.
17330
17331 * src/main.c:
17332 Ditch sprintf to statically-sized buffers in fatal/warn functions in
17333 favor of output directly to stderr (avoids buffer overruns).
17334
17335 * src/reader.c: Some checks for premature EOF.
17336
17337 * 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:
17338 Use prototypes if the compiler understands them.
17339
17340 * src/files.c: Honor TMPDIR on Unix hosts.
17341 Use prototypes if the compiler understands them.
17342
17343 * src/reader.c:
17344 Fix a couple of buffer overrun bugs.
17345 Use prototypes if the compiler understands them.
17346
17347 * src/system.h: Include unistd.h and ctype.h.
17348 Use #ifdef instead of #if for NLS symbols.
17349
173501998-12-30 Jesse Thilo <jthilo@gnu.org>
17351
17352 * doc/bison.texinfo:
17353 Delete comment "consider using @set for edition number, etc..." since
17354 we now are doing so.
17355
173561998-12-30 Jesse Thilo <jthilo@gnu.org>
17357
17358 * configure.in:
17359 Use prototypes if the compiler understands them.
17360
17361 * NEWS: Document 1.26 highlights.
17362
17363 * Makefile.am: Require Automake 1.3 or later.
17364
17365 * acconfig.h:
17366 Use prototypes if the compiler understands them.
17367
173681998-12-29 Jesse Thilo <jthilo@gnu.org>
17369
17370 * src/version.c:
17371 Use VERSION symbol from automake for version number.
17372
173731998-12-29 Jesse Thilo <jthilo@gnu.org>
17374
17375 * acconfig.h, configure.in, version.cin:
17376 Use VERSION symbol from automake for version number.
17377
173781998-11-28 Jesse Thilo <jthilo@gnu.org>
17379
17380 * Makefile.am:
17381 Distribute original version of simple parser (bison.s1), not built
17382 version (bison.simple).
17383
173841998-11-28 Jesse Thilo <jthilo@gnu.org>
17385
17386 * doc/bison.texinfo: Add info dir entry.
17387
17388 * doc/bison.texinfo:
17389 Let automake put version number into documentation.
17390
173911998-11-26 Jesse Thilo <jthilo@gnu.org>
17392
17393 * src/bison.cld, src/build.com, src/vmshlp.mar:
17394 Add non-RCS files from /gd/gnu/bison.
17395
173961998-11-26 Jesse Thilo <jthilo@gnu.org>
17397
17398 * doc/bison.1:
17399 Document the BISON_HAIRY and BISON_SIMPLE variables.
17400
174011998-11-25 Jesse Thilo <jthilo@gnu.org>
17402
17403 * src/version.c: Build version.c automatically.
17404
17405 * src/reader.c:
17406 Fix token numbering (used to start at 258, not 257).
17407
17408 * src/system.h: Include config.h.
17409
17410 * src/getargs.c: Update bug report address.
17411
17412 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
17413 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
17414
174151998-11-25 Jesse Thilo <jthilo@gnu.org>
17416
17417 * Makefile.am:
17418 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17419
17420 * configure.in, version.cin:
17421 Build version.c automatically.
17422
17423 * AUTHORS: Add AUTHORS file.
17424
17425 * README: Update bug report address.
17426
17427 * bison.simple:
17428 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17429
17430 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
17431 Add automake stuff.
17432
174331998-11-25 Jesse Thilo <jthilo@gnu.org>
17434
17435 * doc/bison.texinfo: Clean up some formatting.
17436
174371998-05-05 Richard Stallman <rms@gnu.org>
17438
17439 * doc/bison.texinfo:
17440 Explain better why to make a pure parser.
17441
174421998-01-05 Richard Stallman <rms@gnu.org>
17443
17444 * src/files.c (openfiles):
17445 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
17446 find a temporary directory, if possible. Do not unlink files while
17447 they are open.
17448
174491997-08-25 Richard Stallman <rms@gnu.org>
17450
17451 * src/reader.c (stack_offset;):
17452 Change some warni to warns.
17453
17454 * src/lex.c (literalchar): Use warns, not warni.
17455
174561997-06-28 Richard Stallman <rms@gnu.org>
17457
17458 * src/bison.s1: Add a Bison version comment.
17459
17460 * src/main.c (fatal, warn, berror):
17461 Use program_name.
17462
174631997-06-28 Richard Stallman <rms@gnu.org>
17464
17465 * Makefile.in (bison_version): New variable.
17466 (dist): Use that variable.
17467 (bison.s1): Substitute the Bison version into bison.simple.
17468
17469 * bison.simple: Add a Bison version comment.
17470
174711997-06-18 Richard Stallman <rms@gnu.org>
17472
17473 * src/main.c (fatal, warn, berror):
17474 Make error messages standard.
17475 (toomany): Improve error message text.
17476
17477 * 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:
17478 new.h renamed to alloc.h.
17479
174801997-06-18 Richard Stallman <rms@gnu.org>
17481
17482 * Makefile.in: new.h renamed to alloc.h.
17483
174841997-05-24 Richard Stallman <rms@gnu.org>
17485
17486 * src/lex.c (literalchar):
17487 Fix the code for escaping \, " and '.
17488
17489 (lex): Avoid trouble when there are many chars
17490 to discard in a char literal with just several chars in it.
17491
174921997-05-17 Richard Stallman <rms@gnu.org>
17493
17494 * src/bison.s1:
17495 Use malloc, if using alloca is troublesome.
17496 (YYSTACK_USE_ALLOCA): New flag macro.
17497 Define it for some systems and compilers.
17498 (YYSTACK_ALLOC): New macro.
17499 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17500 If it was malloc'd, free it.
17501
175021997-05-17 Richard Stallman <rms@gnu.org>
17503
17504 * bison.simple:
17505 Use malloc, if using alloca is troublesome.
17506 (YYSTACK_USE_ALLOCA): New flag macro.
17507 Define it for some systems and compilers.
17508 (YYSTACK_ALLOC): New macro.
17509 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17510 If it was malloc'd, free it.
17511
175121997-04-23 Richard Stallman <rms@gnu.org>
17513
17514 * src/bison.s1:
17515 (alloca) [__hpux]: Always define as __builtin_alloca.
17516
175171997-04-23 Richard Stallman <rms@gnu.org>
17518
17519 * bison.simple:
17520 (alloca) [__hpux]: Always define as __builtin_alloca.
17521
175221997-04-22 Richard Stallman <rms@gnu.org>
17523
17524 * src/bison.s1:
17525 [__hpux]: Include alloca.h (right for HPUX 10)
17526 instead of declaring alloca (right for HPUX 9).
17527
17528 * src/bison.s1 (__yy_memcpy):
17529 Declare arg `count' as unsigned int.
17530 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17531
175321997-04-22 Richard Stallman <rms@gnu.org>
17533
17534 * bison.simple:
17535 [__hpux]: Include alloca.h (right for HPUX 10)
17536 instead of declaring alloca (right for HPUX 9).
17537
17538 * bison.simple (__yy_memcpy):
17539 Declare arg `count' as unsigned int.
17540 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17541
175421997-01-03 Richard Stallman <rms@gnu.org>
17543
17544 * src/allocate.c: [__STDC__ or _MSC_VER]:
17545 Declare calloc and realloc to return void *.
17546
175471997-01-02 Richard Stallman <rms@gnu.org>
17548
17549 * src/system.h:
17550 [_MSC_VER]: Include stdlib.h and process.h.
17551 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
17552
17553 * src/main.c (main): Return FAILURE as a value.
17554 (printable_version): Declare arg as int, not char.
17555
175561997-01-02 Richard Stallman <rms@gnu.org>
17557
17558 * Makefile.in (dist):
17559 Explicitly check for symlinks, and copy them.
17560
175611996-12-19 Richard Stallman <rms@gnu.org>
17562
17563 * src/files.c:
17564 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
17565
175661996-12-18 Paul Eggert <eggert@gnu.org>
17567
17568 * src/bison.s1 (yyparse):
17569 If __GNUC__ and YYPARSE_PARAM are both defined,
17570 declare yyparse to have a void * argument.
17571
175721996-12-18 Paul Eggert <eggert@gnu.org>
17573
17574 * bison.simple (yyparse):
17575 If __GNUC__ and YYPARSE_PARAM are both defined,
17576 declare yyparse to have a void * argument.
17577
175781996-12-17 Richard Stallman <rms@gnu.org>
17579
17580 * src/reduce.c (nbits): Add some casts.
17581
175821996-08-12 Richard Stallman <rms@gnu.org>
17583
17584 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
17585
175861996-08-12 Richard Stallman <rms@gnu.org>
17587
17588 * bison.simple: Test _MSDOS as well as _MSDOS_.
17589
175901996-07-31 Richard Stallman <rms@gnu.org>
17591
17592 * src/bison.s1:
17593 [__sun && __i386]: Include alloca.h.
17594
175951996-07-31 Richard Stallman <rms@gnu.org>
17596
17597 * bison.simple:
17598 [__sun && __i386]: Include alloca.h.
17599
176001996-07-30 Richard Stallman <rms@gnu.org>
17601
17602 * src/bison.s1: Comment change.
17603
17604 * src/bison.s1: Test _MSDOS_, not MSDOS.
17605
176061996-07-30 Richard Stallman <rms@gnu.org>
17607
17608 * bison.simple: Comment change.
17609
17610 * bison.simple: Test _MSDOS_, not MSDOS.
17611
176121996-06-01 Richard Stallman <rms@gnu.org>
17613
17614 * 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:
17615 Insert `_' macro around many string constants.
17616
17617 * src/main.c:
17618 Insert `_' macro around many string constants.
17619
17620 (main): Call setlocale, bindtextdomain and textdomain.
17621
17622 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
17623 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
17624 [ENABLE_NLS]: Include libintl.h.
17625 [ENABLE_NLS] (gettext): Define.
17626 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
17627 (N_, PACKAGE, LOCALEDIR): New macros.
17628
176291996-06-01 Richard Stallman <rms@gnu.org>
17630
17631 * POTFILES.in: New file.
17632
17633 * Makefile.in (allocate.o):
17634 Define target explicitly.
17635
17636 * Makefile.in (CFLAGS): Set to @CFLAGS@.
17637 (LDFLAGS): Set to @LDFLAGS@.
17638 (configure): Run autoconf only if preceding `cd' succeeds.
17639 (bison.s1): Redirect output to temporary file then move the
17640 temporary to the target, rather than redirecting directly to bison.s1.
17641 (clean): Remove config.status and config.log.
17642 (distclean): Don't remove config.status here.
17643
176441996-05-12 Richard Stallman <rms@gnu.org>
17645
17646 * src/bison.s1:
17647 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17648
176491996-05-12 Richard Stallman <rms@gnu.org>
17650
17651 * bison.simple:
17652 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17653
176541996-05-11 Richard Stallman <rms@gnu.org>
17655
17656 * src/bison.s1 (__yy_memcpy):
17657 Really reorder the args, as was supposedly done on Feb 14 1995.
17658 (yyparse): Calls changed accordingly.
17659
176601996-05-11 Richard Stallman <rms@gnu.org>
17661
17662 * Makefile.in (dist): Don't use $(srcdir).
17663
17664 * bison.simple (__yy_memcpy):
17665 Really reorder the args, as was supposedly done on Feb 14 1995.
17666 (yyparse): Calls changed accordingly.
17667
176681996-01-27 Richard Stallman <rms@gnu.org>
17669
17670 * src/output.c (output_rule_data):
17671 Test YYERROR_VERBOSE in the conditional
17672 around the definition of ttyname.
17673
176741995-12-29 Richard Stallman <rms@gnu.org>
17675
17676 * src/bison.s1:
17677 Fix line numbers in #line commands.
17678
176791995-12-29 Richard Stallman <rms@gnu.org>
17680
17681 * bison.simple:
17682 Fix line numbers in #line commands.
17683
176841995-12-27 Richard Stallman <rms@gnu.org>
17685
17686 * src/bison.s1 (YYPARSE_PARAM_DECL):
17687 In C++, make it always null.
17688 (YYPARSE_PARAM_ARG): New macro.
17689 (yyparse): Use YYPARSE_PARAM_ARG.
17690
176911995-12-27 Richard Stallman <rms@gnu.org>
17692
17693 * bison.simple (YYPARSE_PARAM_DECL):
17694 In C++, make it always null.
17695 (YYPARSE_PARAM_ARG): New macro.
17696 (yyparse): Use YYPARSE_PARAM_ARG.
17697
176981995-11-29 Richard Stallman <rms@gnu.org>
17699
17700 * doc/bison.texinfo:
17701 Describe literal string tokens, %raw, %no_lines, %token_table.
17702
177031995-11-29 Daniel Hagerty <hag@gnu.org>
17704
17705 * doc/bison.texinfo: Fixed update date
17706
177071995-10-16 Richard Stallman <rms@gnu.org>
17708
17709 * src/version.c: Version 1.25.
17710
177111995-10-16 Richard Stallman <rms@gnu.org>
17712
17713 * NEWS: *** empty log message ***
17714
177151995-10-16 Richard Stallman <rms@gnu.org>
17716
17717 * doc/bison.1, doc/bison.rnh:
17718 Add new options.
17719
177201995-10-15 Richard Stallman <rms@gnu.org>
17721
17722 * src/vmsgetargs.c, src/getargs.c:
17723 Added -n, -k, and -raw switches.
17724 (noparserflag, toknumflag, rawtoknumflag): New variables.
17725
17726 * src/symtab.h (SALIAS):
17727 New #define for adding aliases to %token.
17728 (struct bucket): Added `alias' field.
17729
17730 * src/reduce.c (reduce_grammar):
17731 Revise error message.
17732 (print_notices): Remove final `.' from error message.
17733
17734 * src/reader.c (reader_output_yylsp):
17735 New function.
17736 (readgram): Use `#if 0' around code that accepted %command
17737 inside grammar rules: The documentation doesn't allow it,
17738 and it will fail since the %command processors scan for the next %.
17739 (parse_token_decl): Extended the %token
17740 declaration to allow a multi-character symbol as an alias.
17741 (parse_thong_decl): New function.
17742 (read_declarations): Added %thong declarations.
17743 (read_declarations): Handle NOOP to deal with allowing
17744 % declarations as another means to specify the flags.
17745 (readgram): Allow %prec prior to semantics embedded in a rule.
17746 (skip_to_char, read_declarations, copy_definition)
17747 (parse_token_decl, parse_start_decl, parse_type_decl)
17748 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
17749 (get_type_name, copy_guard, copy_action, readgram)
17750 (get_type, packsymbols): Revised most error messages.
17751 Changed `fatal' to `warnxxx' to avoid aborting for error.
17752 Revised and use multiple warnxxx functions to avoid using VARARGS1.
17753 (read_declarations): Improve the error message for
17754 an invalid character. Do not abort.
17755 (read_declarations, copy_guard, copy_action): Use
17756 printable_version to avoid unprintable characters in printed output.
17757 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
17758 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
17759 Allow the type of a non-terminal can be given
17760 more than once, as long as all specifications give the same type.
17761
17762 * src/output.c:
17763 (output_headers, output_trailers, output, output_gram)
17764 (output_rule_data): Implement noparserflag variable.
17765 Implement toknumflag variable.
17766 (output): Call reader_output_yylsp to output LTYPESTR.
17767
17768 * src/main.c (main):
17769 If reader sees an error, don't process the grammar.
17770 (fatals): Updated to not use VARARGS1.
17771 (printable_version, int_to_string, warn, warni, warns, warnss)
17772 (warnsss): New error reporting functions. Avoid abort for error.
17773
17774 * src/lex.h:
17775 Added THONG and NOOP for alias processing.
17776 Added SETOPT for the new code that allows setting options with %flags.
17777
17778 * src/lex.c:
17779 Include getopt.h. Add some extern decls.
17780 (safegetc): New function to deal with EOF gracefully.
17781 (literalchar); new function to deal with reading \ escapes.
17782 (lex): Use literalchar.
17783 (lex): Implemented "..." tokens.
17784 (literalchar, lex, parse_percent_token): Made tokenbuffer
17785 always contain the token. This includes growing the token
17786 buffer while reading an integer.
17787 (parse_percent_token): Replaced if-else statement with percent_table.
17788 (parse_percent_token): Added % declarations as another
17789 way to specify the flags -n, -l, and -r. Also added hooks for
17790 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
17791 major changes to files.c.
17792 (lex) Retain in the incoming stream a character following
17793 an incorrect '/'.
17794 (skip_white_space, lex): Revised most error messages
17795 and changed fatal to warn to avoid aborting.
17796 (percent_table): Added %thong declarations.
17797
17798 * src/gram.h: Comment changes.
17799
17800 * src/files.c (openfiles, open_extra_files, done):
17801 Add faction flag
17802 and actfile file. Handle noparserflag. Both for -n switch.
17803
17804 * src/conflicts.c (resolve_sr_conflict):
17805 Remove use of alloca.
17806
178071995-06-01 Jim Meyering <meyering@gnu.org>
17808
17809 * doc/bison.texinfo: *** empty log message ***
17810
178111995-05-06 Richard Stallman <rms@gnu.org>
17812
17813 * src/bison.s1: Comment change.
17814
178151995-05-06 Richard Stallman <rms@gnu.org>
17816
17817 * bison.simple: Comment change.
17818
178191995-05-03 Richard Stallman <rms@gnu.org>
17820
17821 * src/version.c: Version now 1.24.
17822
17823 * src/bison.s1: Change distribution terms.
17824
17825 * src/version.c: Version now 1.23.
17826
178271995-05-03 Richard Stallman <rms@gnu.org>
17828
17829 * doc/bison.texinfo:
17830 Rewrite "Conditions for Using Bison".
17831 Update version to 1.24.
17832
178331995-05-03 Richard Stallman <rms@gnu.org>
17834
17835 * bison.simple: Change distribution terms.
17836
178371995-02-23 Richard Stallman <rms@gnu.org>
17838
17839 * src/files.c: Test __VMS_POSIX as well as VMS.
17840
178411995-02-14 Jim Meyering <meyering@gnu.org>
17842
17843 * src/bison.s1 (__yy_memcpy):
17844 Renamed from __yy_bcopy to avoid
17845 confusion. Reverse FROM and TO arguments to be consistent with
17846 those of memcpy.
17847
178481995-02-14 Jim Meyering <meyering@gnu.org>
17849
17850 * bison.simple (__yy_memcpy):
17851 Renamed from __yy_bcopy to avoid
17852 confusion. Reverse FROM and TO arguments to be consistent with
17853 those of memcpy.
17854
178551994-11-10 David J. MacKenzie <djm@gnu.org>
17856
17857 * NEWS: reformat
17858
17859 * NEWS: New file.
17860
17861 * Makefile.in (DISTFILES): Include NEWS.
17862
17863 * Makefile.in (DISTFILES):
17864 Include install-sh, not install.sh.
17865
17866 * configure.in: Update to Autoconf v2 macro names.
17867
178681994-10-05 David J. MacKenzie <djm@gnu.org>
17869
17870 * Makefile.in: fix typo
17871
17872 * Makefile.in (prefix, exec_prefix):
17873 Let configure set them.
17874
178751994-09-28 David J. MacKenzie <djm@gnu.org>
17876
17877 * Makefile.in: Set datadir to $(prefix)/share.
17878
178791994-09-15 Richard Stallman <rms@gnu.org>
17880
17881 * src/bison.s1:
17882 Update copyright notice and GPL version.
17883
178841994-09-15 Richard Stallman <rms@gnu.org>
17885
17886 * bison.simple:
17887 Update copyright notice and GPL version.
17888
178891994-07-12 Richard Stallman <rms@gnu.org>
17890
17891 * src/reduce.c, src/reader.c:
17892 entered into RCS
17893
178941994-05-05 David J. MacKenzie <djm@gnu.org>
17895
17896 * Makefile.in: entered into RCS
17897
178981994-03-26 Richard Stallman <rms@gnu.org>
17899
17900 * src/bison.s1: entered into RCS
17901
179021994-03-26 Richard Stallman <rms@gnu.org>
17903
17904 * bison.simple: entered into RCS
17905
179061994-03-25 Richard Stallman <rms@gnu.org>
17907
17908 * src/main.c: entered into RCS
17909
179101994-03-24 Richard Stallman <rms@gnu.org>
17911
17912 * src/conflicts.c: entered into RCS
17913
179141994-01-02 Richard Stallman <rms@gnu.org>
17915
17916 * Makefile.in: *** empty log message ***
17917
179181993-11-21 Richard Stallman <rms@gnu.org>
17919
17920 * src/bison.s1: *** empty log message ***
17921
179221993-11-21 Richard Stallman <rms@gnu.org>
17923
17924 * doc/bison.texinfo: entered into RCS
17925
17926 * doc/bison.texinfo: *** empty log message ***
17927
179281993-11-21 Richard Stallman <rms@gnu.org>
17929
17930 * bison.simple: *** empty log message ***
17931
179321993-10-25 David J. MacKenzie <djm@gnu.org>
17933
17934 * doc/bison.texinfo: *** empty log message ***
17935
179361993-10-19 Richard Stallman <rms@gnu.org>
17937
17938 * src/bison.s1: *** empty log message ***
17939
179401993-10-19 Richard Stallman <rms@gnu.org>
17941
17942 * bison.simple: *** empty log message ***
17943
179441993-10-14 Richard Stallman <rms@gnu.org>
17945
17946 * src/bison.s1: *** empty log message ***
17947
179481993-10-14 Richard Stallman <rms@gnu.org>
17949
17950 * bison.simple: *** empty log message ***
17951
179521993-09-14 David J. MacKenzie <djm@gnu.org>
17953
17954 * doc/bison.texinfo: *** empty log message ***
17955
179561993-09-13 Noah Friedman <friedman@gnu.org>
17957
17958 * Makefile.in: *** empty log message ***
17959
179601993-09-10 Richard Stallman <rms@gnu.org>
17961
17962 * src/conflicts.c: *** empty log message ***
17963
17964 * src/system.h: entered into RCS
17965
179661993-09-10 Richard Stallman <rms@gnu.org>
17967
17968 * doc/bison.1: entered into RCS
17969
179701993-09-06 Noah Friedman <friedman@gnu.org>
17971
17972 * src/version.c: entered into RCS
17973
179741993-09-06 Noah Friedman <friedman@gnu.org>
17975
17976 * Makefile.in: *** empty log message ***
17977
179781993-07-30 David J. MacKenzie <djm@gnu.org>
17979
17980 * Makefile.in: *** empty log message ***
17981
179821993-07-24 Richard Stallman <rms@gnu.org>
17983
17984 * src/bison.s1: *** empty log message ***
17985
179861993-07-24 Richard Stallman <rms@gnu.org>
17987
17988 * bison.simple: *** empty log message ***
17989
179901993-07-08 David J. MacKenzie <djm@gnu.org>
17991
17992 * Makefile.in: *** empty log message ***
17993
179941993-07-04 Richard Stallman <rms@gnu.org>
17995
17996 * src/bison.s1: *** empty log message ***
17997
179981993-07-04 Richard Stallman <rms@gnu.org>
17999
18000 * bison.simple: *** empty log message ***
18001
180021993-06-26 David J. MacKenzie <djm@gnu.org>
18003
18004 * src/getargs.c: entered into RCS
18005
180061993-06-26 David J. MacKenzie <djm@gnu.org>
18007
18008 * doc/bison.texinfo: *** empty log message ***
18009
18010 * doc/bison.1: New file.
18011
180121993-06-25 Richard Stallman <rms@gnu.org>
18013
18014 * src/getargs.c: New file.
18015
180161993-06-16 Richard Stallman <rms@gnu.org>
18017
18018 * src/bison.s1: *** empty log message ***
18019
180201993-06-16 Richard Stallman <rms@gnu.org>
18021
18022 * bison.simple: *** empty log message ***
18023
180241993-06-03 Richard Stallman <rms@gnu.org>
18025
18026 * src/bison.s1: New file.
18027
180281993-06-03 Richard Stallman <rms@gnu.org>
18029
18030 * doc/bison.texinfo: *** empty log message ***
18031
180321993-06-03 Richard Stallman <rms@gnu.org>
18033
18034 * bison.simple: New file.
18035
180361993-05-19 Richard Stallman <rms@gnu.org>
18037
18038 * doc/bison.texinfo: New file.
18039
180401993-05-07 Noah Friedman <friedman@gnu.org>
18041
18042 * Makefile.in: *** empty log message ***
18043
180441993-04-28 Noah Friedman <friedman@gnu.org>
18045
18046 * src/reader.c: *** empty log message ***
18047
180481993-04-23 Noah Friedman <friedman@gnu.org>
18049
18050 * src/alloc.h: entered into RCS
18051
180521993-04-20 David J. MacKenzie <djm@gnu.org>
18053
18054 * src/version.c: *** empty log message ***
18055
18056 * src/files.c, src/allocate.c:
18057 entered into RCS
18058
18059 * src/reader.c: *** empty log message ***
18060
18061 * src/lex.c: entered into RCS
18062
18063 * src/conflicts.c: New file.
18064
18065 * src/symtab.c: entered into RCS
18066
18067 * src/alloc.h: New file.
18068
18069 * src/LR0.c: entered into RCS
18070
180711993-04-18 Noah Friedman <friedman@gnu.org>
18072
18073 * src/reader.c: New file.
18074
18075 * src/version.c: *** empty log message ***
18076
180771993-04-18 Noah Friedman <friedman@gnu.org>
18078
18079 * Makefile.in: *** empty log message ***
18080
180811993-04-17 Noah Friedman <friedman@gnu.org>
18082
18083 * Makefile.in: *** empty log message ***
18084
180851993-04-15 Richard Stallman <rms@gnu.org>
18086
18087 * src/main.c, src/files.c:
18088 New file.
18089
180901993-04-15 Noah Friedman <friedman@gnu.org>
18091
18092 * configure.in: entered into RCS
18093
18094 * configure.in: *** empty log message ***
18095
18096 * configure.in: New file.
18097
180981993-04-14 Richard Stallman <rms@gnu.org>
18099
18100 * Makefile.in: New file.
18101
181021993-04-13 Richard Stallman <rms@gnu.org>
18103
18104 * src/version.c: New file.
18105
181061993-03-25 Richard Stallman <rms@gnu.org>
18107
18108 * src/output.c: entered into RCS
18109
181101992-09-25 Richard Stallman <rms@gnu.org>
18111
18112 * configure.bat: entered into RCS
18113
181141992-06-22 Richard Stallman <rms@gnu.org>
18115
18116 * src/vmsgetargs.c: entered into RCS
18117
181181992-06-22 Richard Stallman <rms@gnu.org>
18119
18120 * doc/bison.rnh: entered into RCS
18121
181221992-04-20 David J. MacKenzie <djm@gnu.org>
18123
18124 * README: entered into RCS
18125
181261992-01-22 Richard Stallman <rms@gnu.org>
18127
18128 * src/machine.h: entered into RCS
18129
181301991-12-21 Richard Stallman <rms@gnu.org>
18131
18132 * src/lalr.c, src/closure.c:
18133 entered into RCS
18134
181351991-12-20 Richard Stallman <rms@gnu.org>
18136
18137 * src/state.h: entered into RCS
18138
181391991-12-18 Richard Stallman <rms@gnu.org>
18140
18141 * src/print.c, src/nullable.c, src/derives.c:
18142 entered into RCS
18143
181441991-11-03 David J. MacKenzie <djm@gnu.org>
18145
18146 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
18147 entered into RCS
18148
181491988-09-09 Richard Stallman <rms@gnu.org>
18150
18151 * src/bison.hairy: entered into RCS
18152
181531987-12-16 Richard Stallman <rms@gnu.org>
18154
18155 * REFERENCES: entered into RCS
dc546b0f 18156
f294a2c2 18157
04098407 18158 -----
f294a2c2 18159
04098407 18160 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e2a21b6f
PE
18161 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
18162 Software Foundation, Inc.
f294a2c2 18163
04098407
PE
18164 Copying and distribution of this file, with or without
18165 modification, are permitted provided the copyright notice and this
18166 notice are preserved.
e9071366
AD
18167
18168$Id$