]> git.saurik.com Git - bison.git/blob - ChangeLog
* data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
[bison.git] / ChangeLog
1 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4 prevent a name collision in a future patch where these names will
5 sometimes be #define'd.
6 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7 since it no longer has the same name as the existing argument.
8 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
9
10 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
11 and Joel E. Denny <jdenny@ces.clemson.edu>
12
13 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
14 that the argument is case-insensitive, and there's no `=' here.
15 For the %skeleton entry, mention that %language is better.
16 (Bison Options): Likewise for --language and --skeleton. Move the
17 --skeleton entry so that the `Tuning the parser' section is sorted
18 alphabetically on long options.
19 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
20 %language directive in detail here; cross-reference the %language
21 documentation instead.
22 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
23 `%require "2.3b"' so that the example is always up-to-date.
24 (Bison Symbols): Add entries for %language and %skeleton.
25 * examples/extexi (normalize): Instead of replacing every %require
26 argument with the current Bison version, just substitute for
27 `@value{VERSION}'. This guarantees that we're testing what actually
28 appears in the documentation.
29 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
30 rather than `@VERSION@'.
31
32 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
33
34 * NEWS: Reword the %language news a bit, and put it earlier.
35
36 * src/getargs.c (skeleton_arg): Last arg is now location const *.
37 Rewrite to simplify the logic.
38 (language_argmatch): Likewise.
39 (program_name): We now own this var.
40 * src/getargs.h (struct bison_language): Use char[] rather than
41 const char *.
42
43 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
44 Java is supported.
45 * src/complain.c (program_name): Remove decl; no longer needed.
46 * src/main.c (program_name): Remove; now belongs to getargs.
47
48 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
49
50 * NEWS: Document %language.
51
52 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
53
54 * data/c-skel.m4, data/c++-skel.m4: New files.
55 * data/glr.c: Complain on push parsers.
56
57 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
58 over %skeleton.
59 (Directives): Document %language and %skeleton.
60 (Command line): Document -L.
61
62 * examples/extexi: Rewrite %require directive.
63 * examples/calc++/Makefile.am: Pass VERSION to extexi.
64
65 * src/files.c (compute_exts_from_gc): Look in language structure
66 for .y extension.
67 (compute_file_name_parts): Check whether .tab should be added.
68 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
69 (language, skeleton_arg, language_argmatch): New.
70 (long_options): Add --language.
71 (getargs): Use skeleton_arg, add -L/--language.
72 * src/getargs.h: Include location.h.
73 (struct bison_language, language, skeleton_arg, language_argmatch): New.
74 * src/output.c (prepare): Pick default skeleton from struct language.
75 Don't dispatch C skeletons here.
76 * src/parse-gram.y (PERCENT_LANGUAGE): New.
77 (prologue_declaration): Add "%language" rule, use skeleton_arg.
78 * src/scan-gram.l ("%language"): New rule.
79
80 * tests/calc.at: Test %skeleton and %language.
81 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
82 (AT_GLR_IF): Look for %skeleton "glr.cc".
83 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
84 (AT_YACC_IF): Reject %language.
85
86 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
87
88 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
89 since it wasn't used; only the typedef name 'semantic_type' is needed.
90 Also, omit trailing white space.
91
92 * bootstrap: Sync from coreutils.
93 (gnulib_extra_files): Add build-aux/announce.gen.
94 (slurp): Adjust .gitignore files like .cvsignore files.
95 * build-aux/announce-gen: Remove from CVS, since bootstrap
96 now creates this.
97
98 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
99
100 Make %push-parser imply %pure-parser. This fixes several bugs; see
101 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
102 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
103 pure_parser = true.
104 * data/push.c: Don't bother testing b4_push_if when deciding whether
105 to expand b4_declare_parser_variables globally.
106 (yypush_parse): Likewise in here.
107
108 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
109 (yy_reduce_print): Reformat M4 for readability.
110
111 2006-12-15 Bob Rossi <bob@brasko.net>
112 and Joel Denny <jdenny@ces.clemson.edu>
113
114 * data/push.c (yypstate): Add typedef, and update all uses of
115 struct yypstate to just yypstate.
116 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
117
118 2006-12-14 Bob Rossi <bob@brasko.net>
119
120 * data/push.c (yypush_parse): Declare prototype regardless of
121 %locations option.
122
123 2006-12-14 Bob Rossi <bob@brasko.net>
124
125 * data/push.c (yyparse): Remove the prototype and the #define when in
126 push-parser mode.
127
128 2006-12-13 Bob Rossi <bob@brasko.net>
129
130 * data/push.c (yypstate_init): Rename to...
131 (yypstate_new): ... this and use b4_c_function_def.
132 (yypstate_delete): New.
133 (yypush_parse): Change parameters yynval and yynlloc to be const.
134 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
135 yypstate_delete functions.
136
137 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
138
139 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
140 strange test case titles. Reported by Bob Rossi.
141
142 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
143
144 * TODO: Add pointer to Sylvain Schmitz's work on static detection
145 of potential ambiguities in GLR grammers.
146
147 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
148
149 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
150 `bison ', use m4_index instead of m4_substr since chopping up a string
151 containing M4-special characters causes problems here.
152
153 Fix a couple of bugs related to special characters in user-specified
154 file names, and make it easier for skeletons to compute output file
155 names with the same file name prefix as Bison-computed output file
156 names.
157 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
158 b4_parser_file_name and b4_spec_defines_file instead of
159 @output_parser_name@ and @output_header_name@, which are now redundant.
160 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
161 b4_parser_file_name, b4_spec_defines_file, and the new
162 @basename(FILENAME@) instead of @output_parser_name@ and
163 @output_header_name@, which inappropriately escaped the file names as
164 C string literals.
165 * src/files.c (all_but_ext): Remove static qualifier.
166 (compute_output_file_names): Move `free (all_but_ext)' to...
167 (output_file_names_free): ... here since all_but_ext is needed later.
168 * src/files.h (all_but_ext): Extern.
169 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
170 exactly what MUSCLE_INSERT_STRING used to do.
171 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
172 characters are escaped properly.
173 * src/output.c (prepare): Define muscle file_name_all_but_ext as
174 all_but_ext.
175 For pkgdatadir muscle, maintain previous functionality by using
176 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
177 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
178 digraphs would never be expanded. Hopefully no one has M4-special
179 characters in his Bison installation path.
180 * src/scan-skel.l: Don't parse @output_header_name@ and
181 @output_parser_name@ anymore since they're now redundant.
182 In @output, use decode_at_digraphs.
183 Parse a new @basename command that invokes last_component.
184 (decode_at_digraphs): New.
185 (BASE_QPUTS): Remove unused.
186 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
187 (Output file name): New tests.
188
189 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
190
191 Warn about output files that are generated by the skeletons and that
192 conflict with other output files.
193 * data/glr.c: Don't generate the header file here when glr.cc does.
194 * src/files.c (file_names, file_names_count): New static globals.
195 (compute_output_file_names): Invoke output_file_name_check for files
196 not generated by the skeletons and remove existing checks.
197 (output_file_name_check): New function that warns about conflicting
198 output file names.
199 (output_file_names_free): Free file_names.
200 * src/files.h (output_file_name_check): Declare.
201 * src/scan-skel.l: Invoke output_file_name_check for files generated by
202 the skeletons.
203 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
204 (Conflicting output files): New tests.
205
206 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
207
208 * doc/bison.texinfo: Fix a couple of typos.
209
210 2006-12-08 Bob Rossi <bob@brasko.net>
211
212 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
213 Rename to...
214 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
215 update all uses.
216 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
217 (yypush_parse): Rename yypvars argument to yyps and remove redundant
218 local pv.
219 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
220 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
221
222 2006-12-07 Bob Rossi <bob@brasko.net>
223 and Joel Denny <jdenny@ces.clemson.edu>
224
225 * data/push.c (yypvarsinit): Change return type from void* to struct
226 yypvars*. No longer cast to void* on return.
227 (struct yypvars): Remove yylen since it need not be remembered between
228 yypushparse invocations.
229 (yypushparse): Don't copy between yylen and pv->yylen.
230
231 2006-12-05 Bob Rossi <bob@brasko.net>
232
233 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
234 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
235 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
236 (struct yypvars): Remove b4_declare_parser_variables.
237 (yypvarsinit): Remove init code for removed variables.
238 (global scope): Do not declare b4_declare_parser_variables if
239 push or pure mode.
240 (yypushparse): Add b4_declare_parser_variables.
241 Init new local variables, and remove init code for removed
242 yypvars variables.
243 (yyparse): Delete.
244 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
245 and yyparse for other modes.
246 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
247 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
248 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
249 (AT_PURE_LEX_IF): True if pure or push parser.
250
251 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
252
253 Document Yacc prologue alternatives and default %destructor's and
254 %printer's as experimental. Don't mention Java yet. Discussed at
255 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
256 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
257 (2.3a): Annotate this entry to say the old forms of these features were
258 also experimental.
259 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
260 Bison Symbols): Say they're experimental. Comment out any mention
261 of Java (we'll want this back eventually).
262
263 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
264
265 Support a file name argument to %defines. Deprecate `=' in
266 %file-prefix, %name-prefix, and %output. Discussed at
267 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
268 * NEWS (2.3a+): Mention.
269 * doc/bison.texinfo (Decl Summary, Bison Symbols): Add entry for new
270 form of %defines, and remove `=' from entries for %file-prefix,
271 %name-prefix, and %output.
272 * src/parse-gram.y (prologue_declaration): Implement.
273 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
274 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
275 all but one occurrence of %name-prefix.
276 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
277 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
278 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
279 occurrence of each of %file-prefix and %output. Add check for %defines
280 with argument.
281 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
282 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
283 Remove the `=' from %output.
284
285 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
286
287 Don't escape $ in test case titles since Autoconf 2.61 now does that
288 correctly.
289 * tests/actions.at (Default %printer and %destructor are not for error
290 or $undefined): Here.
291 (Default %printer and %destructor are not for $accept): Here.
292 * tests/input.at (Invalid $n and @n): Here.
293
294 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
295
296 Rename <!> to <>. Discussed starting at
297 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
298 * NEWS (2.3a+): Update.
299 * doc/bison.texinfo (Freeing Discarded Symbols, Bison Symbols):
300 Update.
301 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
302 * src/scan-gram.l (INITIAL): Implement.
303 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
304 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
305 comment.
306 * tests/actions.at (Default tagless %printer and %destructor,
307 Default tagged and per-type %printer and %destructor,
308 Default %printer and %destructor are not for error or $undefined,
309 Default %printer and %destructor are not for $accept,
310 Default %printer and %destructor for mid-rule values): Update.
311 * tests/input.at (Default %printer and %destructor redeclared,
312 Unused values with default %destructor): Update.
313
314 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
315
316 Don't let %prec take a nonterminal.
317 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
318 token.
319 * tests/input.at (%prec takes a token): New test checking that %prec
320 won't take a nonterminal.
321
322 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
323
324 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
325 it was double-quoted.
326 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
327 grammar is maintained with Bison's highest standards.
328 * src/getargs.c: Fix some typos in Doxygen comments.
329
330 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
331
332 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
333 later. Reported by Paul Eggert in
334 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
335 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
336 * src/scan-code.l (translate_action): Don't bother invoking
337 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
338 (code_scanner_free): Instead of invoking
339 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
340 which frees more.
341 * src/scan-gram.l (gram_scanner_free): Likewise.
342 * src/scan-skel.l (scan_skel): Likewise.
343
344 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
345
346 * src/files.c (tr): Change return type to void.
347 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
348 has been called previously for the same key.
349 (muscle_find): Return storage instead of value so that
350 --enable-gcc-warnings doesn't produce warnings that the return discards
351 const. aver that the value and storage are the same since storage
352 could potentially be NULL when value is not.
353 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
354 same as 0.
355
356 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
357
358 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
359 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
360 us a slightly cleaner distribution, and also works.
361 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
362 gnulib changes.
363
364 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
365 and Paul Eggert <eggert@cs.ucla.edu>
366
367 Don't let Bison leak memory except when it complains.
368 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
369 (spec_defines_file, dir_prefix): Now char *, not const char *,
370 since they are freed.
371 * src/files.c: Likewise.
372 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
373 Likewise.
374 (tr): Now operates in-place. All uses changed.
375 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
376 values.
377 (compute_file_name_parts, compute_output_file_names): Don't store
378 read-only data in variables that will be freed.
379 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
380 src_extension, and header_extension.
381 (output_file_names_free): New public function to free
382 spec_verbose_file, spec_graph_file, spec_defines_file,
383 parser_file_name, and dir_prefix.
384 * src/getargs.c (getargs): Don't store read-only data in variables that
385 will be freed.
386 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
387 (which previously existed but was unused), and quotearg_free.
388 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
389 * src/muscle_tab.c: Likewise.
390 (muscle_entry): Make the value char const *,
391 and add a new storage member that is char * and can be freed.
392 (muscle_entry_free): New private function.
393 (muscle_init): Use it instead of free.
394 (muscle_insert, muscle_grow): Update and use new storage member.
395 (muscle_code_grow): Free the string passed to muscle_grow
396 since it's not needed anymore.
397 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
398 add a new `char *code' member.
399 ("{...}"): Declare semantic type as code.
400 * src/scan-code.h (translate_rule_action):
401 (translate_symbol_action, translate_code, translate_action): Return
402 `char const *' rather than `char *' since external code should not free
403 these strings.
404 * src/scan-code.l: Likewise.
405 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
406 which is "{...}" in the parser.
407 * tests/Makefile.am (maintainer-check-valgrind): Set
408 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
409 Valgrind.
410 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
411 complain.
412 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
413 expecting a non-zero exit status sets --leak-check=summary and
414 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
415 this case, and we don't want to hear about it.
416
417 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
418
419 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
420 instead of from the template, to simplify configuration a bit.
421 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
422 and m4/wint_t.m4, as they are needed with the latest gnulib.
423
424 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
425
426 Disable unset/unused mid-rule value warnings by default, and recognize
427 --warnings=midrule-values to enable them. Discussed starting at
428 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
429 * NEWS (2.3a+): Mention.
430 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
431 warnings): Add entry for midrule-values subargument.
432 * src/reader.c (symbol_should_be_used): Don't return true just because
433 the value is a set/used mid-rule value unless
434 --warnings=midrule-values was specified.
435 * tests/input.at (Unused values, Unused values before symbol
436 declarations): Run tests with and without --warnings=midrule-values.
437
438 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
439 than LIST_FREE directly.
440
441 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
442
443 Finish implementing --warnings=error, which should not be implied by
444 --warnings=all (or by its synonyms -W and --warnings without
445 subarguments).
446 * src/complain.c (set_warning_issued): New function to report that
447 warnings are being treated as errors and to record an error if so.
448 Invoke...
449 (warn_at, warn): ... here.
450 * src/getargs.c (warnings_args, warnings_types): Reorder so that
451 "error - warnings are errors" does not appear above "all - all of the
452 above".
453 (getargs): For -W and --warnings without subarguments, don't let
454 FLAGS_ARGMATCH set warnings_error in warnings_flag.
455 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
456
457 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
458
459 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
460 empty subargument list. For example: `bison --warnings= parser.y'.
461
462 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
463
464 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
465 the parser header file so that gcc doesn't warn.
466
467 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
468
469 Split the default %destructor/%printer into two kinds: <*> and <!>.
470 Discussed starting at
471 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
472 * NEWS (2.3a+): Mention.
473 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
474 previous change today related to mid-rules.
475 (Bison Symbols): Remove %symbol-default and add <*> and <!>.
476 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
477 (TYPE_TAG_ANY): Add as <*>.
478 (TYPE_TAG_NONE): Add as <!>.
479 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
480 for <*> and <!>.
481 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
482 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
483 * src/symlist.c (symbol_list_default_new): Split into tagged and
484 tagless versions.
485 (symbol_list_destructor_set, symbol_list_printer_set): Split
486 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
487 SYMLIST_DEFAULT_TAGLESS.
488 * src/symlist.h: Update symbol_list_default*_new prototypes.
489 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
490 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
491 * src/symtab.c (default_destructor, default_destructor_location,
492 default_printer, default_printer_location): Split each into tagged and
493 tagless versions.
494 (symbol_destructor_get, symbol_destructor_location_get,
495 symbol_printer_get, symbol_printer_location_get): Implement tagged
496 default and tagless default cases.
497 (default_destructor_set, default_printer_set): Split each into tagged
498 and tagless versions.
499 * src/symtab.h: Update prototypes.
500 * tests/actions.at (Default %printer and %destructor): Rename to...
501 (Default tagless %printer and %destructor): ... this, and extend.
502 (Per-type %printer and %destructor): Rename to...
503 (Default tagged and per-type %printer and %destructor): ... this, and
504 extend.
505 (Default %printer and %destructor for user-defined end token): Extend.
506 (Default %printer and %destructor are not for error or $undefined):
507 Update.
508 (Default %printer and %destructor are not for $accept): Update.
509 (Default %printer and %destructor for mid-rule values): Extend.
510 * tests/input.at (Default %printer and %destructor redeclared): Extend.
511 (Unused values with default %destructor): Extend.
512
513 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
514
515 Don't apply the default %destructor/%printer to an unreferenced midrule
516 value. Mentioned at
517 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
518 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
519 like $@n instead of just @n so that the default %destructor/%printer
520 logic doesn't see them as user-defined symbols.
521 (symbol_is_dummy): Check for both forms of the name.
522 * src/reader.c (packgram): Remove the `$' from each midrule symbol
523 name for which the midrule value is referenced in any action.
524 * tests/actions.at (Default %printer and %destructor for mid-rule
525 values): New test.
526 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
527 for change to dummy symbol names.
528
529 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
530
531 Warn about unset midrule $$ if the corresponding $n is used.
532 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
533 $n usage.
534 (packgram): Before invoking grammar_rule_check on any rule, make sure
535 all actions have already been scanned in order to set `used' flags.
536 Otherwise, checking that a midrule's $$ is set will not always work
537 properly because the midrule check must forward-reference the midrule's
538 parent rule.
539 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
540 warning.
541
542 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
543
544 More improvements to the documentation of the prologue alternatives:
545 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
546 Bison manual.
547 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
548 some text to clarify the relative importance of the new directives and
549 to show how these directives may be viewed as code labels.
550
551 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
552
553 Similar to the recently removed %before-header, add %code-top as the
554 alternative to the pre-prologue. Mentioned at
555 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
556 Also, let the prologue alternatives appear in the grammar section.
557 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
558 (prologue_declaration): Move the existing prologue alternatives to...
559 (grammar_declaration): ... here and add %code-top.
560 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
561
562 Clean up and extend documentation for the prologue alternatives.
563 * NEWS (2.3a+): Describe prologue alternatives.
564 * doc/bison.texinfo (Prologue): Move discussion of prologue
565 alternatives to...
566 (Prologue Alternatives): ... this new section, and extend it to discuss
567 all 4 directives in detail.
568 (Bison Symbols): Clean up discussion of prologue alternatives and add
569 %code-top.
570
571 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
572
573 DJGPP specific issues.
574
575 * djgpp/config.bat: config.hin has been moved to lib. Adjust
576 config.bat accordingly.
577 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
578 * djgpp/config.site: Likewise.
579
580 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
581
582 Replace %*-header with %provides, %requires, %code. See discussion at
583 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
584
585 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
586 (b4_user_start_header): Remove.
587 * data/glr.c: Use new macros instead of b4_*start_header
588 and b4_*end_header.
589 * data/glr.cc: Likewise.
590 * data/lalr1.cc: Likewise.
591 * data/push.c: Likewise.
592 * data/yacc.c: Likewise.
593
594 * doc/bison.texinfo: Remove %before-header, rename
595 %{start,end,after}-header to %requires, %provides, %code.
596
597 * src/parse-gram.y: Likewise (also rename token names accordingly).
598 * src/scan-gram.l: Likewise.
599 * tests/actions.at: Likewise.
600
601 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
602
603 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
604 Problem reported by Joel E. Denny.
605
606 2006-10-14 Jim Meyering <jim@meyering.net>
607
608 (Sync from coreutils.)
609 Work also when the working directory (with e.g. coreutils sources)
610 is version controlled with git, rather than CVS.
611 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
612 rather than CVS.
613 In messages and comments, say e.g., "checked-out sources",
614 rather than "CVS sources".
615 (version_controlled_file): New function. Work for git as well as
616 for CVS. Don't use grep's -q option.
617 (slurp): Call it here, in place of CVS-specific code.
618
619 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
620
621 Fix testsuite for ./configure --enable-gcc-warnings:
622 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
623 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
624 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
625 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
626 * test/regression.at (Diagnostic that expects two alternatives):
627 Likewise.
628
629 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
630
631 * bootstrap.conf (gnulib_modules): Add config-h.
632 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
633 worry about HAVE_CONFIG_H.
634 * lib/abitset.c: Likewise.
635 * lib/bitset.c: Likewise.
636 * lib/bitset_stats.c: Likewise.
637 * lib/bitsetv-print.c: Likewise.
638 * lib/bitsetv.c: Likewise.
639 * lib/ebitset.c: Likewise.
640 * lib/get-errno.c: Likewise.
641 * lib/lbitset.c: Likewise.
642 * lib/subpipe.c: Likewise.
643 * lib/timevar.c: Likewise.
644 * lib/vbitset.c: Likewise.
645 * lib/bitset.c: Include "bitset.h" first, to test interface.
646 * lib/bitset_stats.c: Include "bitset_stats.h" first.
647 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
648 * lib/bitsetv.c: Include "bitsetv.h" first.
649 * lib/get-errno.c: Include "get-errno.h" first.
650 * m4/.cvsignore: Add config-h.m4.
651 * tests/actions.at (Default %printer and %destructor for ...):
652 Adjust expected line numbers in output to reflect removal of #if
653 HAVE_CONFIG_H lines.
654 * tests/glr-regression.at (Missed %merge type warnings when ...):
655 Likewise.
656 * tests/regression.at (Braced code in declaration in rules section):
657 Likewise.
658 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
659 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
660 Include <config.h> unconditionally.
661
662 * bootstrap: Sync from coreutils, as follows:
663
664 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
665
666 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
667 variable was sometimes used without being initialized. This
668 messed up the installation of the INSTALL file in some cases.
669
670 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
671
672 * bootstrap (usage, main program, symlink_to_gnulib): Add option
673 --copy. Inspired by a suggestion from Bruno Haible.
674
675 2006-10-03 Jim Meyering <jim@meyering.net>
676
677 * bootstrap: Undo last change to this file, since now gnulib-tool
678 sticks with the automake default in generating dependencies.
679
680 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
681
682 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
683 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
684
685 * doc/bison.1: Add copyright notice.
686
687 * data/glr.c: Don't include <stdarg.h>; not used.
688
689 * NEWS: The -g and --graph options now output graphs in Graphviz
690 DOT format, not VCG format.
691 * doc/bison.1: Likewise.
692 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
693 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
694 of this change in
695 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
696 * TODO: Remove Graphviz entry.
697 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
698 remove vcg.c, vcg.h, vcg_defaults.h.
699 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
700 * src/graphviz.c, src/graphviz.h: New files.
701 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
702 * src/files.h: Make comment more generic.
703 * src/main.c (main): Likewise.
704 * src/print_graph.h: Likewise.
705 * src/getargs.c (usage): Make usage description more generic.
706 * src/print_graph.c: Include graphviz.h rather than vcg.h.
707 (static_graph, fgraph): Remove. All uses changed to pass
708 arguments instead of sharing a static var.
709 (print_core, print_actions, print_state, print_graph):
710 Output graphviz format rather than VCG format.
711 * tests/.cvsignore: Remove *.vcg; add *.dot.
712 * tests/output.at: Expect *.dot files, not *.vcg files.
713
714 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
715 accommodates the 2006-10-08 change.
716
717 2006-10-11 Bob Rossi <bob@brasko.net>
718
719 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
720 (b4_yyssa, b4_yyerror_range): New macros.
721 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
722 (yypvarsinit): Remove init of removed fields.
723 (yypushparse): Remove use of removed fields; use new macros instead.
724
725 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
726
727 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
728 in a push parser. Reindent slightly to match yacc.c better.
729
730 2006-10-11 Bob Rossi <bob@brasko.net>
731
732 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
733 yymsg_alloc fields.
734 (yypvarsinit, yypushparse): Remove init of removed fields.
735 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
736
737 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
738
739 * THANKS: Add Paolo Bonzini and Bob Rossi.
740
741 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
742
743 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
744 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
745 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
746 b4_define_user_cde and uses): Remove.
747 (b4_comment, b4_prefix, b4_sync_start): New.
748 * data/bison.m4: New file, with most of the content removed from c.m4.
749 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
750 * src/output.c (output_skeleton): Pass bison.m4.
751 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
752 only if specified.
753
754 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
755
756 Fix test failure reported by Tom Lane in
757 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
758 and try to make such failures easier to catch in the future.
759 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
760 that's now the caller's responsibility.
761 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
762 Set yychar = YYEOF if it's negative.
763 * tests/actions.at (yylex): Abort if asked to read past EOF.
764 * tests/conflicts.at (yylex): Likewise.
765 * tests/cxx-type.at (yylex): Likewise.
766 * tests/glr-regression.at (yylex): Likewise.
767 * tests/input.at (yylex): Likewise.
768 * tests/regression.at (yylex): Likewise.
769 * tests/torture.at (yylex): Likewise.
770
771 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
772
773 Fix problems with translating English-language diagnostics.
774 * bootstrap: Fix bug introduced in recent bootstrap changes, with
775 respect to bison-runtime pot generation. The YY_ stuff
776 wasn't being captured.
777 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
778 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
779 * runtime-po/POTFILES.in: Add data/push.c.
780
781 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
782
783 Merge bootstrap changes from coreutils.
784
785 2006-09-28 Jim Meyering <jim@meyering.net>
786
787 Automatically generated dependencies are important even
788 when all of the sources in a directory come from gnulib.
789 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
790 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
791
792 2006-09-23 Jim Meyering <jim@meyering.net>
793
794 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
795
796 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
797
798 * bootstrap: Add support for --force.
799 (usage): New function. Describe usage less tersely.
800 (CVS_only_file): New var.
801
802 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
803
804 * data/push.c (YYPUSH_MORE): Make it an enum instead.
805 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
806 Adjust white space and comments to match GNU style better.
807
808 2006-09-20 Bob Rossi <bob@brasko.net>
809
810 * data/push.c (yyresult_get): Remove function.
811 (YYPUSH_MORE): Add #define.
812 (yypushparse): Modify return value.
813
814 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
815
816 * stamp-h.in: Remove; no longer needed.
817 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
818 Remove config.h, config.hin, intl (no longer created).
819 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
820 stamp-h1.
821
822 Sync bootstrap from coreutils, as follows:
823
824 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
825
826 * bootstrap (symlink_to_gnulib): New function.
827 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
828 to copies-of-gnulib.
829 (cp_mark_as_generated, slurp, gnulib_files):
830 Avoid making a copy if it's the same as the old version.
831 (gnulib_files): Add support for this variable (used by Bison).
832
833 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
834
835 * src/getargs.c (usage): Rework to use conventions similar to
836 coreutils, to make translation a bit easier and the code a bit
837 smaller. Problem reported by Tim Van Holder.
838
839 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
840
841 Use some of gnulib's new modules, taken from coreutils.
842
843 * bootstrap: Sync from coreutils, except add support for gnulib_files.
844 * bootstrap.conf: New file.
845 (gnulib_modules): Add configmake, inttypes, unistd.
846 (XGETTEXT_OPTIONS): Add complain, complain_at,
847 fatal, fatal_at, warn, warn_at, unexpected_end.
848 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
849 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
850 (gl_EARLY): Add.
851 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
852 (gl_INIT): Add
853 (GNULIB_AUTOCONF_SNIPPET): Remove.
854 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
855 the pickiest.
856 * lib/.cvsignore: Add inttypes_.h.
857 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
858 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
859 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
860 no-longer-necessary initializations.
861 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
862 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
863 use the unistd module.
864 * src/system.h: Likewise.
865 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
866 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
867 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
868 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
869 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
870 * src/system.h: Include inttypes.h unconditionally, now that we
871 use the inttypes module. Don't bother to include stdint.h, since
872 inttypes.h now does that for us.
873 (LOCALEDIR): Remove, now that we use the configmake module.
874 * src/getargs.c: Include configmake.h.
875 * src/main.c: Likewise.
876 * src/output.c: Likewise.
877 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
878 not from $abs_top_builddir, since config.h moved.
879
880
881 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
882 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
883
884 * src/parse-gram.y (symbol_declaration): Don't put statements
885 before declarations; it's not portable to C89.
886 * src/scan-code.l (handle_action_at): Likewise.
887
888 * src/scan-code.l: Always initialize braces_level; the old code
889 left it uninitialized and therefore had undefined behavior.
890
891 Don't attempt to redefine 'assert', since it runs afoul of
892 systems where standard headers (mistakenly) include <assert.h>.
893 Instead, define and use our own alternative, called 'aver'.
894 * src/reader.c: Don't include assert.h, since we no longer
895 use assert.
896 * src/scan-code.l: Likewise.
897 * src/system.h (assert): Remove, replacing with....
898 (aver): New function, taking a bool arg. All uses changed.
899 * src/tables.c (pack_vector): Ensure that aver arg is bool,
900 not merely an integer.
901
902 2006-09-15 Bob Rossi <bob@brasko.net>
903
904 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
905 * data/c.m4 (YYPUSH): New.
906 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
907 * src/getargs.c (push_parser): New var.
908 * src/getargs.h (push_parser): New declaration.
909 * src/output.c (prepare): Add macro insertion of `push_flag'.
910 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
911 (prologue_declaration): Parse %push-parser.
912 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
913 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
914 list of removed lines from the traces observed.
915 (AT_CHECK_CALC_LALR): Added push parser tests.
916
917 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
918
919 * NEWS: Version 2.3a.
920 * configure.ac (AC_INIT): Likewise.
921
922 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
923 "#define YYSTYPE int" that caused "make maintainer-check" to fail
924 due to header ordering dependencies. I don't know why the #define
925 was there.
926
927 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
928 runtime cost when YYDEBUG is not defined, and so that some tests
929 that used to fail now work. Problem and initial suggestion by
930 Paolo Bonzini.
931 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
932 * data/glr.cc (b4_parser_class_name):
933 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
934 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
935 (yydebug_) [YYDEBUG]: New member.
936 (yycdebug_): Now defined only if YYDEBUG.
937 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
938 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
939 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
940 if YYYDEBUG.
941 (debug_stream, set_debug_stream, debug_level, set_debug_level):
942 Define only if YYDEBUG.
943 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
944 set_debug_level.
945 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
946 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
947 AT_CHECK_CALC_GLR_CC that are working now.
948
949 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
950
951 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
952 We don't need them in glr.cc, and glr.c defines them.
953 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
954 assumes that defining it to anything is the same as defining
955 it to 1. Problem reported by Paolo Bonzini.
956
957 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
958
959 * data/c.m4 (b4_null, b4_case): Define.
960 * src/output.c (prepare_symbols): Use b4_null.
961 (user_actions_output): Use b4_case.
962
963 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
964
965 * data/glr.c (b4_shared_declarations): Put start-header first,
966 before any #includes that we generate, so that feature-test
967 macros work. Problem reported by Michael Deutschmann in
968 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
969 * data/lalr1.cc: Likewise.
970 * doc/bison.texinfo (Prologue): Document that feature-test macros
971 should be defined before any Bison declarations.
972 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
973 that depend on location.hh after, not before, Bison decls, since
974 we now include location.hh after the first user prologue.
975
976 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
977 Sander Brandenburg in
978 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
979 Also, fix minor white space and comment issues.
980 (Prologue): Mention that it's better to define feature-test macros
981 before Bison declarations. Problem reported by Michael Deutschmann.
982
983 * README-cvs: Fix typo: "&" should be "&&". Problem reported
984 by Jim Meyering.
985 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
986 This adjusts to recent gnulib changes.
987
988 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
989
990 Finish implementation of per-type %destructor/%printer. Discussed
991 starting at
992 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
993 and
994 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
995 * NEWS (2.3+): Add a description of this feature to the default
996 %destructor/%printer description.
997 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
998 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
999 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
1000 list node contains a semantic type.
1001 * src/symtab.c, src/symtab.h: Extend with a table that associates
1002 semantic types with their %destructor's and %printer's.
1003 (semantic_type_from_uniqstr, semantic_type_get,
1004 semantic_type_destructor_set, semantic_type_printer_set): New functions
1005 composing the public interface of that table.
1006 (symbol_destructor_get, symbol_destructor_location_get,
1007 symbol_printer_get, symbol_printer_location_get): If there's no
1008 per-symbol %destructor/%printer, look up the per-type before trying
1009 the default.
1010 * tests/actions.at (Per-type %printer and %destructor): New test case.
1011 * tests/input.at (Default %printer and %destructor redeclared):
1012 Extend to check that multiple occurrences of %symbol-default in a
1013 single %destructor/%printer declaration is an error.
1014 (Per-type %printer and %destructor redeclared, Unused values with
1015 per-type %destructor): New test cases.
1016
1017 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
1018
1019 Require default %destructor/%printer to be declared using
1020 %symbol-default instead of an empty symbol list, and start working on
1021 new per-type %destructor/%printer. Discussed at
1022 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
1023 * NEWS (2.3+): Add %symbol-default to example.
1024 * bison.texinfo (Freeing Discarded Symbols): Likewise.
1025 (Bison Symbols): Add entry for %symbol-default.
1026 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
1027 (generic_symlist, generic_symlist_item): New nonterminals for creating
1028 a list in which each item is a symbol, semantic type, or
1029 %symbol-default.
1030 (grammar_declaration): Use generic_symlist in %destructor and %printer
1031 declarations instead of symbols.1 or an empty list.
1032 (symbol_declaration, precedence_declaration, symbols.1): Update actions
1033 for changes to symbol_list.
1034 * src/reader.c: Update for changes to symbol_list.
1035 * src/scan-code.l: Likewise.
1036 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
1037 * src/symlist.c, src/symlist.h: Extend such that a list node may
1038 represent a semantic type or a %symbol-default in addition to just an
1039 ordinary symbol. Add switched functions for setting %destructor's and
1040 %printer's.
1041 * tests/actions.at, tests/input.at: Add %symbol-default to all default
1042 %destructor/%printer declarations.
1043
1044 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
1045
1046 Whether the default %destructor/%printer applies to a particular symbol
1047 isn't a question of whether the user *declares* that symbol (in %token,
1048 for example). It's a question of whether the user by any means
1049 *defines* the symbol at all (by simply using a char token, for
1050 example). $end is defined by Bison whereas any other token with token
1051 number 0 is defined by the user. The error token is always defined by
1052 Bison regardless of whether the user declares it with %token, but we
1053 may one day let the user define error as a nonterminal instead.
1054 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
1055 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
1056 the meaning of "user-defined".
1057 * tests/actions.at (Default %printer and %destructor for user-declared
1058 end token): Rename to...
1059 (Default %printer and %destructor for user-defined end token): ...
1060 this.
1061
1062 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
1063 computation of whether to apply the default, don't maintain a list of
1064 every Bison-defined symbol. Instead, just check for a first character
1065 of '$', which a user symbol cannot have, and check for the error token.
1066
1067 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
1068
1069 Don't apply the default %destructor or %printer to the error token,
1070 $undefined, or $accept. This change fits the general rule that the
1071 default %destructor and %printer are only for user-declared symbols,
1072 and it solves several difficulties that are described in the new test
1073 cases listed below.
1074 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
1075 * tests/actions.at (Default %printer and %destructor are not for error
1076 or $undefined, Default %printer and %destructor are not for $accept):
1077 New test cases.
1078
1079 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
1080
1081 Allow %start after the first rule.
1082 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
1083 when parsing the first rule.
1084 (check_and_convert_grammar): Search for it here after all grammar
1085 declarations have been parsed. Skip midrules, which have dummy LHS
1086 nonterminals.
1087 * src/symtab.c (symbol_is_dummy): New function.
1088 * src/symtab.h (symbol_is_dummy): Declare it.
1089 * tests/input.at (%start after first rule): New test.
1090
1091 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
1092
1093 Redo some of the previous commit: add back the ability to use
1094 non-aliased/undeclared string literals since it might be useful to
1095 those declaring %token-table.
1096 * src/reader.c (check_and_convert_grammar): Undo changes in previous
1097 commit: don't worry about complaints from symbols_pack.
1098 * src/symtab.c (symbol_new, symbol_class_set,
1099 symbol_check_alias_consistency): Undo changes in previous commit: count
1100 each string literal as a new symbol and token, assign it a symbol
1101 number, and don't complain about non-aliased string literals.
1102 (symbols_pack): Since symbol_make_alias still does not decrement symbol
1103 and token counts but does still set aliased tokens to the same number,
1104 symbol_pack_processor now leaves empty slots in the symbols array.
1105 Remove those slots.
1106 * tests/regression.at (Undeclared string literal): Remove test case
1107 added in previous commit since non-aliased string literals are allowed
1108 again.
1109 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
1110 remove unnecessary string literal declarations.
1111 * tests/sets.at (Firsts): Likewise.
1112
1113 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
1114
1115 Don't allow an undeclared string literal, but allow a string literal to
1116 be used before its declaration.
1117 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
1118 symbols_pack complained.
1119 * src/symtab.c (symbol_new): Don't count a string literal as a new
1120 symbol.
1121 (symbol_class_set): Don't count a string literal as a new token, and
1122 don't assign it a symbol number since symbol_make_alias does that.
1123 (symbol_make_alias): It's not necessary to decrement the symbol and
1124 token counts anymore. Don't assume that an alias declaration occurs
1125 before any uses of the identifier or string, and thus don't assert that
1126 one of them has the highest symbol number so far.
1127 (symbol_check_alias_consistency): Complain if there's a string literal
1128 that wasn't declared as an alias.
1129 (symbols_pack): Bail if symbol_check_alias_consistency failed since
1130 symbol_pack asserts that every token has been assigned a symbol number
1131 although undeclared string literals have not.
1132 * tests/regression.at (String alias declared after use, Undeclared
1133 string literal): New test cases.
1134 (Characters Escapes, Web2c Actions): Declare string literals as
1135 aliases.
1136 * tests/sets.at (Firsts): Likewise.
1137
1138 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
1139
1140 In the grammar scanner, STRING_FINISH unclosed constructs and return
1141 them to the parser in order to improve error messages.
1142 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
1143 SC_BRACED_CODE, SC_PROLOGUE): Implement.
1144 * tests/input.at (Unclosed constructs): New test case.
1145 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
1146 seen.
1147
1148 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
1149 unused global.
1150
1151 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
1152
1153 Handle string aliases for character tokens correctly.
1154 * src/symtab.c (symbol_user_token_number_set): If the token has an
1155 alias, check and set its alias's user token number instead of its own,
1156 which is set to indicate the alias. Previously, every occurrence of
1157 the character token in the grammar overwrote that alias indicator with
1158 the character code.
1159 * tests/input.at (String aliases for character tokens): New test.
1160
1161 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
1162
1163 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
1164
1165 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
1166
1167 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
1168 to prevent failures when building on older platforms.
1169 Check for autopoint failure.
1170 Set XGETTEXT_OPTIONS to values that check for C format strings,
1171 so that translators are warned about them (this also helps
1172 prevent core dumps).
1173
1174 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
1175 function, since it simplifies our code a bit.
1176
1177 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
1178 rather than -W, so we don't get bogus warnings about sign comparisons.
1179 Add -Wpointer-arith, since that warning is useful (it reports code
1180 that does not conform to C89 and that some compilers reject).
1181 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
1182 since it's no longer needed.
1183
1184 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
1185
1186 Clean up scanners a bit.
1187 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
1188 definitions so gcc won't warn when obstack_for_string is unused.
1189 * src/scan-code.l: config.h and system.h are already #include'd by
1190 scan-code-c.c, so get rid of them here.
1191 * src/scan-gram.l: Likewise.
1192 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
1193 definitions rather than duplicating the rest of it.
1194 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
1195
1196 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
1197
1198 Suppress signed/unsigned comparison warnings for yycheck.
1199 * data/c.m4 (b4_safest_int_type): New macro.
1200 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
1201 a signed int type, cast it to b4_safest_int_type first.
1202 * data/yacc.c: Likewise.
1203 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
1204 also overwritten.
1205
1206 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
1207
1208 * doc/bison.texinfo: Fix some typos.
1209
1210 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
1211
1212 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
1213 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
1214
1215 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
1216 the latest gnulib does this a different way.
1217 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
1218 translation was patched, so stop omitting it.
1219
1220 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1221
1222 Enable declaration of default %printer/%destructor. Make the parser
1223 use these for all user-declared grammar symbols for which the user does
1224 not declare a specific %printer/%destructor. Thus, the parser uses it
1225 for token 0 if the user declares it but not if Bison generates it as
1226 $end. Discussed starting at
1227 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
1228 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
1229 and
1230 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
1231 * NEWS (2.3+): Mention.
1232 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
1233 declare a %destructor for a mid-rule's semantic value. It's just
1234 impossible to declare one specific to it.
1235 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
1236 code. Describe default %destructor form.
1237 * src/parse-gram.y (grammar_declaration): Parse default
1238 %printer/%destructor declarations.
1239 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
1240 and symbol_destructor_location_get rather than accessing the destructor
1241 and destructor_location members of struct symbol.
1242 (symbol_printers_output): Likewise but for %printer's.
1243 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
1244 again.
1245 * src/symtab.c (default_destructor, default_destructor_location,
1246 default_printer, default_printer_location): New static global
1247 variables to record the default %destructor and %printer.
1248 (symbol_destructor_get, symbol_destructor_location_get,
1249 symbol_printer_get, symbol_printer_location_get): New functions to
1250 compute the appropriate %destructor and %printer for a symbol.
1251 (default_destructor_set, default_printer_set): New functions to set the
1252 default %destructor and %printer.
1253 * src/symtab.h: Prototype all those new functions.
1254 * tests/actions.at (Default %printer and %destructor): New test to
1255 check that the right %printer and %destructor are called, that they're
1256 not called for $end, and that $$ and @$ work correctly.
1257 (Default %printer and %destructor for user-declared end token): New
1258 test to check that the default %printer and %destructor are called for
1259 a user-declared end token.
1260 * tests/input.at (Default %printer and %destructor redeclared, Unused
1261 values with default %destructor): New tests to check related grammar
1262 warnings and errors.
1263
1264 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1265
1266 Clean up handling of %destructor for the end token (token 0).
1267 Discussed starting at
1268 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
1269 and
1270 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
1271
1272 Make the skeletons consistent in how they pop the end token and invoke
1273 its %destructor.
1274 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
1275 state, which has token number 0, since this would invoke the
1276 %destructor for the end token.
1277 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
1278 until after shifting the end token, or else it won't be popped.
1279 * data/yacc.c (yyparse): Likewise.
1280
1281 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
1282 it's the end token. Upon termination, destroy an unshifted lookahead
1283 even when it's the end token.
1284 * data/lalr1.cc (yy::parser::parse): Likewise.
1285 * data/yacc.c (yyparse): Likewise.
1286
1287 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
1288 value warnings for the end token when the user gives the end token a
1289 %destructor.
1290
1291 * tests/actions.at (Printers and Destructors): Test all the above.
1292
1293 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
1294
1295 Update to latest gnulib and gettext versions.
1296 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
1297 Add fopen-safer.
1298 (gnulib_files): Add m4/warning.m4. Don't worry about files
1299 overwritten by autopoint.
1300 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
1301 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
1302 rejects them.
1303 Don't use autoreconf; instead, invoke autopoint etc. by hand,
1304 so that we can remove the intl files at a better time.
1305 (intl_files_to_remove): Remove aclocal.m4, since it gets
1306 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
1307 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
1308 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
1309 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
1310 Remove datarootdir hack; no longer needed.
1311 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
1312 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
1313 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
1314 strdup.h.
1315 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
1316 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
1317
1318 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
1319
1320 * bootstrap: Adjust to today's change to gnulib-tool by invoking
1321 it with --assume-autoconf='latest-stable'.
1322
1323 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
1324
1325 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
1326 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
1327 YYSTYPE' and `{'.
1328 * src/muscle_tab.h (muscle_grow): Replace the header comments with
1329 those from muscle_tab.c since the old ones are misleading.
1330
1331 2006-07-13 Akim Demaille <akim@epita.fr>
1332
1333 Support %define "KEY" {VALUE}.
1334 * src/scan-code.h, src/scan-code.l (translate_action)
1335 (translate_rule_action, translate_symbol_action, translate_code):
1336 Return char *, not const char *.
1337 * src/parse-gram.y (declaration): Rename as...
1338 (prologue_declaration): this.
1339 (string_content): Remove this nonterminal, use STRING.
1340 (braceless, content, content.opt): New nonterminal.
1341 Use them.
1342 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
1343 as value.
1344 * src/scan-gram.l (getargs.h): Don't include it.
1345
1346 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
1347
1348 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
1349 rather than a for-loop that declares a local bool variable. This
1350 should work around a compatibility problem with a Cray x1e C++
1351 compiler reported by Hung Nguyen in
1352 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
1353 The for-loop was introduced in the 2004-11-17 change but I don't
1354 know why it was needed.
1355
1356 2006-07-12 Akim Demaille <akim@epita.fr>
1357
1358 * data/c.m4: Comment changes.
1359
1360 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
1361
1362 * src/complain.c (error_message, ERROR_MESSAGE): New.
1363 To factor...
1364 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
1365 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
1366
1367 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1368
1369 * NEWS: Instead of %union, you can define and use your own union type
1370 YYSTYPE if your grammar contains at least one <type> tag.
1371 Your YYSTYPE need not be a macro; it can be a typedef.
1372 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
1373 (Union Decl, Decl Summary): Document this.
1374 * data/glr.c (YYSTYPE): Implement this.
1375 * data/glr.cc (YYSTYPE): Likewise.
1376 * data/lalr1.cc (YYSTYPE): Likewise.
1377 * data/yacc.c (YYSTYPE): Likewise.
1378 * src/output.c (prepare): Output tag_seen_flag.
1379 * src/parse-gram.y (declaration, grammar_declaration):
1380 Use 'union_seen' rather than 'typed' to determine whether
1381 %union has been seen, since grammars can now be typed without
1382 %union.
1383 (symbol_declaration, type.opt, symbol_def):
1384 Keep track of whether a tag has been seen.
1385 * src/reader.c (union_seen, tag_seen): New vars.
1386 (typed): remove.
1387 * src/reader.h (union_seen, tag_seen, typed): Likewise.
1388 * src/scan-code.l (untyped_var_seen): New variable.
1389 (handle_action_dollar): Adjust to above changes.
1390 (handle_action_dollar, handle_action_at):
1391 Improve overflow checking for outlandish numbers.
1392 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
1393 avoid new diagnostics generated by above changes.
1394 * tests/regression.at (YYSTYPE typedef): Add test to check
1395 for type tags without %union.
1396
1397 * src/symlist.c (symbol_list_length): Return int, not unsigned
1398 int, since callers expect int. This may need to get revisited
1399 once we have proper integer overflow checking.
1400
1401 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
1402 object is now static.
1403
1404 * src/getargs.c (flags_argmatch): Return void, not int,
1405 to pacify ./configure --enable-gcc-warnings.
1406
1407 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
1408 since last_string is already defined to FLEX_PREFIX (last_string).
1409
1410 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
1411
1412 Implement --warnings/-W.
1413 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
1414 replaced by...
1415 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
1416 Adjust callers.
1417 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
1418 (warnings_args, warnings_types): New.
1419 (getargs, short_options, long_options): Accept -W/--warnings.
1420 Sort the options by alphabetical order, upper case letter right
1421 before its lower case.
1422
1423 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1424
1425 Change %merge result type clash warnings to errors. Discussed at
1426 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
1427 * src/reader.c (record_merge_function_type): Use complain_at.
1428 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1429 declared later): Update test case results.
1430
1431 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
1432
1433 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
1434 to be in alphabetical order.
1435 (trace_args): Spelling fixes.
1436
1437 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1438
1439 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
1440 so they don't collide with user-defined macros.
1441 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
1442 this was never guaranteed, and now that we're using gnulib stdint,
1443 which defines int_fast16_t to long int, the problem is exposed.
1444
1445 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
1446
1447 * data/c.m4 (b4_basename): Simplify a bit, since we don't
1448 need the full POSIX semantics (and weren't implementing them
1449 anyway).
1450
1451 Adjust to Autoconf 2.60 and today's gnulib.
1452 * bootstrap (gnulib_modules): Add stdint.
1453 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
1454 no longer copies it.
1455 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
1456 since stdint needs the former and wcwidth (which is now required
1457 by mbswidth) needs the latter.
1458 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
1459 work around a compatibility glitch between gettext 0.14.6 and
1460 Autoconf 2.60.
1461 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
1462 Do not check for uintptr_t, since new stdint module does the right
1463 thing.
1464 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
1465 Add stdint.h, stdint_.h, wcwidth.h.
1466 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
1467 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
1468 stdint.m4, wchar_t.m4, wcwidth.m4.
1469 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
1470 usual order for ../lib/*.h files.
1471 (file_name_split): Use last_component, not base_name, to adjust
1472 to gnulib changes.
1473 * src/parse-gram.h: Include <strverscmp.h> in the usual order
1474 for ../lib/*.h files.
1475 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
1476 Define unconditionally, since we now assume the stdint module.
1477 * src/scan-skel.l: Include <dirname.h>.
1478 (BASE_QPUTS): Use last_component, not base_name.
1479 * src/system.h: Include <unlocked-io.h> in the usual order
1480 for ../lib/*.h files. Include <stdint.h> unconditionally,
1481 since we now use the stdint module.
1482 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
1483 HAVE_UINTPTR_T, since we now use the stdint module.
1484 (base_name): Remove decl, since files now include <dirname.h>
1485 to get the decl.
1486
1487 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
1488
1489 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
1490 New, default to 1.
1491 * data/yacc.c, data/glr.c, data/location.cc: Use them.
1492 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
1493 default.
1494 * tests/calc.at: Adjust.
1495
1496 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
1497
1498 * data/c.m4 (b4_basename): New.
1499 (b4_syncline): Also output the location of its invocation (from
1500 the skeleton).
1501 (b4_user_action, b4_define_user_action, b4_user_actions)
1502 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
1503 (b4_user_stype): New.
1504 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
1505
1506 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1507
1508 In the grammar file, the first column is 1 not 0 on the first line as
1509 on every other line.
1510 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
1511 * tests/input.at (Torturing the Scanner): Update output.
1512
1513 * src/scan-gram.l (scanner_cursor): Declare it static.
1514
1515 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1516
1517 In warnings, say "previous declaration" rather than "first
1518 declaration".
1519 * src/symtab.c (redeclaration): Do that here.
1520 * src/reader.c (record_merge_function_type): In the case of a result
1521 type clash, report the previous declaration rather than the very first
1522 one in the grammar file.
1523 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1524 declared later): Add a third declaration to check this behavior.
1525 * tests/input.at (Incompatible Aliases): Update output.
1526
1527 2006-06-27 Akim Demaille <akim@epita.fr>
1528
1529 * doc/Doxyfile.in: New.
1530 * doc/Makefile.am: Use it.
1531 * src/lalr.h, src/symtab.h: Initial doxygenation.
1532
1533 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1534
1535 Don't miss %merge result type warnings just because the LHS types are
1536 declared after the %merge. This continues the effort of the previous
1537 patch.
1538 * src/reader.c (get_merge_function): Don't set the merger type yet.
1539 (record_merge_function_type): New function for setting the merger type
1540 and checking for clashes.
1541 (grammar_current_rule_merge_set): Set the location of the %merge for
1542 the current rule.
1543 (packgram): Invoke record_merge_function_type for each rule now that
1544 all symbol type declarations have been parsed.
1545 * src/reader.h (merger_list.type_declaration_location): New member
1546 storing the location of the first %merge from which the type for this
1547 merging function was derived.
1548 * src/symlist.h (symbol_list.merger_declaration_location): New member
1549 storing the location of a rule's %merge, if any.
1550 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1551 declared later): New test to catch the error fixed by the above patch.
1552
1553 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1554
1555 Get action warnings (grammar_rule_check) right even when symbol
1556 declarations appear after the rules. Discussed at
1557 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
1558 and
1559 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
1560 Don't mistake the type of $$ in a midrule to be that of its parent
1561 rule's $$.
1562 * src/reader.c (grammar_current_rule_end): Don't invoke
1563 grammar_rule_check yet since not all symbol declarations may have been
1564 parsed yet.
1565 (grammar_midrule_action): Likewise.
1566 Don't record whether the midrule's $$ has been used yet since actions
1567 haven't been translated yet.
1568 Record the midrule's parent rule and its RHS index within the parent
1569 rule.
1570 (grammar_current_rule_action_append): Don't translate the action yet
1571 since not all symbol declarations may have been parsed yet and, thus,
1572 warnings about types for $$, $n, @$, and @n can't be reported yet.
1573 (packgram): Translate the action and invoke grammar_rule_check now that
1574 all symbol declarations have been parsed.
1575 * src/scan-code.l (handle_action_dollar): Now that this is invoked
1576 after parsing the entire grammar file, the symbol list here in the case
1577 of a midrule is actually the midrule's empty RHS, so reference its
1578 parent rule's RHS where necessary.
1579 On the other hand, now that you can already know it's a midrule, you
1580 aren't forced to think $$ has the same type as its parent rule's $$.
1581 (handle_action_at): In the case of a midrule, reference the parent rule
1582 where necessary.
1583 * src/symlist.c (symbol_list_new): Initialize new midrule-related
1584 members.
1585 (symbol_list_length): Now that this is invoked after all rules have
1586 been parsed, a NULL symbol (rather than a NULL symbol list node)
1587 terminates a rule. symbol_list_print already does this correctly.
1588 * src/symlist.h (symbol_list.midrule_parent_rule,
1589 symbol_list.midrule_parent_rhs_index): New members so that midrules can
1590 remember their relationships with their parents.
1591 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
1592 fixed by the above patch.
1593 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
1594 implementing...
1595 (Unused values): ... this old test case and...
1596 (Unused values before symbol declarations): ... this new test case.
1597 This one is the same as `Unused values' except that all symbol
1598 declarations appear after the rules in order to catch the rest of the
1599 errors fixed by the above patch.
1600
1601 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1602
1603 More cleanup.
1604 * src/reader.c (current_rule): Declare it static since it's no longer
1605 used outside this file.
1606 (grammar_current_rule_action_append): Remove redundant arguments from
1607 translate_rule_action invocation.
1608 * src/reader.h (current_rule): Remove this unused extern.
1609 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
1610 * src/scan-code.l (translate_rule_action): Likewise.
1611
1612 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
1613
1614 Clean up yesterday's patch.
1615 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
1616 to...
1617 * src/reader.c (grammar_current_rule_action_append): ... here for
1618 consistency with grammar_current_rule_symbol_append.
1619 * tests/regression.at (Braced code in declaration in rules section):
1620 Make yyerror and yylex static as usual.
1621
1622 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
1623
1624 Fix bug that mistakes braced code in a declaration in the rules section
1625 to be a rule action. Mentioned at
1626 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
1627 * src/scan-gram.l: Move midrule action detection from the start of the
1628 scanning of any braced code to...
1629 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
1630 action. For readability, use $2 and @2 rather than the equivalent
1631 global variables.
1632 * tests/regression.at (Braced code in declaration in rules section):
1633 New test to catch the error fixed by the above patch.
1634
1635 Work on code readability some.
1636 * src/scan-code.l (current_rule): Get rid of this misleading and
1637 redundant declaration: it's actually extern'ed in reader.h.
1638 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
1639 translate_action): Add a rule argument and use it instead of the global
1640 current_rule.
1641 (translate_rule_action): This already receives current_rule through an
1642 argument, so pass it on to translate_action instead of assigning
1643 current_rule to current_rule.
1644 (translate_symbol_action, translate_code): Pass rule = NULL to
1645 translate_action.
1646
1647 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
1648
1649 Rename %before-definitions to %start-header and %after-definitions to
1650 %end-header. Don't use these declarations to separate pre-prologue
1651 blocks from post-prologue blocks. Add new order-independent
1652 declarations %before-header and %after-header as alternatives to the
1653 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
1654 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
1655 * NEWS (2.3+): Update for these changes.
1656 * data/glr.c (b4_before_definitions): Update to...
1657 (b4_start_header): ... this.
1658 (b4_after_definitions): Update to...
1659 (b4_end_header): ... this.
1660 * data/glr.cc: Likewise.
1661 * data/lalr1.cc: Likewise.
1662 * data/yacc.c: Likewise.
1663 * doc/bison.texinfo (The prologue): Update names, and replace remaining
1664 prologue blocks with %*-header declarations.
1665 (Calc++ Parser): Likewise.
1666 (Bison Declaration Summary): Update names.
1667 (Bison Symbols): Update description.
1668 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
1669 (PERCENT_END_HEADER): ... this.
1670 (PERCENT_BEFORE_DEFINITIONS): Update to...
1671 (PERCENT_START_HEADER): ... this.
1672 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1673 (declaration): Update token names and m4 macro names.
1674 When parsing %end-header and %start-header, invoke translate_code
1675 before muscle_code_grow, and no longer set global booleans to remember
1676 whether these declarations have been seen.
1677 Parse new %after-header and %before-header.
1678 * src/reader.c (before_definitions, after_definitions): Remove.
1679 (prologue_augment): Accept a new bool argument to specify whether to
1680 augment the pre-prologue or post-prologue.
1681 * src/reader.h (before_definitions, after_definitions): Remove these
1682 extern's.
1683 (prologue_augment): Add new bool argument.
1684 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
1685 (PERCENT_END_HEADER): ... this.
1686 (PERCENT_BEFORE_DEFINITIONS): Update to...
1687 (PERCENT_START_HEADER): ... this.
1688 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1689 * tests/actions.at (Printers and Destructors): Update names.
1690
1691 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
1692
1693 Add comparison operators for C++ location classes. Discussed at
1694 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
1695 * data/c++.m4 (b4_define_location_comparison): New boolean %define
1696 declaration indicating whether filename_type has an operator==. If
1697 filename_type is `std::string', it defaults to `1', `0' otherwise.
1698 * data/location.cc: Iff b4_define_location_comparison is `1', add
1699 operator== and operator!= for class position and for class location.
1700
1701 Some minor fixes.
1702 * src/scan-action.l: Remove unused file.
1703 * src/symtab.c (symbol_printer_set): Use printer_location not
1704 destructor_location.
1705 * src/symtab.h (struct symbol): Replace incorrect source comment for
1706 printer members.
1707 * tests/input.at (Incompatible Aliases): Update output with correct
1708 printer location.
1709
1710 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
1711
1712 Don't put the pre-prologue in the header file. For the yacc.c code
1713 file and the glr.c header and code files, move the pre-prologue before
1714 the token definitions. Add new %before-definitions and
1715 %after-definitions to declare code that will go in both the header file
1716 and code file. Discussed at
1717 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
1718 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
1719 and
1720 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
1721 * NEWS (2.3+): Describe these changes.
1722 * data/glr.c (b4_pre_prologue): Move from within to before...
1723 (b4_shared_declarations): ... this.
1724 Add new b4_before_definitions before b4_token_enums.
1725 Add new b4_after_definitions at the end.
1726 * data/glr.cc (b4_pre_prologue): Replace with...
1727 (b4_before_definitions): ... this in the header file.
1728 (b4_after_definitions): New near the end of the header file.
1729 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
1730 code file right before including the header file.
1731 (b4_before_definitions): New in the previous position of
1732 b4_pre_prologue in the header file.
1733 (b4_after_definitions): New near the end of the header file.
1734 * data/yacc.c: Clean up some m4 quoting especially in the header file.
1735 (b4_token_enums_defines): In the code file, move to right before
1736 YYSTYPE for consistency with the header file.
1737 (b4_before_definitions): New right before b4_token_enums_defines in
1738 both the header and code file.
1739 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
1740 header and code file.
1741 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
1742 of prologues for %union dependencies.
1743 (Bison Declaration Summary): In %defines description, mention the
1744 effect of %before-definitions and %after-definitions on the header
1745 file.
1746 (Calc++ Parser): Forward declare driver in a %before-definitions rather
1747 than in the pre-prologue so that make check succeeds.
1748 (Bison Symbols): Add entries for %before-definitions and
1749 %after-definitions.
1750 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
1751 %before-definitions.
1752 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
1753 (declaration): Parse those declarations and append to
1754 b4_before_definitions and b4_after_definitions, respectively.
1755 * src/reader.c (before_definitions, after_definitions): New bools to
1756 track whether those declarations have been seen.
1757 (prologue_augment): Add to the post-prologue if %union,
1758 %before-definitions, or %after-definitions has been seen.
1759 * src/reader.h (before_definitions, after_definitions): New extern's.
1760 * src/scan-gram.l: Scan the new declarations.
1761 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
1762 prologue block in a %before-definitions or a %after-definitions based
1763 on whether the %union is declared.
1764 * tests/regression.at (Early token definitions with --yacc, Early token
1765 definitions without --yacc): Move tests for token definitions into the
1766 post-prologue since token names are no longer defined in the
1767 pre-prologue.
1768
1769 2006-06-20 Akim Demaille <akim@epita.fr>
1770
1771 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
1772 (symbol_get): Use it.
1773 * src/parse-gram.y: Use it.
1774
1775 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
1776
1777 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
1778 build succeeds when configured with --enable-gcc-warnings.
1779
1780 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
1781
1782 * src/parse-gram.y (char_name): New function.
1783 (CHAR, STRING, string_content): For %printer, properly escape.
1784 (ID): Prefer fputs to fprintf.
1785 (id): Reindent to be consistent with other rules.
1786 Properly quote char.
1787
1788 The Translation Project changed its way of publishing translations
1789 to maintainers. I haven't received any responses to my request
1790 for supporting the old way, or for documenting the new way. I
1791 have modified 'bootstrap' to use screen scraping
1792 (in this case, HTML scraping). This is unreliable and inelegant,
1793 but I don't see any better way. Yuck.
1794 * bootstrap (TP_URL, WGET_COMMAND): New vars.
1795 (get_translations): New function, which uses HTML scraping to
1796 deduce locations of latest translations.
1797 Use this function to grab both bison and bison-runtime .po files.
1798 Don't bother priming the pump for the runtime-po domain any more,
1799 as it's now translated better than bison is.
1800
1801 2006-06-19 Akim Demaille <akim@epita.fr>
1802
1803 * src/scan-gram.l: No longer "parse" things after `%union' until
1804 `{'. Rather, return a single "%union" token.
1805 No longer make symbols: return strings, and leave the conversion
1806 to symbols to the parser.
1807 (SC_PRE_CODE, token_type): Remove.
1808 * src/parse-gram.y (%union): New field `character'.
1809 Sort tokens.
1810 (CHAR): New token.
1811 (ID, ID_COLON): Now that the scanner no longer makes them
1812 identifiers, adjust all uses to invoke symbol_get.
1813 (id_colon): New, wraps the conversion from string to symbol.
1814 (%union): Accept a possible union_name.
1815 (symbol): Now can be a char.
1816 * data/c.m4 (b4_union_name): Leave a default value.
1817 * data/glr.c, data/yacc.c: Use it.
1818
1819 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
1820
1821 For associating token numbers with token names for "yacc.c", don't use
1822 #define statements unless `--yacc' is specified; always use enum
1823 yytokentype. Most important discussions start at:
1824 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
1825 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
1826 and
1827 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
1828 * NEWS (2.3+): Mention.
1829 * data/c.m4 (b4_yacc_if): New.
1830 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
1831 token #define's.
1832 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
1833 on token name definitions.
1834 * src/getargs.c (usage): Capitalize `Yacc' in English.
1835 * src/output.c (prepare): Define b4_yacc_flag.
1836 * tests/regression.at (Early token definitions): Test that tokens names
1837 are defined before the pre-prologue not just before the post-prologue.
1838 Remove this test case and copy to...
1839 (Early token definitions with --yacc): ... this to test #define's.
1840 (Early token definitions without --yacc): ... and this to test enums.
1841
1842 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
1843
1844 * NEWS: Reword the post-2.3 change to not be so optimistic about
1845 removing the old "look-ahead" spelling.
1846 Update previous look-ahead/lookahead change reports.
1847 * REFERENCES: look-ahead -> lookahead (since that's
1848 what he actually wrote).
1849 * doc/refcard.tex: look ahead -> lookahead,
1850 look-ahead -> lookahead
1851
1852 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
1853
1854 For consistency, use `lookahead' instead of `look-ahead' or
1855 `look_ahead'. Discussed starting at
1856 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
1857 and then at
1858 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
1859 * NEWS: For the next release, note the change to `--report'.
1860 * TODO, doc/bison.1: Update English.
1861 * doc/bison.texinfo: Update English.
1862 (Understanding Your Parser, Bison Options): Document as
1863 `--report=lookahead' rather than `--report=look-ahead'.
1864 * src/conflicts.c: Update English in comments.
1865 (lookahead_set): Rename from look_ahead_set.
1866 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
1867 (resolve_sr_conflict): Rename local look_ahead_tokens to
1868 lookahead_tokens, and update other uses.
1869 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
1870 count_rr_conflicts, conflicts_free): Update uses.
1871 * src/getargs.c (report_args): Move "lookahead" before alternate
1872 spellings.
1873 (report_types): Update uses.
1874 (usage): For `--report' usage description, state `lookahead' spelling
1875 rather than `look-ahead'.
1876 * src/getargs.h (report.report_lookahead_tokens): Rename from
1877 report_look_ahead_tokens.
1878 * src/lalr.c: Update English in comments.
1879 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
1880 (state_lookahead_tokens_count): Rename from
1881 state_look_ahead_tokens_count.
1882 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1883 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
1884 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1885 Update other uses.
1886 Update English in output.
1887 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
1888 * src/print.c: Update English in comments.
1889 (lookahead_set): Rename from look_ahead_set.
1890 (print_reduction): Rename argument lookahead_token from
1891 look_ahead_token.
1892 (print_core, state_default_rule, print_reductions, print_results):
1893 Update uses.
1894 * src/print_graph.c: Update English in comments.
1895 (print_core): Update uses.
1896 * src/state.c: Update English in comments.
1897 (reductions_new): Update uses.
1898 (state_rule_lookahead_tokens_print): Rename from
1899 state_rule_look_ahead_tokens_print, and update other uses.
1900 * src/state.h: Update English in comments.
1901 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
1902 (state_rule_lookahead_tokens_print): Rename from
1903 state_rule_look_ahead_tokens_print.
1904 * src/tables.c: Update English in comments.
1905 (conflict_row, action_row): Update uses.
1906 * tests/glr-regression.at
1907 (Incorrect lookahead during deterministic GLR,
1908 Incorrect lookahead during nondeterministic GLR): Rename
1909 print_look_ahead to print_lookahead.
1910 * tests/torture.at: Update English in comments.
1911 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
1912 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
1913 (Many lookahead tokens): Update uses.
1914 * data/glr.c: Update English in comments.
1915 * lalr1.cc: Likewise.
1916 * yacc.c: Likewise.
1917 * src/conflicts.h: Likewise.
1918 * src/lalr.h: Likewise.
1919 * src/main.c: Likewise.
1920 * src/output.c: Likewise.
1921 * src/parse-gram.c: Likewise.
1922 * src/tables.h: Likewise.
1923 * tests/calc.at: Likewise.
1924
1925 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
1926
1927 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
1928
1929 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
1930
1931 * TODO: Add request from Nelson H. F. Beebe to be able to install
1932 Bison without installing the yacc script.
1933
1934 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1935
1936 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
1937 and yytext if they're already #define'd.
1938 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
1939 * src/scan-code-c.c: ... here.
1940 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
1941 <config.h>.
1942
1943 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1944
1945 Get Bison to build again when configured with --enable-gcc-warnings.
1946 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
1947 missing #include's.
1948 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
1949 loc argument as it shadows a global.
1950 * src/scan-gram.l: Remove stray comma that prevents boundary_set
1951 invocation.
1952
1953 * src/.cvsignore: Add scan-code.c.
1954
1955 2006-06-07 Akim Demaille <akim@epita.fr>
1956
1957 * src/scan-gram.l: Move the "add a trailing ; to actions" code
1958 to...
1959 * src/scan-code.l: here.
1960 * tests/input.at (Torturing the Scanner): Fix another location
1961 error.
1962
1963 2006-06-07 Akim Demaille <akim@epita.fr>
1964
1965 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
1966
1967 2006-06-06 Akim Demaille <akim@epita.fr>
1968
1969 Extract the parsing of user actions from the grammar scanner.
1970 As a consequence, the relation between the grammar scanner and
1971 parser is much simpler. We can also split "composite tokens" back
1972 into simple tokens.
1973 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
1974 * src/scan-gram.l (add_column_width, adjust_location): Move to and
1975 rename as...
1976 * src/location.h, src/location.c (add_column_width)
1977 (location_compute): these.
1978 Fix the column count: the initial column is 0.
1979 (location_print): Be robust to ending column being 0.
1980 * src/location.h (boundary_set): New.
1981 * src/main.c: Adjust to scanner_free being renamed as
1982 gram_scanner_free.
1983 * src/output.c: Include scan-code.h.
1984 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
1985 Use boundary_set.
1986 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
1987 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
1988 which is now, again, a separate token.
1989 Adjust all dependencies.
1990 Whereever actions with $ and @ are used, use translate_code.
1991 (action): Remove this nonterminal which is now useless.
1992 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
1993 (grammar_current_rule_action_append): Use translate_code.
1994 (packgram): Bound check ruleno, itemno, and rule_length.
1995 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
1996 (last_string, last_braced_code_loc, max_left_semantic_context)
1997 (scanner_initialize, scanner_free, scanner_last_string_free)
1998 (gram_out, gram_lineno, YY_DECL_): Move to...
1999 * src/scan-gram.h: this new file.
2000 (YY_DECL): Rename as...
2001 (GRAM_DECL): this.
2002 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
2003 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
2004 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
2005 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
2006 Move these declarations, and...
2007 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
2008 these to...
2009 * src/flex-scanner.h: this new file.
2010 * src/scan-gram.l (rule_length, rule_length_overflow)
2011 (increment_rule_length): Remove.
2012 (last_braced_code_loc): Rename as...
2013 (gram_last_braced_code_loc): this.
2014 Adjust to the changes of the parser.
2015 Move all the handling of $ and @ into...
2016 * src/scan-code.l: here.
2017 * src/scan-gram.l (handle_dollar, handle_at): Remove.
2018 (handle_action_dollar, handle_action_at): Move to...
2019 * src/scan-code.l: here.
2020 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
2021 scan-code.h, scan-code-c.c, scan-gram.h.
2022 (EXTRA_bison_SOURCES): Add scan-code.l.
2023 (BUILT_SOURCES): Add scan-code.c.
2024 (yacc): Be robust to white spaces.
2025
2026 * tests/conflicts.at, tests/input.at, tests/reduce.at,
2027 * tests/regression.at: Adjust the column numbers.
2028 * tests/regression.at: Adjust the error message.
2029
2030 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
2031
2032 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
2033 Use Akim's wording from
2034 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
2035
2036 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
2037
2038 Between Bison releases, manually append `+' to the previous Bison
2039 release number, and use that as a signal to automatically print the
2040 ChangeLog's CVS Id keyword from --version. Discussed starting at
2041 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
2042 * ChangeLog: Add Id header.
2043 * configure.ac (AC_INIT): Append `+' to `2.3'.
2044 * src/.cvsignore: Add revision.c.
2045 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
2046 (BUILT_SOURCES): Add revision.c.
2047 (revision.c): New target rule. This file defines a new global variable
2048 named revision. It initializes it with either the Id from ChangeLog
2049 or, if VERSION doesn't contain `+', with the empty string.
2050 * src/getargs.c (version): Print the value of revision.
2051 * src/revision.h: Extern revision.
2052
2053 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
2054
2055 * NEWS: Version 2.3.
2056 * configure.ac (AC_INIT): Likewise.
2057
2058 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
2059
2060 * data/glr.c (YYRECOVERING): Define to be a function-like macro
2061 with no arguments, not as an object-like macro. This is for
2062 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
2063 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
2064 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
2065 Document this.
2066
2067 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
2068
2069 * src/getargs.c (usage): Back out yesterday's modification of the
2070 --help output so that we don't have to wait for translation before
2071 releasing 2.3.
2072
2073 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
2074
2075 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
2076 Problem reported by Akim Demaille.
2077
2078 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2079
2080 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
2081
2082 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
2083
2084 * data/yacc.c (yy_reduce_print): Omit trailing white space in
2085 generated source code. Problem reported by Frans Englich in
2086 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
2087
2088 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
2089
2090 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
2091 shell, not within 'make', so that 'make' by an ordinary builder
2092 (using GNU make) does not worry about configuring gzip. This also
2093 works around a bug reported independently by Keith Thompson and by
2094 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
2095 stderr rather than stdout, messing up the build logs.
2096
2097 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
2098
2099 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
2100 to make sure that YYID will never be unused. This fixes a 'make
2101 maintainer-check' failure caused by the recent changes to the 'Trivial
2102 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
2103 not used.
2104 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
2105
2106 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
2107
2108 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
2109 state before an empty RHS is always resolved here. Only the location
2110 of that state is guaranteed to be resolved, and that's enough. This
2111 fixes the remaining bug reported by Derek M. Jones in
2112 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
2113 * tests/glr-regression.at (Uninitialized location when reporting
2114 ambiguity): Test the above case.
2115 Also, the embedded comments in this test case claim it checks the case
2116 of an empty RHS that has inherited the initial location. However, the
2117 corresponding LHS was already resolved, so yyresolveLocations didn't
2118 actually have reason to modify it. Fix this by forcing
2119 nondeterministic operation at the beginning of the parse.
2120
2121 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
2122
2123 * data/c.m4 (b4_yy_symbol_print_generate):
2124 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
2125 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
2126 of the bugs reported today by Derek M Jones in
2127 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
2128 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
2129 defined to be a type name without parens or brackets.
2130 (Location Type): Similarly for YYLTYPE.
2131 * tests/regression.at (Trivial grammars): Put in a test for this
2132 bug that will be caught by 'make maintainer-check' (though not,
2133 alas, by 'make check' unless your compiler is picky).
2134
2135 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
2136
2137 * NEWS: Version 2.2.
2138 * configure.ac (AC_INIT): Likewise.
2139
2140 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
2141
2142 * data/glr.c (yyreportTree): Make room in yystates for the state
2143 preceding the RHS. This fixes the segmentation fault reported by Derek
2144 M. Jones in
2145 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
2146 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
2147 to the user. Reported for yyreportTree by Derek M. Jones later in the
2148 same thread.
2149 * THANKS: Add Derek M. Jones.
2150 Update my email address.
2151 Fix typo in Steve Murphy's name.
2152
2153 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
2154
2155 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
2156 checking against YYLAST that caused the parser to miss a potential
2157 alternative in its diagnostic.
2158 Problem reported by Maria Jose Moron Fernandez in
2159 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
2160 * data/lalr1.cc (yysyntax_error_): Likewise.
2161 * data/yacc.c (yysyntax_error): Likewise.
2162 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
2163 tokens, in case we run into an older C compiler.
2164 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
2165 Use them to check for the off-by-one error fixed above.
2166
2167 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
2168 YYSIZE_T, not size_t.
2169 * tests/regression.at (Trivial grammars): New test, to catch
2170 the error fixed by the above patch.
2171
2172 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
2173
2174 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
2175 scheme.
2176 Reported by Steve Murphy.
2177
2178 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
2179
2180 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
2181 * data/glr.cc: b4_location_flag is now b4_locations_flag.
2182
2183 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
2184
2185 Implement --trace=m4.
2186 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
2187 * src/output.c (output_skeleton): When set, pass -dV to m4.
2188
2189 Factor the handling of flags in m4.
2190 * src/output.c (prepare): Rename the muscle names debug, defines,
2191 error_verbose to debug_flag, defines_flag, error_verbose_flag.
2192 * data/c.m4: Adjust.
2193 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
2194 Use b4_define_flag_if to define other b4_FLAG_if macros.
2195 (b4_location_if): As a consequence, rename as...
2196 (b4_locations_if): this, for consistency.
2197 Adjust all the skeletons.
2198
2199 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
2200
2201 * etc/bench.pm: Shorten bench names.
2202
2203 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
2204
2205 * src/output.h, src/output.c (error_verbose): Move to...
2206 * src/getargs.h, src/getargs.c: here.
2207 Sort the flags.
2208 Adjust dependencies.
2209
2210 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
2211
2212 * data/c.m4 (b4_copyright): Put the special exception for Bison
2213 skeletons here, so we don't have to put it in each skeleton. All
2214 uses changed. Suggested by Akim Demaille. Also, wrap the
2215 copyright notice, in case it is longer than 80 columns. Replace
2216 comma by newline after title.
2217
2218 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
2219
2220 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
2221 incompatibility, not a bug. Mention that it wasn't fixed as of
2222 flex 2.5.33.
2223
2224 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
2225
2226 * examples/extexi: Enforce the precedence of concatenation over
2227 >>.
2228 Reported by Tommy Nordgren.
2229
2230 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
2231
2232 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
2233 with the member "token".
2234 Reported by Martin Nylin.
2235
2236 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
2237
2238 * data/glr.c: Switch to Bison 2.2 special-exception language in
2239 the copyright notice. Use more-regular format for titles and
2240 copyright notices.
2241 * data/glr.cc: Likewise.
2242 * data/location.cc: Likewise.
2243 * data/yacc.cc: Likewise.
2244 * doc/bison.texinfo (Conditions): Document this.
2245 * NEWS: likewise. Upgrade version to 2.2.
2246
2247 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
2248
2249 * data/glr.cc: Remove dead code.
2250
2251 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
2252
2253 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
2254 that variable and the line breaks the bootstrap. Problem reported
2255 by Juan M. Guerrero.
2256
2257 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
2258
2259 * doc/bison.texinfo (Multiple start-symbols): New.
2260
2261 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
2262
2263 * etc/README, etc/bench.pl: New.
2264
2265 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
2266
2267 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
2268 rule.
2269 Reported by Mickael Labau.
2270 * tests/input.at (Torturing the Scanner): Test it.
2271
2272 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
2273
2274 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
2275 Problem reported by Bob Rossi.
2276
2277 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
2278
2279 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
2280 and didn't really work.
2281 For the index, use @ifnotinfo, not @iftex.
2282 Minor cleanups of spacing and terminology.
2283
2284 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
2285
2286 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
2287 of AT_NAME_PREFIX when %name-prefix is not used.
2288
2289 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
2290
2291 Apply --prefix to C++ skeletons too: they change the namespace.
2292 The test suite already exercize these cases.
2293 * data/c++.m4 (b4_namespace): New.
2294 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
2295 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
2296 * data/yacc.c, data/glr.c: Remove a useless `[]'.
2297 * doc/bison.texinfo: Document it.
2298 (Option Cross Key): Use @multitable in all formats. It looks
2299 nicer, even in TeX outputs.
2300 (Rules): Use the same code whatever the output type is.
2301 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
2302 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
2303 * tests/calc.at: Use it, instead of hard coding `yy'.
2304
2305 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
2306
2307 * TODO: Remove dead items.
2308
2309 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
2310
2311 * doc/FAQ: Remove, merged into...
2312 * doc/bison.texinfo (FAQ): this.
2313 * doc/Makefile.am (EXTRA_DIST): Adjust.
2314
2315 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
2316
2317 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
2318 even if empty.
2319 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
2320 * doc/bison.texinfo (Calc++ Scanner): Use it.
2321
2322 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
2323
2324 Fix two nits reported by twlevo, plus one more that I discovered.
2325
2326 * src/assoc.h (assoc_to_string): Give a name to the arg, as
2327 this is the usual Bison style.
2328 * src/location.h (location_print): Likewise.
2329
2330 * src/reader.h (token_name): Likewise.
2331
2332 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
2333
2334 Fix some nits reported by twlevo.
2335 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
2336 and "POSIX". Use more-modern syntax for URLs. Mention C++
2337 and ask for Java. Don't hardwire OS version numbers. Add
2338 copyright notice.
2339 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
2340 * src/conflicts.c (solved_conflicts_obstack): Now static.
2341
2342 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2343
2344 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
2345 page. Say "you can use it" not "you may use it" as on the web page;
2346 we're describing capabilities not granting permission.
2347
2348 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
2349
2350 * data/glr.c (yyresolveLocations): Rename local variables to avoid
2351 shadowing warnings. Use usual patter for iterating through RHS.
2352 * tests/glr-regression.at
2353 (Uninitialized location when reporting ambiguity):
2354 Modify yylex so that it uses its argument, rather than trying
2355 to rely on ARGSUSED (which doesn't work for gcc with warnings).
2356 const char -> char const.
2357
2358 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
2359 Don't use tabs inside commands; it messes up 'ps'.
2360 Problem reported by twlevo.
2361
2362 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
2363
2364 * tests/glr-regression.at (Uninitialized location when reporting
2365 ambiguity): New test case.
2366 * data/glr.c (yyresolveLocations): New function, which uses
2367 YYLLOC_DEFAULT.
2368 (yyresolveValue): Invoke yyresolveLocations before reporting an
2369 ambiguity.
2370 * doc/bison.texinfo (Default Action for Locations): Note
2371 YYLLOC_DEFAULT's usage for ambiguity locations.
2372 (GLR Semantic Actions): Cross-reference those notes.
2373
2374 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
2375
2376 * tests/glr-regression.at (Leaked semantic values when reporting
2377 ambiguity): Remove unnecessary union and type declarations.
2378 (Leaked lookahead after nondeterministic parse syntax error): New test
2379 case.
2380 * data/glr.c (yyparse): Check for zero stacks remaining before
2381 attempting to shift the lookahead so that you don't lose it.
2382
2383 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2384
2385 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
2386 * tests/glr-regression.at (Leaked semantic values when reporting
2387 ambiguity): New test case.
2388 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
2389 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
2390 now unnecessary yystackp parameter.
2391 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
2392 destructors can be called.
2393
2394 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
2395 in existing testcases.
2396
2397 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2398
2399 Don't leak semantic values for parent RHS when a user action cuts the
2400 parser, and clean up related code a bit.
2401 * tests/glr-regression.at (Leaked merged semantic value if user action
2402 cuts parse): Rename to...
2403 (Leaked semantic values if user action cuts parse): ... this. Add check
2404 for leaked parent RHS values.
2405 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
2406 between an unresolved state (non-empty chain of semantic options) and
2407 an incomplete one (signaled by an empty chain).
2408 (yyresolveStates): Document the interface. Move all manipulation of a
2409 successfully or unsuccessfully resolved yyGLRState to...
2410 (yyresolveValue): ... here so that yyresolveValue always leaves a
2411 yyGLRState with consistent data and thus is easier to understand.
2412 Remove the yyvalp and yylocp parameters since they are always just
2413 taken from the yys parameter. When reporting a discarded merged value
2414 in debugging output, note that it is incompletely merged. Document the
2415 interface.
2416 (yyresolveAction): If resolving any of the RHS states fails, destroy
2417 them all rather than leaking them. Thus, as long as user actions are
2418 written to clean up the RHS correctly, yyresolveAction always cleans up
2419 the RHS of a semantic option. Document the interface.
2420
2421 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
2422
2423 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
2424 led to a segmentation fault in GNU Pascal. Problem reported
2425 by Waldek Hebisch.
2426
2427 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
2428
2429 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
2430 mid-rule action inside a nonterminal symbol in order to declare a
2431 destructor for its semantic value.
2432
2433 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
2434
2435 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
2436 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
2437 __cplusplus && ! defined _STDLIB_H && !
2438 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
2439 defined free))]: Include <stdlib.h> rather than rolling our own
2440 declarations of malloc and free, to avoid problems with
2441 incompatible declarations (using 'throw') C++'s stdlib.h. This
2442 should fix Debian bug 340012
2443 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
2444 reported by Guillaume Melquiond.
2445
2446 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2447
2448 * NEWS: Clarify symbols versus types in unused-value warnings.
2449
2450 * configure.ac (AC_INIT): Bump version number.
2451
2452 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2453
2454 * NEWS: Version 2.1a.
2455 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
2456 since C99 requires this.
2457
2458 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
2459
2460 * m4/c-working.m4: New file.
2461 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
2462
2463 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
2464
2465 * Makefile.maint: Merge from coreutils.
2466
2467 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
2468
2469 More portability fixes for problems summarized by Nelson H. F. Beebe.
2470
2471 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
2472 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
2473 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
2474 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
2475 messes up because C++ code is compiled in 32-bit mode but linked
2476 in 64-bit mode.
2477
2478 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
2479
2480 More portability fixes for problems summarized by Nelson H. F. Beebe.
2481
2482 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
2483 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
2484
2485 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
2486 nodist_PROGRAMS, since we don't need to actually compile the
2487 example if we're just doing a plain 'make'. This avoids bothering
2488 the installer unnecessarily about problems due to weird C++
2489 compilers.
2490
2491 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
2492
2493 More portability fixes for problems summarized by Nelson H. F. Beebe.
2494
2495 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
2496 than #include "...", and compile with -I'.'. The old method was
2497 not portable, according to Posix and the C standard, and it does
2498 not work with Sun C 5.7, where previous #line directives affect
2499 the working directory used in later #include "..." directives.
2500
2501 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2502
2503 Various DJGGP specific issues in /djgpp
2504
2505 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
2506
2507 More portability fixes for problems summarized by Nelson H. F. Beebe.
2508
2509 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
2510 '#include <map>' works and that you can apply ++ to iterators.
2511
2512 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
2513
2514 Work around portability problems summarized by Nelson H. F. Beebe in
2515 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
2516
2517 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2518 that '#include <string>' works.
2519
2520 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
2521 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
2522 "warning: sorry: semantics of inline function static data `const
2523 unsigned char translate_table[262]' are wrong (you'll wind up with
2524 multiple copies)".
2525
2526 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
2527 or, xor to not_, and_, or_, and xor_, respectively. This works
2528 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
2529 random system header somewhere that includes the equivalent of
2530 <iso646.h>.
2531
2532 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
2533 -E" works; it apparently doesn't work with PathScale EKO Compiler
2534 Suite Version 2.0.
2535
2536 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
2537
2538 During deterministic GLR operation, user actions should be able to
2539 influence the parse by changing yychar. To make this easier to fix and
2540 to make glr.c easier to evolve in general, don't maintain yytoken in
2541 parallel with yychar; just compute yytoken when needed.
2542 * tests/glr-regression.at (Incorrect lookahead during deterministic
2543 GLR): Check that setting yychar in a user action has the intended
2544 effect.
2545 * data/glr.c (yyGLRStack): Remove yytokenp member.
2546 (yyclearin): Don't set *yytokenp.
2547 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
2548 yychar rather than *yytokenp to determine the current lookahead.
2549 Compute yytoken locally when needed.
2550 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
2551 point to.
2552
2553 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
2554 after `--report' documentation.
2555
2556 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
2557
2558 * src/parse-gram.y (grammar_declaration): Location of printer
2559 symbol is @1, not list->location. Bug reported by twlevo.
2560 * tests/input.at (Incompatible Aliases): Adjust to above change.
2561
2562 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
2563
2564 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
2565 all the test at once. This makes the output easier to read in the
2566 normal case.
2567
2568 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
2569 got from <http://bro-ids.org/download.html>. The bug is that
2570 when two actions appeared in succession, the second one was
2571 scanned before the first one was added to the grammar rule
2572 as a midrule action. Bison then output the incorrect warning
2573 "parse.y:905.17-906.36: warning: unused value: $3".
2574 * src/parse-gram.y (BRACED_CODE, action): These are no longer
2575 associated with a value.
2576 (rhs): Don't invoke grammar_current_rule_action_append.
2577 (action): Invoke it here instead.
2578 * src/reader.c (grammar_midrule_action): Now extern.
2579 (grammar_current_rule_action_append): Don't invoke
2580 grammar_midrule_action; that is now the scanner's job.
2581 * src/reader.h (last_string, last_braced_code_loc):
2582 (grammar_midrule_action): New decls.
2583 * src/scan-gram.l (last_string): Now extern, sigh.
2584 (last_braced_code_loc): New extern variable.
2585 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
2586 rule already has an action.
2587 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
2588 * tests/input.at (AT_CHECK_UNUSED_VALUES):
2589 Add some tests to check that the above changes fixed the bug.
2590
2591 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
2592
2593 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
2594 All used changed. Check whether the symbol has a destructor,
2595 not whether it is typed.
2596 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
2597 that the values are still reported as unused. All line numbers
2598 adjusted.
2599
2600 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
2601
2602 Work around a bug in bro 0.8, which underparenthesizes its
2603 definition of YYLLOC_DEFAULT.
2604 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
2605 their arguments.
2606 * data/lalr1.cc: Likewise.
2607 * data/yacc.cc: Likewise.
2608
2609 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
2610
2611 Work around a bug in Pike 7.0, and give the Pike folks a
2612 better way to override the usual int widths.
2613 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
2614 user can override the types.
2615 (short): #undef, to work around a bug in Pike 7.0.
2616 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
2617 (union yyalloc.yyss): Use yytype_int16 rather than short.
2618 All uses changed.
2619 (yysigned_char): Remove.
2620 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
2621 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
2622 * tests/regression.at (Web2c Actions): Adjust to above changes.
2623
2624 * src/reader.c (check_and_convert_grammar): New function.
2625 (reader): Close the input file even if something went wrong during
2626 parsing. Minor file descriptor leak reported by twlevo.
2627
2628 * src/assoc.c (assoc_to_string): Use a default: abort (); case
2629 to pacify gcc -Wswitch-default.
2630 * src/scan-gram.l (adjust_location): Use a default: break; case
2631 to pacify gcc -Wswitch-default.
2632 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
2633 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2634 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2635 Move these decls to scan-skel.l, since they don't need to be
2636 visible elsewhere.
2637 * src/scan-skel.l: Accept the above decls.
2638 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
2639 is used.
2640
2641 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
2642
2643 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
2644 since we don't want to insist on a version number at the start
2645 of the changelog every time.
2646 * Makefile.maint: Sync from coreutils a bit better.
2647 (sc_trailing_blank): Renamed from sc_trailing_space.
2648 All uses changed.
2649 (sc_no_if_have_config_h, sc_require_config_h):
2650 (sc_prohibit_assert_without_use): New rules.
2651 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
2652 (sc_dd_max_sym_length): Fix leading spaces in rule.
2653 (sc_system_h_headers): Prefix with @.
2654 (sc_useless_cpp_parens, m4-check): Output line numbers.
2655 (changelog-check): Allow version only in head.
2656 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
2657 satisfy new Makefile.maint rule.
2658 * data/glr.c: Likewise.
2659 * data/glr.cc: Likewise.
2660 * data/lalr1.cc: Likewise.
2661 * data/yacc.c: Likewise.
2662 * lib/ebitsetv.c: Likewise.
2663 * lib/lbitset.c: Likewise.
2664 * lib/subpipe.c: Likewise.
2665 * lib/timevar.c: Likewise.
2666 * src/system.h: Likewise.
2667 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
2668 * djgpp/Makefile.maint: Add copyright notice.
2669 * djgpp/README.in: Likewise.
2670 * djgpp/config.bat: Likewise.
2671 * djgpp/config.site: Likewise.
2672 * djgpp/config_h.sed: Likewise.
2673 * djgpp/djunpack.bat: Likewise.
2674 * djgpp/config.sed: Fix copyright notice to match standard format.
2675 * djgpp/subpipe.h: Likewise.
2676 * lib/bitsetv-print.c: Likewise.
2677 * lib/bitsetv.c: Likewise.
2678 * lib/subpipe.h: Likewise.
2679 * lib/timevar.c: Likewise.
2680 * lib/timevar.h: Likewise.
2681 * djgpp/subpipe.c: Use standard recipe for config.h.
2682 * lib/abitset.c: Likewise.
2683 * lib/bitset.c: Likewise.
2684 * lib/bitset_stats.c: Likewise.
2685 * lib/bitsetv-print.c: Likewise.
2686 * lib/bitsetv.c: Likewise.
2687 * lib/ebitsetv.c: Likewise.
2688 * lib/get-errno.c: Likewise.
2689 * lib/lbitset.c: Likewise.
2690 * lib/subpipe.c: Likewise.
2691 * lib/timevar.c: Likewise.
2692 * lib/vbitset.c: Likewise.
2693 * tests/local.at: Likewise.
2694 * src/scan-gram.l: Don't include verify.h, since system.h does
2695 that for us.
2696 * .x-sc_require_config_h: New file.
2697 * .x-sc_unmarked_diagnostics: New file.
2698
2699 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
2700
2701 Be a bit more systematic about using 'abort'.
2702 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
2703 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
2704 Put 'default: abort ();' before some other case, to satisfy older
2705 pedantic compilers.
2706 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2707 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
2708 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
2709 * src/conflicts.c (resolve_sr_conflict): Likewise.
2710 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
2711 (get_decision_str, get_orientation_str, get_node_alignment_str):
2712 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
2713 (get_linestyle_str, get_arrowstyle_str): Likewise.
2714 * src/conflicts.c (resolve_sr_conflict):
2715 Use a default case rather than one for the one remaining enum
2716 value, to catch invalid enum values as well.
2717 * src/lalr.c (set_goto_map, map_goto):
2718 Prefer "assert (FOO);" to "if (!FOO) abort ();".
2719 * src/nullable.c (nullable_compute, token_definitions_output):
2720 Likewise.
2721 * src/reader.c (packgram, reader): Likewise.
2722 * src/state.c (transitions_to, state_new, state_reduction_find):
2723 Likewise.
2724 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
2725 (symbol_pack): Likewise.
2726 * src/tables.c (conflict_row, pack_vector): Likewise.
2727 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
2728 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
2729 * src/system.h: Don't include <assert.h>.
2730 (assert): New macro.
2731
2732 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
2733 (Destructor Decl, Parser Function, Pure Calling):
2734 Describe rules for braces inside C code more carefully.
2735
2736 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
2737
2738 Fix some porting glitches found by Nelson H. F. Beebe.
2739 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
2740 compilers that don't understand that abort () does not return.
2741 * src/state.c (transitions_to): Likewise.
2742 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2743 that '#include <cstdlib>' works.
2744 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
2745 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
2746 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
2747 for the benefit of some pre-C99 compilers.
2748
2749 * bootstrap: Undo changes to gnulib files that autoreconf made.
2750
2751 Minor fixups to get 'make maintainer-check' to work.
2752 * configure.ac: Don't use -Wnested-externs, as it's incompatible
2753 with the new verify.h implementation.
2754 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
2755 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
2756 * data/yacc.c (YYUSE): Likewise.
2757 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
2758 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
2759 * src/parse-gram.y (declaration): Don't pass a string constant
2760 to a function that expects char *, since GCC might complain
2761 about the constant value.
2762 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
2763 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
2764 before #defining them.
2765 * tests/glr-regression.at
2766 (Incorrectly initialized location for empty right-hand side in GLR):
2767 In yyerror, use the msg arg.
2768 (Corrupted semantic options if user action cuts parse):
2769 (Incorrect lookahead during deterministic GLR):
2770 (Incorrect lookahead during nondeterministic GLR):
2771 Don't name a local var 'index'; it shadows string.h's 'index'.
2772
2773 2006-01-19 Akim Demaille <akim@epita.fr>
2774
2775 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
2776 location, not just parts of it.
2777
2778 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
2779
2780 * NEWS: Document the fact that multiple %unions are now allowed.
2781 * doc/bison.texinfo (Union Decl): Likewise.
2782 * TODO: This feature is now implemented, so remove it from
2783 the wishlist.
2784
2785 * Makefile.maint: Merge with coreutils Makefile.maint.
2786 (CVS_LIST): Use build-aux version if available.
2787 (VERSION_REGEXP): New macro.
2788 (syntax-check-rules): Add sc_no_if_have_config_h,
2789 sc_prohibit_assert_without_use, sc_require_config_h,
2790 sc_useless_cpp_parens.
2791 (sc_obsolete_symbols): Check for O_NDELAY.
2792 (sc_dd_max_sym_length): Track coreutils.
2793 (sc_unmarked_diagnostics): Look in all files, not just *.c.
2794 (sc_useless_cpp_parens): New rule.
2795 (news-date-check): Look for version or today's date.
2796 (changelog-check): Don't require version number near head.
2797 (copyright-check): Use current year instead of hardwiring 2005.
2798 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2799 (announcement): Add --gpg-key-ID.
2800
2801 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
2802 with "file system".
2803
2804 Avoid undefined behavior that addressed just before the start of an
2805 array. Problem reported by twlevo.
2806 * src/reader.c (packgram): Prepend a new sentinel before ritem.
2807 * src/lalr.c (build_relations): Rely on new sentinel.
2808 * src/gram.c (gram_free): Adjust to new sentinel.
2809
2810 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
2811
2812 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
2813 yylookaheadNeeds. All uses updated.
2814 (yysplitStack): Rename local yynewLookaheadStatuses to
2815 yynewLookaheadNeeds.
2816 * data/glr-regression.at (Incorrect lookahead during nondeterministic
2817 GLR): In comments, change `lookahead status' to `lookahead need'.
2818
2819 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2820
2821 * data/glr.c (yysplitStack): A little stylistic rewrite.
2822
2823 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2824
2825 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
2826
2827 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
2828
2829 * doc/bison.texinfo: Fix some typos.
2830 (GLR Semantic Actions): New subsection discussing special
2831 considerations because GLR semantic actions might be deferred.
2832 (Actions): Mention look-ahead usage of yylval.
2833 (Actions and Locations): Mention look-ahead usage of yylloc.
2834 (Special Features for Use in Actions): Add YYEOF entry and mention it
2835 in the yychar entry.
2836 In the yychar entry, remove mention of the local yychar case (pure
2837 parser) since this is irrelevant information when writing semantic
2838 actions and since it's already discussed in `Bison Symbols' where
2839 yychar is otherwise described as an external variable.
2840 In the yychar entry, don't call it the `current' look-ahead since it
2841 isn't when semantic actions are deferred.
2842 In the yychar and yyclearin entries, add note about deferred semantic
2843 actions.
2844 Add yylloc and yylval entries discussing look-ahead usage.
2845 (Look-Ahead Tokens): When discussing yychar, don't call it the
2846 `current' look-ahead, and do mention yylval and yylloc.
2847 (Error Recovery): Cross-reference `Action Features' when mentioning
2848 yyclearin.
2849 (Bison Symbols): In the yychar entry, don't call it the `current'
2850 look-ahead.
2851 In the yylloc and yylval entries, mention look-ahead usage.
2852
2853 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2854
2855 * tests/glr-regression.at: Update copyright year to 2006.
2856
2857 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2858
2859 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
2860 use during nondeterministic operation to track which stacks have
2861 actually needed the current lookahead.
2862 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
2863 Allocate, deallocate, resize, and otherwise shuffle space for
2864 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
2865 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
2866 appropriately during nondeterministic operation.
2867 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
2868 members to store the current lookahead to be used by the deferred
2869 user action.
2870 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
2871 from which the RHS is taken. Set the lookahead members of the new
2872 yySemanticOption according to the lookahead status for stack yyk.
2873 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
2874 yyaddDeferredAction.
2875 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
2876 members of yySemanticOption before invoking yyuserAction, and then set
2877 them back to their current values afterward.
2878 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
2879 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
2880 * tests/glr-regression.at: Remove `.' from the ends of recent test case
2881 titles for consistency.
2882 (Leaked merged semantic value if user action cuts parse): In order to
2883 suppress lint warnings, use arguments in merge function, and assign
2884 char value < 128 in main.
2885 (Incorrect lookahead during deterministic GLR): New test case.
2886 (Incorrect lookahead during nondeterministic GLR): New test case.
2887
2888 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2889
2890 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
2891 !yyvaluep as signal that no semantic value is available to print.
2892 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
2893 to print a semantic value.
2894
2895 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2896
2897 * tests/glr-regression.at: For consistency with my newer test cases,
2898 don't thank myself.
2899
2900 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2901
2902 * data/glr.c (yyresolveValue): When merging semantic options, if at
2903 least one user action succeeds but a later one cuts the parse, then
2904 destroy the semantic value before returning rather than leaking it.
2905 (yyresolveStates): If a user action cuts the parse and thus
2906 yyresolveValue fails, ignore the (unset) semantic value rather than
2907 corrupting the yyGLRState, and empty the semantic options list since
2908 the user actions should have called all necessary destructors.
2909 Simplify code with YYCHK.
2910 * tests/glr-regression.at (Corrupted semantic options if user action
2911 cuts parse): New test case.
2912 (Undesirable destructors if user action cuts parse): New test case.
2913 Before applying any of this patch, this test case never actually failed
2914 for me... but only because the corrupted semantic options usually
2915 masked this bug.
2916 (Leaked merged semantic value if user action cuts parse): New test
2917 case.
2918
2919 2006-01-05 Akim Demaille <akim@epita.fr>
2920
2921 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
2922
2923 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
2924
2925 * data/c.m4 (b4_c_modern): New macro, with a new provision for
2926 _MSC_VER. Problem reported by Cenzato Marco.
2927 (b4_c_function_def): Use it.
2928 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
2929 b4_c_modern.
2930 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
2931 than rolling our own.
2932
2933 2006-01-04 Akim Demaille <akim@epita.fr>
2934
2935 Also warn about non-used mid-rule values.
2936 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
2937 member.
2938 (symbol_list_new): Adjust.
2939 * src/reader.c (symbol_typed_p): New.
2940 (grammar_rule_check): Use it.
2941 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
2942 Check its rule.
2943 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
2944 Use it.
2945 * tests/actions.at (Exotic Dollars): Adjust.
2946
2947 2006-01-04 Akim Demaille <akim@epita.fr>
2948
2949 * src/reader.c (grammar_midrule_action): If $$ is set in a
2950 mid-rule, move the `used' bit to its lhs.
2951 * tests/input.at (Unused values): New.
2952 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
2953
2954 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
2955
2956 * doc/bison.texinfo (Bison Options): Say more accurately what
2957 --yacc does.
2958 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
2959 about declarations in the grammar when in Yacc mode, as POSIX does
2960 not require a diagnostic when the grammar uses extensions.
2961
2962 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
2963
2964 Warn about dubious constructions like "%token T T".
2965 Reported by twlevo.
2966 * src/symtab.h (struct symbol.declared): New member.
2967 * src/symtab.c (symbol_new): Initialize it to false.
2968 (symbol_class_set): New arg DECLARING, specifying whether
2969 this is a declaration that we want to warn about, if there
2970 is more than one of them. All uses changed.
2971
2972 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
2973 Allow multiple %union directives, whose contents concatenate.
2974 * src/parse-gram.y (grammar_declaration): Likewise.
2975 Use muscle_code_grow, so that we don't need stype_line any more.
2976 All uses changed.
2977
2978 * src/muscle_tab.c (muscle_grow): Fix comment.
2979
2980 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
2981 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
2982 Update copyright year to 2006.
2983
2984 2006-01-03 Akim Demaille <akim@epita.fr>
2985
2986 Have glr.cc pass (some of) the calc.at tests.
2987 * data/glr.cc (b4_parse_param_orig): New.
2988 (b4_parse_param): Improve its definition, and bound it more
2989 clearly in the skeleton.
2990 (b4_epilogue): Append, instead of prepending, in order to keep
2991 #line consistency.
2992 Simplify the generation of auxiliary functions: locations and
2993 purity are mandated.
2994 (b4_global_tokens_and_yystype): Honor it.
2995 * data/location.cc (c++.m4): Don't include it.
2996 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
2997 and AT_SKEL_CC_IF.
2998 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
2999 AT_LALR1_CC_IF.
3000 Be sure to initialize the first position's filename.
3001 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
3002 mandated anyway.
3003 (AT_CHECK_CALC_GLR_CC): New.
3004 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
3005
3006 2006-01-02 Akim Demaille <akim@epita.fr>
3007
3008 * src/output.c (output_skeleton): Don't hard wire the inclusion of
3009 c.m4.
3010 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3011 * data/glr.cc: Do not include stack.hh.
3012
3013 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3014
3015 * data/glr.c: Reformat whitespace with tabs.
3016 (b4_lpure_formals): Remove this unused m4 macro.
3017 * tests/cxx-type.at: Reformat whitespace with tabs.
3018 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
3019 since it's a member. Rename type to isNterm for clarity.
3020
3021 2005-12-29 Akim <akim@sulaco.local>
3022
3023 Let glr.cc catch up with symbol_value_print.
3024 * data/glr.cc (b4_yysymprint_generate): Replace by...
3025 (b4_yy_symbol_print_generate): this.
3026 (yy_symbol_print, yy_symbol_value_print): Declare them.
3027
3028 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
3029
3030 * src/location.h (boundary): Note that a line or column equal
3031 to INT_MAX indicates an overflow.
3032 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
3033 (rule_length_overflow, increment_rule_length, add_column_width):
3034 New functions.
3035 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
3036 (<SC_BRACED_CODE>"}"):
3037 Use increment_rule_length rather than incrementing it by hand.
3038 (adjust_location, handle_syncline): Diagnose overflow.
3039 (handle_action_dollar, handle_action_at):
3040 Fix bug with monstrosities like $-2147483648.
3041 Remove now-unnecessary checks.
3042 (scan_integer): Verify assumptions and remove now-unnecessary checks.
3043 (convert_ucn_to_byte): Verify assumptions.
3044 (handle_syncline): New arg LOC. All callers changed.
3045 Don't store through a value derived from char const * pointer.
3046
3047 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
3048 GCC warnings.
3049
3050 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
3051
3052 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
3053 Remove unnecessary forward static decls.
3054
3055 2005-12-27 Akim Demaille <akim@epita.fr>
3056
3057 * src/reader.c (grammar_current_rule_check): Also check that $$
3058 is used.
3059 Take the rule to check as argument, hence rename as...
3060 (grammar_rule_check): this.
3061 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
3062 Rename as...
3063 (grammar_rule_begin, grammar_rule_end): these, for consistency.
3064 (grammar_midrule_action, grammar_symbol_append): Now static.
3065 * tests/torture.at (input): Don't rely on the default action
3066 being always performed.
3067 * tests/calc.at: "Set" $$ even when the action is "cut" with
3068 YYERROR or other.
3069 * tests/actions.at (Exotic Dollars): Instead of using unused
3070 values, check that the warning is issued.
3071
3072 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
3073
3074 * NEWS: Improve wording for unused-value warnings.
3075
3076 2005-12-22 Akim Demaille <akim@epita.fr>
3077
3078 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
3079 (b4_yysymprint_generate): Rename as...
3080 (b4_yy_symbol_print_generate): this.
3081 Generate yy_symbol_print instead of yysymprint.
3082 Generate also yy_symbol_value_print, and use it.
3083
3084 2005-12-22 Akim Demaille <akim@epita.fr>
3085
3086 * NEWS: Warn about unused values.
3087 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
3088 a `used' member.
3089 (symbol_list_n_get, symbol_list_n_used_set): New.
3090 (symbol_list_n_type_name_get): Use symbol_list_n_get.
3091 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
3092 * src/reader.c (grammar_current_rule_check): Check that values are
3093 used.
3094 * src/symtab.c (symbol_print): Accept 0.
3095 * tests/existing.at: Remove the type information.
3096 Empty the actions.
3097 Remove useless actions (beware of mid-rule actions: perl -000
3098 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
3099 * tests/actions.at (Exotic Dollars): Use unused values.
3100 * tests/calc.at: Likewise.
3101 * tests/glr-regression.at (No users destructors if stack 0 deleted):
3102 Likewise.
3103
3104 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
3105 rule_useful_p.
3106
3107 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
3108
3109 Undo 2005-12-01 tentative license wording change. The wording is
3110 still being reviewed by the lawyers, and we don't want to wait for
3111 them before publishing a test release. For now, revert to the
3112 previous wording.
3113 * NEWS: Undo 2005-12-01 change.
3114 * data/glr.c: Revert to previous license wording.
3115 * data/glr.cc: Likewise.
3116 * data/lalr1.cc: Likewise.
3117 * data/location.cc: Likewise.
3118 * data/yacc.c: Likewise.
3119
3120 * NEWS: Reword %destructor vs YYABORT etc.
3121 * data/glr.c: Use American spacing, for consistency.
3122 * data/glr.cc: Likewise.
3123 * data/lalr1.cc: Likewise.
3124 * data/yacc.c: Likewise.
3125 * data/yacc.c: Reformat comments slightly.
3126 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
3127 for consistency. Fix some spelling errors and reword recently-included
3128 text slightly.
3129 * tests/cxx-type.at: Cast results of malloc, for C++.
3130
3131 2005-12-21 Joel E. Denny <address@hidden>
3132
3133 * tests/cxx-type.at: Construct a tree, count the parents of shared
3134 nodes, and free each node once and only once. Previously, the memory
3135 for semantic values was leaked instead.
3136
3137 2005-12-21 Joel E. Denny <address@hidden>
3138
3139 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
3140 (yylval, yylloc): If pure, #define to yystackp->yyval and
3141 yystackp->yyloc similar to yychar and yynerrs.
3142 (yyparse): If pure, remove local yylval and yylloc. Add local
3143 yystackp to accommodate pure definitions of yylval and yylloc.
3144 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
3145 yylvalp and yyllocp to &yylval and &yylloc.
3146 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
3147 namespace. Previously, nerrs and char were missing, but lval and lloc
3148 weren't necessary.
3149 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
3150 yylvalp and yyllocp parameters since, if pure, these are now always
3151 accessible through yystackp. If not pure, they are still accessible
3152 globally.
3153 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
3154 `if (YYID (N))' to pacify lint.
3155
3156 2005-12-21 Akim Demaille <akim@epita.fr>
3157
3158 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
3159 destroy the RHS symbols of a rule.
3160 * data/yacc.c (yylen): Initialize to 0.
3161 Keep its value to the number of items to possibly shift.
3162 In particular, a regular successful parse that ends on YYFINAL by
3163 a (internal) YYACCEPT must not have yylen != 0.
3164 (yyerrorlab, yyreturn): Pop the RHS.
3165 Reorder a bit to emphasize the `shifting' bits of code.
3166 (YYPOPSTACK): Now accept a number of items to pop.
3167 * data/lalr1.cc: Likewise.
3168 * data/glr.c: Formatting changes.
3169 Use goto instead of fall through.
3170 * doc/bison.texinfo (Destructor Decl): Complete.
3171
3172 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3173
3174 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
3175 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
3176 * djgpp/config.bat: Replace every occurence of the file name
3177 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
3178 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
3179 * djgpp/config.sed: Replace every occurence of the file name
3180 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
3181 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
3182 * djgpp/djunpack.bat: DJGPP specific file.
3183 * djgpp/fnchange.lst: DJGPP specific file.
3184 * djgpp/README.in: Add new information about how to unpack the bison
3185 source on MSDOS and other systems which have 8.3 file name restrictions
3186 using djunpack.bat and fnchange.lst.
3187
3188 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
3189
3190 * bootstrap (build_cvs_prefix): Remove; unused.
3191 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
3192 when getting gnulib.
3193
3194 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
3195
3196 * data/glr.c: Reorder typedef declarations for structs to match order
3197 of struct declarations.
3198 Rename yystack everywhere to yystackp except in yyparse where it's not
3199 a pointer.
3200 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
3201 consistency.
3202 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
3203 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
3204 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
3205 lint.
3206
3207 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
3208
3209 * tests/sets.at (Accept): Fix typos in regular expression used to
3210 sed out the final state number.
3211
3212 Work around portability problem on Solaris 10: flex-generated
3213 files include <stdio.h> before <config.h>, which messes up
3214 because the latter defines __EXTENSIONS__. Address the problem
3215 by creating two new little files that include <config.h> first,
3216 then include the flex-generated files. Rewrite everyone else
3217 to include <config.h> first, as well.
3218 * lib/timevar.c: Always include "config.h".
3219 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
3220 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
3221 (EXTRA_bison_SOURCES): New macro.
3222 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
3223 * src/system.h: Don't include config.h.
3224 * src/LR0.c: Include <config.h> first.
3225 * src/assoc.c: Likewise.
3226 * src/closure.c: Likewise.
3227 * src/complain.c: Likewise.
3228 * src/conflicts.c: Likewise.
3229 * src/derives.c: Likewise.
3230 * src/files.c: Likewise.
3231 * src/getargs.c: Likewise.
3232 * src/gram.c: Likewise.
3233 * src/lalr.c: Likewise.
3234 * src/location.c: Likewise.
3235 * src/main.c: Likewise.
3236 * src/muscle_tab.c: Likewise.
3237 * src/nullable.c: Likewise.
3238 * src/output.c: Likewise.
3239 * src/parse-gram.y: Likewise.
3240 * src/print.c: Likewise.
3241 * src/print_graph.c: Likewise.
3242 * src/reader.c: Likewise.
3243 * src/reduce.c: Likewise.
3244 * src/relation.c: Likewise.
3245 * src/state.c: Likewise.
3246 * src/symlist.c: Likewise.
3247 * src/symtab.c: Likewise.
3248 * src/tables.c: Likewise.
3249 * src/uniqstr.c: Likewise.
3250 * src/vcg.c: Likewise.
3251
3252 * src/parse-gram.y: Fix minor problems uncovered by lint.
3253 (current_lhs, current_lhs_location): Now static.
3254 (current_assoc): Remove unused variable.
3255
3256 Cleanups so that Bison-generated parsers have less lint.
3257 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
3258 Prepend /*ARGSUSED*/, for lint's sake.
3259 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
3260 definition if 'lint' is defined.
3261 (YYID): New macro (or function, if lint).
3262 All uses of /*CONSTCOND*/0 replaced by YYID(0).
3263 * data/yacc.c: Likewise.
3264 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
3265 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
3266 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
3267 is C++ only.
3268 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
3269 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
3270 Use YYID(0) rather than 0, for lint.
3271 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
3272 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
3273
3274 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
3275
3276 * tests/glr-regression.at
3277 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3278 Close memory leak reported by twlevo.
3279
3280 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
3281
3282 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
3283 all stacks.
3284 (yyparse): Iterate another stack in order to call user destructors.
3285 * tests/glr-regression.at (No users destructors if stack 0 deleted):
3286 New test case.
3287 (Duplicated user destructor for lookahead): This test now is expected
3288 to succeed.
3289
3290 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
3291
3292 * NEWS: Document the following change.
3293 * data/yacc.c: Say "parser skeleton" rather than "file", since
3294 it's no longer just a file.
3295 * data/glr.c: Grant a special exception for C GLR parsers, that
3296 reads like the already-existing exception for C LALR(1) parsers.
3297 * data/glr.cc: Likewise.
3298 * data/lalr1.cc: Likewise.
3299 * data/location.cc: Likewise.
3300 * data/yacc.c: Reword the "written by" statement to clarify that
3301 it was the parser skeleton, not the entire output file.
3302 * data/glr.c: Written by Paul Hilfinger.
3303 * data/glr.cc: Written by Akim Demaille.
3304 * data/lalr1.cc: Likewise.
3305
3306 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
3307
3308 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
3309 Fix typos in previous change that broke 'make check'.
3310 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
3311 supported in C.
3312 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
3313 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
3314 We can revert this once things settle down.
3315
3316 * src/conflicts.c (conflicts_print): Don't print file name twice
3317 when %expect fails because there were no conflicts.
3318 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
3319 change.
3320 * tests/conflicts.at (%expect not enough, %expect too much):
3321 (%expect with reduce conflicts): Adjust to new behavior.
3322
3323 2005-11-18 Akim Demaille <akim@epita.fr>
3324
3325 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
3326 errors.
3327 * NEWS: Document this.
3328 * doc/bison.texinfo (Expect Decl): Likewise.
3329
3330 2005-11-16 Akim Demaille <akim@epita.fr>
3331
3332 Generalize the display of semantic values and locations in traces.
3333 * data/glr.c (yy_reduce_print): Fix indices (again).
3334 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
3335 literal integers.
3336 * data/lalr1.cc (yyreduce_print): Rename as...
3337 (yy_reduce_print): this.
3338 Display values and locations.
3339 * data/yacc.c (yy_reduce_print): Likewise.
3340 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
3341 (yysymprint): Move higher to be visible from yy_reduce_print).
3342 (yyparse): Adjust.
3343 * tests/calc.at: Adjust the expected length of the traces.
3344
3345 2005-11-14 Akim Demaille <akim@epita.fr>
3346
3347 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
3348 from 1 to N, while values and location start at 0.
3349 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
3350
3351 2005-11-14 Akim Demaille <akim@epita.fr>
3352
3353 * data/glr.c (yy_reduce_print): Fix the $ number.
3354
3355 2005-11-14 Akim Demaille <akim@epita.fr>
3356
3357 "Use" parse parameters.
3358 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
3359 * data/glr.c, data/glr.cc: Use them.
3360 * data/glr.c (YYUSE): Have a C++ definition that supports
3361 non-pointer types.
3362
3363 2005-11-14 Akim Demaille <akim@epita.fr>
3364
3365 * data/glr.c (yyexpandGLRStack): Declare only if defined.
3366
3367 2005-11-14 Akim Demaille <akim@epita.fr>
3368
3369 * data/glr.cc: New.
3370 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
3371
3372 2005-11-12 Akim Demaille <akim@epita.fr>
3373
3374 Let position and location be PODs.
3375 * data/location.cc (position::initialize, location::initialize): New.
3376 (position::position, location::location): Define only if
3377 b4_location_constructors is defined.
3378 * data/lalr1.cc (b4_location_constructors): Define it for backward
3379 compatibility.
3380 * doc/bison.texinfo (Initial Action Decl): Use initialize.
3381
3382 2005-11-12 Akim Demaille <akim@epita.fr>
3383
3384 * data/lalr1.cc: Move the body of the ctor and dtor into the
3385 parser file (instead of the header).
3386 Wrap the implementations in a "namespace yy".
3387
3388 2005-11-12 Akim Demaille <akim@epita.fr>
3389
3390 Have glr.c include its header file when created.
3391 * data/glr.c (b4_shared_declarations): New.
3392 Output them verbatim in the parser if !%defines, otherwise
3393 output then in the header file, and include it instead.
3394
3395 2005-11-11 Akim Demaille <akim@epita.fr>
3396
3397 * data/glr.c: Comment changes.
3398
3399 2005-11-11 Akim Demaille <akim@epita.fr>
3400
3401 When yydebug, report semantic and location values for reductions.
3402 * data/glr.c (yy_reduce_print): Report the semantic values and the
3403 locations.
3404 (YY_REDUCE_PRINT): Adjust.
3405 (yyglrReduce): Use them.
3406 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
3407 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
3408 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
3409 traces.
3410
3411 2005-11-10 Akim Demaille <akim@epita.fr>
3412
3413 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
3414 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
3415 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
3416
3417 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
3418
3419 * m4/cxx.m4, examples/Makefile.am: Don't build
3420 examples/calc++ if no C++ compiler is available. (trivial change)
3421
3422 2005-11-09 Akim Demaille <akim@epita.fr>
3423
3424 * src/scan-skel.l: Use a couple of asserts.
3425
3426 2005-11-03 Akim Demaille <akim@epita.fr>
3427
3428 In some (weird) cases, the final state number is incorrect.
3429 Reported by Alexandre Duret-Lutz.
3430 * src/LR0.c (state_list_append): Remove the computation of
3431 final_state.
3432 (save_reductions): Do it here.
3433 (get_state): Alpha conversion.
3434 (generate_states): Use a for loop.
3435 * src/gram.h (item_number_is_rule_number)
3436 (item_number_is_symbol_number): New.
3437 * src/state.c: Use assert.
3438 * src/system.h: Include assert.h.
3439 * tests/sets.at (Accept): New.
3440
3441 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3442
3443 * data/glr.c (yyfill): Adjust comment.
3444 (yyresolveAction): Initialize default location properly
3445 for empty right-hand sides.
3446 (yydoAction): Ditto.
3447 Add comment explaining apparently dead code.
3448 * tests/glr-regression.at
3449 (Incorrectly initialized location for empty right-hand side in GLR):
3450 New test.
3451
3452 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
3453
3454 * bootstrap (cleanup_gnulib): New function. Use it to clean up
3455 gnulib when interrupted. This fixes some race conditions and
3456 works around some portability problems (one noted by Paul
3457 Hilfinger).
3458
3459 2005-10-22 Akim <akim@epita.fr>
3460
3461 * Makefile.cfg: Adjust to config -> build-aux.
3462 Reported by twledo.
3463
3464 2005-10-21 Akim Demaille <akim@epita.fr>
3465
3466 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
3467 the %parse-params.
3468 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
3469 * data/yacc.c (b4_Pure_if): Rename as...
3470 (b4_yacc_pure_if): this.
3471 (YY_SYMBOL_PRINT, yyparse): Adjust.
3472 * doc/bison.texinfo: Formatting changes.
3473
3474 2005-10-21 Akim Demaille <akim@epita.fr>
3475
3476 Finish the transition config -> build-aux.
3477 * configure.ac, Makefile.am: Use build-aux.
3478 * config/prev-version, config/announce-gen, config/Makefile.am:
3479 Move to...
3480 * build-aux/prev-version, build-aux/announce-gen,
3481 * build-aux/Makefile.am: here.
3482
3483 2005-10-14 Akim Demaille <akim@epita.fr>
3484
3485 * examples/calc++/test: Use set -x only when VERBOSE.
3486
3487 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
3488
3489 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
3490 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
3491
3492 2005-10-13 Akim Demaille <akim@epita.fr>
3493
3494 * src/scan-skel.l: Output the base name parts of the parser and
3495 header file names.
3496 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
3497 additional checks.
3498 Use this to exercise C++ outputs in subdirs.
3499 Reported by Oleg Smolsky.
3500
3501 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
3502
3503 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
3504 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
3505 Problem reported by John P. Hartmann.
3506 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
3507 already defined it.
3508
3509 2005-10-12 Akim Demaille <akim@epita.fr>
3510
3511 * src/parse-gram.y (version_check): Exit 63 to please missing
3512 (stands for "version mismatch).
3513 * tests/input.at, doc/bison.texinfo: Adjust.
3514
3515 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
3516
3517 Work around portability problems with Visual Age C compiler
3518 (xlc and xlC_r) reported by John P. Hartmann.
3519 * data/location.cc (initial_column, initial_line): Remove.
3520 All uses replaced by 0 and 1.
3521 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
3522 that xlc complains about.
3523 * src/scan-skel.l (skel_wrap): Likewise.
3524 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
3525 as __STDC__.
3526 * data/yacc.c (YYMODERN_C): New macro, which also looks at
3527 __STDC_VERSION__. Use it everywhere instead of looking at
3528 __STDC__ and __cplusplus.
3529
3530 2005-10-10 Akim Demaille <akim@epita.fr>
3531
3532 * examples/calc++/test: Be quiet unless VERBOSE.
3533
3534 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
3535
3536 * data/c.m4 (yydestruct, yysymprint):
3537 Use YYUSE instead of casting to void.
3538 * data/glr.c (YYUSE): New macro.
3539 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3540 Use it instead of rolling our own.
3541 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3542 (YYCHK1):
3543 Use /*CONSTCOND*/ to suppress lint warnings.
3544 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3545 (YY_STACK_PRINT): Use 'false' not '0'.
3546 (YYUSE): New macro.
3547 (yysymprint_, yydestruct_): Use it instead of rolling our own.
3548 * data/yacc.c (YYUSE): New macro.
3549 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
3550 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
3551 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
3552
3553
3554 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
3555 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
3556
3557 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
3558
3559 Undo the parts of the unlocked-I/O change that substituted
3560 putc or puts for printf. This might hurt performance a bit,
3561 but some people prefer the printf style.
3562 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
3563 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
3564 All uses replaced by YYFPRINTF and YYDPRINTF.
3565 * data/yacc.c: Likewise.
3566 * lib/bitset.c (bitset_print): Likewise.
3567 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
3568 putc and puts.
3569 * lib/lbitset.c (debug_lbitset): Likewise.
3570 * src/closure.c (print_firsts, print_fderives): Likewise.
3571 * src/gram.c (grammar_dump): Likewise.
3572 * src/lalr.c (look_ahead_tokens_print): Likewise.
3573 * src/output.c (escaped_output): Likewise.
3574 (user_actions_output): Break apart two printfs.
3575 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
3576 * src/reduce.c (reduce_print): Likewise.
3577 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
3578 * src/system.h: Include unlocked-io.h rathe than stdio.h.
3579
3580 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3581 Use assignments rather than casts-to-void to suppress
3582 unused-variable warnings. This pacifies 'lint'.
3583 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
3584 unused-variable warnings.
3585
3586 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3587
3588 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
3589
3590 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
3591
3592 Use unlocked I/O for a minor performance improvement on hosts like
3593 GNU/Linux and Solaris that support unlocked I/O. The basic idea
3594 is to use the gnlib unlocked-io module, and to prefer putc and
3595 puts to printf when either will work (since the latter doesn't
3596 come in an unlocked flavor).
3597 * bootstrap (gnulib_modules): Add unlocked-io.
3598 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
3599 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
3600 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
3601 and similarly for puts and putc and printf.
3602 * data/yacc.c: Likewise.
3603 * lib/bitset.c (bitset_print): Likewise.
3604 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
3605 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
3606 to printf.
3607 * lib/lbitset.c (debug_lbitset): Likewise.
3608 * src/closure.c (print_firsts, print_fderives): Likewise.
3609 * src/gram.c (grammar_dump): Likewise.
3610 * src/lalr.c (look_ahead_tokens_print): Likewise.
3611 * src/output.c (escaped_output): Likewise.
3612 (user_actions_output): Coalesce two printfs.
3613 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
3614 * src/reduce.c (reduce_print): Likewise.
3615 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
3616 * src/system.h: Include unlocked-io.h rather than stdio.h.
3617
3618 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
3619 this confuses xgettext.
3620
3621 2005-10-02 Akim Demaille <akim@epita.fr>
3622
3623 * bootstrap (gnulib_modules): Add strverscmp.
3624 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
3625 * m4/.cvsignore: Add strverscmp.m4.
3626 * src/parse-gram.y (%require): New token, new rule.
3627 (version_check): New.
3628 * src/scan-gram.l (%require): Adjust.
3629 * tests/input.at (AT_REQUIRE): New.
3630 Use it.
3631 * doc/bison.texinfo (Require Decl): New.
3632 (Calc++ Parser): Use %require.
3633
3634 2005-10-02 Akim Demaille <akim@epita.fr>
3635
3636 * data/location.cc: New.
3637
3638 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
3639 Akim Demaille <akim@epita.fr>
3640
3641 Make sure -odir/foo.cc creates dir/location.hh etc.
3642 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
3643 (spec_file_prefix, spec_verbose_file, spec_graph_file)
3644 (spec_defines_file): Now const.
3645 (dir_prefix): New.
3646 (short_base_name): Remove.
3647 * src/files.c: Adjust.
3648 (dirname.h): Include.
3649 (base_name): Don't prototype it.
3650 (finput): Remove, duplicates gram_in.
3651 (full_base_name, short_base_name): Replace by...
3652 (all_but_ext, all_but_tab_ext): these.
3653 (compute_base_names): Rename as...
3654 (compute_file_name_parts): this.
3655 Update to compute the new variables, including dir_prefix.
3656 Adjust dependencies.
3657 * src/output.c (prepare): Output them.
3658 * src/reader.c: Adjust to use gram_in, not finput.
3659 * src/scan-skel.l (@dir_prefix@): New.
3660
3661 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3662
3663 * lib/subpipe.c: New function end_of_output_subpipe() added
3664 to allow support for non-posix systems. This is a no-op function
3665 for posix systems.
3666
3667 * lib/subpipe.h: New function end_of_output_subpipe() added
3668 to allow support for non-posix systems. This is a no-op function
3669 for posix systems.
3670
3671 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
3672 handle the lack of pipe/fork functionality on non-posix systems.
3673
3674 * djgpp/Makefile.maint: DJGPP specific file.
3675
3676 * djgpp/README.in: DJGPP specific file.
3677
3678 * djgpp/config.bat: DJGPP specific configuration file.
3679
3680 * djgpp/config.sed: DJGPP specific configuration file.
3681
3682 * djgpp/config.site: DJGPP specific configuration file.
3683
3684 * djgpp/config_h.sed: DJGPP specific configuration file.
3685
3686 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
3687
3688 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
3689
3690 2005-10-02 Akim Demaille <akim@epita.fr>
3691
3692 * data/location.cc: New, extract from...
3693 * data/lalr1.cc: here.
3694 (location.hh): Include it after the user prologue, in case the
3695 filename type is defined by the user.
3696 Forward declation location and position before the pre-prologue.
3697 (yyresult_): Rename as...
3698 (yyresult): this, it's a local variable, not an attribute.
3699 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
3700
3701 2005-10-01 Akim Demaille <akim@epita.fr>
3702
3703 * examples/extexi: Restore the #line generation.
3704
3705 2005-09-30 Akim Demaille <akim@epita.fr>,
3706 Alexandre Duret-Lutz <adl@gnu.org>
3707
3708 Move the token type and YYSTYPE in the parser class.
3709 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
3710 (parser::token): New, from the moved free definition of tokens.
3711 (parser::semantic_value): Now a full definition instead of an
3712 indirection to YYSTYPE.
3713 (b4_post_prologue): No longer included in the header file, but
3714 in the implementation file.
3715 * doc/bison.texi (C+ Language Interface): Update.
3716 * src/parse-gram.y: Support unary %define.
3717 * tests/actions.at: Define global_tokens_and_yystype for backward
3718 compatibility until we update the tests.
3719 * tests/calc.at: Idem.
3720 (first_line, first_column, last_line, last_column): Define for lalr1.cc
3721 to simplify the code.
3722
3723 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
3724
3725 Port to SunOS 4.1.4, which lacks strtoul and strerror.
3726 Ah, the good old days! Problem reported by Peter Klein.
3727 * bootstrap (gnulib_modules): Add strerror, strtoul.
3728 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
3729 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
3730
3731 2005-09-29 Akim Demaille <akim@epita.fr>
3732
3733 * data/c.m4 (b4_error_verbose_if): New.
3734 * data/lalr1.cc: Use it.
3735 (YYERROR_VERBOSE_IF): Remove.
3736 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
3737 parser members, replaced by...
3738 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
3739 local variables.
3740 (yysyntax_error_): Takes the state number as argument.
3741 (yyreduce_print_): Use the argument yyrule, not the former
3742 attribute yyn_.
3743
3744 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
3745
3746 * bootstrap (gnulib_modules): Add verify.
3747 * lib/.cvsignore: Add verify.h.
3748 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
3749 * src/system.h (verify): Remove.
3750 Include verify.h instead.
3751 * src/tables.c (tables_generate): Use new API for 'verify'.
3752
3753 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
3754
3755 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
3756 local variables whose names begin with 'yy'.
3757 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
3758 Trivial changes from Joel E. Denny.
3759
3760 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
3761 it itself.
3762 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
3763 don't use alloca any more.
3764
3765 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
3766 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
3767 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
3768 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
3769 to match yacc.c, to test more hosts.
3770
3771 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
3772
3773 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
3774 doesn't affect behavior.
3775 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
3776 Solaris, AIX, MSC.
3777 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
3778 This works a bit better with glibc, if user code has already included
3779 stdlib.h.
3780 * doc/bison.texinfo (Bison Parser): Document that users can't
3781 arbitrarily use malloc and free for other purposes. Document
3782 that <alloca.h> and <malloc.h> might be included.
3783 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
3784 user must declare alloca.
3785
3786 * HACKING (release): Forwarn the Translation Project about
3787 stable releses.
3788
3789 2005-09-20 Akim Demaille <akim@epita.fr>
3790
3791 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
3792
3793 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
3794
3795 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
3796 (YYSTACK_ALLOC_MAXIMUM): Use it.
3797 (yysyntax_error): New function.
3798 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
3799 multiple syntax errors are reported, and alloca is being used.
3800 Instead, reallocate buffers twice as big each time, so that
3801 we waste at most half the allocated memory. Start with a small
3802 (128-byte) buffer that will suffice in most cases anyway.
3803 Use yysyntax_error to do most of the work.
3804
3805 * doc/bison.texinfo (Error Reporting, Table of Symbols):
3806 yynerrs is the number of errors reported, not the number of
3807 errors encountered.
3808
3809 * tests/glr-regression.at (Duplicated user destructor for lookahead):
3810 Mark it as expected to fail.
3811 Cast result of malloc; problem reported by twlevo@xs4all.nl.
3812 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
3813 Don't start user-code symbols with "yy", to avoid name space problems.
3814
3815 2005-09-19 Akim Demaille <akim@epita.fr>
3816
3817 Remove the traits, failed experiment.
3818 It never proved useful, and anyway because of the current
3819 definition, it was not possible to have several specialization of
3820 this traits, making it useless.
3821 * data/lalr1.cc (yy:traits): Remove.
3822 Inline its definitions in the parser class.
3823
3824 2005-09-19 Akim Demaille <akim@epita.fr>
3825
3826 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
3827 least Mac OSX with a /usr/local install of gettext.
3828
3829 2005-09-19 Akim Demaille <akim@epita.fr>
3830
3831 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
3832 and yytoken for similarity with the other skeletons.
3833
3834 2005-09-19 Akim Demaille <akim@epita.fr>
3835
3836 * NEWS, configure.ac: update version number to 2.1a.
3837
3838 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
3839
3840 * NEWS: Version 2.1.
3841
3842 * NEWS: Remove notice of yytname change, since it was never in an
3843 official release.
3844 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
3845 diagnostic.
3846 * src/output.c (prepare): Likewise.
3847 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
3848 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
3849 is not defined. This is an awful hack, but it's enough for now.
3850 All callers changed.
3851 * tests/glr-regression-at (make_value): Args are const pointers now,
3852 to avoid GCC warning.
3853 (Duplicated user destructor for lookahead): New test. Currently
3854 skipped. It fails on my host but I'm not sure it'll always fail.
3855
3856 2005-09-16 Akim Demaille <akim@epita.fr>
3857
3858 * src/symtab.h (struct symbol): Declare the printer and destructor
3859 as const, to avoid accidental calls to free.
3860 (symbol_destructor_set, symbol_printer_set): Adjust.
3861 * src/symtab.c: Adjust.
3862
3863 2005-09-16 Akim Demaille <akim@epita.fr>
3864
3865 * data/c.m4 (b4_token_enums): New.
3866 (b4_token_defines): Rename as...
3867 (b4_token_enums_defines): this.
3868 (b4_token_defines): New, output only the #defines.
3869 * data/yacc.c, data/glr.c: Adjust.
3870 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
3871 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
3872 as default values.
3873
3874 2005-09-16 Akim Demaille <akim@epita.fr>
3875
3876 * data/lalr1.cc (yylex_): Remove, inline its code.
3877 (yyreport_syntax_error_): Remove, replaced by...
3878 (yysyntax_error_): this which returns a string and leaves to the
3879 caller the call to the users' error function.
3880 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
3881 Move from members of the parser object...
3882 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
3883 to local variables of the parse function.
3884
3885 2005-09-16 Akim Demaille <akim@epita.fr>
3886
3887 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
3888 since it's in Bison's name space.
3889
3890 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
3891
3892 * data/glr.c (yyresolveValue): Add default case to pacify
3893 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
3894
3895 * NEWS: Document when yyparse started to return 2.
3896 * doc/bison.texinfo (Parser Function): Document when yyparse
3897 returns 2.
3898
3899 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
3900 (b4_filename_type): Renamed back from b4_file_name_type. All uses
3901 changed.
3902 (class position): file_name -> filename (reverting). All uses changed.
3903
3904 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
3905
3906 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
3907 do anything if $@ exists. This reverts part of the 2005-07-07
3908 patch.
3909
3910 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
3911
3912 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
3913 contains obsolete information and isn't worth distributing as a
3914 separate file anyway.
3915 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
3916 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
3917 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
3918 (yyparse): Abort if user code uses longjmp to throw an unexpected
3919 value.
3920
3921 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
3922
3923 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
3924 Suggested by twlevo@xs4all.nl.
3925
3926 * data/glr.c (YYCHK1): Do not assume YYE is in range.
3927 This avoids a diagnostic from gcc -Wswitch-enum.
3928 Problem reported by twlevo@xs4all.nl.
3929
3930 * doc/bison.texinfo: Don't use "filename", as per GNU coding
3931 standards. Use "file name" or "file" or "name", depending on
3932 the context.
3933 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
3934 not to hack/foo.tab.c.
3935 (Calc++ Top Level): 2nd arg of main is not const.
3936 * data/glr.c: b4_filename -> b4_file_name.
3937 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
3938 All uses changed.
3939 (class position): filename -> file_name. All uses changed.
3940 * data/yacc.c: b4_filename -> b4_file_name.
3941 * lib/bitset.h: filename -> file_name in local vars.
3942 * lib/bitset_stats.c: Likewise.
3943 * src/files.c: Likewise.
3944 * src/scan-skel.l ("@output ".*\n): Likewise.
3945 * src/files.c (file_name_split): Renamed from filename_split.
3946 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
3947
3948 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
3949
3950 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
3951 to accommodate latest gnulib.
3952
3953 * tests/glr-regression.at (Duplicate representation of merged trees):
3954 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
3955
3956 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
3957 needed.
3958
3959 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
3960
3961 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
3962 All uses changed. Invoke user destructor after an error during a
3963 split parse (trivial change from Joel E. Denny).
3964
3965 * tests/glr-regression.at
3966 (User destructor after an error during a split parse): New test case.
3967 Problem reported by Joel E. Denny in:
3968 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
3969
3970 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
3971
3972 * README-cvs: Give URLs for recommended tools.
3973 Mention Gzip version problem, and bootstrapping issues.
3974 Remove troubleshooting section, as it's somewhat obsolete.
3975
3976 * bootstrap (no_cache): New var, to accommodate different wget
3977 variants. Use it instead of '-C off'. Problem reported by
3978 twlevo@xs4all.nl.
3979
3980 * data/glr.c (yydestroyStackItem): New function.
3981 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
3982 debugging information. Problem reported by Joel E. Denny.
3983
3984 2005-08-25 Akim Demaille <akim@epita.fr>
3985
3986 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
3987
3988 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
3989
3990 * data/glr.c (yyrecoverSyntaxError, yyreturn):
3991 Don't invoke destructor on unresolved entries.
3992 * tests/glr-regression.at
3993 (User destructor for unresolved GLR semantic value): New test case.
3994 Problem reported by Joel E. Denny in:
3995 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
3996
3997 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
3998
3999 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
4000 Add strnlen.c.
4001 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
4002 lib-prefix.m4, po.m4.
4003
4004 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
4005 in yydestruct diagnostic, since it might not be an error.
4006 Problem reported by Joel Denny near end of
4007 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
4008 * data/lalr1.cc (yyerturn): Likewise.
4009 * data/yacc.c (yyreturn): Likewise.
4010 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
4011
4012 * src/files.c: Remove obsolete FIXME comment.
4013
4014 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
4015 with the other templates, and to fix bogus run-on messages such
4016 as the one reported at the end of
4017 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
4018 All callers changed to avoid the newline.
4019 (yyprocessOneStack): Output two lines rather than one, to accommodate
4020 the above change. This changes the debug output format slightly.
4021
4022 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
4023 reported by Joel E. Denny in
4024 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
4025 (trivial change).
4026 * tests/glr-regression.at (Duplicate representation of merged trees):
4027 New test, from Joel E. Denny in:
4028 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
4029 * THANKS: Add Joel E. Denny.
4030
4031 * configure.ac (AC_INIT): Bump to 2.0c.
4032
4033 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
4034
4035 * NEWS: Version 2.0b.
4036
4037 * Makefile.am (SUBDIRS): Put examples before tests, so that
4038 "make check" doesn't finish with "All 1 tests passed".
4039
4040 * tests/regression.at (Token definitions): Don't rely on
4041 AT_PARSER_CHECK for data that contains backslashes. It currently
4042 uses 'echo', and 'echo' isn't portable if its argument contains
4043 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
4044 that the byte '\0xff' is not printable in the C locale; it is,
4045 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
4046 not printable, so use '\0x81' to test.
4047
4048 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
4049 version of GCC, since the macro is used with non-GCC compilers.
4050
4051 Fix core dump reported by Pablo De Napoli in
4052 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
4053 * tests/regression.at (Invalid inputs with {}): New test.
4054 * src/parse-gram.y (token_name): Translate type before using
4055 it as an index.
4056
4057 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
4058 the user's name space. All uses changed to __attribute__
4059 ((__unused__)).
4060 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
4061 Add __attribute__ ((__noreturn__)).
4062
4063 * etc/clcommit: Remove. We weren't using it, and it failed
4064 "make maintainer-distcheck".
4065 * Makefile.maint: Merge from coreutils.
4066 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
4067 (syntax-check-rules): Change list of rules as described below.
4068 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
4069 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
4070 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
4071 (sc_trailing_space): New rules.
4072 (sc_xalloc_h_in_src): Remove.
4073 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
4074 (sc_space_tab, sc_error_exit_success, sc_changelog):
4075 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
4076 (makefile-check, po-check, author_mark_check):
4077 (makefile_path_separator_check, copyright-check):
4078 Use grep -n, to make it easier to find violations.
4079 Use CVS_LIST and CVS_LIST_EXCEPT.
4080 (header_regexp, h_re): Remove.
4081 (dd_c): New macro.
4082 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
4083 (my-distcheck): Use more-modern GCC flags.
4084 (signatures, %.asc): Remove.
4085 (rel-files, announcement): Remove signatures.
4086 Restore old updating code, even though we don't use it, so
4087 that we're the same as coreutils.
4088 (alpha, beta, major): Depend on news-date-check.
4089 Make the upload commands.
4090
4091 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
4092 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
4093 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
4094 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
4095 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
4096 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
4097 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
4098 * tests/sets.at: Likewise.
4099
4100 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
4101 we comment out the Autoconf version number.
4102 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
4103 it's error-prone and "make maintainer-distcheck" rejects it.
4104
4105 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
4106 Indent calls to "error" to pacify "make maintainer-distcheck",
4107 when the calls are not intended to be translated.
4108 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
4109
4110 * src/Makefile.am (DEFS): Use +=, to pacify
4111 "make maintainer-distcheck".
4112 (bison_SOURCES): Add scan-skel.h.
4113 (sc_tight_scope): New rule, from coreutils.
4114
4115 * src/files.c (src_extension, header_extension):
4116 Now static, not extern.
4117 * src/getargs.c (short_options): Likewise.
4118 * src/muscle_tab.c (muscle_table): Likewise.
4119 * src/parse-gram.y (current_class, current_type, current_prec):
4120 Likewise.
4121 * src/reader.c (grammar_end, previous_rule_end): Likewise.
4122 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
4123 * src/main.c (main): Cast bindtextdomain and textdomain calls to
4124 void, to avoid warning when NLS is disabled.
4125 * src/output.c: Include scan-skel.h.
4126 (scan_skel): Remove decl, since scan-skel.h does this.
4127 (output_skeleton):
4128 Indent calls to "error" to pacify "make maintainer-distcheck".
4129 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
4130 * src/reader.h (gram_end, gram_lineno): New decls to pacify
4131 "make maintainer-distcheck".
4132 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
4133 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
4134 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
4135 (skel_lex_destroy, scan_skel): Move these decls to...
4136 * src/scan-skel.h: New file.
4137 * src/uniqstr.c (uniqstr_assert):
4138 Indent calls to "error" to pacify "make maintainer-distcheck".
4139
4140 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
4141 not @VAR@.
4142
4143 * tests/torture.at: Revamp to avoid misuse of atoi that
4144 "make maintainer-distcheck" complained about.
4145
4146 * examples/extexi (message): Don't print a message more than once,
4147 and omit line-number decoration that makes Emacs compile think
4148 that informative messages are worth worrying about.
4149
4150 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
4151
4152 * configure.ac: Update version number.
4153
4154 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
4155 accidentally.
4156 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
4157 autogenerated by the maintainer.
4158 * examples/calc++/.cvsignore: Add *.yy.
4159
4160 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
4161 * lib/bitset_stats.c (bitset_stats_init): Likewise.
4162 * lib/bitsetv.c (bitsetv_alloc): Likewise.
4163
4164 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
4165
4166 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
4167 from maintainer-distcheck about casting the argument of 'free'.
4168
4169 * NEWS: Mention recent yytname changes.
4170 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
4171
4172 * bootstrap: For translations that have not yet been upgraded to
4173 the new runtime-po domain, prime the pump by extracting the
4174 relevant strings from the obsolete translations. This code can be
4175 removed once the bison-runtime domain has been translated by each
4176 team.
4177
4178 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
4179 now that token names are already quoted.
4180
4181 Fix problem reported by Anthony Heading.
4182 * data/glr.c (YYTOKEN_TABLE): New macro.
4183 (yytname): Define if YYTOKEN_TABLE.
4184 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
4185 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
4186 (YYERROR_VERBOSE): Define the same way the other skeletons do.
4187 * src/output.c (prepare_symbols): Output token_table_flag.
4188
4189 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
4190
4191 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
4192 again if the first call fails.
4193
4194 * data/glr.c (yytnamerr): New function.
4195 (yyreportSyntaxError): Use it to dequote most string literals.
4196 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
4197 with other skeletons. All uses changed.
4198 (yytnameerr_): New function.
4199 (yyreport_syntax_error): Use it to dequote most string literals.
4200 * data/yacc.c (yytnamerr): New function.
4201 (yyerrlab): Use it to decode most string literals.
4202 * doc/bison.texinfo (Decl Summary, Calling Convention):
4203 Clarify quoting convention of yytname.
4204 * src/output.c (prepare_symbols): Quote all names. This undoes
4205 the 2005-04-17 change, which is now accomplished (mostly) via
4206 changes in the parsers as described above.
4207 * tests/regression.at (Token definitions, Web2c Actions):
4208 Undo most 2005-04-17 change here, too.
4209
4210 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
4211
4212 Fix more problems reported by twlevo@xs4all.nl.
4213 * tests/cxx-type.at: Don't pipe output of ./types through sed to
4214 remove trailing spaces. This loses the exit status of ./types,
4215 and isn't needed since ./types shouldn't be emitting trailing
4216 spaces.
4217 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
4218 as the stack isn't valid in that case.
4219
4220 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
4221 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
4222 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
4223 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
4224 is used.
4225 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
4226 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
4227 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
4228 Likewise.
4229
4230 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
4231 overly-picky compilers that reject 'char *foo = "bar";'.
4232
4233 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
4234 to FILE * parameter, not to stderr. This fixes a typo introduced
4235 in the 2005-07-12 change.
4236
4237 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
4238 warnings from GCC 4.
4239
4240 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
4241 (yyglrShiftDefer, yysplitStack):
4242 Remove unused parameters b4_pure_formals. All uses changed.
4243 (yyglrShift): Remove unused parameters b4_user_formals.
4244 All uses changed.
4245 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
4246
4247 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
4248
4249 Destructor cleanups and regularization among the three skeletons.
4250 * NEWS: Document the behavior changes.
4251 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
4252 stack before failing, as the cleanup code will do it for us now.
4253 * data/lalr1.cc (yyerrlab): Likewise.
4254 * data/glr.c (yyparse): Pop everything off the stack before
4255 freeing it, so that destructors get called properly.
4256 * data/lalr1.cc (yyreturn): Likewise.
4257 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
4258 This is more consistent.
4259 * doc/bison.texinfo (Destructor Decl): Mention more reasons
4260 why destructors might be called. 1.875 -> 2.1.
4261 (Destructor Decl, Decl Summary, Table of Symbols):
4262 Some English-language cleanups for %destructor.
4263 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4264 Add output line for destructor of start symbol.
4265 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
4266 because of that same extra output line.
4267
4268 * NEWS: Document minor wording changes in diagnostics of
4269 Bison-generated parsers.
4270 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
4271 Remove unused formals. All uses changed.
4272 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
4273 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
4274 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
4275 Rename yyoverflowab to yyexhaustedlab.
4276 When memory exhaustion occurs during syntax-error reporting,
4277 report it separately rather than in a single diagnostic; this
4278 eases translation.
4279 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
4280 (Memory Exhausted): Renamed from Parser Stack Overflow.
4281 Revamp wording slightly to prefer "memory exhaustion".
4282 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
4283
4284 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
4285
4286 Add i18n support to the GLR skeleton. Partially fix the C++
4287 skeleton; a C++ expert needs to finish this. Remove debugging
4288 msgids; there's little point to having them translated, since they
4289 can be understood only by someone who can read the
4290 (English-language) source code.
4291
4292 Generate runtime-po/bison-runtime.pot automatically, so that we
4293 don't have to worry about garbage getting in that file. We'll
4294 make sure after the next official release that old msgids don't
4295 get lost. See
4296 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
4297
4298 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
4299 Now auto-generated.
4300 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
4301 Fix typos in explanations of the runtime file.
4302 * bootstrap: Change gettext keyword from YYI18N to YY_.
4303 Use standard Makefile.in.in in runtime-po, since we'll arrange
4304 for backward-compatible bison-runtime.po files in a different way.
4305 * data/glr.c (YY_): New macro, from yacc.c.
4306 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
4307 Translate messages intended for users.
4308 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
4309 the wording in the other skeletons. We don't know that the memory
4310 is virtual.
4311 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
4312 Use same method that yacc.c uses.
4313 Don't translate debugging messages.
4314 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
4315 it doesn't work (yet), and requires C++ expertise to fix.
4316 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
4317 Move defn to a more logical place, to be consistent with other
4318 skeletons.
4319 Don't translate debugging messages.
4320 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
4321 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
4322 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
4323 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
4324
4325 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
4326 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
4327 void, not int.
4328 * tests/glr-regression.at (Badly Collapsed GLR States):
4329 Likewise.
4330 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4331 yylex should return 0 at EOF rather than aborting.
4332
4333 Improve tests for stack overflow in GLR parser.
4334 Problem reported by twlevo@xs4all.nl.
4335 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
4336 All uses removed.
4337 (yyStackOverflow): Just longjmp, but with value 2 so that caller
4338 can handle the problem.
4339 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
4340 (yyparse): New local variable yyresult to record the result.
4341 Use result of setjmp to set it, rather than storing itinto
4342 struct.
4343 (yyDone): Remove label.
4344 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
4345 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
4346 if YYABORT is used).
4347 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
4348 yyparse status; put status > 1 into diagnostic.
4349 Check that status==2 works.
4350 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
4351 Use exit status 3 for failure to open (which shouldn't happen).
4352
4353 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
4354
4355 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
4356 1 on syntax error; just let yyparse do its thing.
4357 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
4358 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
4359 (Exploding the Stack Size with Alloca):
4360 (Exploding the Stack Size with Malloc):
4361 Expect exit status 2, not 1, since the parser is supposed to blow
4362 its stack. Problem reported by twlevo@xs4all.nl.
4363
4364 * data/glr.c (yyparse): Don't assume that the initial calls
4365 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
4366 Print a stack-overflow message and fail instead.
4367 Initialize the line-number information before creating the stack,
4368 so that the stack-overflow message can report line zero safely.
4369
4370 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
4371
4372 Fix problems reported by twlevo@xs4all.nl.
4373 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
4374 (yyuserMerge): Provide a default case if b4_mergers is empty.
4375 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
4376 * tests/glr-regression.at
4377 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4378 Add casts to pacify C++ compilers.
4379 * tests/glr-regression.at (Improper merging of GLR delayed action
4380 sets): Declare yylex before using it.
4381 * tests/Makefile.am (maintainer-check-g++): Fix a stray
4382 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
4383 test for valgrind; valgrind is independent of g++.
4384 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
4385 for compatibility with POSIX 1003.1-2001 (if running coreutils).
4386 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
4387 Use a destructor, so that we can expand the stack. Change
4388 YYSTYPE to char * so that we can free it. Cast result of malloc.
4389
4390 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4391
4392 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
4393 a valgrind failure. Problem reported by twlevo@xs4all.nl.
4394
4395 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
4396
4397 * PACKAGING: New file, suggested by Bruno Haible and taken from
4398 similar wording in gettext's PACKAGING file.
4399 * NEWS: Mention PACKAGING.
4400 * Makefile.am (EXTRA_DIST): Add PACKAGING.
4401
4402 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
4403
4404 * NEWS: Document recent i18n improvements.
4405 * bootstrap: Get runtime translations into runtime-po.
4406 Create runtime-po files automatically, if possible.
4407 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
4408 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
4409 does not infringe on the user's name space.
4410 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
4411 * doc/bison.texinfo (Internationalization): Revamp the English
4412 and Texinfo syntax a bit, to try to make it clearer.
4413 (Bison Options, Option Cross Key): Mention --print-localedir.
4414 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
4415 YYENABLE_NLS. Quote a bit more.
4416 * runtime-po/.cvsignore: New file.
4417 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
4418 * runtime-po/Rules-quot: Remove; now created by bootstrap.
4419 * runtime-po/quot.sed: Likewise.
4420 * runtime-po/boldquot.sed: Likewise.
4421 * runtime-po/en@quot.header: Likewise.
4422 * runtime-po/en@boldquot.header: Likewise.
4423 * runtime-po/insert-header.sin: Likewise.
4424 * runtime-po/remove-potcdate.sin: Likewise.
4425 * runtime-po/Makevars: Likewise.
4426 * runtime-po/LINGUAS: Likewise.
4427 * runtime-po/de.po: Likewise; we will rely on the translation project
4428 to maintain this, so "bootstrap" should get it.
4429 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
4430 its value.
4431 * src/main.c (main): Bind the bison-runtime domain, too.
4432
4433 2005-07-12 Bruno Haible <bruno@clisp.org>
4434
4435 * data/yacc.c: Include <libintl.h> when NLS is enabled.
4436 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
4437 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
4438 * runtime-po: New directory.
4439 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
4440 $(DOMAIN).pot-update rule, so that old messages are never dropped.
4441 * runtime-po/Rules-quot: New file, copied from po/.
4442 * runtime-po/quot.sed: Likewise.
4443 * runtime-po/boldquot.sed: Likewise.
4444 * runtime-po/en@quot.header: Likewise.
4445 * runtime-po/en@boldquot.header: Likewise.
4446 * runtime-po/insert-header.sin: Likewise.
4447 * runtime-po/remove-potcdate.sin: Likewise.
4448 * runtime-po/Makevars: New file.
4449 * runtime-po/POTFILES.in: New file.
4450 * runtime-po/LINGUAS: New file.
4451 * runtime-po/bison-runtime.pot: New file.
4452 * runtime-po/de.po: New file.
4453 * m4/bison.m4: New file.
4454 * Makefile.am (SUBDIRS): Add runtime-po.
4455 (aclocaldir, aclocal_DATA): New variables.
4456 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
4457 Define aclocaldir.
4458 * src/getargs.c (usage): Document --print-localedir option.
4459 (PRINT_LOCALEDIR_OPTION): New enum item.
4460 (long_options): Add --print-localedir option.
4461 (getargs): Handle --print-localedir option.
4462 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
4463 (Internationalization): New section.
4464
4465 2005-07-12 Akim Demaille <akim@epita.fr>
4466
4467 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
4468 for consistency with the rest of the code.
4469 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
4470 Add separators.
4471
4472 2005-07-12 Akim Demaille <akim@epita.fr>
4473
4474 * src/parse-gram.y: Use %printer instead of YYPRINT.
4475
4476 2005-07-12 Akim Demaille <akim@epita.fr>
4477
4478 * src/symtab.h, src/symtab.c (symbol_print): New.
4479 * src/symlist.h, src/symlist.c (symbol_list_print): New.
4480 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
4481
4482 2005-07-12 Akim Demaille <akim@epita.fr>
4483
4484 * data/glr.c (b4_syncline): Fix (swap) the definitions of
4485 b4_at_dollar and b4_dollar_dollar.
4486
4487 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
4488
4489 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
4490 and Pennello's paper.
4491
4492 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
4493
4494 * data/yacc.c (yyparse): Undo previous patch. Instead,
4495 set yylsp[0] and yyvsp[0] only if the initial action
4496 sets yylloc and yylval, respectively.
4497
4498 * data/yacc.c (yyparse): In the initial action, set
4499 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
4500 This avoids the use of undefined variables if the initial
4501 action does not set yylloc and/or yylval.
4502
4503 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
4504
4505 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
4506 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
4507 Remove from CVS. These files are automatically generated.
4508 * examples/extexi: Clarify that this file is now part of Bison,
4509 not GNU M4, and that it works with any POSIX-compatible Awk.
4510 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
4511 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
4512 so that we also get calc++-parser.yy. Geneate it.
4513 Use $(AWK), not gawk, since any conforming Awk will do.
4514 Put comment before action, since older 'make' can't handle comment
4515 in action.
4516 $(BUILT_SOURCES): List all built sources, not just some of them.
4517 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
4518 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
4519 $($(calc_sources_generated)): Remove unnecessary test for existence
4520 of target. (This had a shell syntax error anyway; a stray "x".)
4521 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
4522 calc++-parser.yy.
4523 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
4524
4525 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
4526 implied by the other modules.
4527
4528 2005-07-06 Akim Demaille <akim@epita.fr>
4529
4530 Bind examples/calc++ to the package.
4531 * examples/calc++/Makefile: Remove, replaced by...
4532 * examples/calc++/Makefile.am: ... this new file.
4533 * examples/calc++/test: Remove input.
4534 * examples/calc++/compile: Remove.
4535 * examples/Makefile.am: New.
4536 * configure.ac, Makefile.am: Adjust.
4537 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
4538
4539 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
4540
4541 * data/glr.c (yyFail): Drastically simplify; since the format argument
4542 never had any % directives, we can simply pass it to yyerror.
4543 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
4544 be modified later, as that is the usual style in glr.c.
4545 Problems reported by Paul Hilfinger.
4546
4547 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
4548 and size overflow errors.
4549 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
4550 in case the user prolog sets feature-test macros like _GNU_SOURCE.
4551 (YYSIZEMAX): New macro.
4552 (yystpcpy): New function, taken from yacc.c.
4553 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
4554 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
4555 so that we don't have to maintain their signatures.
4556 (yyFail): Check for buffer overflow, by using vsnprintf rather
4557 than vsprintf. Allocate a bigger buffer if possible.
4558 Report an error if buffer allocation fails.
4559 (yyStackOverflow): New function.
4560 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
4561 the initialization was successful. It might fail if storage was
4562 exhausted.
4563 (yyexpandGLRStack): Add more checks for storage allocation failure.
4564 Use yyStackOverflow to report failures.
4565 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
4566 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
4567 Don't assume stack number fits in int.
4568 (yysplitStack): Check for storage allocation failure.
4569 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
4570 can print diagnostics on storage allocation failure. All callers
4571 changed.
4572 (yyresolveValue): Use yybool for boolean.
4573 (yyreportSyntaxError): Check for size-calculation overflow.
4574 This code is taken from yacc.c.
4575 (yyparse): Check for storage allocation errors when allocating
4576 the initial stack.
4577
4578 2005-07-05 Akim Demaille <akim@epita.fr>
4579
4580 Extract calc++ from the documentation.
4581 * doc/bison.texinfo (Calc++): Add the extraction marks.
4582 * examples/extexi: New, from the aborted GNU Programming 2E.
4583 Separate the different paragraph of a file with empty lines.
4584 * examples/Makefile: Use it to extract the whole calc++ example.
4585
4586 2005-06-24 Akim Demaille <akim@epita.fr>
4587
4588 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
4589 class typedefs.
4590
4591 2005-06-22 Akim Demaille <akim@epita.fr>
4592
4593 * doc/bison.texinfo (C++ Language Interface): First stab.
4594 (C++ Parsers): Remove.
4595
4596 2005-06-22 Akim Demaille <akim@epita.fr>
4597
4598 * data/lalr1.cc (yylex_): Honor %lex-param.
4599
4600 2005-06-22 Akim Demaille <akim@epita.fr>
4601
4602 Start a set of simple examples.
4603 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
4604 * examples/calc++/calc++-driver.hh,
4605 * examples/calc++/calc++-parser.yy,
4606 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
4607 * examples/calc++/compile, examples/calc++/test: New.
4608
4609 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
4610
4611 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
4612 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
4613 which stems from the 2005-05-27 patch.
4614
4615 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4616
4617 * data/glr.c: Modify treatment of unused parameters to permit use
4618 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
4619
4620 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
4621
4622 Fix infringement on user name space reported by Janos Zoltan Szabo.
4623 * data/yacc.c (yyparse): strlen -> yystrlen.
4624
4625 2005-05-30 Akim Demaille <akim@epita.fr>
4626
4627 * data/lalr1.cc (_): New.
4628 Translate the various messages.
4629
4630 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
4631
4632 Fix infringement on user name space reported by Bruno Haible.
4633 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
4634 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
4635 the user's name space.
4636 (alloca): Include <stdlib.h> to get it, if it's not built in.
4637 (YYMALLOC, YYFREE): Define only if needed.
4638 (malloc, free): Declare, but only if needed, as this infringes on
4639 the user name space.
4640
4641 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
4642
4643 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
4644 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
4645 with %d format.
4646 * lib/ebitset.c (min, max): Undef before defining.
4647 * lib/vbitset.c (min, max): Likewise.
4648 * lib/subpipe.c (create_subpipe): Save local variables in case
4649 vfork clobbers them.
4650
4651 2005-05-24 Bruno Haible <bruno@clisp.org>
4652
4653 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
4654 error message syntax used by gcc-4.0.
4655
4656 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
4657
4658 * README: Mention m4 1.4.3. Remove obsolete advice about
4659 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
4660
4661 * bootstrap: Remove workaround for problem I encountered with
4662 gettext 0.14.1; it seems to be fixed now.
4663
4664 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
4665
4666 * NEWS: Version 2.0a.
4667
4668 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
4669 the previous change.
4670
4671 Various maintainer cleanups.
4672 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
4673 conftest*, for benefit of CVS commands run at the same time as
4674 "configure". Add build-aux, since "bootstrap" now creates it and
4675 its subfiles.
4676 * Makefile.cfg (move_if_change): Remove.
4677 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
4678 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
4679 (po_repo, do-po-update, po-update, wget_files, get-targets):
4680 (config.guess-url_prefix, config.sub-url_prefix):
4681 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
4682 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
4683 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
4684 Remove.
4685 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
4686 this is now the recommended name.
4687 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
4688 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
4689 ylwrap. These files now go into build-aux.
4690 * config/move-if-change: Remove.
4691 * config/prev-version.txt: Bump from 1.75 to 2.0.
4692
4693 * bootstrap: Add stdio-safer, unistd-safer modules.
4694 Remove m4/glibc2.m4 (introduced by latest gnulib, but
4695 we don't need it).
4696 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
4697 fopen-safer.c, stdio-safer.h, unistd-safer.h.
4698 * lib/subpipe.c: Include "unistd-safer.h".
4699 (create_subpipe): Make sure all the newly-created
4700 file descriptors are > 2, so that diagnostics don't
4701 get sent down them (which might cause Bison to hang, in theory).
4702 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
4703 * src/files.c (xfopen): Use fopen_safer, not fopen.
4704
4705 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
4706 yesterday's yacc.c fix.
4707
4708 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
4709
4710 * data/glr.c, data/lalr1.cc: Update copyright date.
4711
4712 Fix a destructor bug reported by Wolfgang Spraul in
4713 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
4714 * data/yacc.c (yyabortlab): Don't call destructor, and
4715 don't set yychar to EMPTY.
4716 (yyoverflowlab): Don't call destructor.
4717 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
4718 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
4719 since we no longer output the message "discarding lookahead token
4720 end of input ()".
4721
4722 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4723
4724 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
4725 fix a small glitch in debugging output.
4726 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
4727 after YY_SYMBOL_PRINT where needed.
4728
4729 (struct yyGLRState): Add some comments.
4730 (struct yySemanticOption): Add some comments.
4731 (union yyGLRStackItem): Add comment.
4732
4733 (yymergeOptionSets): Correct this to properly perform the union,
4734 avoiding infinite reported by Michael Rosien.
4735 Update comment.
4736
4737 * tests/glr-regression.at: Add test for GLR merging error reported
4738 by M. Rosien.
4739
4740 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
4741
4742 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
4743 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
4744 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
4745 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
4746 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
4747 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
4748 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
4749 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
4750 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
4751 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
4752 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
4753 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
4754 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
4755 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
4756 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
4757 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
4758 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
4759 src/derives.h, src/files.c, src/files.h, src/getargs.c,
4760 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
4761 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
4762 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
4763 src/output.h, src/parse-gram.c, src/parse-gram.h,
4764 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
4765 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
4766 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
4767 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
4768 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
4769 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
4770 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
4771 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
4772 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
4773 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
4774 tests/reduce.at, tests/regression.at, tests/sets.at,
4775 tests/synclines.at, tests/testsuite.at, tests/torture.at:
4776 Update FSF postal mail address.
4777
4778 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
4779
4780 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
4781 Problem reported by Ralf Menzel.
4782
4783 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
4784
4785 * tests/actions.at: Test that stack overflow invokes destructors.
4786 From Marcus Holland-Moritz.
4787 * data/yacc.c (yyerrlab): Move the code that destroys the stack
4788 from here....
4789 (yyreturn): to here. That way, destructors are called properly
4790 even if the stack overflows, or the user calls YYACCEPT or
4791 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
4792 (yyoverflowlab): Destroy the lookahead.
4793
4794 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
4795
4796 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
4797
4798 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
4799
4800 * NEWS: Bison-generated C parsers no longer quote literal strings
4801 associated with tokens.
4802 * src/output.c (prepare_symbols): Don't escape strings,
4803 since users don't want to see C escapes.
4804 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
4805 in diagnostics.
4806 * tests/input.at (Torturing the Scanner): Likewise.
4807 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
4808
4809 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
4810
4811 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
4812 the data size is known to be too small and we can't increase it.
4813 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
4814
4815 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
4816
4817 * src/parse-gram.y: Include quotearg.h.
4818 (string_as_id): Quote $1 before using it as a key, since the
4819 lexer no longer quotes it for us.
4820 (string_content): Don't strip quotes, since lexer no longer
4821 quotes it for us.
4822 * src/scan-gram.l: Include quotearg.h.
4823 ("\""): Omit quote.
4824 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
4825 a key, since the rest of the lexer doesn't quote it.
4826 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
4827 * tests/regression.at (Token definitions): Check for backslashes
4828 in token strings.
4829
4830 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
4831 (YYSIZE_T): Define to unsigned long int when using an older compiler.
4832 (yyparse): Revamp code to generate long syntax error message, to
4833 make it easier to translate, and to avoid problems with arithmetic
4834 overflow. Change "virtual memory" to "memory" in diagnostic, since
4835 we don't know whether the memory is virtual.
4836
4837 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
4838
4839 * NEWS: Bison-generated C parsers now use the _ macro to
4840 translate strings.
4841 * data/yacc.c (_) [!defined _]: New macro.
4842 All English strings wrapped inside this macro.
4843 * doc/bison.texinfo (Bison Parser): Document _.
4844 * po/POTFILES.in: Include src/parse-gram.c, since it now
4845 includes translateable strings that parse-gram.y doesn't.
4846
4847 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
4848
4849 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
4850 reverting the 2004-10-11 change to this function.
4851 (symbol_check_alias_consistency): Don't call symbol_type_set
4852 if the type name is already correct.
4853 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
4854
4855 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
4856
4857 * tests/regression.at (Token definitions): Don't use a token named
4858 c, as that generates a "#define c ..." that runs afoul of buggy
4859 stdlib.h that uses the identifier c as a member of struct
4860 drand48_data. Problem reported by Horst Wente.
4861
4862 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
4863
4864 * bootstrap: Change translation URL from
4865 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
4866 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
4867 redirection glitches. Problem reported by twlevo@xs4all.nl.
4868
4869 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
4870
4871 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
4872 after operands; POSIX says this isn't portable for the c99 command.
4873
4874 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
4875
4876 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
4877 immediately if a data overrun has occurred; this may help us track
4878 down what may be a spurious failure on MacOS.
4879
4880 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
4881
4882 Respond to problems reported by twlevo@xs4all.nl.
4883
4884 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
4885
4886 * src/vcg.h: Comment fix.
4887 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
4888 (G_CMAX): Change to -1 instead of INT_MAX.
4889
4890 * data/yacc.c (yyparse): Omit spaces before #line.
4891
4892 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
4893
4894 * src/tables.c (state_number_to_vector_number): Put it inside an
4895 "#if 0", since it's not currently used. Problem reported by
4896 Roland McGrath.
4897
4898 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
4899
4900 * src/output.c (escaped_output): Renamed from
4901 escaped_file_name_output, since we now use it for symbol tags as
4902 well. All uses changed.
4903 (symbol_destructors_output, symbol_printers_output):
4904 Escape symbol tags too.
4905 Problem reported by Matyas Forstner in
4906 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
4907
4908 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
4909 not needed.
4910 * src/output.c (user_actions_output, token_definitions_output,
4911 symbol_destructors_output, symbol_printers_output): Likewise.
4912 * src/reader.c (prologue_augment): Likewise.
4913 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
4914
4915 * src/vcg.c (output_edge): Don't quote linestyle arg.
4916 Problem reported by twlevo@xs4all.nl.
4917
4918 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
4919
4920 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
4921 example, reported by Derek M Jones. Also, make the example even
4922 more outrageous, to better illustrate how bad the problem is.
4923
4924 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
4925
4926 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
4927 putsym. Typo reported by Sebastian Piping.
4928
4929 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
4930
4931 * doc/bison.texinfo (Language and Grammar): some -> same
4932 (Epilogue): int he -> in the
4933 Typos reported by Sebastian Piping via Justin Pence.
4934
4935 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
4936
4937 * tests/glr-regression.at (Improper handling of embedded actions
4938 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
4939 embedded actions and $-N in GLR parsers", work around an Autoconf bug
4940 with dollar signs in test names.
4941 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
4942 for a similar reason.
4943
4944 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
4945
4946 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
4947 wants to redefine G_VIEW.
4948
4949 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
4950
4951 * src/vcg.c (get_view_str): Remove case for normal_view.
4952 Problem reported by twlevo@xs4all.nl.
4953
4954 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
4955
4956 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
4957 Problem reported by twlevo@xs4all.nl.
4958
4959 * doc/bison.texinfo: Change @dircategory from "GNU programming
4960 tools" to "Software development". Requested by Richard Stallman
4961 via Karl Berry.
4962
4963 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
4964
4965 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
4966 Problem reported by twlevo@xs4all.nl.
4967
4968 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
4969
4970 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
4971 keyword; it's not needed with modern compilers, and it doesn't
4972 affect correctness with older compilers. Suggested by
4973 twlevo@xs4all.nl.
4974
4975 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
4976
4977 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
4978 gcc -Wswitch-default.
4979 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
4980 * data/yacc.c (yyparse): Likewise.
4981
4982 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
4983
4984 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
4985 already. Let config.h define any nonstandard values.
4986
4987 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
4988
4989 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
4990 for the benefit of slower hosts. Problem reported by
4991 Nelson H. F. Beebe.
4992
4993 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
4994
4995 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
4996 being defined and not used.
4997 * data/lalr1.cc (yyparse): Likewise.
4998 Use "if (false)" rather than "if (0)".
4999
5000 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
5001
5002 * TODO: Mention that we should allow NUL bytes in tokens.
5003
5004 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
5005
5006 * src/scan-skel.l (<<EOF>>): Don't close standard output.
5007 Problem reported by Hans Aberg.
5008
5009 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
5010
5011 * src/getargs.c (version): Happy new year; update overall
5012 program copyright date from 2004 to 2005.
5013
5014 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
5015 Problem reported by Hans Aberg.
5016 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
5017 (Output file names.): Add a test for the case when standard output
5018 is closed.
5019
5020 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
5021
5022 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
5023 to fix an oversight in the Bison 2.0 manual.
5024
5025 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
5026
5027 * NEWS: Version 2.0. Reformat the existing news items since
5028 1.875, so that related items are grouped together.
5029 * configure.ac (AC_INIT): Bump version to 2.0.
5030 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
5031
5032 * tests/torture.at (Exploding the Stack Size with Alloca): Set
5033 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
5034 otherwise, we're not testing alloca. Unfortunately there's no
5035 simple way to consult HAVE_ALLOCA here.
5036
5037 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
5038 for yymsg, too.
5039
5040 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
5041 hand. This avoids a warning about comparing int to size_t when
5042 GCC warnings are enabled.
5043
5044 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
5045
5046 * NEWS: Bison-generated parsers no longer default to using the
5047 alloca function (when available) to extend the parser stack, due
5048 to widespread problems in unchecked stack-overflow detection.
5049 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
5050 responsibility to set it to a positive value. This lets the user
5051 specify a value that is not a preprocessor constant.
5052 * data/yacc.c (YYMAXDEPTH): Likewise.
5053 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
5054 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
5055 to be a compile-time constant. However, explain the constraints on it.
5056 Also, explain the constraints on YYINITDEPTH.
5057 (Table of Symbols): Explain that alloca is no longer the default.
5058 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
5059 to 1.
5060
5061 * doc/bison.texinfo (Location Default Action): Mention that n must
5062 be zero when k is zero. Suggested by Frank Heckenbach.
5063
5064 2004-12-22 Akim Demaille <akim@epita.fr>
5065
5066 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
5067 (parser::state_type, parser::semantic_type, parser::location_type):
5068 Private, not public.
5069 (parser::parse): Return ints, not bool.
5070 Returning a bool introduces a problem: 0 corresponds to false, and
5071 it seems weird to return false on success. Returning true changes
5072 the conventions for yyparse.
5073 Alternatively we could return void and send an exception.
5074 There is no clear consensus (yet?).
5075 (state_stack, semantic_stack, location_stack): Rename as...
5076 (state_stack_type, semantic_stack_type, location_stack_type): these.
5077 Private, not public.
5078 * tests/c++.at: New.
5079 * tests/testsuite.at, tests/Makefile.am: Adjust.
5080
5081 2004-12-21 Akim Demaille <akim@epita.fr>
5082
5083 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
5084
5085 2004-12-21 Akim Demaille <akim@epita.fr>
5086
5087 Don't impose std::string for filenames.
5088
5089 * data/lalr1.cc (b4_filename_type): New.
5090 (position::filename): Use it.
5091 (parser.hh): Move the inclusion of stack.hh and location.hh below
5092 the user code, so that needed headers for the filename type can be
5093 included first.
5094 Forward declare them before the user code.
5095 * tests/Makefile.am (check-local, installcheck-local): Pass
5096 TESTSUITEFLAGS to the TESTSUITE.
5097
5098 2004-12-20 Akim Demaille <akim@epita.fr>
5099
5100 Use more STL like names: my_class instead of MyClass.
5101
5102 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
5103 (SemanticStack, SemanticType, StateStack, StateType)
5104 (TokenNumberType, Stack, Slice, Traits, Parser::location)
5105 (Parser::value): Rename as...
5106 (location_stack, location_type, rhs_number_type, semantic_stack)
5107 (semantic_type, state_stack, state_type, token_number_type, stack)
5108 (slice, traits, parser::yylloc, parser::yylval): these.
5109
5110 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
5111
5112 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
5113
5114 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
5115 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5116
5117 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
5118
5119 Remove uses of 'short int' and 'unsigned short int'. This raises
5120 some arbitrary limits. It uses more memory but nowadays that's
5121 not much of an issue.
5122
5123 This change does not affect the generated parsers; that's a different
5124 task, as some users will want to conserve memory there.
5125
5126 Ideally we should use size_t to represent all object counts, and
5127 something like ptrdiff_t to represent signed differences of object
5128 counts; but that will require more code-cleanup than I have the
5129 time to do right now.
5130
5131 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
5132 Use size_t, not int or short int, to count objects.
5133 * src/closure.c (nritemset, closure): Likewise.
5134 * src/closure.h (nritemset, closure): Likewise.
5135 * src/nullable.c (nullable_compute): Likewise.
5136 * src/print.c (print_core): Likewise.
5137 * src/print_graph.c (print_core): Likewise.
5138 * src/state.c (state_compare, state_hash): Likewise.
5139 * src/state.h (struct state): Likewise.
5140 * src/tables.c (default_goto, goto_actions): Likewise.
5141
5142 * src/gram.h (rule_number, rule): Use int, not short int.
5143 * src/output.c (prepare_rules): Likewise.
5144 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
5145 errs, reductions): Likewise.
5146 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
5147 Likewise.
5148 * src/tables.c (vector_number, tally, action_number,
5149 ACTION_NUMBER_MINIMUM): Likewise.
5150 * src/output.c (muscle_insert_short_int_table): Remove.
5151
5152 2004-12-17 Akim Demaille <akim@epita.fr>
5153
5154 * data/lalr1.cc: Extensive Doxygenation.
5155 (error_): Rename as...
5156 (error): this, since it is visible to the user.
5157 Adjust callers.
5158 (Parser::message): Now an automatic variable from...
5159 (Parser::yyreport_syntax_error_): here.
5160 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
5161 Parser::error.
5162 * tests/input.at: Escape $.
5163
5164 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
5165
5166 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
5167 Parenthesize rhs to avoid obscure problems with mistakes like
5168 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
5169 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
5170 b4_rhs_location): Likewise.
5171 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
5172 b4_rhs_location): Likewise.
5173
5174 2004-12-16 Akim Demaille <akim@epita.fr>
5175
5176 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
5177 yacc.c: be sure to stay within yycheck_.
5178 * tests/actions.at: Re-enable C++ tests.
5179
5180 2004-12-16 Akim Demaille <akim@epita.fr>
5181
5182 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
5183 real.
5184
5185 2004-12-16 Akim Demaille <akim@epita.fr>
5186
5187 Use #define to handle the %name-prefix.
5188
5189 * data/glr.c, data/yacc.c: Comment changes.
5190 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
5191 so that one can refer to yylex in the parser file, and have it
5192 renamed, as is the case with other skeletons.
5193
5194 2004-12-16 Akim Demaille <akim@epita.fr>
5195
5196 Move lalr1.cc internals into yy*.
5197
5198 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
5199 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
5200 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
5201 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
5202 (empty_, final_, terror_, errcode_, ntokens_)
5203 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
5204 (looka_, ilooka_, error_range_, nerrs_):
5205 Rename as...
5206 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
5207 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
5208 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
5209 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
5210 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
5211 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
5212 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
5213 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
5214 these.
5215
5216 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
5217
5218 Fix some problems reported by twlevo at xs4all.
5219 * src/symtab.c (symbol_new): Report an error if the input grammar
5220 contains too many symbols. This is better than calling abort() later.
5221 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
5222 (struct node, struct graph):
5223 Rename member expand to stretch. All uses changed.
5224 (struct graph): Remove member layoutalgorithm. All uses removed.
5225 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
5226 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
5227 All uses changed.
5228 (N_STRETCH): Rename from N_EXPAND. All uses changed.
5229
5230 2004-12-15 Akim Demaille <akim@epita.fr>
5231
5232 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
5233 Add more Doxygen comments.
5234 (symprint_, stack_print_, reduce_print_, destruct_, pop)
5235 (report_syntax_error_, translate_): Rename as...
5236 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
5237 (yypop_, yyreport_syntax_error_, yytranslate_): this.
5238
5239 2004-12-15 Akim Demaille <akim@epita.fr>
5240
5241 * data/lalr1.cc (lex_): Rename as...
5242 (yylex_): this.
5243 Move the trace here.
5244 Take the %name-prefix into account.
5245 Reported by Alexandre Duret-Lutz.
5246
5247 2004-12-15 Akim Demaille <akim@epita.fr>
5248
5249 Simplify the C++ parser constructor.
5250
5251 * data/lalr1.cc (debug_): Rename as...
5252 (yydebug_): so that the parser's internals are always in the yy*
5253 pseudo namespace.
5254 Adjust uses.
5255 (b4_parse_param_decl): Remove the leading comma as it is now only
5256 called as unique argument list.
5257 (Parser::Parser): Remove the constructor accepting a location and
5258 an initial debugging level.
5259 Remove from the other ctor the argument for the debugging level.
5260 (debug_level_type, debug_level, set_debug_level): New.
5261
5262 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
5263 constructor calls.
5264
5265 2004-12-15 Akim Demaille <akim@epita.fr>
5266
5267 Remove b4_root related material: failure experiment
5268 (which goal was to allow to derive from a class).
5269
5270 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
5271 definitions and uses.
5272
5273 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
5274
5275 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
5276 not 2, since it's not portable to subtract 1 from the start of an
5277 array. The new item 0 is never set or used. All uses changed.
5278
5279 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
5280 the default definition of YYLLOC_DEFAULT. Problem reported
5281 by Frank Heckenbach.
5282
5283 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
5284
5285 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
5286 the normal case and one for the error case. Just use the
5287 first one uniformly. Problem reported by Frank Heckenbach.
5288 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
5289 use exactly the same macro in both places.
5290 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
5291 so that the normal-case YYRHSLOC works for the error case too.
5292 All uses changed.
5293 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
5294 (YYLLOC_DEFAULT): Use the same macro as glr.c.
5295 * doc/bison.texinfo (Location Default Action): Don't claim that
5296 we have an array of locations. Use the same macro for both glr
5297 and lalr parsers. Mention YYRHSLOC. Mention what happens when
5298 the index is 0.
5299
5300 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
5301
5302 * HACKING: Update email addresses to send announcements to.
5303
5304 * configure.ac (AC_INIT): Bump version to 1.875f.
5305
5306 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
5307
5308 * NEWS: Version 1.875e.
5309 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
5310
5311 * src/scan-skel.l: Include "complain.h", for "fatal".
5312
5313 * src/relation.h (relation_print, relation_digraph):
5314 Relation sizes are of type relation_node, not size_t (this is
5315 merely a doc fix, since the two types are equivalent).
5316 (relation_transpose): Relation sizes are of type relation_node,
5317 not int.
5318 * src/relation.c: Likewise.
5319 (top, infinity): Now of type relation_node, not int.
5320 (traverse, relation_transpose): Use relation_node, not int.
5321
5322 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
5323 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
5324 (yyparse): Remove unused local introduced in 2004-10-25 patch.
5325
5326 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
5327 specifying whether the test should be skipped. Use it tp
5328 specify that the [%defines %skeleton "lalr1.cc"] tests currently
5329 fail on some hosts, and should be skipped.
5330
5331 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
5332
5333 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
5334 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
5335 unless otherwise specified below.
5336
5337 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
5338 to allocate kernel_base, kernel_items, kernel_size, since
5339 they needn't be initialized to 0.
5340 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
5341 * src/closure.c (new_closure): Likewise, for itemset.
5342 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
5343 * src/lalr.c (set_goto_map): Likewise, for temp_map.
5344 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
5345 (build_relations): Likewise for edge, states1, includes.
5346 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
5347 * src/reader.c (packgram): Likewise, for ritem, rules.
5348 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
5349 * src/relation.c (relation_digraph): Likewise for VERTICES.
5350 (relation_transpose): Likewise for new_R, end_R.
5351 * src/symtab.c (symbols_token_translations_init): Likewise for
5352 token_translations.
5353 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
5354 (token_actions): Likewise for yydefact, actrow, conflrow,
5355 conflict_list.
5356 (save_column): Likewise for froms[symno], tos[symno].
5357 (goto_actions): Likewise for state_count.
5358 (pack_table): Likewise for base, pos, check.
5359 (tables_generate): Likewise for width.
5360
5361 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
5362 for initial core. Just have a separate core, so we needn't worry
5363 about whether kernel_size and kernel_base are initialized.
5364
5365 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
5366 kernel_size, kernel_items): Remove unnecessary initialization.
5367 * src/conflicts.c (conflicts): Likewise.
5368 * src/derives.c (derives): Likewise.
5369 * src/muscle_tablc (muscle_insert): Likewise.
5370 * src/relation.c (relation_digraph): Likewise.
5371 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
5372 conflrow, conflict_table, conflict_list, table, check):
5373 Likewise.
5374
5375 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
5376 This is because all callers pass unsigned int.
5377 * src/closure.h (new_closure): Likewise.
5378
5379 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
5380 (build_relations): Initialize includes[i] in all cases.
5381 * src/reader.c (packgram): Always initialize rules[ruleno].prec
5382 and rules[ruleno].precsym. Initialize members in order.
5383 * src/relation.c (relation_transpose): Always initialize new_R[i]
5384 and end_R[i].
5385 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
5386
5387 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
5388 conflict_list[0] was always 0, but now it isn't initialized.
5389
5390 * src/table.c (table_grow): When conflict_table grew, the grown
5391 area wasn't cleared. Fix this.
5392
5393 * lib/.cvsignore: Add strdup.c, strdup.h.
5394 * m4/.cvsignore: Add strdup.m4.
5395
5396 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
5397
5398 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
5399 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
5400 GOTO_NUMBER_MAXIMUM, since we occasionally compute
5401 ngotos + 1 without checking for overflow.
5402 (build_relations): Use END_NODE, not -1, to denote end of edges.
5403 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
5404 build_relations): Use goto_number, not int, for goto numbers.
5405 * src/tables.c (save_column, default_goto): Likewise.
5406
5407 2004-11-23 Akim Demaille <akim@epita.fr>
5408
5409 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
5410 of #defining from yystype.
5411 Don't typedef yystype, C++ does not need it.
5412 This lets it possible to forward declare it as union.
5413
5414 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
5415
5416 * bootstrap (gnulib_modules): Add extensions.
5417 Problem reported by Jim Meyering.
5418
5419 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
5420
5421 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
5422 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
5423 src/system.h, src/tables.c: XFREE -> free, to accommodate
5424 recent change to gnulib xalloc.h.
5425 Problem reported by Jim Meyering.
5426
5427 2004-11-17 Akim Demaille <akim@epita.fr>
5428
5429 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
5430
5431 2004-11-17 Akim Demaille <akim@epita.fr>,
5432 Alexandre Duret-Lutz <adl@gnu.org>
5433
5434 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
5435 changes.
5436 (YYCDEBUG): Adjust.
5437 Use it instead of cdebug_.
5438 (Parser::debug_stream, Parser::set_debug_stream): New.
5439 (Parser::symprint_): Define cdebug_ for temporary backward
5440 compatibility.
5441 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
5442 debug_stream ().
5443
5444 2004-11-17 Akim Demaille <akim@epita.fr>
5445
5446 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
5447 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
5448 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
5449 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
5450
5451 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
5452
5453 * data/glr.c (yyloc_default): Remove; not used.
5454 Problem reported by Frank Heckenbach.
5455
5456 2004-10-25 Akim Demaille <akim@epita.fr>
5457
5458 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
5459 Introduce another definition to address simple location arrays.
5460 (yyGLRStack): New member: yyerror_range.
5461 (yyrecoverSyntaxError, yyparse): Update it.
5462 (yyrecoverSyntaxError): Use it when shifting the error token to
5463 have an accurate range, equivalent to the one computed by both
5464 yacc.c and lalr1.cc.
5465 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
5466 that column numbers start at column 0, as per GNU Coding
5467 Standards, the others tests, and the doc.
5468 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
5469 Adjust to the above change (first column is 0).
5470 And adjust the location of the "<error>", now covering the whole
5471 line.
5472
5473 2004-10-22 Akim Demaille <akim@epita.fr>
5474 and Paul Eggert <eggert@cs.ucla.edu>
5475
5476 Remove some arbitrary limits on goto numbers and relations.
5477 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
5478 initial values, since they're never used.
5479 (set_goto_map): ngotos is now unsigned, so test for overflow
5480 by seeing whether it wraps around to zero.
5481 * src/lalr.h (goto_number): Now size_t, not short int.
5482 (GOTO_NUMBER_MAXIMUM): Remove.
5483 * src/relation.c (relation_print, traverse, relation_transpose):
5484 Check for END_NODE rather than looking at sign.
5485 * src/relation.h (END_NODE): New macro.
5486 (relation_node): Now size_t, not short int.
5487
5488 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
5489
5490 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
5491 keyword, not an identifier. Problem reported by Baron Schwartz in
5492 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
5493
5494 2004-10-11 Akim Demaille <akim@epita.fr>
5495
5496 * src/symtab.c (symbol_check_alias_consistency): Also check
5497 type names, destructors, and printers.
5498 Reported by Alexandre Duret-Lutz.
5499 Recode the handling of associativity and precedence in terms
5500 of symbol_precedence_set.
5501 Accept no redeclaration at all, not even equal to the previous
5502 value.
5503 (redeclaration): New.
5504 Use it to factor redeclaration complaints.
5505 (symbol_make_alias): Don't set the type of the alias, let
5506 symbol_check_alias_consistency do it as for other features.
5507 * src/symtab.h (symbol): Add new member prec_location, and
5508 type_location.
5509 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
5510 * tests/input.at (Incompatible Aliases): New.
5511
5512 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
5513
5514 .cvsignore fixes to accommodate gnulib changes,
5515 and the practice of naming build directories "_build".
5516 * .cvsignore: Add "_*". Sort.
5517 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
5518 * m4/.cvsignore: Add "*_gl.m4".
5519
5520 2004-10-06 Akim Demaille <akim@epita.fr>
5521
5522 * src/parse-gram.y (add_param): Fix the truncation of trailing
5523 spaces.
5524
5525 2004-10-05 Akim Demaille <akim@epita.fr>
5526
5527 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
5528 whether the reducion was empty or not. This leaves room to
5529 improve the use of YYLLOC_DEFAULT in such a case.
5530 lalr1.cc is still experimental, so changing this is acceptable.
5531 And finally, there are probably not many users who changed the
5532 handling of locations in GLR, so changing is admissible too.
5533
5534 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
5535 empty reduction, set @$ to an empty location ending the previously
5536 stacked symbol.
5537 Adjust uses to make sure the code is triggered on empty
5538 reductions.
5539 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
5540 expected output: empty reductions have empty locations.
5541
5542 2004-09-29 Akim Demaille <akim@epita.fr>
5543
5544 * data/lalr1.cc: Move towards a more standard C++ coding style
5545 for templates: Class < T > -> Class<T>.
5546
5547 2004-09-29 Akim Demaille <akim@epita.fr>
5548
5549 * data/lalr1.cc: Reinstall the former ctor, for sake of
5550 compatibility, but warn it will be removed.
5551 Move towards a more standard C++ coding style (i.e., type *var ->
5552 type* var).
5553
5554 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
5555
5556 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
5557 since it's less likely to work if NULs are involved in the future.
5558
5559 2004-09-27 Akim Demaille <akim@epita.fr>
5560
5561 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
5562
5563 2004-09-27 Akim Demaille <akim@epita.fr>
5564
5565 * data/lalr1.cc (b4_parse_param_decl_1): New.
5566 (b4_parse_param_decl): Use it to have different names between attribute
5567 and argument names.
5568 (b4_cc_constructor_call): Likewise.
5569
5570 2004-09-24 Akim Demaille <akim@epita.fr>
5571
5572 * src/parse-gram.y (add_param): Strip the leading and trailing
5573 blanks from a formal argument declaration.
5574 (YY_LOCATION_PRINT): New.
5575
5576 2004-09-24 Akim Demaille <akim@epita.fr>
5577
5578 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
5579 after the location.
5580
5581 2004-09-24 Akim Demaille <akim@epita.fr>
5582
5583 * doc/bison.texinfo (Table of Symbols): Sort.
5584
5585 2004-09-21 Akim Demaille <akim@epita.fr>
5586
5587 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
5588 the useless parentheses.
5589 Suggested by Paul Eggert.
5590
5591 2004-09-20 Akim Demaille <akim@epita.fr>
5592
5593 Let the initial-action act on the look-ahead, and use it for the
5594 "initial push" (corresponding to an hypothetical beginning-of-file).
5595 And let lalr1.cc honor %initial-action.
5596
5597 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
5598 example.
5599 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
5600 (Parser::Parser): Remove the ctor that used to initialize it.
5601 (Parser::parse): Like in the other skeletons, issue the "starting
5602 parse" message before any action.
5603 Honor %initial-action.
5604 Initialize the stacks with the lookahead.
5605 * data/yacc.c: Let $$ and @$ in %initial-action designate the
5606 look-ahead.
5607 Push them in the stacks.
5608 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
5609
5610 2004-09-20 Akim Demaille <akim@epita.fr>
5611
5612 * doc/bison.texinfo (Initial Action Decl): New.
5613
5614 2004-09-20 Akim Demaille <akim@epita.fr>
5615
5616 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
5617 clearer criterion to define it.
5618 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
5619 When reducing on an empty RHS, use the latest stacked location as
5620 location.
5621 yylloc is not always available.
5622 * data/glr.c: Likewise.
5623 Also, honor initial-actions.
5624
5625 2004-09-20 Akim Demaille <akim@epita.fr>
5626
5627 * data/yacc.c (YY_LOCATION_PRINT): New.
5628 Define when we know YYLTYPE's structure, i.e., when the default
5629 YYLLOC_DEFAULT is used.
5630 * data/c.m4 (b4_yysymprint_generate): Use it.
5631 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
5632 value of the result.
5633 (error_start_): Replace with...
5634 (error_range_): this location array.
5635 This allows to replace code relying on the implementation of
5636 locations by portable code.
5637 * data/yacc.c (yylerrsp): Replace with...
5638 (yyerror_range): this.
5639 Every time a token is popped, update yyerror_range[0], to have an
5640 accurate location for the error token.
5641 * data/glr.c (YY_LOCATION_PRINT): New.
5642 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
5643 deference a pointer.
5644 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
5645 report the location in %printers.
5646
5647 * src/scan-skel.l: Instead of abort, report error messages to ease
5648 understanding skeleton scanning failures.
5649
5650 2004-09-16 Akim Demaille <akim@epita.fr>
5651
5652 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
5653 (iterator, const_iterator): these, to be more in the C++ spirit.
5654 Also, return reverse iterators so that when displaying the stack
5655 we display its bottom first.
5656 (Parser::stack_print_, Parser::reduce_print_): Match the messages
5657 from yacc.c.
5658 We should probably use vector here though.
5659
5660 2004-09-16 Akim Demaille <akim@epita.fr>
5661
5662 Have more complete shift traces.
5663
5664 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
5665 to report Shifts instead of ad hoc YYDPRINTF invocations,
5666 including for the error token.
5667 * data/lalr1.cc (symprint_): Output the location.
5668 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
5669 output the location within the %printer.
5670 Activate GLR tests, at least to make sure they compile properly.
5671 They still don't pass though.
5672 * tests/calc.at: Adjust expect verbose output, since now "Entering
5673 state..." is on a different line than the "Shifting" message.
5674
5675 2004-09-08 Akim Demaille <akim@epita.fr>
5676
5677 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
5678 Bison directive from the Bison file to the invocation of this
5679 macro, so that these directives are passed to
5680 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
5681 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
5682 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
5683 the extra Bison directives instead of the whole series.
5684 Change the grammar so that there are recoverable errors, and
5685 unrecoverable errors. Now we can have the parser give up before
5686 consuming the whole input. As a result we now can observe that
5687 the lookahead is freed when needed.
5688 Change the parser source to parse argv[1] instead of a hard coded
5689 string.
5690 Simplify yylex, and give a value and location to EOF.
5691 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
5692 passed directives already coded in the file.
5693 Add some tests to check the location of "error".
5694 For some tests, the C++ parser is correct, and not yacc.c.
5695 For other tests, they provide different, but unsatisfying, values,
5696 so keep the C++ value so that at least one parser is "correct"
5697 according to the test suite.
5698 (Actions after errors): Remove, this is subsumed by the
5699 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
5700
5701 2004-09-06 Akim Demaille <akim@epita.fr>
5702
5703 * data/lalr1.cc: Adjust the indentation of the labels.
5704 (Parser::pop): New.
5705 Use it.
5706
5707 2004-09-06 Akim Demaille <akim@epita.fr>
5708
5709 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
5710 argument, an informative message.
5711 Call YY_SYMBOL_PRINT.
5712 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
5713 * data/lalr1.cc (destruct_): Likewise.
5714 In addition, no longer depend on b4_yysymprint_generate and
5715 b4_yydestruct_generate to generate these functions, do it "by
5716 hand".
5717
5718 2004-09-03 Akim Demaille <akim@epita.fr>
5719
5720 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
5721 invoked, yydestruct the lookahead.
5722 * tests/calc.at (Calculator $1): Update the expected lengths of
5723 traces: there is an added line for the discarded lookahead.
5724 * doc/bison.texinfo (Destructor Decl): Some rewording.
5725 Define "discarded" symbols.
5726
5727 2004-09-02 Akim Demaille <akim@epita.fr>
5728
5729 * data/lalr1.cc (translate_, destruct_): No reason to be static.
5730
5731 2004-09-02 Akim Demaille <akim@epita.fr>
5732
5733 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
5734 (YYDSYMPRINTF): Rename as...
5735 (YY_SYMBOL_PRINT): this.
5736 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
5737 two.
5738 Use it instead of direct symprint_ calls.
5739 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
5740 one.
5741
5742 2004-09-02 Akim Demaille <akim@epita.fr>
5743
5744 * data/lalr1.cc (b4_yysymprint_generate): New.
5745 (symprint_): New member function, defined when YYDEBUG.
5746 Use it consistently instead of token/nterm debugging output by
5747 hand.
5748 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
5749 %printer calls to use cdebug_ when using lalr1.cc.
5750
5751 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
5752
5753 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
5754 with #ifdef YYDEBUG.
5755
5756 2004-08-26 Akim Demaille <akim@epita.fr>
5757
5758 * doc/bison.texinfo (Implementing Loops): Rename as...
5759 (Implementing Gotos/Loops): this.
5760
5761 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
5762
5763 Adjust to latest gnulib.
5764 * bootstrap (gnulib_modules): Add xalloc-die.
5765 Set LC_ALL=C so that file names sort consistently.
5766 Prefer the gnulib copies of gettext.m4, glibc21.m4,
5767 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
5768 uintmax_t.m4, ulonglong.m4.
5769 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
5770 po.m4 since we are now using _gl.m4 instead.
5771
5772 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
5773
5774 * src/scan-action.l: Remove. Scanning of semantic actions is
5775 handled in scan-gram.l.
5776
5777 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
5778
5779 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
5780
5781 * src/location.h (struct): The file member is a uniqstr.
5782 (equal_boundaries): Use UNIQSTR_EQ for comparison.
5783
5784 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
5785
5786 Fix bug with non-%union parsers that have printers or destructors,
5787 which led to a Bison core dump. Reported by Peter Fales in
5788 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
5789
5790 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
5791 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
5792 not to our own type.
5793 * src/output.c (symbol_destructors_output, symbol_printers_output):
5794 Don't assume %union.
5795 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
5796 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
5797 UNION-FLAG. All callers changed.
5798 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
5799 Use type char, not unsigned int, when declaring an array of char;
5800 this lets us remove a cast.
5801 (Printers and Destructors): Add non-%union test cases.
5802
5803 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5804
5805 * doc/bison.texinfo: Minor editorial changes, mostly to the new
5806 GLR writeups. E.g., avoid frenchspacing and the future tense,
5807 change "lookahead" to "look-ahead", and change "wrt" to "with
5808 respect to".
5809
5810 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5811
5812 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
5813 New sections, split off from the GLR Parsers section. Put the new
5814 Simple GLR Parser near the start of the GLR section, for clarity.
5815 Rewrite connective text.
5816
5817 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
5818
5819 * doc/bison.texinfo (Simple GLR Parsers): New section.
5820
5821 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5822
5823 * NEWS, TODO, doc/bison.texinfo:
5824 Use "look-ahead" instead of "lookahead", to be consistent.
5825 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
5826 while we're fixing "look-ahead".
5827 * src/conflicts.c (shift_set): Renamed from shiftset.
5828 (look_ahead_set): Renamed from lookaheadset.
5829 * src/print.c: Likewise.
5830 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
5831 name for "lookahead".
5832 (report_types, usage): Likewise.
5833 * src/getargs.h (report_look_ahead_tokens): Renamed from
5834 report_lookaheads.
5835 * src/lalr.c (compute_look_ahead_tokens): Renamed from
5836 compute_lookaheads.
5837 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
5838 (look_ahead_tokens_print): Renamed from lookaheads_print.
5839 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
5840 state_rule_lookaheads_print.
5841 * src/state.h: Likewise.
5842 (reductions.look_ahead_tokens): Renamed from lookaheads.
5843 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
5844 AT_DATA_LOOKAHEADS_GRAMMAR.
5845
5846 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
5847
5848 * README: Update location of patched M4 distribution.
5849
5850 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
5851
5852 Don't assume the C++ compiler takes the same arguments as the C compiler
5853 (trivial change).
5854 * configure.ac (O0CXXFLAGS): New var.
5855 * tests/atlocal.in (CXXFLAGS): Use it.
5856
5857 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
5858
5859 Fix some "make check" problems with C++ reported by
5860 Albert Chin-A-Young for Tru64 C++ in this thread:
5861 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
5862
5863 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
5864 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5865 Output to a .cc file for C++, not to a .c file.
5866 * tests/calc.at (AT_CHECK_CALC): Likewise.
5867 * tests/regression.at (AT_CHECK_DANCER): Likewise.
5868 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
5869
5870 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
5871
5872 * tests/calc.at, tests/actions.at: Workaround for SGI
5873 C++ compiler. (trivial change)
5874
5875 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
5876
5877 Spent a few hours checking out which prerequisite versions the
5878 current sources actually require. I went all the way back to
5879 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
5880 a seemingly endless set of combinations of versions more recent
5881 than that. The bottom line is that the current sources require
5882 fairly recent versions of the build tools, and it'll be some work
5883 to change this.
5884 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
5885 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
5886 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
5887 Add comments explaining why those particular versions are
5888 currently needed.
5889
5890 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
5891 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
5892 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
5893
5894 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
5895 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
5896
5897 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
5898
5899 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
5900 0.11.5. Suggested by Bruno Haible.
5901 * bootstrap: Remove gettext version checking.
5902
5903 * doc/bison.texinfo (Decl Summary): Also mention that %union
5904 can depend on prerequisite types. Problem reported by Tim
5905 Van Holder.
5906
5907 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
5908
5909 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
5910 * README-alpha: Don't tell people not to package this.
5911
5912 * bootstrap: Don't assume $(...) works; use `...` instead.
5913 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
5914 gettext better.
5915
5916 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
5917 put into the -d output file, and mention what to do if YYSTYPE is
5918 defined as a macro.
5919
5920 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
5921
5922 Undo change made earlier today: it caused autopoint to not bring
5923 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
5924 autopoint's.
5925
5926 * bootstrap: Check that gettext version matches what's in
5927 configure.ac. Warn users to ignore robots.txt ERROR 404.
5928 * bootstrap: Undo today's earlier change (logged below).
5929 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
5930
5931 The gettext version checking is causing more trouble than it's
5932 curing; remove it. Problem reported by Paul Hilfinger.
5933
5934 * bootstrap: Issue a warning that one can expect a message
5935 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
5936 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
5937
5938 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
5939
5940 Ensure that the C++ compiler used for testing actually works on a
5941 simple test program; if not, skip the C++-related tests. Problem
5942 reported by Vin Shelton in:
5943 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
5944
5945 * m4/cxx.m4: New file.
5946 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
5947 * tests/atlocal.in (BISON_CXX_WORKS): Add.
5948 * tests/local.at (AT_COMPILE_CXX): Use it.
5949
5950 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5951
5952 * data/glr.c (yylloc): Output this macro even if locations are not
5953 being generated, as the GLR parser needs it even in that case.
5954 Problem reported by Troy A. Johnson
5955 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
5956
5957 * configure.ac (AC_INIT): Update to 1.875e.
5958
5959 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5960
5961 * NEWS: Version 1.875d.
5962 * configure.ac (AC_INIT): Likewise.
5963 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
5964
5965 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
5966 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
5967 lalr1.cc runs afoul of the first, and the last two are no longer
5968 supported by GCC 3.4.0.
5969 * README: Mention GNU m4 1.4 or later; mention m4 patches.
5970 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
5971
5972 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
5973
5974 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
5975 unsigned int, for compatibility with latest gnulib hash module.
5976 * src/state.c (state_hash, state_hasher): Likewise.
5977 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
5978 * src/uniqstr.c (hash_uniqstr): Likewise.
5979
5980 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
5981
5982 * NEWS: Unescaped newlines are no longer allowed in char & strings.
5983
5984 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
5985 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
5986 character and string literals.
5987 (unexpected_end): New function.
5988 (unexpected_eof): Use it.
5989 (unexpected_newline): New function.
5990 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
5991 actions.
5992
5993 * NEWS: Document %expect-rr.
5994
5995 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
5996 Fix typo by replacing $1 with $option.
5997 Remove more 'intl'-related files.
5998 Don't DEFUN AM_INTL_SUBDIR twice.
5999
6000 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
6001 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
6002 strtoul.c.
6003 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
6004 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
6005 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
6006 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
6007 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
6008 * src/.cvsignore: Add *.output.
6009
6010 * src/parse-gram.y: Put copyright notice inside %{ %} so it
6011 gets copied to the output file.
6012
6013 2004-04-28 Paul Eggert <eggert@twinsun.com>
6014
6015 Get files from the gnulib and po repositories, instead of relying
6016 on them being in our CVS. Upgrade to latest versions of gnulib
6017 and Automake.
6018
6019 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
6020 * bootstrap: Bootstrap from gnulib and po repositories.
6021 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
6022 * README-cvs: Document these changes. Remove version numbers from
6023 mentions of build tools, since they change so often. Mention Flex.
6024
6025 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
6026 (gl_USE_SYSTEM_EXTENSIONS): Add.
6027 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
6028 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
6029 does this for us.
6030 (AC_ISC_POSIX): Remove; we no longer support this
6031 ancient OS, as it gets in the way of latest Autoconf & gnulib.
6032 (AC_HEADER_STDC): Remove: we now assume C89 or better.
6033 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
6034 Do not check for C89 headers, except for locale.h which is used
6035 by the Yacc library and must port to K&R hosts.
6036 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
6037 Do not check for C89 functions, except for setlocale which is
6038 used by the Yacc library.
6039 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
6040 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
6041 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
6042 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
6043 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
6044 AM_GNU_GETTEXT): Remove; now done by:
6045 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
6046 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
6047 for us.
6048
6049 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
6050 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
6051 Define to empty, as gnulib.mk will do the rest for us.
6052 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
6053 for us.
6054 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
6055 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
6056
6057 * src/files.c: Include gnulib's xstrndup.h.
6058
6059 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
6060 (REALLOC): Use xnrealloc, for likewise.
6061 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
6062 (strnlen, memrchr): Remove decls; functions no longer used.
6063 Include <stpcpy.h>.
6064
6065 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
6066 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
6067 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
6068 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
6069 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
6070 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
6071 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
6072 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
6073 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
6074 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
6075 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
6076 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6077 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
6078 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
6079 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
6080 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
6081 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
6082 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
6083 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
6084 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
6085 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
6086 Remove, as these files are now generated automatically
6087 by bootstrap or automake.
6088
6089 * po/ChangeLog: Remove: all but one entry was a duplicate
6090 of this file, and I moved that 2000-11-02 entry here.
6091
6092 * config/.cvsignore: Add Makefile, depcomp, install-sh.
6093 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
6094 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
6095 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
6096 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
6097 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
6098 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
6099 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
6100 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
6101 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
6102 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
6103 xstrndup.h.
6104 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
6105 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
6106 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
6107 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
6108 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
6109 * src/.cvsignore: Remove *_.c.
6110
6111
6112 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
6113 support it. (The latest stable gzip doesn't.)
6114
6115 2004-04-27 Paul Eggert <eggert@twinsun.com>
6116
6117 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
6118 case, as stos_ is now used by destructors due to the 2004-02-09
6119 change.
6120
6121 Remove more K&R C support.
6122 * lib/libiberty.y (PARAMS): Remove. All uses removed.
6123 * lib/subpipe.c (errno): Remove decl.
6124 Include <stdlib.h> unconditionally.
6125 (EXIT_FAILURE): Remove macro.
6126 * src/complain.c (vfprintf, strerror): Remove.
6127 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
6128 unconditionally.
6129 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
6130 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
6131 (strchr, strspn, memchr): Remove decls.
6132 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
6133 unconditionally. Do not declare perror.
6134 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
6135 unconditionally.
6136
6137 * src/complain.c (_): Remove useless defn, as system.h defines this.
6138
6139 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
6140 with latest obstack.h.
6141 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
6142 to procedure types, as obstack.h now does that for us.
6143 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
6144
6145 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
6146 so that this include file can stand alone.
6147 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
6148 does this now. Include subpipe.h first after config.h, to
6149 test whether it can stand alone.
6150
6151 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
6152 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
6153 unused declaration.
6154
6155 * tests/synclines.at (%union synch line): Put a dummy member in
6156 the union, because empty unions aren't allowed in C. Caught
6157 by GCC 3.4.0.
6158
6159 2004-04-13 Jim Meyering <jim@meyering.net>
6160
6161 * src/conflicts.c (conflicts_print): Correct format string typo:
6162 use `%%' to produce literal `%'. (trivial change)
6163
6164 2004-03-30 Paul Eggert <eggert@twinsun.com>
6165
6166 * src/getargs.c (version): Update copyright year to 2004.
6167
6168 * data/c.m4 (b4_int_type): Use 'short int' rather than
6169 'short', and similarly for 'long', 'unsigned', etc.
6170 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
6171 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
6172 yy_yypstack, yydumpstack): Likewise.
6173 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
6174 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
6175 Likewise.
6176 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
6177 yy_stack_print, yyparse): Likewise.
6178 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
6179 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
6180 * lib/bitset.c (bitset_print): Likewise.
6181 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
6182 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6183 * lib/bitsetv.c (bitsetv_dump): Likewise.
6184 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
6185 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
6186 Likewise.
6187 * src/LR0.c (allocate_itemsets): Likewise.
6188 * src/gram.h (rule_number, rule): Likewise.
6189 * src/lalr.h (goto_number): Likewise.
6190 * src/nullable.c (nullable_compute): Likewise.
6191 * src/output.c (prepare_rules): Likewise.
6192 * src/relation.c (relation_print, relation_digraph): Likewise.
6193 * src/relation.h (relation_node): Likewise.
6194 * src/state.h (state_number, transitions, errs, reductions,
6195 struct state): Likewise.
6196 * src/symtab.h (symbol_number, struct symbol): Likewise.
6197 * src/tables.c (vector_number, tally, action_number,
6198 default_goto, goto_actions): Likewise.
6199 * tests/existing.at (GNU Cim Grammar): Likewise.
6200 * tests/regression.at (Web2c Actions): Likewise.
6201
6202 * src/output.c (muscle_insert_short_int_table): Renamed from
6203 muscle_insert_short_table. All uses changed.
6204
6205 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6206
6207 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
6208 (declaration): Replace expected_conflicts with expected_sr_conflicts.
6209 Add %expect-rr rule.
6210
6211 * src/scan-gram.l: Recognize %expect-rr.
6212
6213 * src/conflicts.h (expected_sr_conflicts): Rename from
6214 expected_conflicts.
6215 (expected_rr_conflicts): Declare.
6216
6217 * src/conflicts.c (expected_sr_conflicts): Rename from
6218 expected_conflicts.
6219 (expected_rr_conflicts): Define.
6220 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
6221 for GLR parsers.
6222 Use expected_sr_conflicts in place of expected_conflicts.
6223 Warn if expected_rr_conflicts used in non-GLR parser.
6224
6225 * doc/bison.texinfo: Add documentation for %expect-rr.
6226
6227 2004-03-08 Paul Eggert <eggert@gnu.org>
6228
6229 Add support for hex token numbers. Suggested by Odd Arild Olsen in
6230 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
6231
6232 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
6233 in lalr1.cc.
6234 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
6235 * src/scan-gram.l (scan_integer): New function.
6236 ({int}): Use it.
6237 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
6238 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
6239 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
6240 Say "long int", not "long", for uniformity with GNU style.
6241
6242 2004-02-25 Paul Eggert <eggert@twinsun.com>
6243
6244 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
6245 compilers. This fixes a problem with Intel's C++ compiler being
6246 chatty, reported by Guido Trentalancia in
6247 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
6248
6249 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
6250
6251 Support %destructor and merge error locations in lalr1.cc.
6252
6253 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
6254 (Parser::stos_): Define unconditionally.
6255 (Parser::destruct_): New method. Generate its body with
6256 b4_yydestruct_generate.
6257 (Parser::error_start_): New attribute.
6258 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
6259 token which are discarded.
6260 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
6261 error_start_ when erroneous token are discarded.
6262 (Parser::parse) <yyerrlab1>: Compute the location of the error
6263 token so that it covers all the discarded tokens.
6264 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
6265 it can be called with `%skeleton "lalr1.cc"', and do that.
6266
6267 2004-02-02 Paul Eggert <eggert@twinsun.com>
6268
6269 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
6270 $(top_srcdir)/lib and ../lib. This fixes a bug reported
6271 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
6272 There's no need to mention top_builddir since Automake does that
6273 for us.
6274 (INCLUDES): Remove, as Automake says it's obsolescent.
6275 Contents migrated into AM_CPPFLAGS as described above.
6276 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
6277
6278 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
6279
6280 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
6281 (yyreportSyntaxError): Handle case where lookahead token is
6282 YYEMPTY.
6283
6284 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6285
6286 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
6287 resulting parsers are compilable with C++.
6288
6289 2003-12-23 Paul Eggert <eggert@twinsun.com>
6290
6291 * config/depcomp, config/install-sh: Sync with Automake 1.8.
6292 * src/output.c (output_skeleton): Rename local var.
6293 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
6294 Bison tokens, as this runs afoul of the 2003-10-07 change that
6295 disallowed NUL bytes in character constants or string literals.
6296
6297 * tests/local.at: Require Autoconf 2.59's Autotest.
6298 * tests/testsuite.at: Don't include local.at, since we now assume
6299 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
6300 including it.
6301 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
6302 multiple inclusion warnings.
6303
6304 2003-12-02 Akim Demaille <akim@epita.fr>
6305
6306 * doc/bison.texinfo (How Can I Reset the Parser): More about start
6307 conditions.
6308 From Bruno Haible.
6309
6310 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
6311
6312 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
6313
6314 2003-10-07 Paul Eggert <eggert@twinsun.com>
6315
6316 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
6317 if testsuite doesn't exist.
6318
6319 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
6320 literals, unfortunately.
6321 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
6322 Complain about NUL bytes in character constants or string literals.
6323
6324 2003-10-05 Paul Eggert <eggert@twinsun.com>
6325
6326 * NEWS: Don't document %no-default-prec, as it's still
6327 too experimental.
6328 * doc/bison.texinfo: Document %no-default-prec only if
6329 the defaultprec flag is set. Normally it's not.
6330
6331 2003-10-04 Paul Eggert <eggert@twinsun.com>
6332
6333 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
6334 non-modifiable lvalue, instead of a modifiable one.
6335 * doc/bison.texinfo (Actions): Document that $$ can
6336 be assigned to. Do not claim that $$ and $N are
6337 array element references: user code should not rely on this.
6338
6339 2003-10-01 Paul Eggert <eggert@twinsun.com>
6340
6341 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
6342 (grammar_declaration): Use it.
6343 * src/scan-gram.l: New token %no-default-prec.
6344 * tests/conflicts.at: Revamp tests to use %no-default-prec.
6345 * NEWS, doc/bison.texinfo: Document the above.
6346
6347 2003-10-01 Akim Demaille <akim@epita.fr>
6348
6349 VCG no longer supports long_straight_phase.
6350
6351 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
6352 * src/print_graph.c (print_graph): Adjust.
6353
6354 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
6355 and Paul Eggert <eggert@twinsun.com>
6356
6357 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
6358 Table of Symbols): Document %default-prec.
6359 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
6360 (grammar_declaration): Set default_prec on %default-prec.
6361 * src/scan-gram.l (%default-prec): New token.
6362 * src/reader.h (default_prec): New flag.
6363 * src/reader.c: Likewise.
6364 (packgram): Handle it.
6365 * tests/conflicts.at (%default-prec without %prec,
6366 %default-prec with %prec, %default-prec 1): New tests.
6367
6368 2003-09-30 Paul Eggert <eggert@twinsun.com>
6369
6370 * tests/testsuite.at: Include local.at, not input.at, fixing
6371 a typo in the 2003-08-25 patch.
6372
6373 2003-08-27 Akim Demaille <akim@epita.fr>
6374
6375 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
6376 GCC warnings.
6377
6378 2003-08-26 Akim Demaille <akim@epita.fr>
6379
6380 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
6381 "<\#" to avoid magic from Gnus when posting parts of this script.
6382
6383 2003-08-26 Akim Demaille <akim@epita.fr>
6384
6385 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
6386 (Parser::parse): here.
6387 Adjust: nerrs and errstatus is now replaced by...
6388 (Parser::nerrs_, Parser::errstatus_): New.
6389
6390 2003-08-25 Akim Demaille <akim@epita.fr>
6391
6392 * config/announce-gen, Makefile.cfg: New.
6393 * Makefile.am: Adjust.
6394 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
6395 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
6396
6397 2003-08-25 Akim Demaille <akim@epita.fr>
6398
6399 When reducing initial empty rules, Bison parser read an initial
6400 location that is not defined. This results in garbage, and that
6401 affects Bison's own parser. Therefore we need (i) to extend Bison
6402 to support a means to initialize this location, and (ii) to use
6403 this CVS Bison to fix CVS Bison's parser.
6404
6405 * src/reader.h, reader.c (epilogue_augment): Remove, replace
6406 with...
6407 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
6408 * src/parse-gram.y: Adjust.
6409 (%initial-action): New.
6410 (%error-verbose): Since we require CVS Bison, there is no reason
6411 not to use it.
6412 * src/scan-gram.l: Adjust.
6413 * src/Makefile.am (YACC): New, to make sure we use our own parser.
6414 * data/yacc.c (yyparse): Use b4_initial_action.
6415
6416 2003-08-25 Akim Demaille <akim@epita.fr>
6417
6418 * doc/bison.texinfo: Don't promote stdout for error messages.
6419
6420 2003-08-25 Akim Demaille <akim@epita.fr>
6421
6422 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
6423 From Alexandre Duret-Lutz.
6424
6425 2003-08-25 Akim Demaille <akim@epita.fr>
6426
6427 Version 1.875c.
6428
6429 2003-08-25 Akim Demaille <akim@epita.fr>
6430
6431 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
6432 Use them.
6433
6434 2003-08-25 Akim Demaille <akim@epita.fr>
6435
6436 * data/lalr1.cc (Parser::reduce_print_): New.
6437 Use it.
6438
6439 2003-08-25 Akim Demaille <akim@epita.fr>
6440
6441 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
6442 error recovery loops. This patch is based on
6443 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
6444 Also, augment the similarity between lalr1.cc and yacc.c.
6445 Note: the locations of error recovery rules are not correct yet.
6446
6447 * data/lalr1.cc: Comment changes to augment the similarity between
6448 lalr1.cc and yacc.c.
6449 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
6450 (yyerrlab1): Remove, but where it used to be (now the bottom part of
6451 yyerrlab), when hitting EOF, pop the whole stack here instead of
6452 merely falling thru the default error handling mechanism.
6453 (yyerrorlab): New label, with the old contents of YYERROR,
6454 plus the following change: pop the stack of rhs corresponding
6455 to the production that invoked YYERROR. That is how Yacc
6456 behaves (required by POSIX).
6457 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
6458 fail.
6459
6460 2003-08-25 Akim Demaille <akim@epita.fr>
6461
6462 Tune local.at so that people can "autom4te -l autotest calc.at -o
6463 calc" for instance, to extract a sub test suite.
6464
6465 * tests/testsuite.at: Move the initialization, Autotest version
6466 requirement, and AT_TESTED invocation into...
6467 * tests/local.at: here.
6468 * tests/testsuite.at: Include it for compatibility with Autoconf
6469 2.57.
6470 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
6471 be ignore.
6472
6473 2003-08-04 Paul Eggert <eggert@twinsun.com>
6474
6475 Rework code slightly to avoid gcc -Wtraditional warnings.
6476 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
6477 The returned value is now stored in *YY0. All callers changed.
6478 * src/output.c (merge_output): Adjust to the above change.
6479
6480 2003-07-26 Paul Eggert <eggert@twinsun.com>
6481
6482 * data/glr.c (YYASSERT): New macro.
6483 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
6484 yyresolveStates, yyprocessOneStack):
6485 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
6486 Derived from a suggestion by Frank Heckenbach.
6487
6488 2003-07-25 Paul Eggert <eggert@twinsun.com>
6489
6490 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
6491 for portability to K&R C (after ansi2knr, presumably). See
6492 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
6493 by Frank Heckenbach, though I have omitted the structure-initialization
6494 part of his glr-knr.diff patch since I recall that the Portable
6495 C Compiler didn't require that change.
6496
6497 Let the user specify how to allocate and free memory.
6498 Derived from a suggestion by Frank Heckenbach in
6499 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
6500 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
6501 All uses of free, malloc, realloc changed to use these macros,
6502 and unnecessary casts removed.
6503 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
6504
6505 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
6506
6507 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
6508 use s.empty() rather than s == "" to test for empty string; see
6509 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
6510 (trivial change)
6511
6512 2003-06-25 Akim Demaille <akim@epita.fr>
6513
6514 * config/depcomp, config/install-sh: Update from masters.
6515
6516 2003-06-20 Paul Eggert <eggert@twinsun.com>
6517
6518 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
6519 and return properly parenthesized result.
6520 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
6521 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
6522 Remove unnecessary parentheses from uses.
6523 * doc/bison.texinfo (Location Default Action): Describe the
6524 conventions for parentheses.
6525
6526 2003-06-19 Paul Eggert <eggert@twinsun.com>
6527
6528 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
6529 yyreportTree): Do not assume that size_t is the same width as int,
6530 when printing sizes. Print sizes using an unsigned format.
6531 Problem reported by Frank Heckenbach in
6532 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
6533
6534 Port to Forte Developer 7 C compiler.
6535 * data/glr.c (struct YYLTYPE): If locations are not being used,
6536 declare a single dummy member, as empty structs do not conform
6537 to the C standard.
6538 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
6539 the Forte Developer 7 C compiler complains that end-of-loop
6540 code is not reached.
6541
6542 2003-06-17 Paul Eggert <eggert@twinsun.com>
6543
6544 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
6545 avoid warnings from picky compilers about redefinition of PARAMS.
6546
6547 2003-06-17 Paul Eggert <eggert@twinsun.com>
6548
6549 Version 1.875b.
6550
6551 * NEWS: Document 1.875b.
6552
6553 * lib/bbitset.h: Do not include config.h; that's the includer's job.
6554 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
6555 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
6556 Don't use 'index' in comments, as it's a builtin fn on some hosts.
6557 * lib/bitset_stats.c: Include gettext.h unconditionally, as
6558 per recent gettext manual's suggestion.
6559 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
6560 Use prototypes, not old-style definitions.
6561 * lib/lbitset.c (lbitset_unused_clear): Likewise.
6562 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
6563 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
6564 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
6565 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
6566 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
6567 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
6568 vbitset_or_and_cmp, vbitset_copy): Likewise.
6569
6570 * lib/libiberty.h: Do not include config.h; that's the includer's job.
6571 Do not include <stdlib.h>.
6572 (PARAMS): Define unconditionally for C89.
6573 (ATTRIBUTE_NORETURN): Remove.
6574 (ATTRIBUTE_UNUSED): Define unconditionally.
6575
6576 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
6577 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
6578 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
6579 * lib/vbitset.c, lib/vbitset.h: New files.
6580 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6581 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
6582 from libbitset.
6583
6584 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
6585 `How Can I Reset @code{yyparse}', since texinfo does not allow
6586 arbitrary @ in node names.
6587
6588 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
6589 shouldn't be needed according to the gettext 0.12.1 documentation
6590 but which seem to be needed anyway: codeset.m4 glibc21.m4
6591 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
6592 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
6593 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
6594
6595 * lib/.cvsignore: Add stdbool.h.
6596 * m4/.cvsignore: Add nls.m4, po.m4.
6597
6598 Upgrade to CVS gnulib.
6599 * stdbool_.h: File renamed from stdbool.h.in.
6600 * configure.ac (AM_STDBOOL_H): Invoke this instead of
6601 AC_HEADER_STDBOOL.
6602 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
6603 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
6604 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
6605 (MOSTLYCLEANFILES): New var.
6606 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
6607 (stdbool.h): New rule.
6608 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
6609 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
6610 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
6611 m4/quote.m4: Upgrade to today's gnulib.
6612
6613 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
6614 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
6615 the tests right now.
6616 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
6617 yyerror are declared before use; C99 requires this.
6618
6619 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6620
6621 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
6622 first.
6623 (yyrecoverSyntaxError): Correct the logic for setting and testing
6624 yyerrState.
6625 Correct comment on handling EOF.
6626 Allow states with only a default reduction, rather than failing
6627 (I can't quite reconstruct why these were not allowed before).
6628
6629 Fixes to avoid problem that $-N rules in GLR parsers can cause
6630 buffer overruns, corrupting state.
6631
6632 * src/output.c (prepare_rules): Output max_left_semantic_context
6633 definition.
6634 * src/reader.h (max_left_semantic_context): New variable declaration.
6635 * src/scan-gram.l (max_left_semantic_context): Define.
6636 (handle_action_dollar): Update max_left_semantic_context.
6637 * data/glr.c (YYMAXLEFT): New definition.
6638 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
6639 (yyresolveAction): Ditto.
6640
6641 Fixes to problems with location handling in GLR parsers reported by
6642 Frank Heckenbach (2003/06/05).
6643
6644 * data/glr.c (YYLTYPE): Make trivial if locations not used.
6645 (YYRHSLOC): Add parentheses, and define only if locations used.
6646 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
6647 locations not used.
6648 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
6649 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
6650
6651 * tests/cxx-type.at: Exercise location information; update tests
6652 to differentiate output with and without locations.
6653 Remove forward declarations of yylex and yyerror---caused errors
6654 because default YYLTYPE not yet defined.
6655 Change semantic actions to compute strings, rather than printing
6656 them directly (to test proper passing of semantics values). Change
6657 output to prefix notation and update test data and expected results.
6658 (yylex): Track locations.
6659 (stmtMerge): Return value rather than printing, and include arguments
6660 in value.
6661
6662 2003-06-03 Paul Eggert <eggert@twinsun.com>
6663
6664 Avoid warnings generated by GCC 2.95.4 when Bison is
6665 configured with --enable-gcc-warnings.
6666 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
6667 yy::]b4_parser_class_name[::translate_,
6668 yy::Stack::operator[] (unsigned),
6669 yy::Stack::operator[] (unsigned) const,
6670 yy::Slice::operator[] (unsigned),
6671 yy::Slice::operator[] (unsigned) const):
6672 Rename local vars to avoid warnings.
6673 * tests/glr-regression.at (Improper handling of embedded actions
6674 and $-N in GLR parsers): Remove unused local variable from yylex.
6675 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
6676 (void) as arg when not pure, since we now assume C89 when building
6677 Bison. Pacify GCC by using parameter.
6678
6679 2003-06-02 Paul Eggert <eggert@twinsun.com>
6680
6681 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
6682 yy::Location::lines, yy::Location::columns): Rename arguments
6683 to avoid shadowing; this removes a warning generated by GCC 3.3.
6684
6685 2003-06-01 Paul Eggert <eggert@twinsun.com>
6686
6687 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
6688 to g++, as GCC 3.3 complains if you do it.
6689 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
6690 everything that WARNING_CFLAGS has, except omit warnings
6691 not suitable for C++.
6692 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
6693 * tests/atlocal.in (CXXFLAGS): New var.
6694 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
6695
6696 Fix a GLR parser bug I reported in February; see
6697 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
6698 The problem was that GLR parsers did not conform to the C standard,
6699 because actions like { $1 = $2 + $3; } expanded to expressions
6700 that invoked YYFILL in separate subexpressions, and YYFILL assigned
6701 to a local variable. The C standard says that expressions
6702 like (var = f ()) + (var = f ()) have undefined behavior.
6703 Another problem was that GCC sometimes issues warnings that
6704 yyfill and its parameters are unused.
6705
6706 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
6707 as possibly unused.
6708 (yyfill): New function.
6709 (YYFILL): Use it.
6710 (yyuserAction): Change type of yynormal to bool, so that it matches
6711 the new yyfill signature. Mark it as possibly unused.
6712
6713
6714 Follow up on a bug I reported in February, where a Bison-generated
6715 parser can loop. Provide a test case and a fix for yacc.c. I
6716 don't have a fix for lalr1.cc or for glr.c, unfortunately.
6717 The original bug report is in:
6718 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
6719
6720 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
6721 macro's size was becoming unwieldy.
6722 (yyerrlab): Do not discard an empty lookahead symbol, as this
6723 might destroy garbage.
6724 (yyerrorlab): New label, with the old contents of YYERROR,
6725 plus the following change: pop the stack of rhs corresponding
6726 to the production that invoked YYERROR. That is how Yacc
6727 behaves, and POSIX requires this behavior.
6728 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
6729 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
6730 Define 'alarm' to do nothing if unistd.h is not available.
6731 Add a new rule "exp: '-' error;" to test the above change to
6732 data/yacc.c. Use 'alarm' to abort any test taking longer than
6733 10 seconds, as it's probably looping.
6734 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
6735 Also, the new yacc.c generates two fewer diagnostics for an
6736 existing test.
6737
6738 2003-05-24 Paul Eggert <eggert@twinsun.com>
6739
6740 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
6741 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
6742 This fixes a problem reported by John Bowman when the Compaq/HP
6743 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
6744 -ansi -Wall -gall).
6745 * data/yacc.c (union yyalloc): Likewise.
6746 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
6747
6748 Switch from 'int' to 'bool' where that makes sense.
6749
6750 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
6751 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
6752 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
6753 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
6754 Return or accept bool, not int. All callers changed.
6755 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
6756 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
6757 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
6758 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
6759 bitset_or_and_cmp_): Likewise.
6760 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
6761 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
6762 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
6763 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
6764 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
6765 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
6766 bitset_stats_or_and_cmp): Likewise.
6767 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
6768 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
6769 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
6770 ebitset_xor_cmp): Likewise.
6771 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
6772 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
6773 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
6774 lbitset_xor_cmp): Likewise.
6775 * lib/bbitset.h: Include <stdbool.h>.
6776 (struct bitset_vtable): The following members now return bool, not
6777 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
6778 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
6779 or_and_cmp).
6780 * src/conflicts.c (count_rr_conflicts): Likewise.
6781 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
6782 All uses changed.
6783 * lib/ebitset.c (ebitset_obstack_init): Likewise.
6784 * lib/lbitset.c (lbitset_obstack_init): Likewise.
6785 * src/getargs.c (debug_flag, defines_flag, locations_flag,
6786 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6787 graph_flag): Likewise.
6788 * src/getargs.h (debug_flag, defines_flag, locations_flag,
6789 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6790 graph_flag): Likewise.
6791 * src/output.c (error_verbose): Likewise.
6792 * src/output.h (error_verbose): Likewise.
6793 * src/reader.c (start_flag, typed): Likewise.
6794 * src/reader.h (typed): Likewise.
6795 * src/getargs.c (LOCATIONS_OPTION): New constant.
6796 (long_options, getargs): Use it.
6797 * src/lalr.c (build_relations): Use bool, not int.
6798 * src/nullable.c (nullable_compute): Likewise.
6799 * src/print.c (print_reductions): Likewise.
6800 * src/tables.c (action_row, pack_vector): Likewise.
6801 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
6802 * src/output.c (prepare): Use it.
6803 * src/output.c (token_definitions_output,
6804 symbol_destructors_output, symbol_destructors_output): Use string,
6805 not boolean integer, to keep track of whether to output separator.
6806 * src/print_graph.c (print_core): Likewise.
6807 * src/state.c (state_rule_lookaheads_print): Likewise.
6808
6809 * config/install-sh: Sync from automake 1.7.5.
6810
6811 2003-05-14 Paul Eggert <eggert@twinsun.com>
6812
6813 * src/parse-gram.y (rules_or_grammar_declaration): Require a
6814 semicolon after a grammar declaration, in the interest of possible
6815 future changes to the Bison input language.
6816 Do not allow a stray semicolon at the start of the grammar.
6817 (rhses.1): Allow one or more semicolons after any rule, including
6818 just before "|" as required by POSIX.
6819 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
6820 grammar.
6821
6822 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
6823
6824 %parse-param support for lalr1.cc.
6825
6826 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
6827 b4_cc_constructor_calls, b4_cc_constructor_call,
6828 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
6829 definitions.
6830 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
6831 parse-param arguments.
6832 (yy::b4_parser_class_name): Declare instance variables to
6833 hold parse-param arguments.
6834 * tests/calc.at: s/value/semantic_value/ because value clashes
6835 with a member of yy::b4_parser_class_name. Adjust C++ code
6836 to handle %parse-param. Enable %parse-param test in C++.
6837
6838 2003-05-12 Paul Eggert <eggert@twinsun.com>
6839
6840 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
6841 English a bit. Fix fclose typo. Change "const char" to "char
6842 const", and use ANSI C rather than K&R for "main". Suggest
6843 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
6844 and suggest yy_switch_to_buffer.
6845
6846 2003-05-05 Paul Eggert <eggert@twinsun.com>
6847
6848 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
6849 C89. This avoids a diagnostic on compilers that define __STDC__
6850 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
6851 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
6852
6853 2003-05-03 Paul Eggert <eggert@twinsun.com>
6854
6855 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
6856 Do not overrun array bounds.
6857 This should fix a bug reported today by Olatunji Oluwabukunmi in
6858 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
6859
6860 2003-04-29 Akim Demaille <akim@epita.fr>
6861
6862 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
6863 * src/getargs.c, src/getargs.h: here, as bool, not int.
6864 (nondeterministic_parser): New.
6865 * src/parse-gram.y, src/scan-gram.l: Support
6866 %nondeterministic-parser.
6867 * src/output.c (prepare): Use nondeterministic_parser instead
6868 of glr_parser where appropriate.
6869 * src/tables.c (conflict_row, action_row, save_row)
6870 (token_actions, token_actions, pack_vector): Ditto.
6871
6872 2003-04-29 Akim Demaille <akim@epita.fr>
6873
6874 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
6875
6876 2003-04-29 Akim Demaille <akim@epita.fr>
6877
6878 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
6879 with %pure-parser and %locations to exercise the patch from Yakov
6880 Markovitch below.
6881
6882 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
6883
6884 * data/yacc.c: (b4_lex_param): Corrected for the case where
6885 %lex-param is provided and %pure-parser isn't.
6886
6887 2003-04-27 Paul Eggert <eggert@twinsun.com>
6888
6889 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
6890 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
6891 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
6892 if it is not defined.
6893 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
6894
6895 2003-04-26 Paul Eggert <eggert@twinsun.com>
6896
6897 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
6898 Declare to be of type suitable for the ninf value itself, not of
6899 type suitable for the corresponding table, since the latter might
6900 be unsigned but the ninf value might be negative. This fixes a
6901 bug reported by Alexandre Duret-Lutz in
6902 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
6903
6904 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
6905 invokes it. We shouldn't invoke it twice because it will attempt
6906 to put error.o in the archive twice. This fixes a glitch reported
6907 by Martin Mokrejs in
6908 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
6909
6910 2003-04-21 Paul Eggert <eggert@twinsun.com>
6911
6912 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
6913 to gnulib.
6914
6915 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
6916
6917 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
6918 Fix obvious typo that results in uncompilable GLR parsers
6919 when both %pure-parser and %locations are used. (trivial change)
6920
6921 2003-04-17 Paul Eggert <eggert@twinsun.com>
6922
6923 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
6924 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
6925 Do not insert the expected token via unput, as this runs afoul
6926 of a POSIX-compatibility bug in flex 2.5.31.
6927 All uses changed to BEGIN the parent state,
6928 since we no longer insert the expected token via unput.
6929 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
6930 that is no longer emitted after the above change.
6931
6932 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
6933 the first one. This change is from Paul Hilfinger, and it fixes
6934 regression reported by Werner Lemberg in
6935 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
6936
6937 (resolve_sr_conflict): Don't invoke state_errs_set
6938 unless one or more tokens have been explicitly made errors.
6939 Otherwise, the above change causes Bison to abort.
6940
6941 * tests/existing.at (GNU pic Grammar): New test case, taken from
6942 Lemberg's email.
6943
6944 2003-03-31 Akim Demaille <akim@epita.fr>
6945
6946 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
6947
6948 2003-03-31 Akim Demaille <akim@epita.fr>
6949
6950 * src/output.c (prepare_symbols): Avoid trailing spaces in the
6951 output.
6952
6953 2003-03-31 Akim Demaille <akim@epita.fr>
6954
6955 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
6956 From Paul Hilfinger.
6957
6958 2003-03-29 Akim Demaille <akim@epita.fr>
6959
6960 * m4/error.m4: Do not put under dynamic conditions some code which
6961 expansion is under static control.
6962
6963 2003-03-29 Akim Demaille <akim@epita.fr>
6964
6965 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
6966
6967 2003-03-29 Akim Demaille <akim@epita.fr>
6968
6969 * doc/bison.texinfo (Strings are Destroyed): New.
6970
6971 2003-03-13 Paul Eggert <eggert@twinsun.com>
6972
6973 * .cvsignore: Add configure.lineno.
6974 * src/.cvsignore: Add yacc.
6975 * tests/.cvsignore: Add testsuite.log.
6976 * doc/fdl.texi: Sync with latest FSF version.
6977
6978 2003-03-12 Paul Eggert <eggert@twinsun.com>
6979
6980 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
6981 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
6982 cursor, instead of leaving it undefined. This fixes a bug
6983 reported by Tim Van Holder in
6984 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
6985 * tests/input.at (Torturing the Scanner): Test the scanner on
6986 an empty input file, which was Tim Van Holder's test case.
6987
6988 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
6989 <sys/resource.h> can be included, include sys/time.h and
6990 sys/times.h first, if available. This works around the SunOS
6991 4.1.4 porting bug reported by Bruce Becker in
6992 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
6993
6994 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
6995 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
6996 AC_HEADER_SYS_WAIT.
6997
6998 Merge changes from gnulib. This was prompted because the CVS
6999 snapshot didn't build on Solaris 7 due to strnlen problems.
7000
7001 These changes need to be merged back into gnulib:
7002 * lib/hash.c: Include <stdbool.h> unconditionally.
7003 * m4/onceonly.m4 (m4_quote): New macro.
7004 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
7005 Quote AC_FOREACH variable-expansions properly.
7006 The 2003-01-03 obstack.h change also needs merging.
7007 {end of changes requiring merging}
7008
7009 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
7010 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
7011 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
7012 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
7013 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
7014 New files, imported from gnulib.
7015 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
7016 above.
7017
7018 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
7019 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
7020 gnulib sources.
7021
7022 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
7023 Add.
7024 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
7025 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
7026 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
7027 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
7028 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
7029 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
7030 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
7031 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
7032 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
7033 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
7034 (jm_PREREQ_ARGMATCH): Remove.
7035 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
7036 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
7037
7038 * src/system.h: Include <stdbool.h> unconditionally.
7039
7040 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
7041 assuming at least C89 in the bitset code for some time now.
7042
7043 2003-03-03 Akim Demaille <akim@epita.fr>
7044
7045 * ro.po: New.
7046
7047 2003-03-02 Akim Demaille <akim@epita.fr>
7048
7049 * doc/bison.texinfo (Table of Symbols): Reactivate the
7050 documentation for %lex-param, and %parse-param.
7051
7052 2003-03-02 Akim Demaille <akim@epita.fr>
7053
7054 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
7055 generate verbose error messages.
7056 Use the number of tokens as an upper bound in yytname, as it
7057 cannot be a non terminal.
7058
7059 2003-03-02 Akim Demaille <akim@epita.fr>
7060
7061 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
7062 message.
7063
7064 2003-03-02 Akim Demaille <akim@epita.fr>
7065
7066 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
7067 Use them to exercise yycheck overrun.
7068 Based on Andrew Suffield's grammar.
7069
7070 2003-03-02 Akim Demaille <akim@epita.fr>
7071
7072 Create tests/local.at for Bison generic testing macros.
7073
7074 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
7075 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
7076 This new file.
7077 * tests/calc.at (AT_CHECK_CALC): Adjust.
7078 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
7079 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
7080 * tests/local.at: here.
7081 (AT_COMPILE_CXX): Tags the tests using it as c++.
7082 Ignore the test if CXX is not functional.
7083
7084 2003-03-01 Paul Eggert <eggert@twinsun.com>
7085
7086 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
7087 not loc->end, since loc->end might contain garbage and this leads
7088 to undefined behavior on some platforms.
7089 (id_loc, token_start): Use (IF_LINTed) initial values that do not
7090 depend on *loc, so that the reader doesn't give the the false
7091 impression that *loc is initialized.
7092 (<INITIAL>"%%"): Do not bother setting code_start, since its value
7093 does not survive the return.
7094
7095 2003-03-01 Akim Demaille <akim@epita.fr>
7096
7097 * src/scan-gram.l (code_start): Always initialize it when entering
7098 into yylex, as SC_EPILOGUE is activated *before* the corresponding
7099 yylex invocation. An alternative would be making it static, but
7100 then it starts with the second %%'s beginning, instead of its end.
7101
7102 2003-02-28 Paul Eggert <eggert@twinsun.com>
7103
7104 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
7105 around a UnixWare 7.1.1 porting bug reported by John Hughes in
7106 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
7107
7108 2003-02-26 Paul Eggert <eggert@twinsun.com>
7109
7110 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
7111 Remove Sequent/Pyramid discussion (nobody uses them any more).
7112 Merge VMS and MS-DOS discussion; these ports may well be dead
7113 but let's keep mentioning them for now. Put <> around email
7114 addresses. Add copyright notice.
7115
7116 2003-02-24 Paul Eggert <eggert@twinsun.com>
7117
7118 * data/glr.c (yy_reduce_print): yylineno -> yylno,
7119 to avoid collision with flex use of yylineno.
7120 Problem reported by Bruce Lilly in
7121 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
7122 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
7123 * data/yacc.c (yy_reduce_print): Likewise.
7124
7125 * config/depcomp: Sync with Automake 1.7.3.
7126
7127 2003-02-21 Akim Demaille <akim@epita.fr>
7128
7129 * data/lalr1.cc: Use temporary variables instead of casts to
7130 change integer types.
7131 Suggested by Paul Eggert.
7132
7133 2003-02-21 Akim Demaille <akim@epita.fr>
7134
7135 * doc/bison.texinfo: Use "location" consistently to refer to @n,
7136 to avoid confusions with lalr1.cc's notion of Position.
7137 Suggested by Paul Eggert.
7138
7139 2003-02-20 Akim Demaille <akim@epita.fr>
7140
7141 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
7142 before initial_columns.
7143 (location.hh): Use consistent variable names when defining the
7144 operator<<.
7145 Use "last" so that we subtract from Positions, not from unsigned.
7146
7147 2003-02-20 Akim Demaille <akim@epita.fr>
7148
7149 * data/lalr1.cc (position.hh): New subfile, including the extended
7150 and Doxygen'ed documentation of class Position.
7151 (location.hh): Use it.
7152 Document a` la Doxygen.
7153 With the help of Benoit Perrot.
7154
7155 2003-02-20 Akim Demaille <akim@epita.fr>
7156
7157 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
7158 AT_YACC_IF.
7159 Redefine AT_YYERROR_SEES_LOC_IF using it.
7160 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
7161 not defined.
7162 Don't use the location in yy::Parser::error_ and
7163 yy::Parser::print_ when not %locations.
7164 Activate more lalr1.cc tests.
7165
7166 2003-02-19 Akim Demaille <akim@epita.fr>
7167
7168 * data/lalr1.cc: When displaying a line number, be sure to make it
7169 an int.
7170
7171 2003-02-19 Akim Demaille <akim@epita.fr>
7172
7173 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
7174 Remove, useless.
7175 (YYABORT, YYACCEPT, YYERROR): New.
7176 * tests/calc.at: Renable the lalr1.cc test.
7177
7178 2003-02-19 Akim Demaille <akim@epita.fr>
7179
7180 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
7181 error recovery, mixing with/without pops and discarding of the
7182 lookahead.
7183 Exercise YYERROR.
7184 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
7185
7186 2003-02-17 Paul Eggert <eggert@twinsun.com>
7187
7188 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
7189 * tests/testsuite.at (AT_COMPILE): Use them.
7190 This fixes the testsuite problem reported by Robert Lentz in
7191 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
7192
7193 2003-02-12 Paul Eggert <eggert@twinsun.com>
7194
7195 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
7196 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
7197 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
7198 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
7199 Check for malloc failure, for consistency with yacc.c.
7200 (yytname_size): Remove, for consistency with yacc.c.
7201
7202 The bug still remains in data/lalr1.cc, as I didn't have time
7203 to fix it there.
7204
7205 2003-02-06 Akim Demaille <akim@epita.fr>
7206
7207 * configure.ac (GXX): Rename as...
7208 (CXX): this, to keep the original Autoconf semantics.
7209 Require 2.57.
7210 * data/lalr1.cc: Fix b4_copyright invocations.
7211 If YYDEBUG is not defined, don't depend upon name_ being defined.
7212 (location.hh): Include string and iostream.
7213 (Position::filename): New member.
7214 (Position::Position ()): New.
7215 (operator<< (Position)): New.
7216 (operator- (Position, int)): New.
7217 (Location::first, Location::last): Rename as...
7218 (Location::begin, Location::end): these, to mock the conventional
7219 iterator names.
7220 (operator<< (Location)): New.
7221 * tests/atlocal.in (CXX): New.
7222 * tests/testsuite.at (AT_COMPILE_CXX): New.
7223 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
7224 locations in a more synthetic way.
7225 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
7226 lalr1.cc is used.
7227 Adjust the C locations to match those from Emacs: first column is
7228 column 0.
7229 Change all the expected results.
7230 Conform to the GCS: simplify the locations when applicable.
7231 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
7232 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
7233 these CPP macros with the m4 macros new defined by...
7234 (AT_CHECK_PUSHDEFS): this, i.e.:
7235 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
7236 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7237 New macros.
7238 (AT_CHECK_POPDEFS): Undefine them.
7239 (AT_CHECK_CALC_LALR1_CC): New.
7240 Use it for the first lalr1.cc test.
7241
7242 2003-02-04 Akim Demaille <akim@epita.fr>
7243
7244 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
7245 Location as is defined.
7246
7247 2003-02-04 Akim Demaille <akim@epita.fr>
7248
7249 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
7250 name_ being defined.
7251
7252 2003-02-03 Paul Eggert <eggert@twinsun.com>
7253
7254 * src/gram.h (start_symbol): Remove unused decl.
7255
7256 Use more-consistent naming conventions for local vars.
7257
7258 * src/derives.c (derives_compute): Change type of local var from
7259 int to rule_number.
7260 * src/gram.c (grammar_rules_partial_print): Likewise.
7261 * src/print.c (print_core): Likewise.
7262 * src/reduce.c (reduce_grammar_tables): Likewise.
7263
7264 * src/gram.c (grammar_dump): Change name of item_number *
7265 local var from r to rp.
7266 * src/nullable.c (nullable_compute): Likewise.
7267
7268 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
7269
7270 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
7271 for symbol or symbol_number var.
7272 * src/reader.c (grammar_start_symbol_set): Likewise.
7273 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
7274 Likewise.
7275 * src/state.c (transitions_to): Likewise.
7276 * src/state.h: Likewise.
7277 * src/tables.c (symbol_number_to_vector_number): Likewise.
7278
7279 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
7280 char * var.
7281
7282 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
7283 var.
7284
7285 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
7286 var.
7287
7288 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
7289 Use str, not s, for char * var. Use ch, not c, for character var.
7290 Use size for size var.
7291
7292 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
7293 char * var.
7294 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
7295 uniqstr var.
7296 * src/uniqstr.h: Likewise.
7297
7298 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7299 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7300 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
7301 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
7302 param to have same name as that of enum, so that we don't use
7303 "s" to stand for a non-state.
7304
7305 2003-02-02 Akim Demaille <akim@epita.fr>
7306
7307 * src/scan-skel.l: Scan more than one inert character per yylex
7308 invocation.
7309
7310 2003-02-01 Paul Eggert <eggert@twinsun.com>
7311
7312 Version 1.875a.
7313
7314 * po/LINGUAS: Add ms.
7315
7316 2003-01-30 Akim Demaille <akim@epita.fr>
7317
7318 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
7319
7320 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7321
7322 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
7323 of $1.
7324
7325 Changes in response to error report by S. Eken: GLR mode does not
7326 handle negative $ indices or $ indices in embedded rules correctly.
7327 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
7328
7329 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
7330 (b4_rhs_location): Ditto.
7331 (yyfill): New function to copy from stack tree into array
7332 incrementally.
7333 (yyuserAction): Modify to allow incremental move of semantic values
7334 to rhs array when in GLR mode.
7335 Define YYFILL to use in user-defined actions to fill semantic array
7336 as needed.
7337 Remove dummy use of yystack, as there is now a guaranteed use.
7338 (yydoAction): Modify to allow incremental move of semantic values
7339 to rhs array when in GLR mode.
7340 (yyresolveAction): Ditto.
7341 (yyglrShiftDefer): Update comment.
7342 (yyresolveStates): Use X == NULL for pointers, not !X.
7343 (yyglrReduce): Ditto.
7344 (yydoAction): Ditto
7345
7346 * tests/glr-regr1.at: Rename to ...
7347 * tests/glr-regression.at: Add new regression test for the problems
7348 described above (adapted from S. Eken).
7349 Update copyright notice.
7350 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
7351 * tests/Makefile.am: Ditto.
7352
7353 2003-01-28 Paul Eggert <eggert@twinsun.com>
7354
7355 * data/lalr1.cc: Do not use @output_header_name@ unless
7356 b4_defines_flag is set. This fixes two bugs reported by
7357 Tim Van Holder in
7358 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
7359 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
7360
7361 2003-01-21 Paul Eggert <eggert@twinsun.com>
7362
7363 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
7364 we don't need to worry about yyerrlab1 being reported as an
7365 "unused label" by non-GCC C compilers. The downside is that if
7366 locations are used then a couple of statements are duplicated each
7367 time YYERROR is invoked, but the upside is that the warnings
7368 should vanish.
7369 (yyerrlab1): Move code to YERROR.
7370 (yyerrlab2): Remove. Change uses back to yyerrlab1.
7371 This reverts some of the 2002-12-27 change.
7372
7373 2003-01-17 Paul Eggert <eggert@twinsun.com>
7374
7375 * src/output.c (symbol_printers_output): Fix typo that led
7376 to core dump. Problem reported by Antonio Rus in
7377 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
7378
7379 2003-01-13 Akim Demaille <akim@epita.fr>,
7380 Quoc Peyrot <chojin@lrde.epita.fr>,
7381 Robert Anisko <anisko_r@lrde.epita.fr>
7382
7383 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
7384 when the stacks contain one element, as the loop would otherwise
7385 free the last state, and then use the top state (the one we just
7386 popped). This means that the initial elements will not be freed
7387 explicitly, as is the case in yacc.c; it is not a problem, as
7388 these elements have fake values.
7389
7390 2003-01-11 Paul Eggert <eggert@twinsun.com>
7391
7392 * NEWS: %expect-violations are now just warnings, reverting
7393 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
7394 bootstrapping problem reported by Matthias Klose; see
7395 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
7396 * src/conflicts.c (conflicts_print): Likewise.
7397 * tests/conflicts.at (%expect not enough, %expect too much,
7398 %expect with reduce conflicts): Likewise.
7399 * doc/bison.texinfo (Expect Decl): Document this. Also mention
7400 that the warning is enabled if the number of conflicts changes
7401 (not necessarily increases).
7402
7403 * src/getargs.c (version): Update copyright year.
7404
7405 2003-01-09 Akim Demaille <akim@epita.fr>
7406
7407 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
7408
7409 2003-01-08 Paul Eggert <eggert@twinsun.com>
7410
7411 * Makefile.maint (WGETFLAGS):
7412 New macro, containing "-C off" to disable proxy caches.
7413 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
7414 (rel-check): Use $(WGET) instead of wget.
7415
7416 2003-01-06 Paul Eggert <eggert@twinsun.com>
7417
7418 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
7419 the GLR paper of Scott, Johnstone and Hussain.
7420
7421 2003-01-04 Paul Eggert <eggert@twinsun.com>
7422
7423 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
7424 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
7425 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
7426 (EXTRA_LIBRARIES): New var, for liby.a.
7427 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
7428 (EXTRA_SCRIPTS): New var, for yacc.
7429
7430 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
7431 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
7432 Problem reported by Nelson H. F. Beebe.
7433
7434 2003-01-03 Paul Eggert <eggert@twinsun.com>
7435
7436 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
7437 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
7438 when compiling Bison 1.875's `bitset bset = obstack_alloc
7439 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
7440
7441 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
7442 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
7443 grow to a huge size with typical invocation.
7444
7445 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
7446 Use the pattern recommended by Autoconf 2.57, except also protect
7447 against double-definition.
7448 * src/system.h: Likewise.
7449 Portability issues reported by Nelson H. F. Beebe.
7450
7451 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
7452 All uses changed. Provide a definition in both C and C++.
7453 (yytrue, yyfalse): Define even if defined (__cplusplus).
7454
7455 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
7456 Reported by Nelson H. F. Beebe.
7457
7458 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
7459
7460 2003-01-02 Paul Eggert <eggert@twinsun.com>
7461
7462 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
7463 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
7464 Bug reported by Nelson H. F. Beebe.
7465
7466 2003-01-01 Paul Eggert <eggert@twinsun.com>
7467
7468 * Version 1.875.
7469
7470 2002-12-30 Paul Eggert <eggert@twinsun.com>
7471
7472 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
7473 Moved here from...
7474 (<INITIAL>","): Here. This causes stray "," to be treated
7475 more uniformly.
7476
7477 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
7478 last brace in braced code when not in Yacc mode, for compatibility
7479 with Bison 1.35. This resurrects the 2001-12-15 patch to
7480 src/reader.c.
7481
7482 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
7483 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
7484
7485 2002-12-28 Paul Eggert <eggert@twinsun.com>
7486
7487 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
7488 that of SYM's type. This fixes Debian bug 168069, reported by
7489 Thomas Olsson.
7490
7491 2002-12-28 Paul Eggert <eggert@twinsun.com>
7492
7493 Version 1.75f.
7494
7495 Switch back to the Yacc style of conflict reports, undoing some
7496 of the 2002-07-30 change.
7497 * doc/bison.texinfo (Understanding): Use Yacc style for
7498 conflict reports. Also, use new way of locating rules.
7499 * src/conflicts.c (conflict_report):
7500 Renamed from conflict_report_yacc, removing the old
7501 'conflict_report'. Translate the entire conflict report at once,
7502 so that we don't assume that "," has the same interpretation in
7503 all languages.
7504 (conflicts_output): Use Yacc-style conflict report for each state,
7505 instead of our more-complicated style.
7506 (conflicts_print): Use Yacc-style conflict report, except print
7507 the input file name when not emulating Yacc.
7508 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
7509 Conflicted Reduction, %expect not enough, %expect too much,
7510 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
7511 * tests/existing.at (GNU Cim Grammar): Likewise.
7512 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
7513
7514 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
7515 fatal): Don't invoke fflush; it's not needed and it might even be
7516 harmful for stdout, as stdout might not be open.
7517 * src/reduce.c (reduce_print): Likewise.
7518
7519 2002-12-27 Paul Eggert <eggert@twinsun.com>
7520
7521 Fix a bug where error locations were not being recorded correctly.
7522 This problem was originally reported by Paul Hilfinger in
7523 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
7524
7525 * data/yacc.c (yyparse): New local var yylerrsp, to record the
7526 top of the location stack's error locations.
7527 (yyerrlab): Set it. When discarding a token, push its location
7528 onto yylerrsp so that we don't lose track of the error's end.
7529 (yyerrlab1): Now is only the target of YYERROR, so that we can
7530 properly record the location of the action that failed. For GCC
7531 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
7532 GCC warning about yyerrlab1 being unused if YYERROR is unused.
7533 (yyerrlab2): New label, which yyerrlab now falls through to.
7534 Compute the error's location by applying YYLLOC_DEFAULT to
7535 the locations of all the symbols that went into the error.
7536 * doc/bison.texinfo (Location Default Action): Mention that
7537 YYLLOC_DEFAULT is also invoked for syntax errors.
7538 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7539 Error locations include the locations of all the tokens that were
7540 discarded, not just the last token.
7541
7542 2002-12-26 Paul Eggert <eggert@twinsun.com>
7543
7544 * src/files.c: Include quote.h.
7545 (compute_output_file_names): Warn if we detect conflicting
7546 outputs to the same file. This should catch the misunderstanding
7547 exemplified by Debian Bug 165349, reported by Bruce Stephens..
7548
7549 * src/conflicts.c (conflicts_print): If the user specifies
7550 "%expect N", report an error if there are any reduce/reduce
7551 conflicts. This is what the manual says should happen.
7552 This fixes Debian bug 130890, reported by Anthony DeRobertis.
7553 * tests/conflicts.at (%expect with reduce conflicts): New test.
7554
7555 Don't use m4_include on relative file names, as it doesn't work as
7556 desired if there happens to be a file with that name under ".".
7557
7558 * m4sugar/version.m4: Remove; it was included but it wasn't used.
7559 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
7560 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
7561 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
7562 * src/output.c (output_skeleton): Use full path names when
7563 specifying a file to include; don't rely on include path, as
7564 it's unreliable when the working file contains a file with
7565 that name.
7566
7567 2002-12-25 Paul Eggert <eggert@twinsun.com>
7568
7569 Remove obsolete references to bison.simple and bison.hairy.
7570 Problem mentioned by Aubin Mahe in
7571 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
7572 * data/glr.c: Comment fix.
7573 * doc/bison.1: Remove references. Also, mention "yacc".
7574
7575 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
7576 with -g option.
7577
7578 * src/parse-gram.y (declaration): Use enum "report_states" rather
7579 than its numeric value 1.
7580
7581 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
7582 opening a new one. This fixes Debian bug 165349, reported by
7583 Bruce Stephens.
7584
7585 2002-12-24 Paul Eggert <eggert@twinsun.com>
7586
7587 Version 1.75e.
7588
7589 * Makefile.maint (cvs-update): Don't assume that the shell
7590 supports $(...), as Solaris sh doesn't.
7591
7592 * src/parse-gram.y (lloc_default): Remove test for empty
7593 nonterminals at the end, since it didn't change the result.
7594
7595 2002-12-24 Paul Eggert <eggert@twinsun.com>
7596
7597 If the user does not define YYSTYPE as a macro, Bison now declares it
7598 using typedef instead of defining it as a macro. POSIX requires this.
7599 For consistency, YYLTYPE is also declared instead of defined.
7600
7601 %union directives can now have a tag before the `{', e.g., the
7602 directive `%union foo {...}' now generates the C code
7603 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
7604 The default union tag is `YYSTYPE', for compatibility with Solaris 9
7605 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
7606 instead of `yyltype'.
7607
7608 `yystype' and `yyltype' are now obsolescent macros instead of being
7609 typedefs or tags; they are no longer documented and will be
7610 withdrawn in a future release.
7611
7612 * data/glr.c (b4_location_type): Remove.
7613 (YYSTYPE): Renamed from yystype.
7614 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
7615 (struct YYLTYPE): Renamed from struct yyltype.
7616 (YYLTYPE): Renamed from yyltype.
7617 (yyltype, yystype): New (and obsolescent) macros,
7618 for backward compatibility.
7619 * data/yacc.c: Likewise.
7620
7621 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
7622 does not specify a union tag. This is for compatibility with
7623 Solaris 9 yacc.
7624
7625 * src/parse-gram.y (add_param): 2nd arg is now char * not char
7626 const *, since it is now modified by stripping surrounding { }.
7627 (current_braced_code): Remove.
7628 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
7629 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
7630 trailing " {...}". Now of type <chars>.
7631 (grammar_declaration): Adjust to bundled tokens.
7632 (code_content): Remove; stripping is now done by add_param.
7633 (print_token_value): Print contents of bundled tokens.
7634 (token_name): New function.
7635
7636 * src/reader.h (braced_code, current_braced_code): Remove.
7637 (token_name): New decl.
7638
7639 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
7640 token_type, not braced_code code_kind. All uses changed.
7641 (SC_PRE_CODE): New state, for scanning after a keyword that
7642 has (or usually has) an immediately-following braced code.
7643 (token_type): New local var, to keep track of which token type
7644 to return when scanning braced code.
7645 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
7646 <INITIAL>"%parse-param", <INITIAL>"%printer",
7647 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
7648 instead of returning a token type immediately.
7649 (<INITIAL>"{"): Set token type.
7650 (<SC_BRACED_CODE>"}"): Use it.
7651 (handle_action_dollar, handle_action_at): Now returns bool
7652 indicating success. Fail if ! current_rule; this prevents a core dump.
7653 (handle_symbol_code_dollar, handle_symbol_code_at):
7654 Remove; merge body into caller.
7655 (handle_dollar, handle_at): Complain in invalid contexts.
7656
7657 * NEWS, doc/bison.texinfo: Document the above.
7658 * NEWS: Fix years and program names in copyright notice.
7659
7660 2002-12-17 Paul Eggert <eggert@twinsun.com>
7661
7662 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
7663 Reporting, Table of Symbols): Omit mentions of %lex-param and
7664 %parse-param from the documentation for now.
7665
7666 2002-12-15 Paul Eggert <eggert@twinsun.com>
7667
7668 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
7669 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
7670 lookahead symbol, and which sets yychar in parser actions) and it
7671 disagreed with the Bison documentation. Bug
7672 reported by Andrew Walrond.
7673
7674 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
7675 as the caller now does that.
7676 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
7677 (YYEMPTY): Parenthesize right hand side, since others use it.
7678 (yyparse): Don't assume that our generated code is the only code
7679 that sets yychar.
7680
7681 2002-12-13 Paul Eggert <eggert@twinsun.com>
7682
7683 Version 1.75d.
7684
7685 POSIX requires a "yacc" command.
7686 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
7687 (MOSTLYCLEANFILES): Add yacc.
7688 (yacc): New rule.
7689 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
7690 as an alias for bison y.
7691
7692 * po/LINGUAS: Add da.
7693
7694 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
7695 problem with latest <getopt.h>.
7696 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
7697
7698 * doc/fdl.texi: Upgrade to 1.2.
7699 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
7700 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
7701 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
7702 gnulib.
7703 * config/install-sh: Sync with autotools.
7704
7705 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
7706 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
7707 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
7708 locations are requested.
7709 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
7710 locations are requested.
7711
7712 2002-12-12 Paul Eggert <eggert@twinsun.com>
7713
7714 Remove unportable casts and storage allocation tricks.
7715 While we're at it, remove almost all casts, since they
7716 usually aren't needed and are a sign of trouble.
7717
7718 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
7719
7720 * src/derives.c (derives_compute): Do not subtract NTOKENS from
7721 the pointer DSET returned by malloc; this isn't portable.
7722 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
7723 Similarly for DERIVES.
7724 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
7725 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
7726 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
7727
7728 * src/derives.c (derives_compute): Do not bother invoking
7729 int_of_rule_number, since rule numbers are integers.
7730
7731 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
7732 rather than XMALLOC (char, N).
7733
7734 * src/files.c (filename_split): Rewrite to avoid cast.
7735
7736 * src/gram.h (symbol_number_as_item_number,
7737 item_number_as_symbol_number, rule_number_as_item_number,
7738 item_number_as_rule_number):
7739 Now inline functions rather than macros, to avoid casts.
7740 * src/state.h (state_number_as_int): Likewise.
7741 * src/tables.c (state_number_to_vector_number,
7742 symbol_number_to_vector_number): Likewise.
7743
7744 * src/gram.h (int_of_rule_number): Remove; no longer used.
7745
7746 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
7747 since the resulting storage is always stored into.
7748
7749 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
7750 where it's needed.
7751
7752 * src/muscle_tab.c (muscle_m4_output):
7753 Now inline. Return bool, not int.
7754 * src/state.c (state_compare): Likewise.
7755 * src/symtab.c (symbol_check_defined,
7756 symbol_check_alias_consistency, symbol_pack, symbol_translation,
7757 hash_compare_symbol, hash_symbol):
7758 Likewise.
7759 * src/uniqstr.c (uniqstr_print): Likewise.
7760 * src/muscle_tab.c (muscle_m4_output_processor):
7761 New function, to avoid casts.
7762 * src/state.c (state_comparator, stage_hasher): Likewise.
7763 * src/symtab.c (symbol_check_defined_processor,
7764 symbol_check_alias_consistency_processor, symbol_pack_processor,
7765 symbol_translation_processor, hash_symbol_comparator,
7766 hash_symbol_hasher): Likewise.
7767 * src/uniqstr.c (uniqstr_print_processor): Likewise.
7768 * src/muscle_tab.c (muscles_m4_output):
7769 Use new functions instead of casting old functions unportably.
7770 * src/state.c (state_hash_new): Likewise.
7771 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
7772 symbols_token_translations_init):
7773 Likewise.
7774 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
7775
7776 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
7777 var instead of casting to long, to avoid casts.
7778 (prepare_states): Use MALLOC rather than alloca, so that we don't
7779 have to worry about alloca.
7780 * src/state.c (state_hash_lookup): Likewise.
7781
7782 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
7783 local var instead of casting to unsigned char, to avoid casts.
7784
7785 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
7786 STATE_ALLOC): Remove.
7787 (transitions_new, errs_new, reductions_new, state_new): Use malloc
7788 rather than calloc, and use offsetof to avoid allocating slightly
7789 too much storage.
7790 (state_new): Initialize all members.
7791
7792 * src/state.c (state_hash): Use unsigned accumulator, not signed.
7793
7794 * src/symtab.c (symbol_free): Remove; unused.
7795 (symbol_get): Remove cast in lhs of assignment.
7796 (symbols_do): Now static. Accept generic arguments, not
7797 hashing-related ones.
7798
7799 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
7800 (symbol_processor): Remove.
7801 (symbols_do): Remove decl; now static.
7802
7803 * src/system.h (alloca): Remove; decl no longer needed.
7804 (<stddef.h>): Include, for offsetof.
7805 (<inttypes.>, <stdint.h>): Include if available.
7806 (uintptr_t): New type, if system lacks it.
7807 (CALLOC, MALLOC, REALLOC): New macros.
7808 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
7809 new macros.
7810
7811 * src/tables.c (table_size): Now int, to pacify GCC.
7812 (table_grow, table_ninf_remap): Use signed table size.
7813 (save_row): Don't bother initializing locals when not needed.
7814 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
7815 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
7816
7817 * src/vcg.h: Correct misspellings.
7818
7819 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
7820
7821
7822 * src/getargs.c (getargs): Don't assume EOF == -1.
7823
7824 2002-12-09 Paul Eggert <eggert@twinsun.com>
7825
7826 Change identifier spellings to avoid collisions with names
7827 that are reserved by POSIX.
7828
7829 Don't use names ending in _t, since POSIX reserves them.
7830 For consistency, remove _e and _s endings -- they're weren't
7831 needed to remove ambiguity. All uses changed.
7832 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
7833 turn was just renamed from struniq_t.
7834 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
7835 which in turn was just renamed from struniq_processor_t.
7836 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
7837 in turn was renamed from hash_compare_struniq_t.
7838 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
7839 (state_list): Renamed from state_list_t.
7840 * src/assoc.h (assoc): Renamed from assoc_t.
7841 * src/conflicts.c (enum conflict_resolution): Renamed from
7842 enum conflict_resolution_e.
7843 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
7844 (rule_list): Renamed from rule_list_t.
7845 * src/getargs.h (enum trace): Renamed from enum trace_e.
7846 (enum report): Renamed from enum report_e.
7847 * src/gram.h (item_number): Renamed from item_number_t.
7848 (rule_number): Renamed from rule_number_t.
7849 (struct rule_s): Remove the "rule_s" part; not used.
7850 (rule): Renamed from rule_t.
7851 (rule_filter): Renamed from rule_filter_t.
7852 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
7853 (goto_list): Renamed from goto_list_t.
7854 * src/lalr.h (goto_number): Renamed from goto_number_t.
7855 * src/location.h (location): Renamed from location_t.
7856 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
7857 and moved here from:
7858 * src/muscle_tab.h (muscle_entry_t): here.
7859 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
7860 (rule_list): Renamed from rule_list_t.
7861 * src/print_graph.c (static_graph): Renamed from graph.
7862 * src/reader.h (braced_code): Renamed from braced_code_t.
7863 Remove brace_code_e tag.
7864 * src/relation.h (relation_node): Renamed from relation_node_t.
7865 (relation_nodes): Renamed from relation_nodes_t.
7866 (relation): Renamed from relation_t.
7867 * src/state.h (state_number): Renamed from state_number_t.
7868 (struct state): Renamed from struct state_s.
7869 (state): Renamed from state_t.
7870 (transitions): Renamed from transitions_t. Unused (and
7871 misspelled) transtion_s tag removed.
7872 (errs): Renamed from errs_t. Unused errs_s tag removed.
7873 (reductions): Renamed from reductions_t. Unused tag
7874 reductions_s removed.
7875 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
7876 (struct symbol_list): Renamed from struct symbol_list_s.
7877 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
7878 (struct symbol): Renamed from struct symbol_s.
7879 (symbol): Renamed from symbol_t.
7880 * src/tables.c (vector_number): Renamed from vector_number_t.
7881 (action_number): Renamed from action_t.
7882 * src/tables.h (base_number): Renamed from base_t.
7883 * src/vcg.h (enum color): Renamed from enum color_e.
7884 (enum textmode): Renamed from enum textmode_e.
7885 (enum shape): Renamed from enum shape_e.
7886 (struct colorentry): Renamed from struct colorentry_s.
7887 (struct classname): Renamed from struct classname_s.
7888 (struct infoname): Renamed from struct infoname_s.
7889 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
7890 (enum decision): Renamed from enum decision_e.
7891 (enum orientation): Renamed from enum orientation_e.
7892 (enum alignment): Renamed from enum alignment_e.
7893 (enum arrow_mode): Renamed from enum arrow_mode_e.
7894 (enum crossing_type): Renamed from enum crossing_type_e.
7895 (enum view): Renamed from enum view_e.
7896 (struct node): Renamed from struct node_s.
7897 (node): Renamed from node_t.
7898 (enum linestyle): Renamed from enum linestyle_e.
7899 (enum arrowstyle): Renamed from enum arrowstyle_e.
7900 (struct edge): Renamed from struct edge.
7901 (edge): Renamed from edge_t.
7902 (struct graph): Renamed from struct graph_s.
7903 (graph): Renamed from graph_t.
7904 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
7905 Rename value_t -> value.
7906 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
7907 value_t_as_yystype -> value_as_yystype.
7908
7909 Don't include <errno.h> in the mainstream code, since it
7910 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
7911 * lib/get-errno.c, lib/get-errno.h: New files.
7912 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
7913 get-errno.c.
7914 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
7915 * src/output.c (output_skeleton): Likewise.
7916 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
7917 instead of errno.
7918 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
7919 Likewise.
7920 (handle_action_dollar, handle_action_at): Likewise.
7921 * src/system.h: Do not include <errno.h>.
7922 (TAB_EXT): Renamed from EXT_TAB.
7923 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
7924
7925 Avoid str[a-z]*, since <string.h> reserves that name space.
7926 Change all instances of "struniq" in names to "uniqstr", and
7927 likewise for "STRUNIQ" and "UNIQSTR".
7928 * src/uniqstr.c: Renamed from src/struniq.c.
7929 * src/uniqstr.h: Renamed from src/struniq.h.
7930 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
7931 * src/files.c (strsuffix): Remove; unused.
7932 (concat2): Renamed from stringappend. Now static.
7933 * src/files.h (strsuffix, stringappend): Remove; unused.
7934 * src/parse-gram.y (<chars>): Renamed from <string>.
7935 (<uniqstr>): Renamed from <struniq>.
7936 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
7937 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
7938 (struct graph_s.expand): Renamed from struct graph_s.stretch.
7939 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
7940 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
7941 (N_EXPAND): Renamed from N_STRETCH.
7942
7943 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
7944 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
7945 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
7946 Remove; unused.
7947 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
7948 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
7949 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
7950 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
7951 (BASE_MAXIMUM): Renamed from BASE_MAX.
7952 (BASE_MINIMUM): Renamed from BASE_MIN.
7953 (ACTION_MAX): Remove; unused.
7954 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
7955 Unnecessary casts removed from above defines.
7956
7957
7958 Fix misspelling in names.
7959 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
7960 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
7961 G_NODE_ALIGNEMENT.
7962
7963
7964 * lib/timevar.c (timevar_report): Renamed from time_report,
7965 for consistency with other names.
7966 * lib/timevar.h (timevar_report): New decl.
7967 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
7968
7969
7970 Sort include-file uses.
7971
7972 Reorder all include files under src to be in the order "system.h".
7973 then the ../lib include files in angle brackets (alphabetized),
7974 then the . include files in double-quotes (alphabetized). Fix
7975 dependency breakages encountered in this process, as follows:
7976 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
7977 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
7978 * src/state.h: Include "symtab.h".
7979
7980 2002-12-08 Paul Eggert <eggert@twinsun.com>
7981
7982 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
7983 since this causes problems when __file__ contains character
7984 sequences like "@" that are treated specially by src/scan-skel.l.
7985 Instead, just use the file's basename. This fixes the bug
7986 reported by Martin Mokrejs in
7987 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
7988
7989 2002-12-06 Paul Eggert <eggert@twinsun.com>
7990
7991 Add support for rules that do not have trailing semicolons, as
7992 POSIX requires. Improve the quality of locations in Bison
7993 diagnostics.
7994
7995 * src/location.c: Include <quotearg.h>.
7996 (empty_location): Now const.
7997 (location_print): New function. Follow the recommendation of the
7998 GNU Coding Standards for locations that span file boundaries.
7999 * src/location.h: Do not include <quotearg.h>; no longer needed.
8000 (boundary): New type.
8001 (location_t): Use it. This allows locations to span file boundaries.
8002 All member uses changed: file -> start.file or end.file (as needed),
8003 first_line -> start.line, first_column -> start.column,
8004 last_line -> end.line, last_column -> end.column.
8005 (equal_boundaries): New function.
8006 (LOCATION_RESET, LOCATION_STEP): Remove.
8007 (LOCATION_PRINT): Remove. All callers changed to use location_print.
8008 (empty_location): Now const.
8009 (location_print): New decl.
8010 * src/parse-gram.y (lloc_default): New function, which handles
8011 empty locations more accurately.
8012 (YYLLOC_DEFAULT): Use it.
8013 (%token COLON): Remove.
8014 (%token ID_COLON): New token.
8015 (rules): Use it.
8016 (declarations, rules): Remove trailing semicolon.
8017 (declaration, rules_or_grammar_declaration):
8018 Allow empty (";") declaration.
8019 (symbol_def): Remove empty actions; no longer needed.
8020 (rules_or_grammar_declaration): Remove trailing semicolon.
8021 (semi_colon.opt): Remove.
8022 * src/reader.h: Include location.h.
8023 (scanner_cursor): New decl.
8024 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
8025 rolling our own.
8026 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
8027 of *loc.
8028 (STEP): Remove. No longer needed, now that adjust_location does
8029 the work. All uses removed.
8030 (scanner_cursor): New var.
8031 (adjust_location): Renamed from extend_location. It now sets
8032 *loc and adjusts the scanner cursor. All uses changed.
8033 Don't bother testing for CR.
8034 (handle_syncline): Remove location arg; now updates scanner cursor.
8035 All callers changed.
8036 (unexpected_end_of_file): Now accepts start boundary of token or
8037 comment, not location. All callers changed. Update scanner cursor,
8038 not the location.
8039 (SC_AFTER_IDENTIFIER): New state.
8040 (context_state): Renamed from c_context. All uses changed.
8041 (id_loc, code_start, token_start): New local vars.
8042 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
8043 processing of Yacc white space and equivalents here.
8044 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
8045 instead of returning ID immediately, since we need to search for
8046 a subsequent colon.
8047 (<INITIAL>"'", "\""): Save token_start.
8048 (<INITIAL>"%{", "{", "%%"): Save code_start.
8049 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
8050 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
8051 BEGIN context_state at end, not INITIAL.
8052 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
8053 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
8054 Return correct token start.
8055 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
8056 the start of a character, string or multiline comment is found.
8057 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
8058 Reduction): Adjust reported locations to match the more-precise
8059 results now expected.
8060 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
8061 * tests/reduce.at (Useless Rules, Reduced Automaton,
8062 Underivable Rules): Likewise.
8063 * tests/regression.at (Invalid inputs): No longer `expecting ";"
8064 or "|"' now that so many other tokens are allowed by the new grammar.
8065
8066 * src/complain.h (current_file): Remove duplicate decl;
8067 current_file is now owned by files.h.
8068 * src/complain.c, src/scan-gram.l: Include files.h.
8069
8070 2002-12-06 Paul Eggert <eggert@twinsun.com>
8071
8072 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
8073 promotes to int; it might be unsigned int.
8074 * data/yacc.c (yy_reduce_print): Likewise.
8075
8076 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
8077 be #defined in the prologue, not in the Bison declarations.
8078 This fixes Debian Bug 102878, reported by Shaul Karl.
8079
8080 2002-12-02 Paul Eggert <eggert@twinsun.com>
8081
8082 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
8083 * lib/strtoul.c: New file, from gnulib.
8084 This fixes a porting bug reported by Peter Klein in
8085 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
8086
8087 2002-11-30 Paul Eggert <eggert@twinsun.com>
8088
8089 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
8090 and put only a forward declaration in the prologue. This is for
8091 consistency with the other scanner helper functions.
8092
8093 Type clashes now generate warnings, not errors, since it
8094 appears that POSIX may allow some grammars with type clashes.
8095 * src/reader.c (grammar_current_rule_check): Warn about
8096 type clashes instead of complaining.
8097 * tests/input.at (Type Clashes): Expect warnings, not complaints.
8098
8099 Add Yacc library, since POSIX requires it.
8100 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
8101 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
8102 * lib/main.c, lib/yyerror.c: New files.
8103
8104 gram_error can be static; it need not be extern.
8105 * src/reader.h (gram_error): Remove decl.
8106 * src/parse-gram.y (gram_error): Now static. Add static decl.
8107 (print_token_value): Omit parameter names from forward decl,
8108 for consistency.
8109
8110 2002-11-29 Paul Eggert <eggert@twinsun.com>
8111
8112 * doc/bison.texinfo: Emphasize that yylex and yyerror must
8113 be declared before being used. E.g., one should typically
8114 declare them in the prologue. Use GNU coding style in examples.
8115 Put "const" consistently after the type it modifies. Mention
8116 that C99 supports "inline". Mention that yyerror traditionally
8117 returns "int".
8118
8119 %parse-param and %lex-param now take just one argument, the
8120 declaration; the argument name is deduced from the declaration.
8121
8122 * doc/bison.texinfo (Parser Function, Pure Calling, Error
8123 Reporting, Table of Symbols): Document this.
8124 * src/parse-gram.y (add_param): New function.
8125 (COMMA): Remove.
8126 (declaration): Implement new rule for %parse-param and %lex-param.
8127 * src/scan-gram.l: "," now elicits a warning, rather than being
8128 a token; this is more compatible with byacc.
8129 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
8130
8131 2002-11-27 Paul Eggert <eggert@twinsun.com>
8132
8133 Rename identifiers to avoid real and potential collisions.
8134
8135 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
8136 to avoid collision with lex macro described by Bruce Lilly in
8137 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
8138 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8139 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
8140 * src/parse-gram.y (print_token_value): Renamed from yyprint.
8141 All uses changed.
8142 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
8143 The name "yycontrol" violates the name space rules, and this stuff
8144 wasn't being used anyway.
8145 (input): Remove action; this stuff wasn't being used.
8146 (gram_error): Rename local variable yylloc -> loc.
8147 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
8148 (YY_DECL): Don't use "yy" at start of local variables.
8149 All uses changed, e.g., yylloc -> loc.
8150 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
8151 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
8152 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
8153 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
8154
8155 * src/parse-gram.y (gram_error): loc is now const *.
8156 * src/reader.h (gram_error): Likewise.
8157
8158 2002-11-24 Paul Eggert <eggert@twinsun.com>
8159
8160 Version 1.75c.
8161
8162 * tests/actions.at (Actions after errors): Use an output format
8163 more similar to that of the Printers and Destructors test.
8164 Test the position of the ';' token too.
8165 (Printers and Destructors): Likewise.
8166 (Printers and Destructors: %glr-parser): Remove for now, to avoid
8167 unnecessarily alarming people when the test fails.
8168
8169 * data/yacc.c (yyerrlab1): Move this label down, so that the
8170 parser does not discard the lookahead token if the user code
8171 invokes YYERROR. This change is required for POSIX conformance.
8172
8173 * lib/error.c: Sync with gnulib.
8174
8175 2002-11-22 Paul Eggert <eggert@twinsun.com>
8176
8177 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
8178 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
8179 * lib/xmalloc.c: Likewise.
8180
8181 2002-11-20 Paul Eggert <eggert@twinsun.com>
8182
8183 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
8184
8185 2002-11-20 Paul Eggert <eggert@twinsun.com>
8186
8187 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
8188 should use `if (! x) abort ();' rather than `assert (x);', and
8189 anyway it's one less thing to worry about configuring.
8190
8191 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
8192 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
8193 and replace all instances of assert with abort.
8194 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8195 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
8196
8197 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
8198 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
8199 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
8200 hash_find_entry, hash_rehash, hash_insert): Likewise.
8201 * src/conflicts.c (resolve_sr_conflict): Likewise.
8202 * src/lalr.c (set_goto_map, map_goto): Likewise.
8203 * src/nullable.c (nullable_compute): Likewise.
8204 * src/output.c (prepare_rules, token_definitions_output): Likewise.
8205 * src/reader.c (packgram, reader): Likewise.
8206 * src/state.c (state_new, state_free, state_transitions_set,
8207 state_reduction_find): Likewise.
8208 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
8209 symbol_pack): Likewise.
8210 * src/tables.c (conflict_row, pack_vector): Likewise.
8211 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
8212 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
8213 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
8214 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
8215
8216 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
8217 (ARGMATCH_CONSTRAINT): New macro.
8218 (ARGMATCH_ASSERT): Use it.
8219
8220 * src/system.h (verify): New macro.
8221 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
8222 rather than assert.
8223 * src/tables.c (tables_generate): Likewise.
8224
8225 * src/struniq.c (struniq_assert): Now returns void, and aborts
8226 if the assertion is false.
8227 (struniq_assert_p): Remove.
8228 * src/struniq.h: Likewise.
8229
8230 2002-11-18 Paul Eggert <eggert@twinsun.com>
8231
8232 * data/glr.c (yygetLRActions): Replace `yyindex' with
8233 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
8234 This fixes the regression with Sun ONE Studio 7 cc that I reported in
8235 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
8236
8237 2002-11-18 Akim Demaille <akim@epita.fr>
8238
8239 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
8240 space.
8241 From Tim Van Holder.
8242
8243 2002-11-17 Paul Eggert <eggert@twinsun.com>
8244
8245 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
8246 to "SyntaxError" for consistency with my 2002-11-15 change.
8247
8248 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
8249 not define to {}, since this breaks the common use of `YYDPRINTF
8250 ((...));' if a single statement is desired (e.g. before `else').
8251 Work around GCC warnings by surrounding corresponding calls with
8252 {} if needed.
8253 (yyhasResolvedValue): Remove unused function.
8254 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
8255 loop body.
8256 (yyreportSyntaxError): Renamed from yyreportParseError.
8257 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
8258 All uses changed.
8259 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
8260 extern when possible. Remove unused initializations.
8261
8262 2002-11-16 Akim Demaille <akim@epita.fr>
8263
8264 Augment the similarity between GLR and LALR traces.
8265
8266 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
8267 (YY_REDUCE_PRINT): New.
8268 (yyparse): Use them.
8269 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
8270 YYDPRINT here.
8271 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
8272 state reached after the reduction/recovery, since...
8273 (yyparse, yyprocessOneStack): Report the state we are entering in.
8274
8275 2002-11-16 Akim Demaille <akim@epita.fr>
8276
8277 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
8278 Add support for --trace=skeleton.
8279 * src/scan-skel.l: %option debug.
8280 Scan strings of non-@ or \n instead of character by character.
8281 (scan_skel): Handle trace_skeleton.
8282 (QPUTS): New.
8283 (@output_parser_name@, @output_header_name@): ``Restore'' their
8284 support (used to be M4 macros).
8285 * data/yacc.c: Quote larger chunks, a la glr.c.
8286 * data/lalr1.cc: Likewise.
8287 The header guards are no longer available, so use some other
8288 string than `YYLSP_NEEDED'.
8289
8290 2002-11-16 Akim Demaille <akim@epita.fr>
8291
8292 Make the ``Printers and Destructors'' test more verbose, taking
8293 `yacc.c''s behavior as (possibly wrong) reference.
8294
8295 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
8296 instead of fprint on stdout.
8297 Set and report the last_line of the symbols.
8298 Consistently display values and locations.
8299
8300 2002-11-16 Paul Eggert <eggert@twinsun.com>
8301
8302 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
8303
8304 2002-11-15 Paul Eggert <eggert@twinsun.com>
8305
8306 * tests/actions.at (Actions after errors): New test case.
8307
8308 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
8309 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
8310 tests/action.at, tests/calc.at, tests/conflicts.at,
8311 tests/cxx-type.at, tests/regression.at:
8312 "parse error" -> "syntax error" for POSIX compatibility.
8313 "parsing stack overflow..." -> "parser stack overflow" so
8314 that code matches Bison documentation.
8315
8316 2002-11-15 Akim Demaille <akim@epita.fr>
8317
8318 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
8319 take two BRACED_CODE, not two string_content.
8320 Free the scanner's obstack when we are done.
8321 (code_content): New.
8322 * tests/calc.at: Adjust.
8323 * doc/bison.texinfo: Adjust.
8324 Also, make sure to include the `,' for these declarations.
8325
8326 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
8327
8328 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
8329 definition; avoids potential autoreconf problems.
8330
8331 2002-11-15 Akim Demaille <akim@epita.fr>
8332
8333 Always check the value returned by yyparse.
8334
8335 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
8336 returned by yyparse.
8337 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
8338 Adjust calls.
8339 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
8340 returned by yyparse.
8341
8342 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8343
8344 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
8345 on input.at test.
8346
8347 2002-11-14 Paul Eggert <eggert@twinsun.com>
8348
8349 * src/output.c (output_skeleton): Call xfopen instead of
8350 duplicating xfopen's body.
8351
8352 Fix bugs reported by Nelson H. F. Beebe in
8353 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
8354
8355 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
8356 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
8357 Group compiler. Instead, use "$CC -E bar.c". Include the .h
8358 file twice in the grammar, as an extra check.
8359
8360 * tests/input.at (Torturing the Scanner): Surround the
8361 backslash-newline tests with "#if 0", to make it less likely that
8362 we'll run into compiler bugs. Bring back solitary \ inside
8363 comment, but add a closing comment to work around HP C bug. Don't
8364 test backslash-newline in C character constant.
8365
8366 2002-11-14 Akim Demaille <akim@epita.fr>
8367
8368 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
8369 status of the compiler.
8370 Calling `exit 1' is no longer needed.
8371 Reported by Nelson H. F. Beebe.
8372
8373 2002-11-14 Akim Demaille <akim@epita.fr>
8374
8375 * tests/atlocal.in (CPPFLAGS): We have config.h.
8376 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
8377 New.
8378 * tests/actions.at, tests/calc.at, tests/conflicts.at,
8379 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
8380 * tests/regression.at, tests/torture.at: Use them for all the
8381 grammars that are to be compiled.
8382 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
8383 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
8384 * doc/bison.texinfo (GLR Parsers): Document `inline'.
8385
8386 2002-11-14 Akim Demaille <akim@epita.fr>
8387
8388 * doc/bison.texinfo: Various formatting changes (alignments in
8389 samples, additional @group/@end group, GCS in samples.
8390 Use @deffn instead of simple @table to define the directives,
8391 macros, variables etc.
8392
8393 2002-11-13 Paul Eggert <eggert@twinsun.com>
8394
8395 Fix some bugs reported by Albert Chin-A-Young in
8396 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
8397
8398 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8399 -o c"; the HP C compiler chatters during compilation.
8400 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
8401 * tests/headers.at (export YYLTYPE): Likewise.
8402
8403 * tests/input.at (Torturing the Scanner): Remove lines containing
8404 solitary backslashes, as they tickle a bug in the HP C compiler.
8405
8406 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
8407 comments, since they're not portable. Use GNU coding style.
8408
8409 2002-11-13 Akim Demaille <akim@epita.fr>
8410
8411 * data/yacc.c: Leave bigger chunks of quoted text.
8412 (YYDSYMPRINTF): New.
8413 Use it to report symbol activities.
8414 * data/glr.c (YYDSYMPRINTF): New.
8415 Use it.
8416
8417 2002-11-12 Paul Eggert <eggert@twinsun.com>
8418
8419 Version 1.75b.
8420
8421 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
8422 (yyglrReduce): Return yyok, not 0.
8423 This should avoid the enumerated-type warnings reported
8424 by Nelson H. F. Beebe in
8425 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
8426
8427 * lib/bbitset.h (BITSET_INLINE): Remove.
8428 * lib/bitset.h [! BITSET_INLINE]: Remove.
8429 (bitset_set, bitset_reset, bitset_test): Rename local vars
8430 to avoid shadowing warnings by GCC.
8431
8432 * data/glr.c (inline): Remove #define. It's the user's
8433 responsibility to #define it away, just like 'const'.
8434 This fixes one of the bugs reported by Nelson H. F. Beebe in
8435 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
8436
8437 * Makefile.maint (po-check): Scan .l and .y files instead of the
8438 .c and the .h files that they generate. This fixes the bug
8439 reported by Tim Van Holder in:
8440 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
8441 Look for N_ as well as for _. Try to avoid matching #define for
8442 N_ and _.
8443 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
8444 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
8445 * src/scan-gram.l: Revamp regular expressions so that " and '
8446 do not confuse xgettext.
8447
8448 * src/struniq.h (struniq_new): Do not declare the return type
8449 to be 'const'; this violates the C standard.
8450 * src/struniq.c (struniq_new): Likewise.
8451
8452 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
8453
8454 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
8455 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
8456 linker.
8457
8458 2002-11-12 Akim Demaille <akim@epita.fr>
8459
8460 * Makefile.maint: Sync with Autoconf:
8461 (local_updates): New.
8462
8463 2002-11-12 Akim Demaille <akim@epita.fr>
8464
8465 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
8466
8467 2002-11-12 Akim Demaille <akim@epita.fr>
8468
8469 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
8470 locations.
8471
8472 2002-11-12 Akim Demaille <akim@epita.fr>
8473
8474 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
8475 not yyvalue.
8476
8477 2002-11-12 Akim Demaille <akim@epita.fr>
8478
8479 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
8480 Use it to test the GLR parser.
8481
8482 2002-11-12 Akim Demaille <akim@epita.fr>
8483
8484 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
8485 defines it.
8486 * data/glr.c (yystos): New.
8487 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
8488 (YYDSYMPRINT): New.
8489 (yyval): Don't define it, it is handled via M4.
8490 (yyrecoverParseError): Free verbosely the discarded symbols.
8491 * data/yacc.c (yysymprint): Remove, rather...
8492 (b4_yysymprint_generate): invoke.
8493 * data/c.m4 (b4_yysymprint_generate): New.
8494 Accept pointers as arguments, as opposed to the version from
8495 yacc.c.
8496 (b4_yydestruct_generate): Likewise.
8497 * tests/cations.at (Printers and Destructors): Use Bison directives
8498 instead of CPP macros.
8499 Don't rely on internal details.
8500
8501 2002-11-12 Akim Demaille <akim@epita.fr>
8502
8503 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
8504 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
8505 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
8506 it against YYEMPTY and so forth), work on yytoken (i.e., set
8507 it to YYEMPTY etc.).
8508 (yydestruct): Replace with a b4_yydestruct_generate invocation.
8509 (b4_symbol_actions): Remove.
8510 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
8511 for 0, end-of-input.
8512
8513 2002-11-12 Akim Demaille <akim@epita.fr>
8514
8515 * doc/bison.texinfo (Destructor Decl): New.
8516
8517 2002-11-12 Akim Demaille <akim@epita.fr>
8518
8519 * src/tables.c (tables_generate): Use free for pointers that
8520 cannot be NULL, not XFREE.
8521 (pack_vector): Use assert, not fatal, for bound violations.
8522 * src/state.c (state_new): Likewise.
8523 * src/reader.c (reader): Likewise.
8524 * src/lalr.c (set_goto_map): Likewise.
8525 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
8526 the file name.
8527
8528 2002-11-12 Akim Demaille <akim@epita.fr>
8529
8530 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
8531 Restore.
8532 * src/scan-gram.l (last_string): Is global to the file, not to
8533 yylex.
8534 * src/parse-gram.y (input): Don't append the epilogue here,
8535 (epilogue.opt): do it here, and free the scanner's obstack.
8536 * src/reader.c (epilogue_set): Rename as...
8537 (epilogue_augment): this.
8538 * data/c.m4 (b4_epilogue): Defaults to empty.
8539
8540 2002-11-12 Akim Demaille <akim@epita.fr>
8541
8542 * src/getargs.c (long_options): Remove duplicates.
8543 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
8544 Remove.
8545 * doc/bison.rnh: Remove.
8546 * doc/bison.texinfo (VMS Invocation): Remove.
8547
8548 2002-11-12 Akim Demaille <akim@epita.fr>
8549
8550 * src/struniq.h, src/struniq.c (struniq_t): Is const.
8551 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
8552
8553 Use struniq for symbols.
8554
8555 * src/symtab.h (symbol_t): The tag member is a struniq.
8556 (symbol_type_set): Adjust.
8557 * src/symtab.c (symbol_new): Takes a struniq.
8558 (symbol_free): Don't free the tag member.
8559 (hash_compare_symbol_t, hash_symbol_t): Rename as...
8560 (hash_compare_symbol, hash_symbol): these.
8561 Use the fact that tags as struniqs.
8562 (symbol_get): Use struniq_new.
8563 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
8564 Returns a strniq.
8565 * src/reader.h (merger_list, grammar_currentmerge_set): The name
8566 and type members are struniqs.
8567 * src/reader.c (get_merge_function)
8568 (grammar_current_rule_merge_set): Adjust.
8569 (TYPE, current_type): Are struniq.
8570
8571 Use struniq for file names.
8572
8573 * src/files.h, src/files.c (infile): Split into...
8574 (grammar_file, current_file): these.
8575 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
8576 * src/reduce.c (reduce_print): Likewise.
8577 * src/getargs.c (getargs): Likewise.
8578 * src/complain.h, src/complain.c: Likewise.
8579 * src/main.c (main): Call struniqs_new early enough to use it for
8580 file names.
8581 Don't free the input file name.
8582
8583 2002-11-12 Akim Demaille <akim@epita.fr>
8584
8585 * src/symtab.c (symbol_free): Remove dead deactivated code:
8586 type_name are properly removed.
8587 Don't use XFREE to free items that cannot be NULL.
8588 * src/struniq.h, src/struniq.c: New.
8589 * src/main.c (main): Initialize/free struniqs.
8590 * src/parse-gram.y (%union): Add astruniq member.
8591 (yyprint): Adjust.
8592 * src/scan-gram.l (<{tag}>): Return a struniq.
8593 Free the obstack bit that used to store it.
8594 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
8595
8596 2002-11-11 Paul Eggert <eggert@twinsun.com>
8597
8598 Revamp to fix many (but not all) of the C- and M4-related quoting
8599 problems. Among other things, this fixes the Bison bug reported
8600 by Jan Hubicka when processing the Bash grammar; see:
8601 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
8602
8603 Use new @ escapes consistently. Represent brackets with @{ and @}
8604 rather than @<:@ and @:>@, since this works a bit better with dumb
8605 editors like vi. Represent @ with @@, since @ is now consistently
8606 an escape. Use @oline@ and @ofile@ rather than __oline__ and
8607 __ofile__, to avoid unexpected expansions. Similarly, use @output
8608 rather than #output.
8609
8610 * data/c.m4 (b4_copyright): Omit file name from comment, since
8611 the file name could contain "*/".
8612 (b4_synclines_flag): Don't quote the 2nd argument; it should already
8613 be quoted. All uses changed.
8614
8615 * data/glr.c: Use new @ escapes consistently.
8616 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
8617 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
8618 Remove, since they couldn't handle arbitrary characters in file
8619 names.
8620 * data/lalr1.cc: Likewise.
8621 * data/yacc.c: Likewise.
8622
8623 * src/files.c (output_infix): Remove; all uses removed.
8624 * src/files.h: Likewise.
8625
8626 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
8627 mishandled funny characters in file names, and anyway it isn't
8628 needed any more.
8629 * data/yacc.c: Likewise.
8630 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
8631
8632 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
8633 * data/yacc.c: Likewise.
8634
8635 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
8636 strings now.
8637 (muscle_init): Quote filename as a C string.
8638 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
8639 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
8640 * src/output.c (escaped_file_name_output): New function.
8641 (prepare_symbols): Quote tokens for M4.
8642 (prepare): Don't insert output_infix, output_prefix,
8643 output_parser_name, output_header_name; this is now down by scan-skel.
8644 Insert skeleton as a C string.
8645
8646 * src/output.c (user_actions_output, symbol_destructors_output,
8647 symbol_printers_output): Quote filenames for C and M4.
8648 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8649
8650 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
8651 escapes other than \\ and \'; this simplifies the code.
8652 (<SC_STRING>): Likewise, for \\ and \".
8653 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
8654 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
8655 Use new escapes @{ and @} for [ and ].
8656
8657 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
8658 them with auto vars.
8659 Switch to new escape scheme, where @ is the escape character uniformly.
8660 Abort if a stray escape character is found. Avoid unbounded input
8661 buffer when parsing non-escaped text.
8662
8663 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
8664 __oline__, #output, $@, and @{ do not have unintended meanings.
8665
8666 2002-11-09 Paul Eggert <eggert@twinsun.com>
8667
8668 Fix the test failure due to GCC warnings described in
8669 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
8670 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
8671 evaluate to 0 if it's impossible for NINF to be in the respective
8672 table.
8673 (yygetLRActions, yyrecoverParseError): Use them.
8674
8675 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
8676 counted in the token inserted at end of file. Now takes
8677 location_t *, not location_t, so that the location can be
8678 adjusted. All uses changed.
8679
8680 * tests/regression.at (Invalid inputs): Adjust wording in
8681 diagnostic to match the new behavior.
8682
8683 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
8684 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
8685 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
8686 abort ();'. This reduces the runtime of the "Many lookaheads"
8687 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
8688 GCC 3.2.
8689
8690 2002-11-07 Paul Eggert <eggert@twinsun.com>
8691
8692 * src/parse-gram.y (CHARACTER): Remove unused token.
8693 All uses removed.
8694
8695 * src/scan-gram.l: Remove stack option. We no longer use the
8696 stack, since the stack was never deeper than 1; instead, use the
8697 new auto var c_context to record the stacked value.
8698
8699 Remove nounput option. At an unexpected end of file, we now unput
8700 the minimal input necessary to end cleanly; this simplifies the
8701 code.
8702
8703 Avoid unbounded token sizes where this is easy.
8704
8705 (unexpected_end_of_file): New function.
8706 Use it to systematize the error message on unexpected EOF.
8707 (last-string): Now auto, not static.
8708 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
8709 (scanner_last_string_free): Remove; not used.
8710 (percent_percent_count): Move decl to just before use.
8711 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
8712 not the (never otherwised-used) CHARACTER.
8713
8714 2002-11-07 Akim Demaille <akim@epita.fr>
8715
8716 Let yyerror always receive the msg as last argument, so that
8717 yyerror can be variadic.
8718
8719 * data/yacc.c (b4_yyerror_args): New.
8720 Use it when calling yyerror.
8721 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
8722 Use it when calling yyerror.
8723 * doc/bison.texinfo (Error Reporting): Adjust.
8724 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
8725 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
8726
8727 2002-11-06 Akim Demaille <akim@epita.fr>
8728
8729 #line should have quoted strings.
8730 Ideally, this should be done by m4_quotearg.
8731
8732 * src/scan-skel.l: Include quotearg.h.
8733 Quote __ofile__.
8734 * src/output.c (symbol_printers_output)
8735 (symbol_destructors_output): Quote the file name.
8736
8737 2002-11-06 Akim Demaille <akim@epita.fr>
8738
8739 * tests/regression.at (Invalid inputs): Adjust to the recent
8740 messages.
8741
8742 2002-11-06 Akim Demaille <akim@epita.fr>
8743
8744 Restore --no-lines.
8745 Reported by Jim Kent.
8746
8747 * data/c.m4 (b4_syncline): New.
8748 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
8749 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
8750 * src/output.c (user_actions_output): Likewise.
8751 (prepare): Define 'b4_synclines_flag'.
8752 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
8753
8754 2002-11-06 Akim Demaille <akim@epita.fr>
8755
8756 * src/main.c (main): Free `infile'.
8757 * src/scan-gram.l (handle_syncline): New.
8758 Recognize `#line'.
8759 * src/output.c (user_actions_output, symbol_destructors_output)
8760 (symbol_printers_output): Use the location's file name, not
8761 infile.
8762 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8763
8764 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8765
8766 * src/tables.c (matching_state): Don't allow states to match if
8767 either has GLR conflict entries.
8768
8769 2002-11-05 Paul Eggert <eggert@twinsun.com>
8770
8771 * src/scan-gram.l: Use more accurate diagnostics, e.g.
8772 "integer out of range" rather than "invalid value".
8773 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
8774 accordingly.
8775
8776 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
8777 Also, remove one static variable in the scanner.
8778
8779 * src/scan-gram.l (braces_level): Now auto, not static.
8780 Initialize to zero if the compiler is being picky.
8781 (INITIAL): Clear braces_level instead of incrementing it.
8782 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
8783 as POSIX 1003.1-2001 requires.
8784 * src/system.h (IF_LINT): New macro, taken from coreutils.
8785 * configure.ac: Define "lint" if --enable-gcc-warnings.
8786
8787 2002-11-05 Akim Demaille <akim@epita.fr>
8788
8789 * src/scan-gram.l: When it starts with `%', complain about the
8790 whole directive, not just that `invalid character: %'.
8791
8792 2002-11-04 Akim Demaille <akim@epita.fr>
8793
8794 * Makefile.maint: Update from Autoconf.
8795 (update, cvs-update, po-update, do-po-update): New.
8796
8797 2002-11-04 Akim Demaille <akim@epita.fr>
8798
8799 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
8800 and yyerror.
8801 Have yyerror `use' its arguments.
8802 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
8803 returns true when location & yacc & pure & parse-param.
8804 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
8805
8806 2002-11-04 Akim Demaille <akim@epita.fr>
8807
8808 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
8809 clashes.
8810 * src/scan-gram.l: Use [\'] instead of ['] to pacify
8811 font-lock-mode.
8812 Use complain_at.
8813 Use quote, not quote_n since LOCATION_PRINT no longer uses the
8814 slot 0.
8815
8816 2002-11-03 Paul Eggert <eggert@twinsun.com>
8817
8818 * src/reader.c (get_merge_function, grammar_current_rule_check):
8819 Use consistent diagnostics for reporting type name clashes.
8820 Quote the types with <>, for consistency with Yacc.
8821 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
8822
8823 2002-11-03 Akim Demaille <akim@epita.fr>
8824
8825 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
8826 New.
8827 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
8828 (b4_parse_param): Remove.
8829 Use b4_identification.
8830 Propagate b4_pure_args where needed to pass them to yyerror.
8831 * data/glr.m4 (b4_parse_param): Remove.
8832 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
8833 (b4_lpure_formals): New.
8834 Use b4_identification.
8835 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
8836 b4_user_formals and b4_user_args.
8837 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
8838 (yyreportAmbiguity): When using a pure parser, also need
8839 the location, and the parse-params.
8840 Adjust callers.
8841 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
8842 When using a pure parser, also need the parse-params.
8843 Adjust callers.
8844 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
8845 (%pure-parser + %parse-param) LALR and GLR parsers.
8846 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
8847 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
8848 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
8849 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
8850 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
8851 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
8852 * doc/bison.texinfo: Untabify the whole file.
8853 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
8854 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
8855 (Error Reporting): Adjust to these new directives.
8856 Document %error-verbose, deprecate YYERROR_VERBOSE.
8857
8858 2002-11-03 Akim Demaille <akim@epita.fr>
8859
8860 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
8861 AT_CHECK_CALC_GLR invocations to use % directives, instead of
8862 command line options.
8863 * tests/cxx-type.at: Formatting changes.
8864
8865 2002-11-03 Paul Eggert <eggert@twinsun.com>
8866
8867 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
8868 to count columns correctly, and to check for invalid inputs.
8869
8870 Use mbsnwidth to count columns correctly. Account for tabs, too.
8871 Include mbswidth.h.
8872 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
8873 (extend_location): New function.
8874 (YY_LINES): Remove.
8875
8876 Handle CRLF in C code rather than in Lex code.
8877 (YY_INPUT): New macro.
8878 (no_cr_read): New function.
8879
8880 Scan UCNs, even though we don't fully handle them yet.
8881 (convert_ucn_to_byte): New function.
8882
8883 Handle backslash-newline correctly in C code.
8884 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
8885 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
8886 all uses changed.
8887 (tag, splice): New EREs. Do not allow NUL or newline in tags.
8888 Use {splice} wherever C allows backslash-newline.
8889 YY_STEP after space, newline, vertical-tab.
8890 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
8891
8892 (letter, id): Don't assume ASCII; e.g., spell out a-z.
8893
8894 ({int}, handle_action_dollar, handle_action_at): Check for integer
8895 overflow.
8896
8897 (YY_STEP): Omit trailing semicolon, so that it's more like C.
8898
8899 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
8900 as well as \000. Check for UCHAR_MAX, not 255.
8901 Allow \x with an arbitrary positive number of digits, as in C.
8902 Check for overflow here.
8903 Allow \? and UCNs, for compatibility with C.
8904
8905 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
8906 with quote slot used by complain_at.
8907
8908 * tests/input.at: Add tests for backslash-newline, m4 quotes
8909 in symbols, long literals, and funny escapes in strings.
8910
8911 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
8912 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
8913 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
8914 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
8915 * m4/mbswidth.m4: New file, from GNU coreutils.
8916
8917 * doc/bison.texinfo (Grammar Outline): Document // comments.
8918 (Symbols): Document that trigraphs have no special meaning in Bison,
8919 nor is backslash-newline allowed.
8920 (Actions): Document that trigraphs have no special meaning.
8921
8922 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
8923 no longer used.
8924
8925 2002-11-02 Paul Eggert <eggert@twinsun.com>
8926
8927 * src/reader.c: Don't include quote.h; not needed.
8928 (get_merge_function): Reword warning to be consistent with
8929 type clash diagnostic in grammar_current_rule_check.
8930
8931 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
8932 bug in trigraph handling.
8933
8934 * src/output.c (prepare_symbols): When printing token names,
8935 escape "[" as "@<:@" and likewise for "]".
8936
8937 * src/system.h (errno): Remove declaration, as we are now
8938 assuming C89 or better, and C89 guarantees errno.
8939
8940 2002-10-30 Paul Eggert <eggert@twinsun.com>
8941
8942 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
8943 Check for close failures.
8944 * src/files.h (xfclose): Return void, not int, since it always
8945 returned zero.
8946 * src/files.c (xfclose): Likewise. Report I/O error if ferror
8947 indicates one.
8948 * src/output.c (output_skeleton): Use xfclose rather than fclose
8949 and ferror. xfclose now checks ferror.
8950
8951 * data/glr.c (YYLEFTMOST_STATE): Remove.
8952 (yyreportTree): Use a stack-based leftmost state. This avoids
8953 our continuing battles with bogus warnings about initializers.
8954
8955 2002-10-30 Akim Demaille <akim@epita.fr>
8956
8957 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
8958 #if.
8959
8960 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8961
8962 * tests/glr-regr1.at: New test for reported regressions.
8963 * tests/testsuite.at: Add glr-regr1.at test.
8964 * tests/Makefile.am: Add glr-regr1.at test.
8965
8966 2002-10-24 Paul Eggert <eggert@twinsun.com>
8967
8968 Version 1.75a.
8969
8970 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
8971 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
8972 we use malloc. Don't assume 'A' through 'Z' are contiguous.
8973 Don't assume strdup exists; POSIX says its an XSI extension.
8974 Check for buffer overflow on input.
8975
8976 2002-10-24 Akim Demaille <akim@epita.fr>
8977
8978 * src/output.c (output_skeleton): Don't disable M4sugar comments
8979 too soon: it results in comments being expanded.
8980 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
8981 first output.
8982
8983 2002-10-24 Akim Demaille <akim@epita.fr>
8984
8985 * data/yacc.c (m4_int_type): New.
8986 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
8987 char' as only yacc.c wants K&R portability.
8988 * data/glr.c (yysigned_char): Remove.
8989 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
8990 Reported by Quoc Peyrot.
8991
8992 2002-10-23 Paul Eggert <eggert@twinsun.com>
8993
8994 * src/main.c (main): With --trace=time, report times even if a
8995 non-fatal error occurs. Formerly, the times were reported in some
8996 such cases but not in others.
8997 * src/reader.c (reader): Just return if a complaint has been issued,
8998 instead of exiting, so that 'main' can report times.
8999
9000 2002-10-22 Akim Demaille <akim@epita.fr>
9001
9002 * src/system.h: Include sys/types.
9003 Reported by Bert Deknuydt.
9004
9005 2002-10-23 Paul Eggert <eggert@twinsun.com>
9006
9007 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
9008 Suggested by Art Haas.
9009
9010 2002-10-22 Paul Eggert <eggert@twinsun.com>
9011
9012 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
9013 decl; not needed any more.
9014 * src/main.c (main): Use return to exit, undoing yesterday's change.
9015 The last OS that we could find where this wouldn't work is
9016 SunOS 3.5, and that's too old to worry about now.
9017
9018 * data/glr.c (struct yyltype): Define members even when not
9019 doing locations. This is more consistent with yacc.c, and it
9020 works around the following bug reports:
9021 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
9022 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
9023
9024 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
9025 @acronym consistently. Standardize on "Yacc" instead of "YACC",
9026 "Algol" instead of "ALGOL". Give a bit more history about BNF.
9027
9028 2002-10-22 Akim Demaille <akim@epita.fr>
9029
9030 * data/README: New.
9031
9032 2002-10-21 Paul Eggert <eggert@twinsun.com>
9033
9034 Be consistent about 'bool'; the old code used an enum in one
9035 module and an int in another, and this violates the C standard.
9036 * m4/stdbool.m4: New file, from coreutils 4.5.3.
9037 * configure.ac (AC_HEADER_STDBOOL): Add.
9038 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
9039 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
9040 * src/symtab.c (hash_compare_symbol_t): Likewise.
9041 * src/system.h (bool, false, true): Use a definition consistent
9042 with ../lib/hash.c. All uses changed.
9043
9044 * src/complain.c (warning_issued): Renamed from warn_message_count,
9045 so that we needn't worry about integer overflow (!).
9046 Now of type bool. All uses changed.
9047 (complaint_issued): Renamed from complain_message_count; likewise.
9048
9049 * src/main.c (main): Use exit to exit with failure.
9050
9051 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
9052 rather than 1 and 0.
9053 * src/main.c (main): Likewise.
9054 * src/getargs.c (getargs): Likewise.
9055 * src/reader.c (reader): Likewise.
9056
9057 * src/getarg.c (getargs): Remove duplicate code for
9058 "Try `bison --help'".
9059
9060 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
9061 What was that "2" for?
9062
9063 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
9064 * src/getargs.c (usage): Likewise.
9065
9066 * src/getargs.c (getargs): When there are too few operands, report
9067 the last one. When there are too many, report the first extra
9068 one. This is how diffutils does it.
9069
9070 2002-10-20 Paul Eggert <eggert@twinsun.com>
9071
9072 Remove K&R vestiges.
9073 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
9074 * src/complain.c (VA_START): Remove. Assume prototypes.
9075 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
9076 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
9077 fatal): Assume prototypes.
9078 * src/complain.h: Assume prototypes.
9079 * src/system.h (PARAMS): Remove.
9080 Include <limits.h> unconditionally, since it's guaranteeed even
9081 for a freestanding C89 compiler.
9082 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
9083 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
9084
9085 2002-10-20 Akim Demaille <akim@epita.fr>
9086
9087 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
9088 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
9089 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
9090 (yyresolveStates, yyresolveAction, yyresolveStack)
9091 (yyprocessOneStack): Use them.
9092 (yy_reduce_print): New.
9093 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
9094
9095 2002-10-20 Akim Demaille <akim@epita.fr>
9096
9097 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
9098 arguments and output `void'.
9099 (b4_c_function): Rename as...
9100 (b4_c_function_def): this.
9101 (b4_c_function_decl, b4_c_ansi_function_def)
9102 (b4_c_ansi_function_decl): New.
9103 Change the interpretation of the arguments: before `int, foo', now
9104 `int foo, foo'.
9105 * data/yacc.c (yyparse): Prototype and define thanks to these.
9106 Adjust b4_c_function_def uses.
9107 * data/glr.c (yyparse): Likewise, but ANSI only.
9108
9109 2002-10-20 Akim Demaille <akim@epita.fr>
9110
9111 * src/output.c (prepare): Move the definition of `tokens_number',
9112 `nterms_number', `undef_token_number', `user_token_number_max'
9113 to...
9114 (prepare_tokens): Here.
9115 (prepare_tokens): Rename as...
9116 (prepare_symbols): this.
9117 (prepare): Move the definition of `rules_number' to...
9118 (prepare_rules): here.
9119 (prepare): Move the definition of `last', `final_state_number',
9120 `states_number' to...
9121 (prepare_states): here.
9122 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
9123
9124 2002-10-20 Akim Demaille <akim@epita.fr>
9125
9126 * src/tables.h, src/tables.c, src/output.c: Comment changes.
9127
9128 2002-10-20 Akim Demaille <akim@epita.fr>
9129
9130 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
9131 * data/c.m4: here.
9132
9133 2002-10-20 Akim Demaille <akim@epita.fr>
9134
9135 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
9136 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
9137 `pair'.
9138 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
9139 `name' to...
9140 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
9141 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
9142 These.
9143
9144 2002-10-19 Paul Eggert <eggert@twinsun.com>
9145
9146 Do not create a temporary file, as that involves security and
9147 cleanup headaches. Instead, use a pair of pipes.
9148 Derived from a suggestion by Florian Krohm.
9149 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
9150 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
9151 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
9152 (BISON_PREREQ_SUBPIPE): Add.
9153 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
9154 Add subpipe.h, subpipe.c.
9155 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
9156 * po/POTFILES.in: Add lib/subpipe.c.
9157 * src/output.c: Include "subpipe.h".
9158 (m4_invoke): Remove decl.
9159 (scan_skel): New decl.
9160 (output_skeleton): Use pipe rather than temporary file for m4 input.
9161 Check that m4sugar.m4 is readable, to avoid deadlock.
9162 Check for pipe I/O error.
9163 * src/scan-skel.l (readpipe): Remove decl.
9164 (scan_skel): New function, to be used in place of m4_invoke.
9165 Read from stream rather than file.
9166
9167 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
9168 float, as this generates a warning on Solaris 8 + GCC 3.2 with
9169 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
9170 this generates a more-accurate value anyway.
9171
9172 * lib/timevar.c (timervar_accumulate): Rename locals to
9173 avoid confusion with similarly-named more-global.
9174 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
9175
9176 * src/output.c (prepare): Use xstrdup to convert char const *
9177 to char *, to avoid GCC warning.
9178
9179 2002-10-19 Akim Demaille <akim@epita.fr>
9180
9181 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
9182 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
9183 Use them to have `calc.y' ready for %pure-parser.
9184 * data/yacc.c (YYLEX): Pass a yylex return type to
9185 b4_c_function_call.
9186
9187 2002-10-19 Akim Demaille <akim@epita.fr>
9188
9189 Prototype support of %lex-param and %parse-param.
9190
9191 * src/parse-gram.y: Add the definition of the %lex-param and
9192 %parse-param tokens, plus their rules.
9193 Drop the `_' version of %glr-parser.
9194 Add the "," token.
9195 * src/scan-gram.l (INITIAL): Scan them.
9196 * src/muscle_tab.c: Comment changes.
9197 (muscle_insert, muscle_find): Rename `pair' as `probe'.
9198 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
9199 (muscle_entry_s): The `value' member is no longer const.
9200 Adjust all dependencies.
9201 * src/muscle_tab.c (muscle_init): Adjust: use
9202 MUSCLE_INSERT_STRING.
9203 Initialize the obstack earlier.
9204 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
9205 (muscle_pair_list_grow): New.
9206 * data/c.m4 (b4_c_function_call, b4_c_args): New.
9207 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
9208 * tests/calc.at: Use %locations, not --locations.
9209 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
9210
9211 2002-10-19 Akim Demaille <akim@epita.fr>
9212
9213 * src/getargs.c (usage): Take status as argument and exit
9214 accordingly.
9215 Report the traditional `Try ... --help' message when status != 0.
9216 (usage, version): Don't take a FILE * as arg, it is pointless.
9217 (getargs): When there is an incorrect number of arguments, make it
9218 an error, and report it GNUlically thanks to `usage ()'.
9219
9220 2002-10-18 Paul Eggert <eggert@twinsun.com>
9221
9222 * data/glr.c (yyreportParseError): Don't assume that sprintf
9223 yields the length of the printed string, as this is not true
9224 on SunOS 4.1.4. Reported by Peter Klein.
9225
9226 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
9227 * tests/conflicts.at (%nonassoc and eof): Likewise.
9228 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
9229
9230 2002-10-17 Akim Demaille <akim@epita.fr>
9231
9232 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
9233 * src/getargs.c (trace_types, trace_args): Adjust.
9234 * src/reader.c (grammar_current_rule_prec_set)
9235 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
9236 Standardize error messages.
9237 And s/@prec/%prec/!
9238 (reader): Use trace_flag to enable scanner/parser debugging,
9239 instead of an adhoc scheme.
9240 * src/scan-gram.l: Remove trailing debugging code.
9241
9242 2002-10-16 Paul Eggert <eggert@twinsun.com>
9243
9244 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
9245 MUSCLE_TAB_H.
9246
9247 * NEWS: Officially drop support for building Bison with K&R C,
9248 since it didn't work anyway and it's not worth worrying about.
9249 * Makefile.maint (wget_files): Remove ansi2knr.c.
9250 (ansi2knr.c-url_prefix): Remove.
9251 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
9252 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
9253 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
9254
9255 2002-10-15 Paul Eggert <eggert@twinsun.com>
9256
9257 Stop using the "enum_" trick for K&R-style function definitions;
9258 it confused me, and I was the author! Instead, assume that people
9259 who want to use K&R C compilers (when using these modules in GCC,
9260 perhaps?) will run ansi2knr.
9261
9262 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
9263 All uses of "enum_" changed to "enum ".
9264 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
9265 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
9266
9267 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
9268 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
9269 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
9270 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
9271 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
9272 abitset_not, abitset_ones, abitset_or, abitset_or_and,
9273 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
9274 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
9275 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
9276 Use function prototypes; this removes the need for declaring
9277 static functions simply to provide their prototypes.
9278 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
9279 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
9280 bitset_count_, bitset_create, bitset_dump, bitset_first,
9281 bitset_free, bitset_init, bitset_last, bitset_next,
9282 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
9283 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
9284 bitset_print, bitset_release_memory, bitset_toggle_,
9285 bitset_type_choose, bitset_type_get, bitset_type_name_get,
9286 debug_bitset): Likewise.
9287 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
9288 * lib/bitset_stats.c (bitset_log_histogram_print,
9289 bitset_percent_histogram_print, bitset_stats_and,
9290 bitset_stats_and_cmp, bitset_stats_and_or,
9291 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
9292 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
9293 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
9294 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
9295 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
9296 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
9297 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
9298 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
9299 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
9300 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
9301 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
9302 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
9303 bitset_stats_zero): Likewise.
9304 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9305 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9306 bitsetv_dump, debug_bitsetv): Likewise.
9307 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
9308 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
9309 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
9310 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
9311 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
9312 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
9313 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
9314 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
9315 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
9316 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
9317 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
9318 Likewise.
9319 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
9320 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
9321 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
9322 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
9323 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
9324 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
9325 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
9326 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
9327 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
9328 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
9329 lbitset_xor_cmp, lbitset_zero): Likewise.
9330
9331 2002-10-14 Akim Demaille <akim@epita.fr>
9332
9333 Version 1.75.
9334
9335 2002-10-14 Akim Demaille <akim@epita.fr>
9336
9337 * tests/Makefile.am (maintainer-check-posix): New.
9338
9339 2002-10-14 Akim Demaille <akim@epita.fr>
9340
9341 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
9342 member.
9343
9344 2002-10-14 Akim Demaille <akim@epita.fr>
9345
9346 * src/tables.c (table_ninf_remap): base -> tab.
9347 Reported by Matt Rosing.
9348
9349 2002-10-14 Paul Eggert <eggert@twinsun.com>
9350
9351 * tests/action.at, tests/calc.at, tests/conflicts.at,
9352 tests/cxx-type.at, tests/headers.at, tests/input.at,
9353 tests/regression.at, tests/synclines.at, tests/torture.at:
9354 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
9355 so that the tests still work even if POSIXLY_CORRECT is set.
9356 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
9357
9358 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
9359 for portability to K&R hosts. Fix typo: signed char is guaranteed
9360 only to 127, not to 128.
9361 * data/glr.c (yysigned_char): New type.
9362 * data/yacc.c (yysigned_char): Likewise.
9363 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
9364
9365 2002-10-13 Paul Eggert <eggert@twinsun.com>
9366
9367 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
9368 true due to limited range of data type" warning from GCC.
9369
9370 * data/c.m4 (b4_token_defines): Protect against double-inclusion
9371 by wrapping enum yytokentype's definition inside #ifndef
9372 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
9373
9374 2002-10-13 Akim Demaille <akim@epita.fr>
9375
9376 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
9377 Un yy- yyrhs to avoid the name clash with the global YYRHS.
9378
9379 2002-10-13 Akim Demaille <akim@epita.fr>
9380
9381 * Makefile.maint: Update from Autoconf 2.54.
9382 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
9383
9384 2002-10-13 Akim Demaille <akim@epita.fr>
9385
9386 * src/print.c (print_state): Separate the list of solved conflicts
9387 from the other items.
9388 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
9389
9390 2002-10-13 Akim Demaille <akim@epita.fr>
9391
9392 Let nondeterministic skeletons be usable with deterministic
9393 tables.
9394
9395 With the patch, GAWK compiled by GCC without -O2 passes its test
9396 suite using a GLR parser driven by LALR tables. It fails with -O2
9397 because `struct stat' gives two different answers on my machine:
9398 88 (definition of an auto var) and later 96 (memset on this var).
9399 Hence the stack is badly corrumpted. The headers inclusion is to
9400 blame: if I move the awk.h inclusion before GLR's system header
9401 inclusion, the two struct stat have the same size.
9402
9403 * src/tables.c (pack_table): Always create conflict_table.
9404 (token_actions): Always create conflict_list.
9405 * data/glr.c (YYFLAG): Remove, unused.
9406
9407 2002-10-13 Akim Demaille <akim@epita.fr>
9408
9409 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
9410 (O0FLAGS): New.
9411 (VALGRIND, GXX): New.
9412 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
9413 * tests/bison.in: Run $PREBISON a pre-command.
9414 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
9415 (maintainer-check-g++): New.
9416 * Makefile.am (maintainer-check): New.
9417
9418 2002-10-13 Akim Demaille <akim@epita.fr>
9419
9420 * data/glr.c: Formatting changes.
9421 Tweak some trace messages to match yacc.c's.
9422
9423 2002-10-13 Akim Demaille <akim@epita.fr>
9424
9425 GLR parsers sometimes raise parse errors instead of performing the
9426 default reduction.
9427 Reported by Charles-Henry de Boysson.
9428
9429 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
9430 check the length of the traces when %glr.
9431 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
9432 GLR's traces.
9433 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
9434 Test GLR parsers.
9435 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
9436 (yyltype): Remove the yy prefix from the member names.
9437 (yytable): Complete its comment.
9438 (yygetLRActions): Map error action number from YYTABLE from
9439 YYTABLE_NINF to 0.
9440 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
9441 (which was a bug: it should have been YYTABEL_NINF, and yet it was
9442 not satisfying as we could compare an YYACTION computed from
9443 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
9444 only value for error actions.
9445 (yyreportParseError): In verbose parse error messages, don't issue
9446 `error' in the list of expected tokens.
9447 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
9448 next action to perform to match glr.c's decoding.
9449 (yytable): Complete its comment.
9450
9451 2002-10-13 Paul Eggert <eggert@twinsun.com>
9452
9453 Fix problem reported by Henrik Grubbstroem in
9454 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
9455 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
9456 because the Bison parser reads the second action before reducing
9457 the first one.
9458 * src/scan-gram.l (rule_length): New static var.
9459 Use it to keep track of the rule length in the scanner, since
9460 we can't expect the parser to be in lock-step sync with the scanner.
9461 (handle_action_dollar, handle_action_at): Use this var.
9462 * tests/actions.at (Exotic Dollars): Test for the problem.
9463
9464 2002-10-12 Paul Eggert <eggert@twinsun.com>
9465
9466 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
9467 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
9468 Include <sys/time.h> when checking for clock_t and struct tms.
9469 Use same include order as source.
9470 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
9471 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
9472
9473 * lib/timevar.c: Update copyright date and clarify comments.
9474 (get_time) [IN_GCC]: Keep the GCC version for reference.
9475
9476 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
9477 GCC version as of today, then merge Bison's changes.
9478 Change "GCC" to "Bison" in copyright notice. timevar.def's
9479 author is Akim, so change that too.
9480
9481 * src/reader.c (grammar_current_rule_check):
9482 Don't worry about the default action if $$ is untyped.
9483 Prevents bogus warnings reported by Jim Gifford in
9484 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
9485
9486 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
9487 * data/glr.c, data/lalr1.cc, data/yacc.c:
9488 Output token definitions before the first part of user declarations.
9489 Fixes compatibility problem reported by Jim Gifford for kbd in
9490 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
9491
9492 2002-10-11 Paul Eggert <eggert@twinsun.com>
9493
9494 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
9495 (yyparse): here. This undoes some of the 2002-07-25 change.
9496 Compatibility problem reported by Ralf S. Engelschall with
9497 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
9498
9499 2002-10-11 Akim Demaille <akim@epita.fr>
9500
9501 * tests/regression.at Characters Escapes): New.
9502 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
9503 characters.
9504 Reported by Jan Nieuwenhuizen.
9505
9506 2002-10-11 Akim Demaille <akim@epita.fr>
9507
9508 * po/id.po: New.
9509
9510 2002-10-10 Paul Eggert <eggert@twinsun.com>
9511
9512 Portability fixes for bitsets; this also avoids several GCC
9513 warnings.
9514
9515 * lib/abitset.c: Include <stddef.h>, for offsetof.
9516 * lib/lbitset.c: Likewise.
9517
9518 * lib/abitset.c (abitset_bytes): Return a size that is aligned
9519 properly for vectors of objects. Do not assume that adding a
9520 header size to a multiple of a word size yields a value that is
9521 properly aligned for the whole union.
9522 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9523
9524 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
9525 unique names for structures.
9526 * lib/ebitset.c (ebitset_bytes): Likewise.
9527 * lib/lbitset.c (lbitset_bytes): Likewise.
9528
9529 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
9530 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
9531 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
9532 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
9533 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
9534 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
9535 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
9536 to improve the type-checking that GCC can do.
9537 * lib/bitset.c (bitset_op4_cmp): Likewise.
9538 * lib/bitset_stats.c (bitset_stats_count,
9539 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
9540 bitset_stats_copy, bitset_stats_disjoint_p,
9541 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
9542 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
9543 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
9544 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
9545 bitset_stats_and_or_cmp, bitset_stats_andn_or,
9546 bitset_stats_andn_or_cmp, bitset_stats_or_and,
9547 bitset_stats_or_and_cmp): Likewise.
9548 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
9549 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
9550 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
9551 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
9552
9553 * lib/abitset.h: Include bitset.h, not bbitset.h.
9554 * lib/ebitset.h: Likewise.
9555 * lib/lbitset.h: Likewise.
9556
9557 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
9558 All instances of parameters of type enum bitset_opts are now of
9559 type enum_bitset_opts, to conform to the C Standard, and similarly
9560 for enum_bitset_type.
9561 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
9562 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
9563
9564 Do not use "struct bitset_struct" to mean different things in
9565 different modules. Not only is this confusing, it violates
9566 the C Standard, which requires that structure types in different
9567 modules must be compatible if one is to be passed to the other.
9568 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
9569 All instances of "struct bitset_struct *" replaced with "bitset".
9570 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
9571 (union bitset_union, struct abitset_struct, struct ebitset_struct,
9572 struct lbitset_struct, struct bitset_stats_struct): New types.
9573 All uses of struct bitset_struct changed to union bitset_union,
9574 etc.
9575 * lib/abitset.c (struct abitset_struct, abitset,
9576 struct bitset_struct): Remove.
9577 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
9578 struct bitset_struct): Remove.
9579 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
9580 bitset_struct): Remove.
9581 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
9582 Likewise.
9583
9584 Do not call a function of type T using a call that assumes the
9585 function is of a different type U. Standard C requires that a
9586 function must be called with a type that is compatible with its
9587 definition.
9588 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9589 New decls.
9590 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9591 New functions.
9592 * lib/ebitset.c (PFV): Remove.
9593 * lib/lbitset.c (PFV): Likewise.
9594 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
9595 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
9596 decls.
9597 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
9598 (ebitset_vtable): Use them.
9599 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
9600 lbitset_xor): New functions.
9601 (lbitset_vtable): Use them.
9602
9603 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
9604 Declare.
9605
9606 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
9607 GCC warning.
9608 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
9609 Use offsetof, for simplicity.
9610
9611 2002-10-06 Paul Eggert <eggert@twinsun.com>
9612
9613 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
9614 the same width as int. This reapplies a hunk of the 2002-08-12 patch
9615 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
9616 which was inadvertently undone by the 2002-09-30 patch.
9617 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
9618 the same width as int.
9619
9620 2002-10-04 Paul Eggert <eggert@twinsun.com>
9621
9622 Version 1.50.
9623
9624 * configure.ac (AC_INIT), NEWS: Increment version number.
9625
9626 * doc/bison.texinfo: Minor spelling, grammar, and white space
9627 fixes.
9628 (Symbols): Mention that any negative value returned from yylex
9629 signifies end-of-input. Warn about negative chars. Mention
9630 the portable Standard C character set.
9631
9632 The GNU coding standard says CFLAGS and YFLAGS are reserved
9633 for the installer to set.
9634 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
9635 * src/Makefile.am (AM_CFLAGS): Likewise.
9636 (AM_YFLAGS): Renamed from YFLAGS.
9637
9638 Fix some MAX and MIN problems.
9639 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
9640 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
9641 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
9642 * src/reader.c (reader): Use it.
9643
9644 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
9645 POSIX 1003.1-2001 has removed fgrep.
9646
9647 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9648
9649 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
9650 interpreted as signed.
9651 * lib/ebitset.c (ebitset_list): Fix bug.
9652
9653 2002-10-01 Paul Eggert <eggert@twinsun.com>
9654
9655 More fixes for 64-bit hosts and large bitsets.
9656
9657 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
9658 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
9659 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
9660 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
9661 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
9662 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
9663 bitset_count_): Likewise.
9664 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
9665 bitset_first, bitset_last): Likewise.
9666 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
9667 bitset_stats_list_reverse, bitset_stats_size,
9668 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
9669 Likewise.
9670 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9671 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9672 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9673 bitsetv_reflexive_transitive_closure): Likewise.
9674 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
9675 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
9676 Likewise.
9677 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
9678 Likewise.
9679
9680 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
9681 Use size_t, not unsigned int, to count bytes.
9682 * lib/abitset.h (abitset_bytes): Likewise.
9683 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
9684 Likewise.
9685 * lib/bitset.h (bitset_bytes): Likewise.
9686 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
9687 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
9688 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9689 * lib/ebitset.c (ebitset_bytes): Likewise.
9690 * lib/ebitset.h (ebitset_bytes): Likewise.
9691 * lib/lbitset.c (lbitset_bytes): Likewise.
9692 * lib/lbitset.h (lbitset_bytes): Likewise.
9693
9694 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
9695 abitset_subset_p, abitset_disjoint_p, abitset_and,
9696 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
9697 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
9698 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
9699 abitset_or_and, abitset_or_and_cmp):
9700 Use bitset_windex instead of unsigned int.
9701 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9702 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
9703 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
9704 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
9705 Likewise.
9706 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
9707
9708 * lib/bitset.c (bitset_print):
9709 Use proper printf formats for widths of integer types.
9710 * lib/bitset_stats.c (bitset_percent_histogram_print,
9711 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
9712 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9713 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9714 * lib/lbitset.c (lbitset_bytes): Likewise.
9715
9716 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
9717 BITSET_SIZE_MAX): New macros.
9718 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
9719 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
9720 to BITSET_WINDEX_MAX.
9721
9722 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
9723 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
9724 since we now return the bitset_bindex type (not int).
9725
9726 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
9727 when computing sizes.
9728 * lib/ebitset.c (ebitset_elts_grow): Likewise.
9729
9730 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
9731 and avoid cast to unsigned.
9732
9733 2002-09-30 Akim Demaille <akim@epita.fr>
9734
9735 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9736 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
9737 Updates from Michael Hayes.
9738
9739 2002-09-30 Art Haas <ahaas@neosoft.com>
9740
9741 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
9742 invocations.
9743 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
9744 defined.
9745
9746 2002-09-27 Akim Demaille <akim@epita.fr>
9747
9748 Version 1.49c.
9749
9750 2002-09-27 Akim Demaille <akim@epita.fr>
9751
9752 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
9753 (Because of AC_LIBSOURCE).
9754
9755 2002-09-27 Akim Demaille <akim@epita.fr>
9756
9757 Playing with Autoscan.
9758
9759 * configure.ac: Remove the old LIBOBJ tweaks.
9760 (AC_REPLACE_FUNCS): Add strrchr and strtol.
9761 * lib/strrchr.c: New.
9762 * lib/strtol.c: New, from the Coreutils 4.5.1.
9763
9764 2002-09-27 Akim Demaille <akim@epita.fr>
9765
9766 Playing with Autoscan.
9767
9768 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
9769 * lib/Makefile.am (libbison_a_SOURCES): No longer include
9770 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
9771 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
9772 Coreutils 4.5.1.
9773
9774 2002-09-24 Akim Demaille <akim@epita.fr>
9775
9776 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
9777 (Frequently Asked Questions, Parser Stack Overflow): New.
9778
9779 2002-09-13 Akim Demaille <akim@epita.fr>
9780
9781 Playing with autoscan.
9782
9783 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
9784 * src/files.c (skeleton_find): Remove, unused.
9785 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
9786 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
9787
9788 2002-09-13 Akim Demaille <akim@epita.fr>
9789
9790 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
9791 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
9792
9793 2002-09-13 Akim Demaille <akim@epita.fr>
9794
9795 * configure.ac: Require 2.54.
9796 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
9797 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
9798 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
9799 Remove, provided by Autoconf macros.
9800
9801 2002-09-12 Akim Demaille <akim@epita.fr>
9802
9803 * m4/prereq.m4: Update, from Coreutils 4.5.1.
9804
9805 2002-09-12 Akim Demaille <akim@epita.fr>
9806
9807 * m4/prereq.m4: Update, from Fileutils 4.1.5.
9808 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
9809 Reported by Martin Mokrejs.
9810
9811 2002-09-10 Akim Demaille <akim@epita.fr>
9812
9813 * src/parse-gram.y: Associate a human readable string to each
9814 token type.
9815 * tests/regression.at (Invalid inputs): Adjust.
9816
9817 2002-09-10 Gary V. Vaughan <gary@gnu.org>
9818
9819 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
9820 with an Autoconf-2.5x style configure.ac.
9821
9822 2002-09-06 Paul Eggert <eggert@twinsun.com>
9823
9824 * doc/bison.texinfo (Conditions): Make explicit that the GPL
9825 exception applies only to yacc.c. This is a modification of a
9826 patch originally suggested by Akim Demaille.
9827
9828 2002-09-06 Akim Demaille <akim@epita.fr>
9829
9830 * data/c.m4 (b4_copyright): Move the GPL exception comment from
9831 here to...
9832 * data/yacc.c: here.
9833
9834 * data/lalr1.cc (struct yyltype): Don't define it, since we use
9835 LocationType.
9836 (b4_ltype): Default to yy::Location from location.hh.
9837
9838 2002-09-04 Jim Meyering <jim@meyering.net>
9839
9840 * data/yacc.c: Guard the declaration of yytoknum also with
9841 `#ifdef YYPRINT', so it is declared only when used.
9842
9843 2002-09-04 Akim Demaille <akim@epita.fr>
9844
9845 * configure.in: Rename as...
9846 * configure.ac: this.
9847 Bump to 1.49c.
9848
9849 2002-09-04 Akim Demaille <akim@epita.fr>
9850
9851 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
9852 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
9853 translate maintainer only messages.
9854
9855 2002-08-12 Paul Eggert <eggert@twinsun.com>
9856
9857 Version 1.49b.
9858
9859 * Makefile.am (SUBDIRS): Remove intl.
9860 (DISTCLEANFILES): Remove.
9861 * NEWS: Mention that GNU M4 is now required. Clarify what is
9862 meant by "larger grammars". Mention the pt_BR translation.
9863 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
9864 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
9865 Bump version from 0.11.2 to 0.11.5.
9866 (BISON_PREREQ_STAGE): Remove.
9867 (AM_GNU_GETTEXT): Use external gettext.
9868 (AC_OUTPUT): Remove intl/Makefile.
9869
9870 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
9871
9872 * data/glr.c: Include string.h, for strlen.
9873 (yyreportParseError): Use size_t for yysize.
9874 (yy_yypstack): No longer nested inside yypstates, as nested
9875 functions are not portable. Do not assume size_t is the
9876 same width as int.
9877 (yypstates): Do not assume that ptrdiff_t is the same width
9878 as int, and similarly for yyposn and YYINDEX.
9879
9880 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
9881
9882 * lib/Makefile.am (INCLUDES): Do not include from the intl
9883 directory, which has been removed.
9884 * src/Makefile.am (INCLUDES): Likewise.
9885
9886 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
9887 (bitsets_sources, additional_bitsets_sources, timevars_sources):
9888 New vars.
9889
9890 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
9891 * tests/Makefile.am (EXTRA_DIST): Likewise.
9892
9893 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
9894 Do not assume that bitset_windex is the same width as unsigned.
9895
9896 * lib/abitset.c (abitset_unused_clear): Do not assume that
9897 bitset_word is the same width as int.
9898 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
9899 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
9900 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
9901 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
9902 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
9903
9904 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
9905 portability to one's complement hosts!).
9906 * lib/ebitset.c (ebitset_op1): Likewise.
9907 * lib/lbitset.c (lbitset_op1): Likewise.
9908
9909 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
9910 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9911 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
9912 Sync with fileutils.
9913 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
9914 lib/gettext.h: Sync with diffutils.
9915
9916 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
9917 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
9918
9919 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
9920 PROTOTYPES to check for prototypes, and "defined __STDC__" to
9921 check for void *.
9922
9923 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
9924 size_t; the old version tried to do this but casted improperly.
9925 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
9926 (bitset_test): Now returns int, not unsigned long.
9927
9928 * lib/bitset_stats.c: Include "gettext.h".
9929 (_): New macro.
9930 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
9931 name locals "index", as it generates unnecessary warnings on some
9932 hosts that have an "index" function.
9933
9934 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
9935 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
9936 they need translation.
9937 * src/LR0.c (state_list_append, new_itemsets, get_state,
9938 append_states, generate_states): Likewise.
9939 * src/assoc.c (assoc_to_string): Likewise.
9940 * src/closure.c (print_closure, set_firsts, closure): Likewise.
9941 * src/gram.c (grammar_dump): Likewise.
9942 * src/injections.c (injections_compute): Likewise.
9943 * src/lalr.c (lookaheads_print): Likewise.
9944 * src/relation.c (relation_transpose): Likewise.
9945 * src/scan-gram.l: Likewise.
9946 * src/tables.c (table_grow, pack_vector): Likewise.
9947
9948 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
9949 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
9950 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
9951 * m4/mbstate_t.m4: Sync with fileutils.
9952 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
9953
9954 * po/LINGUAS: Add pt_BR.
9955 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
9956 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
9957 lib/timevar.c.
9958 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
9959 manual recommends.
9960 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
9961
9962 * src/complain.c (strerror_r): Remove decl; not needed.
9963 (strerror): Use same pattern as ../lib/error.c.
9964
9965 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
9966
9967 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
9968
9969 * src/main.c (main): Cast result of bindtextdomain and textdomain
9970 to void, to avoid a GCC warning when --disable-nls is in effect.
9971
9972 * src/scan-gram.l: Use strings rather than escapes when possible,
9973 to minimize the number of warnings from xgettext.
9974 (handle_action_dollar, handle_action_at): Don't use isdigit,
9975 as it mishandles negative chars and it may not work as expected
9976 outside the C locale.
9977
9978 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
9979 this is a GCC extension and is not portable to other compilers.
9980
9981 * src/system.h (alloca): Use same pattern as ../lib/error.c.
9982 Do not include <ctype.h>; no longer needed.
9983 Do not include <malloc.h>; no longer needed (and generates
9984 warnings on OpenBSD 3.0).
9985
9986 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
9987 it's not portable.
9988
9989 * tests/regression.at: Do not use 'cc -c input.c -o input';
9990 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
9991
9992 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
9993 exit status as failure, not just exit status 1. Sun C exits
9994 with status 2 sometimes.
9995
9996 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
9997 Use it for the two large tests.
9998
9999 2002-08-02 Akim Demaille <akim@epita.fr>
10000
10001 * src/conflicts.c (conflicts_output): Don't output rules never
10002 reduced here, since anyway that computation doesn't work.
10003 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
10004 (rule_useless_p, rule_never_reduced_p): New.
10005 (grammar_rules_partial_print): Use a filter instead of a range.
10006 Display the title only if needed.
10007 (grammar_rules_print): Adjust.
10008 (grammar_rules_never_reduced_report): New.
10009 * src/tables.c (action_row): Move the computation of rules never
10010 reduced to...
10011 (token_actions): here.
10012 * src/main.c (main): Make the parser before making the report, so
10013 that rules never reduced are computed.
10014 Call grammar_rules_never_reduced_report.
10015 * src/print.c (print_results): Report rules never reduced.
10016 * tests/conflicts.at, tests/reduce.at: Adjust.
10017
10018 2002-08-01 Akim Demaille <akim@epita.fr>
10019
10020 Instead of attaching lookaheads and duplicating the rules being
10021 reduced by a state, attach the lookaheads to the reductions.
10022
10023 * src/state.h (state_t): Remove the `lookaheads',
10024 `lookaheads_rule' member.
10025 (reductions_t): Add a `lookaheads' member.
10026 Use a regular array for the `rules'.
10027 * src/state.c (reductions_new): Initialize the lookaheads member
10028 to 0.
10029 (state_rule_lookaheads_print): Adjust.
10030 * src/state.h, src/state.c (state_reductions_find): New.
10031 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
10032 (count_rr_conflicts): Adjust.
10033 * src/lalr.c (LArule): Remove.
10034 (add_lookback_edge): Adjust.
10035 (state_lookaheads_count): New.
10036 (states_lookaheads_initialize): Merge into...
10037 (initialize_LA): this.
10038 (lalr_free): Adjust.
10039 * src/main.c (main): Don't free nullable and derives too early: it
10040 is used by --verbose.
10041 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
10042
10043 2002-08-01 Akim Demaille <akim@epita.fr>
10044
10045 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
10046 `rule_number_t**'.
10047 (set_derives, free_derives): Rename as...
10048 (derives_compute, derives_free): this.
10049 Adjust all dependencies.
10050 * src/nullable.c (set_nullable, free_nullable): Rename as...
10051 (nullable_compute, nullable_free): these.
10052 (rule_list_t): Store rule_t *, not rule_number_t.
10053 * src/state.c (state_rule_lookaheads_print): Directly compare rule
10054 pointers, instead of their numbers.
10055 * src/main.c (main): Call nullable_free, and derives_free earlier,
10056 as they were lo longer used.
10057
10058 2002-08-01 Akim Demaille <akim@epita.fr>
10059
10060 * lib/timevar.c (get_time): Include children time.
10061 * src/lalr.h (LA, LArule): Don't export them: used with the
10062 state_t.
10063 * src/lalr.c (LA, LArule): Static.
10064 * src/lalr.h, src/lalr.c (lalr_free): New.
10065 * src/main.c (main): Call it.
10066 * src/tables.c (pack_vector): Check whether loc is >= to the
10067 table_size, not >.
10068 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
10069 (tables_generate): do it, since that's also it which allocates
10070 them.
10071 Don't free LA and LArule, main does.
10072
10073 2002-07-31 Akim Demaille <akim@epita.fr>
10074
10075 Separate parser tables computation and output.
10076
10077 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
10078 (conflict_list, conflict_list_cnt, table, check, table_ninf)
10079 (yydefgoto, yydefact, high): Move to...
10080 * src/tables.h, src/tables.c: here.
10081 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
10082 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
10083 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
10084 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
10085 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
10086 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
10087 (action_row, save_row, token_actions, save_column, default_goto)
10088 (goto_actions, sort_actions, matching_state, pack_vector)
10089 (table_ninf_remap, pack_table, prepare_actions): Move to...
10090 * src/tables.c: here.
10091 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
10092 * src/output.c (token_actions, output_base, output_conflicts)
10093 (output_check): Merge into...
10094 (prepare_actions): this.
10095 (actions_output): Rename as...
10096 (user_actions_output): this.
10097 * src/main.c (main): Call tables_generate and tables_free.
10098
10099 2002-07-31 Akim Demaille <akim@epita.fr>
10100
10101 Steal GCC's --time-report support.
10102
10103 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
10104 stolen/adjusted from GCC.
10105 * m4/stage.m4: Remove time related checks.
10106 * m4/timevar.m4: New.
10107 * configure.in: Adjust.
10108 * src/system.h: Adjust to using timevar.h.
10109 * src/getargs.h, src/getargs.c: Support trace_time for
10110 --trace=time.
10111 * src/main.c (stage): Remove.
10112 (main): Replace `stage' invocations with timevar calls.
10113 * src/output.c: Insert pertinent timevar calls.
10114
10115 2002-07-31 Akim Demaille <akim@epita.fr>
10116
10117 Let --trace have arguments.
10118
10119 * src/getargs.h (enum trace_e): New.
10120 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
10121 (long_options, short_options): --trace/-T takes an optional
10122 argument.
10123 Change all the uses of trace_flag to reflect the new flags.
10124 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
10125
10126 Strengthen `stage' portability.
10127
10128 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
10129 * configure.in: Use it.
10130 Don't check for malloc.h and sys/times.h.
10131 * src/system.h: Include them when appropriate.
10132 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
10133 times and struct tms are available.
10134
10135 2002-07-30 Akim Demaille <akim@epita.fr>
10136
10137 In verbose parse error message, don't report `error' as an
10138 expected token.
10139 * tests/actions.at (Printers and Destructors): Adjust.
10140 * tests/calc.at (Calculator $1): Adjust.
10141 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
10142 error message, do not report the parser accepts the error token in
10143 that state.
10144
10145 2002-07-30 Akim Demaille <akim@epita.fr>
10146
10147 Normalize conflict related messages.
10148
10149 * src/complain.h, src/complain.c (warn, complain): New.
10150 * src/conflicts.c (conflicts_print): Use them.
10151 (conflict_report_yacc): New, extracted from...
10152 (conflicts_print): here.
10153 * tests/conflicts.at, tests/existing.at: Adjust.
10154
10155 2002-07-30 Akim Demaille <akim@epita.fr>
10156
10157 Report rules which are never reduced by the parser: those hidden
10158 by conflicts.
10159
10160 * src/LR0.c (save_reductions): Don't make the final state too
10161 different: save its reduction (accept) instead of having a state
10162 without any action (no shift or goto, no reduce).
10163 Note: the final state is now a ``regular'' state, i.e., the
10164 parsers now contain `reduce 0' as default reduction.
10165 Nevertheless, since they decide to `accept' when yystate =
10166 final_state, they still will not reduce rule 0.
10167 * src/print.c (print_actions, print_reduction): Adjust.
10168 * src/output.c (action_row): Track reduced rules.
10169 (token_actions): Report rules never reduced.
10170 * tests/conflicts.at, tests/regression.at: Adjust.
10171
10172 2002-07-30 Akim Demaille <akim@epita.fr>
10173
10174 `stage' was accidently included in a previous patch.
10175 Initiate its autoconfiscation.
10176
10177 * configure.in: Look for malloc.h and sys/times.h.
10178 * src/main.c (stage): Adjust.
10179 Report only when trace_flag.
10180
10181 2002-07-29 Akim Demaille <akim@epita.fr>
10182
10183 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
10184 state_number_t.
10185 (errs_t): symbol_t*, not symbol_number_t.
10186 (reductions_t): rule_t*, not rule_number_t.
10187 (FOR_EACH_SHIFT): New.
10188 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
10189 * src/print.c, src/print_graph.c: Adjust.
10190
10191 2002-07-29 Akim Demaille <akim@epita.fr>
10192
10193 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
10194
10195 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
10196 (endtoken, accept): these.
10197 * src/reader.c (reader): Set endtoken's default tag to "$end".
10198 Set undeftoken's tag to "$undefined" instead of "$undefined.".
10199 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
10200 Adjust.
10201
10202 2002-07-29 Akim Demaille <akim@epita.fr>
10203
10204 * src/reduce.c (reduce_grammar): When the language is empty,
10205 complain about the start symbol, not the axiom.
10206 Use its location.
10207 * tests/reduce.at (Empty Language): New.
10208
10209 2002-07-26 Akim Demaille <akim@epita.fr>
10210
10211 * src/reader.h, src/reader.c (gram_error): ... can't get
10212 yycontrol without making too strong assumptions on the parser
10213 itself.
10214 * src/output.c (prepare_tokens): Use the real 0th value of
10215 token_translations instead of `0'.
10216 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
10217 visible here.
10218 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
10219 for the time being: %locations ought to provide it to yyerror.
10220
10221 2002-07-25 Akim Demaille <akim@epita.fr>
10222
10223 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
10224 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
10225 * tests/regression.at (Web2c Actions): Adjust.
10226
10227 2002-07-25 Akim Demaille <akim@epita.fr>
10228
10229 Stop storing rules from 1 to nrules + 1.
10230
10231 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
10232 * src/nullable.c, src/output.c, src/print.c, src/reader.c
10233 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
10234 Iterate from 0 to nrules.
10235 Use rule_number_as_item_number and item_number_as_rule_number.
10236 Adjust to `derive' now containing possibly 0.
10237 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
10238 Handle the `- 1' part in rule numbers from/to item numbers.
10239 * src/conflicts.c (log_resolution): Fix the message which reversed
10240 shift and reduce.
10241 * src/output.c (action_row): Initialize default_rule to -1.
10242 (token_actions): Adjust.
10243 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
10244 expected output.
10245 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
10246
10247 2002-07-25 Akim Demaille <akim@epita.fr>
10248
10249 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
10250 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
10251 (b4_c_knr_arg_decl): New.
10252 * data/yacc.c: Use it to define yysymprint, yydestruct, and
10253 yyreport_parse_error.
10254
10255 2002-07-25 Akim Demaille <akim@epita.fr>
10256
10257 * data/yacc.c (yyreport_parse_error): New, extracted from...
10258 (yyparse): here.
10259 (yydestruct, yysymprint): Move above yyparse.
10260 Be K&R compliant.
10261
10262 2002-07-25 Akim Demaille <akim@epita.fr>
10263
10264 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
10265 replace...
10266 (b4_sint_type, b4_uint_type): these.
10267 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
10268 * tests/regression.at (Web2c Actions): Adjust.
10269
10270 2002-07-25 Akim Demaille <akim@epita.fr>
10271
10272 * src/gram.h (TIEM_NUMBER_MAX): New.
10273 (item_number_of_rule_number, rule_number_of_item_number): Rename
10274 as...
10275 (rule_number_as_item_number, item_number_as_rule_number): these.
10276 Adjust dependencies.
10277 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
10278 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
10279 (symbol_number_to_vector_number): New.
10280 (order): Of vector_number_t* type.
10281 (base_t, BASE_MAX, BASE_MIN): New.
10282 (froms, tos, width, pos, check): Of base_t type.
10283 (action_number_t, ACTION_MIN, ACTION_MAX): New.
10284 (actrow): Of action_number_t type.
10285 (conflrow): Of unsigned int type.
10286 (table_ninf, base_ninf): New.
10287 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
10288 (muscle_insert_int_table, muscle_insert_base_table)
10289 (muscle_insert_rule_number_table): New.
10290 (prepare_tokens): Output `toknum' as int_table.
10291 (action_row): Returns a rule_number_t.
10292 Use ACTION_MIN, not SHRT_MIN.
10293 (token_actions): yydefact is rule_number_t*.
10294 (table_ninf_remap): New.
10295 (pack_table): Use it for `base' and `table'.
10296 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
10297 replaced with...
10298 (YYPACT_NINF, YYTABLE_NINF): these.
10299 (yypact, yytable): Compute their types instead of hard-coded
10300 `short'.
10301 * tests/regression.at (Web2c Actions): Adjust.
10302
10303 2002-07-19 Akim Demaille <akim@epita.fr>
10304
10305 * src/scan-gram.l (id): Can start with an underscore.
10306
10307 2002-07-16 Akim Demaille <akim@epita.fr>
10308
10309 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
10310 Adjust all former `associativity' dependencies.
10311 * src/symtab.c (symbol_new): Default associativity is `undef', not
10312 `right'.
10313 (symbol_check_alias_consistence): Adjust.
10314
10315 2002-07-09 Akim Demaille <akim@epita.fr>
10316
10317 * doc/bison.texinfo: Properly set the ``header'' part.
10318 Use @dircategory ``GNU programming tools'' as per Texinfo's
10319 documentation.
10320 Use @copying.
10321
10322 2002-07-09 Akim Demaille <akim@epita.fr>
10323
10324 * lib/quotearg.h: Protect against multiple inclusions.
10325 * src/location.h (location_t): Add a `file' member.
10326 (LOCATION_RESET, LOCATION_PRINT): Adjust.
10327 * src/complain.c (warn_at, complain_at, fatal_at): Drop
10328 `error_one_per_line' support.
10329
10330 2002-07-09 Akim Demaille <akim@epita.fr>
10331
10332 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
10333 * src/reader.c (lineno): Remove.
10334 Adjust all dependencies.
10335 (get_merge_function): Take a location and use complain_at.
10336 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
10337 * tests/regression.at (Invalid inputs, Mixing %token styles):
10338 Adjust.
10339
10340 2002-07-09 Akim Demaille <akim@epita.fr>
10341
10342 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
10343 recovery rule, and forbid extensions when --yacc.
10344 (gram_error): Use complain_at.
10345 * src/reader.c (reader): Exit if there were parse errors.
10346
10347 2002-07-09 Akim Demaille <akim@epita.fr>
10348
10349 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
10350 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
10351 Reported by R Blake <blakers@mac.com>.
10352
10353 2002-07-09 Akim Demaille <akim@epita.fr>
10354
10355 * data/yacc.c: Output the copyright notive in the header.
10356
10357 2002-07-03 Akim Demaille <akim@epita.fr>
10358
10359 * src/output.c (froms, tos): Are state_number_t.
10360 (save_column): sp, sp1, and sp2 are state_number_t.
10361 (prepare): Rename `final' as `final_state_number', `nnts' as
10362 `nterms_number', `nrules' as `rules_number', `nstates' as
10363 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
10364 unused.
10365 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
10366 * data/lalr1.cc (nsym_): Remove, unused.
10367
10368 2002-07-03 Akim Demaille <akim@epita.fr>
10369
10370 * src/lalr.h, src/lalr.c (goto_number_t): New.
10371 * src/lalr.c (goto_list_t): New.
10372 Propagate them.
10373 * src/nullable.c (rule_list_t): New.
10374 Propagate.
10375 * src/types.h: Remove.
10376
10377 2002-07-03 Akim Demaille <akim@epita.fr>
10378
10379 * src/closure.c (print_fderives): Use rule_rhs_print.
10380 * src/derives.c (print_derives): Use rule_rhs_print.
10381 (rule_list_t): New, replaces `shorts'.
10382 (set_derives): Add comments.
10383 * tests/sets.at (Nullable, Firsts): Adjust.
10384
10385 2002-07-03 Akim Demaille <akim@epita.fr>
10386
10387 * src/output.c (prepare_actions): Free `tally' and `width'.
10388 (prepare_actions): Allocate and free `order'.
10389 * src/symtab.c (symbols_free): Free `symbols'.
10390 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
10391 * src/output.c (m4_invoke): Move to...
10392 * src/scan-skel.l: here.
10393 (<<EOF>>): Close yyout, and free its name.
10394
10395 2002-07-03 Akim Demaille <akim@epita.fr>
10396
10397 Fix some memory leaks, and fix a bug: state 0 was examined twice.
10398
10399 * src/LR0.c (new_state): Merge into...
10400 (state_list_append): this.
10401 (new_states): Merge into...
10402 (generate_states): here.
10403 (set_states): Don't ensure a proper `errs' state member here, do it...
10404 * src/conflicts.c (conflicts_solve): here.
10405 * src/state.h, src/state.c: Comment changes.
10406 (state_t): Rename member `shifts' as `transitions'.
10407 Adjust all dependencies.
10408 (errs_new): For consistency, also take the values as argument.
10409 (errs_dup): Remove.
10410 (state_errs_set): New.
10411 (state_reductions_set, state_transitions_set): Assert that no
10412 previous value was assigned.
10413 (state_free): New.
10414 (states_free): Use it.
10415 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
10416 temporary storage: use `errs' and `nerrs' as elsewhere.
10417 (set_conflicts): Allocate and free this `errs'.
10418
10419 2002-07-02 Akim Demaille <akim@epita.fr>
10420
10421 * lib/libiberty.h: New.
10422 * lib: Update the bitset implementation from upstream.
10423 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
10424 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
10425 * src/main.c: Adjust bitset stats calls.
10426
10427 2002-07-01 Paul Eggert <eggert@twinsun.com>
10428
10429 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
10430 char, so that negative chars don't collide with $.
10431
10432 2002-06-30 Akim Demaille <akim@epita.fr>
10433
10434 Have the GLR tests be `warning' checked, and fix the warnings.
10435
10436 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
10437 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
10438 (yyremoveDeletes): `yyi' and `yyj' are size_t.
10439 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
10440 (yyaddDeferredAction): static.
10441 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
10442 (yyreportParseError): yyprefix is const.
10443 yytokenp is used only when verbose.
10444 (yy__GNUC__): Replace with __GNUC__.
10445 (yypdumpstack): yyi is size_t.
10446 (yypreference): Un-yy local variables and arguments, to avoid
10447 clashes with `yyr1'. Anyway, we are not in the user name space.
10448 (yytname_size): be an int, as is compared with ints.
10449 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
10450 Use them.
10451 * tests/cxx-gram.at: Use quotation to protect $1.
10452 Use AT_COMPILE to enable warnings hunts.
10453 Prototype yylex and yyerror.
10454 `Use' argc.
10455 Include `string.h', not `strings.h'.
10456 Produce and prototype stmtMerge only when used.
10457 yylex takes a location.
10458
10459 2002-06-30 Akim Demaille <akim@epita.fr>
10460
10461 We spend a lot of time in quotearg, in particular when --verbose.
10462
10463 * src/symtab.c (symbol_get): Store a quoted version of the key.
10464 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
10465 Adjust all callers.
10466
10467 2002-06-30 Akim Demaille <akim@epita.fr>
10468
10469 * src/state.h (reductions_t): Rename member `nreds' as num.
10470 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
10471 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
10472
10473 2002-06-30 Akim Demaille <akim@epita.fr>
10474
10475 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
10476 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
10477 (shifts_to): Rename as...
10478 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
10479 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
10480 (TRANSITION_IS_DISABLED, transitions_to): these.
10481
10482 2002-06-30 Akim Demaille <akim@epita.fr>
10483
10484 * src/print.c (print_shifts, print_gotos): Merge into...
10485 (print_transitions): this.
10486 (print_transitions, print_errs, print_reductions): Align the
10487 lookaheads columns.
10488 (print_core, print_transitions, print_errs, print_state,
10489 print_grammar): Output empty lines separator before, not after.
10490 (state_default_rule_compute): Rename as...
10491 (state_default_rule): this.
10492 * tests/conflicts.at (Defaulted Conflicted Reduction),
10493 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
10494 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
10495
10496 2002-06-30 Akim Demaille <akim@epita.fr>
10497
10498 Display items as we display rules.
10499
10500 * src/gram.h, src/gram.c (rule_lhs_print): New.
10501 * src/gram.c (grammar_rules_partial_print): Use it.
10502 * src/print.c (print_core): Likewise.
10503 * tests/conflicts.at (Defaulted Conflicted Reduction),
10504 (Unresolved SR Conflicts): Adjust.
10505 (Unresolved SR Conflicts): Adjust and rename as...
10506 (Resolved SR Conflicts): this, as was meant.
10507 * tests/regression.at (Web2c Report): Adjust.
10508
10509 2002-06-30 Akim Demaille <akim@epita.fr>
10510
10511 * src/print.c (state_default_rule_compute): New, extracted from...
10512 (print_reductions): here.
10513 Pessimize, but clarify the code.
10514 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
10515
10516 2002-06-30 Akim Demaille <akim@epita.fr>
10517
10518 * src/output.c (action_row): Let default_rule be always a rule
10519 number.
10520
10521 2002-06-30 Akim Demaille <akim@epita.fr>
10522
10523 * src/closure.c (print_firsts, print_fderives, closure):
10524 Use BITSET_EXECUTE.
10525 * src/lalr.c (lookaheads_print): Likewise.
10526 * src/state.c (state_rule_lookaheads_print): Likewise.
10527 * src/print_graph.c (print_core): Likewise.
10528 * src/print.c (print_reductions): Likewise.
10529 * src/output.c (action_row): Likewise.
10530 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
10531
10532 2002-06-30 Akim Demaille <akim@epita.fr>
10533
10534 * src/print_graph.c: Use report_flag.
10535
10536 2002-06-30 Akim Demaille <akim@epita.fr>
10537
10538 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
10539 to...
10540 * src/relation.h, src/relation.c (traverse, relation_digraph)
10541 (relation_print, relation_transpose): New.
10542
10543 2002-06-30 Akim Demaille <akim@epita.fr>
10544
10545 * src/state.h, src/state.c (shifts_to): New.
10546 * src/lalr.c (build_relations): Use it.
10547
10548 2002-06-30 Akim Demaille <akim@epita.fr>
10549
10550 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
10551 (item_number_of_rule_number, rule_number_of_item_number): New.
10552 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
10553 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
10554 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
10555 Propagate their use.
10556 Much remains to be done, in particular wrt `shorts' from types.h.
10557
10558 2002-06-30 Akim Demaille <akim@epita.fr>
10559
10560 * src/symtab.c (symbol_new): Initialize the `printer' member.
10561
10562 2002-06-30 Akim Demaille <akim@epita.fr>
10563
10564 * src/LR0.c (save_reductions): Remove, replaced by...
10565 * src/state.h, src/state.c (state_reductions_set): New.
10566 (reductions, errs): Rename as...
10567 (reductions_t, errs_t): these.
10568 Adjust all dependencies.
10569
10570 2002-06-30 Akim Demaille <akim@epita.fr>
10571
10572 * src/LR0.c (state_list_t, state_list_append): New.
10573 (first_state, last_state): Now symbol_list_t.
10574 (this_state): Remove.
10575 (new_itemsets, append_states, save_reductions): Take a state_t as
10576 argument.
10577 (set_states, generate_states): Adjust.
10578 (save_shifts): Remove, replaced by...
10579 * src/state.h, src/state.c (state_shifts_set): New.
10580 (shifts): Rename as...
10581 (shifts_t): this.
10582 Adjust all dependencies.
10583 * src/state.h (state_t): Remove the `next' member.
10584
10585 2002-06-30 Akim Demaille <akim@epita.fr>
10586
10587 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
10588 escaped in slot 0.
10589
10590 2002-06-30 Akim Demaille <akim@epita.fr>
10591
10592 Use hash.h for the state hash table.
10593
10594 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
10595 (allocate_storage): Use state_hash_new.
10596 (free_storage): Use state_hash_free.
10597 (new_state, get_state): Adjust.
10598 * src/lalr.h, src/lalr.c (states): Move to...
10599 * src/states.h (state_t): Remove the `link' member, no longer
10600 used.
10601 * src/states.h, src/states.c: here.
10602 (state_hash_new, state_hash_free, state_hash_lookup)
10603 (state_hash_insert, states_free): New.
10604 * src/states.c (state_table, state_compare, state_hash): New.
10605 * src/output.c (output_actions): Do not free states now, since we
10606 still need to know the final_state number in `prepare', called
10607 afterwards. Do it...
10608 * src/main.c (main): here: call states_free after `output'.
10609
10610 2002-06-30 Akim Demaille <akim@epita.fr>
10611
10612 * src/state.h, src/state.c (state_new): New, extracted from...
10613 * src/LR0.c (new_state): here.
10614 * src/state.h (STATE_ALLOC): Move to...
10615 * src/state.c: here.
10616 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
10617 * src/state.h, src/state.c: here.
10618
10619 2002-06-30 Akim Demaille <akim@epita.fr>
10620
10621 * src/reader.c (gensym): Rename as...
10622 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
10623 (getsym): Rename as...
10624 (symbol_get): this.
10625
10626 2002-06-30 Akim Demaille <akim@epita.fr>
10627
10628 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
10629 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
10630 * src/output.c, src/print.c, src/print_graph.c: Propagate.
10631 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
10632
10633 2002-06-30 Akim Demaille <akim@epita.fr>
10634
10635 Make the test suite pass with warnings checked.
10636
10637 * tests/actions.at (Printers and Destructors): Improve.
10638 Avoid unsigned vs. signed issues.
10639 * tests/calc.at: Don't exercise the scanner here, do it...
10640 * tests/input.at (Torturing the Scanner): here.
10641
10642 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10643
10644 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
10645 reorganize first lines parallel to yacc.c.
10646
10647 2002-06-28 Akim Demaille <akim@epita.fr>
10648
10649 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
10650 (b4_token_enum, b4_token_defines): New, factored from...
10651 * data/lalr1.cc, data/yacc.c, glr.c: here.
10652
10653 2002-06-28 Akim Demaille <akim@epita.fr>
10654
10655 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
10656 unused variables.
10657 * src/output.c (merger_output): static.
10658
10659 2002-06-28 Akim Demaille <akim@epita.fr>
10660
10661 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
10662 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
10663 pacify GCC.
10664 * src/output.c (save_row): Initialize all the variables to pacify GCC.
10665
10666 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10667
10668 Accumulated changelog for new GLR parsing features.
10669
10670 * src/conflicts.c (count_total_conflicts): Change name to
10671 conflicts_total_count.
10672 * src/conflicts.h: Ditto.
10673 * src/output.c (token_actions): Use the new name.
10674 (output_conflicts): Change conflp => conflict_list_heads, and
10675 confl => conflict_list for better readability.
10676 * data/glr.c: Use the new names.
10677 * NEWS: Add self to GLR announcement.
10678
10679 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
10680
10681 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
10682 Akim Demaille.
10683
10684 * data/bison.glr: Change name to glr.c
10685 * data/glr.c: Renamed from bison.glr.
10686 * data/Makefile.am: Add glr.c
10687
10688 * src/getargs.c:
10689
10690 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
10691 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
10692
10693 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10694
10695 * data/bison.glr: Be sure to restore the
10696 current #line when returning to the skeleton contents after having
10697 exposed the input file's #line.
10698
10699 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10700
10701 * data/bison.glr: Bring up to date with changes to bison.simple.
10702
10703 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10704
10705 * data/bison.glr: Correct definitions that use b4_prefix.
10706 Various reformatting.
10707 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
10708 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
10709 yytokenp argument; now part of stack.
10710 (yychar): Define to behave as documented.
10711 (yyclearin): Ditto.
10712
10713 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10714
10715 * src/reader.h: Add declaration for free_merger_functions.
10716
10717 * src/reader.c (merge_functions): New variable.
10718 (get_merge_function): New function.
10719 (free_merger_functions): New function.
10720 (readgram): Check for %prec that is not followed by a symbol.
10721 Handle %dprec and %merge declarations.
10722 (packgram): Initialize dprec and merger fields in rules array.
10723
10724 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
10725 conflict_list_cnt, conflict_list_free): New variables.
10726 (table_grow): Also grow conflict_table.
10727 (prepare_rules): Output dprec and merger tables.
10728 (conflict_row): New function.
10729 (action_row): Output conflict lists for GLR parser. Don't use
10730 default reduction in conflicted states for GLR parser so that there
10731 are spaces for the conflict lists.
10732 (save_row): Also save conflict information.
10733 (token_actions): Allocate conflict list.
10734 (merger_output): New function.
10735 (pack_vector): Pack conflict table, too.
10736 (output_conflicts): New function to output yyconflp and yyconfl.
10737 (output_check): Allocate conflict_tos.
10738 (output_actions): Output conflict tables, also.
10739 (output_skeleton): Output b4_mergers definition.
10740 (prepare): Output b4_max_rhs_length definition.
10741 Use 'bison.glr' as default skeleton for GLR parsers.
10742
10743 * src/gram.c (glr_parser): New flag.
10744 (grammar_free): Call free_merger_functions.
10745
10746 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
10747 all pairs of conflicting reductions, rather than just all tokens
10748 causing conflicts. Needed to size conflict tables.
10749 (conflicts_output): Modify call to count_rr_conflicts for new
10750 interface.
10751 (conflicts_print): Ditto.
10752 (count_total_conflicts): New function.
10753
10754 * src/reader.h (merger_list): New type.
10755 (merge_functions): New variable.
10756
10757 * src/lex.h (tok_dprec, tok_merge): New token types.
10758
10759 * src/gram.h (rule_s): Add dprec and merger fields.
10760 (glr_parser): New flag.
10761
10762 * src/conflicts.h (count_total_conflicts): New function.
10763
10764 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
10765
10766 * doc/bison.texinfo (Generalized LR Parsing): New section.
10767 (GLR Parsers): New section.
10768 (Language and Grammar): Mention GLR parsing.
10769 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
10770 Correct typo ("tge" -> "the").
10771
10772 * data/bison.glr: New skeleton for GLR parsing.
10773
10774 * tests/cxx-gram.at: New tests for GLR parsing.
10775
10776 * tests/testsuite.at: Include cxx-gram.at.
10777
10778 * tests/Makefile.am: Add cxx-gram.at.
10779
10780 * src/parse-gram.y:
10781
10782 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
10783
10784 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
10785
10786 2002-06-27 Akim Demaille <akim@epita.fr>
10787
10788 * src/options.h, src/options.c: Remove.
10789 * src/getargs.c (short_options, long_options): New.
10790
10791 2002-06-27 Akim Demaille <akim@epita.fr>
10792
10793 * data/bison.simple, data/bison.c++: Rename as...
10794 * data/yacc.c, data/lalr1.cc: these.
10795 * doc/bison.texinfo (Environment Variables): Remove.
10796
10797 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
10798
10799 * src/getargs.c (report_argmatch): Initialize strtok().
10800
10801 2002-06-20 Akim Demaille <akim@epita.fr>
10802
10803 * data/bison.simple (b4_symbol_actions): New, replaces...
10804 (b4_symbol_destructor, b4_symbol_printer): these.
10805 (yysymprint): Be sure to call YYPRINT only for tokens, and using
10806 user token numbers.
10807
10808 2002-06-20 Akim Demaille <akim@epita.fr>
10809
10810 * data/bison.simple (yydestructor): Rename as...
10811 (yydestruct): this.
10812
10813 2002-06-20 Akim Demaille <akim@epita.fr>
10814
10815 * src/symtab.h, src/symtab.c (symbol_type_set)
10816 (symbol_destructor_set, symbol_precedence_set): The location is
10817 the last argument.
10818 Adjust all callers.
10819
10820 2002-06-20 Akim Demaille <akim@epita.fr>
10821
10822 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
10823 internals.
10824 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
10825 Takes a location.
10826 * src/symtab.h, src/symtab.c (symbol_class_set)
10827 (symbol_user_token_number_set): Likewise.
10828 Adjust all callers.
10829 Promote complain_at.
10830 * tests/input.at (Type Clashes): Adjust.
10831
10832 2002-06-20 Akim Demaille <akim@epita.fr>
10833
10834 * data/bison.simple (YYLEX): Fix the declaration when
10835 %pure-parser.
10836
10837 2002-06-20 Akim Demaille <akim@epita.fr>
10838
10839 * data/bison.simple (yysymprint): Don't print the token number,
10840 just its name.
10841 * tests/actions.at (Destructors): Rename as...
10842 (Printers and Destructors): this.
10843 Also exercise %printer.
10844
10845 2002-06-20 Akim Demaille <akim@epita.fr>
10846
10847 * data/bison.simple (YYDSYMPRINT): New.
10848 Use it to remove many of the #if YYDEBUG/if (yydebug).
10849
10850 2002-06-20 Akim Demaille <akim@epita.fr>
10851
10852 * src/symtab.h, src/symtab.c (symbol_t): printer and
10853 printer_location are new members.
10854 (symbol_printer_set): New.
10855 * src/parse-gram.y (PERCENT_PRINTER): New token.
10856 Handle its associated rule.
10857 * src/scan-gram.l: Adjust.
10858 (handle_destructor_at, handle_destructor_dollar): Rename as...
10859 (handle_symbol_code_at, handle_symbol_code_dollar): these.
10860 * src/output.c (symbol_printers_output): New.
10861 (output_skeleton): Call it.
10862 * data/bison.simple (yysymprint): New. Cannot be named yyprint
10863 since there are already many grammar files with a user `yyprint'.
10864 Replace the calls to YYPRINT to calls to yysymprint.
10865 * tests/calc.at: Adjust.
10866 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
10867 taking advantage of parser very internal details (stack size!).
10868
10869 2002-06-20 Akim Demaille <akim@epita.fr>
10870
10871 * src/scan-gram.l: Complete the scanner with the missing patterns
10872 to pacify Flex.
10873 Use `quote' and `symbol_tag_get' where appropriate.
10874
10875 2002-06-19 Akim Demaille <akim@epita.fr>
10876
10877 * tests/actions.at (Destructors): Augment to test locations.
10878 * data/bison.simple (yydestructor): Pass it the current location
10879 if locations are enabled.
10880 Prototype only when __STDC__ or C++.
10881 Change the argument names to move into the yy name space: there is
10882 user code here.
10883
10884 2002-06-19 Akim Demaille <akim@epita.fr>
10885
10886 * data/bison.simple (b4_pure_if): New.
10887 Use it instead of #ifdef YYPURE.
10888
10889 2002-06-19 Akim Demaille <akim@epita.fr>
10890
10891 * data/bison.simple (b4_location_if): New.
10892 Use it instead of #ifdef YYLSP_NEEDED.
10893
10894 2002-06-19 Akim Demaille <akim@epita.fr>
10895
10896 Prepare @$ in %destructor, but currently don't bind it in the
10897 skeleton, as %location use is not cleaned up yet.
10898
10899 * src/scan-gram.l (handle_dollar, handle_destructor_at)
10900 (handle_action_at): New.
10901 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
10902 a braced_code_t and a location as additional arguments.
10903 (handle_destructor_dollar): Instead of requiring `b4_eval', just
10904 unquote one when outputting `b4_dollar_dollar'.
10905 Adjust callers.
10906 * data/bison.simple (b4_eval): Remove.
10907 (b4_symbol_destructor): Adjust.
10908 * tests/input.at (Invalid @n): Adjust.
10909
10910 2002-06-19 Zack Weinberg <zack@codesourcery.com>
10911
10912 * doc/bison.texinfo: Document ability to have multiple
10913 prologue sections.
10914
10915 2002-06-18 Akim Demaille <akim@epita.fr>
10916
10917 * src/files.c (compute_base_names): When computing the output file
10918 names from the input file name, strip the directory part.
10919
10920 2002-06-18 Akim Demaille <akim@epita.fr>
10921
10922 * data/bison.simple.new: Comment changes.
10923 Reported by Andreas Schwab.
10924
10925 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
10926
10927 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
10928 there are no `label `yyoverflowlab' defined but not used' warnings
10929 when yyoverflow is defined.
10930
10931 2002-06-18 Akim Demaille <akim@epita.fr>
10932
10933 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
10934 new member.
10935 (symbol_destructor_set): Adjust.
10936 * src/output.c (symbol_destructors_output): Output the destructor
10937 locations.
10938 Output the symbol name.
10939 * data/bison.simple (b4_symbol_destructor): Adjust.
10940
10941 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
10942 and Akim Demaille <akim@epita.fr>
10943
10944 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
10945 what's left on the stack when the error recovery hits EOF.
10946 * tests/actions.at (Destructors): Complete to exercise this case.
10947
10948 2002-06-17 Akim Demaille <akim@epita.fr>
10949
10950 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
10951 arguments is really empty, not only equal to `[]'.
10952 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
10953 member.
10954 (symbol_destructor_set): New.
10955 * src/output.c (symbol_destructors_output): New.
10956 * src/reader.h (brace_code_t, current_braced_code): New.
10957 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
10958 (handle_dollar): Rename as...
10959 (handle_action_dollar): this.
10960 (handle_destructor_dollar): New.
10961 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
10962 (grammar_declaration): Use it.
10963 * data/bison.simple (yystos): Is always defined.
10964 (yydestructor): New.
10965 * tests/actions.at (Destructors): New.
10966 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
10967
10968 2002-06-17 Akim Demaille <akim@epita.fr>
10969
10970 * src/symlist.h, src/symlist.c (symbol_list_length): New.
10971 * src/scan-gram.l (handle_dollar, handle_at): Compute the
10972 rule_length only when needed.
10973 * src/output.c (actions_output, token_definitions_output): Output
10974 the full M4 block.
10975 * src/symtab.c: Don't access directly to the symbol tag, use
10976 symbol_tag_get.
10977 * src/parse-gram.y: Use symbol_list_free.
10978
10979 2002-06-17 Akim Demaille <akim@epita.fr>
10980
10981 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
10982 (symbol_list_prepend, get_type_name): Move to...
10983 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
10984 (symbol_list_prepend, symbol_list_n_type_name_get): here.
10985 Adjust all callers.
10986 (symbol_list_free): New.
10987 * src/scan-gram.l (handle_dollar): Takes a location.
10988 * tests/input.at (Invalid $n): Adjust.
10989
10990 2002-06-17 Akim Demaille <akim@epita.fr>
10991
10992 * src/reader.h, src/reader.c (symbol_list_new): Export it.
10993 (symbol_list_prepend): New.
10994 * src/parse-gram.y (%union): `list' is a new member.
10995 (symbols.1): New, replaces...
10996 (terms_to_prec.1, nterms_to_type.1): these.
10997 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
10998 Take a location as additional argument.
10999 Adjust all callers.
11000
11001 2002-06-15 Akim Demaille <akim@epita.fr>
11002
11003 * src/parse-gram.y: Move %token in the declaration section so that
11004 we don't depend upon CVS Bison.
11005
11006 2002-06-15 Akim Demaille <akim@epita.fr>
11007
11008 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
11009 * src/print.c (print_core): Use it.
11010
11011 2002-06-15 Akim Demaille <akim@epita.fr>
11012
11013 * src/conflicts.c (log_resolution): Accept the rule involved in
11014 the sr conflicts instead of the lookahead number that points to
11015 that rule.
11016 (flush_reduce): Accept the current lookahead vector as argument,
11017 instead of the index in LA.
11018 (resolve_sr_conflict): Accept the current number of lookahead
11019 bitset to consider for the STATE, instead of the index in LA.
11020 (set_conflicts): Adjust.
11021 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
11022
11023 2002-06-15 Akim Demaille <akim@epita.fr>
11024
11025 * src/state.h (state_t): Replace the `lookaheadsp' member, a
11026 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
11027 Adjust all dependencies.
11028 * src/lalr.c (initialize_lookaheads): Split into...
11029 (states_lookaheads_count, states_lookaheads_initialize): these.
11030 (lalr): Adjust.
11031
11032 2002-06-15 Akim Demaille <akim@epita.fr>
11033
11034 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
11035 out of...
11036 (grammar_rules_print): here.
11037 * src/reduce.c (reduce_output): Use it.
11038 * tests/reduce.at (Useless Rules, Reduced Automaton)
11039 (Underivable Rules): Adjust.
11040
11041 2002-06-15 Akim Demaille <akim@epita.fr>
11042
11043 Copy BYacc's nice way to report the grammar.
11044
11045 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
11046 New.
11047 Don't print the rules' location, it is confusing and useless.
11048 (rule_print): Use grammar_rhs_print.
11049 * src/print.c (print_grammar): Use grammar_rules_print.
11050
11051 2002-06-15 Akim Demaille <akim@epita.fr>
11052
11053 Complete and rationalize `useless thing' warnings.
11054
11055 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
11056 (symbol_tag_print): New.
11057 Use them everywhere in place of accessing directly the tag member.
11058 * src/gram.h, src/gram.c (rule_print): New.
11059 Use it where a rule used to be printed `by hand'.
11060 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
11061 (reduce_grammar_tables): Report the useless rules.
11062 (reduce_print): Useless things are a warning, not an error.
11063 Report it as such.
11064 * tests/reduce.at (Useless Nonterminals, Useless Rules):
11065 (Reduced Automaton, Underivable Rules): Adjust.
11066 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
11067 * tests/conflicts.at (Unresolved SR Conflicts)
11068 (Solved SR Conflicts): Adjust.
11069
11070 2002-06-15 Akim Demaille <akim@epita.fr>
11071
11072 Let symbols have a location.
11073
11074 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
11075 (getsym): Adjust.
11076 Adjust all callers.
11077 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
11078 Use location_t, not int.
11079 * src/symtab.c (symbol_check_defined): Take advantage of the
11080 location.
11081 * tests/regression.at (Invalid inputs): Adjust.
11082
11083 2002-06-15 Akim Demaille <akim@epita.fr>
11084
11085 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
11086 (input): Don't try to initialize yylloc here, do it in the
11087 scanner.
11088 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
11089 * src/gram.h (rule_t): Change line and action_line into location
11090 and action_location, of location_t type.
11091 Adjust all dependencies.
11092 * src/location.h, src/location.c (empty_location): New.
11093 * src/reader.h, src/reader.c (grammar_start_symbol_set)
11094 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
11095 (grammar_current_rule_symbol_append)
11096 (grammar_current_rule_action_append): Expect a location as argument.
11097 * src/reader.c (grammar_midrule_action): Adjust to attach an
11098 action's location as dummy symbol location.
11099 * src/symtab.h, src/symtab.c (startsymbol_location): New.
11100 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
11101 the line numbers.
11102
11103 2002-06-14 Akim Demaille <akim@epita.fr>
11104
11105 Grammar declarations may be found in the grammar section.
11106
11107 * src/parse-gram.y (rules_or_grammar_declaration): New.
11108 (declarations): Each declaration may end with a semicolon, not
11109 just...
11110 (grammar_declaration): `"%union"'.
11111 (grammar): Branch to rules_or_grammar_declaration.
11112
11113 2002-06-14 Akim Demaille <akim@epita.fr>
11114
11115 * src/main.c (main): Invoke scanner_free.
11116
11117 2002-06-14 Akim Demaille <akim@epita.fr>
11118
11119 * src/output.c (m4_invoke): Extracted from...
11120 (output_skeleton): here.
11121 Free tempfile.
11122
11123 2002-06-14 Akim Demaille <akim@epita.fr>
11124
11125 * src/parse-gram.y (directives, directive, gram)
11126 (grammar_directives, precedence_directives, precedence_directive):
11127 Rename as...
11128 (declarations, declaration, grammar, grammar_declaration)
11129 (precedence_declaration, precedence_declarator): these.
11130 (symbol_declaration): New.
11131
11132 2002-06-14 Akim Demaille <akim@epita.fr>
11133
11134 * src/files.c (action_obstack): Remove, unused.
11135 (output_obstack): Remove it, and all its dependencies, as it is no
11136 longer needed.
11137 * src/reader.c (epilogue_set): Build the epilogue in the
11138 muscle_obstack.
11139 * src/output.h, src/output.c (muscle_obstack): Move to...
11140 * src/muscle_tab.h, src/muscle_tab.h: here.
11141 (muscle_init): Initialize muscle_obstack.
11142 (muscle_free): New.
11143 * src/main.c (main): Call it.
11144
11145 2002-06-14 Akim Demaille <akim@epita.fr>
11146
11147 * src/location.h: New, extracted from...
11148 * src/reader.h: here.
11149 * src/Makefile.am (noinst_HEADERS): Merge into
11150 (bison_SOURCES): this.
11151 Add location.h.
11152 * src/parse-gram.y: Use location_t instead of Bison's.
11153 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
11154 Use location_t instead of ints.
11155
11156 2002-06-14 Akim Demaille <akim@epita.fr>
11157
11158 * data/bison.simple, data/bison.c++: Be sure to restore the
11159 current #line when returning to the skeleton contents after having
11160 exposed the input file's #line.
11161
11162 2002-06-12 Akim Demaille <akim@epita.fr>
11163
11164 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
11165 eager.
11166 * tests/actions.at (Exotic Dollars): New.
11167
11168 2002-06-12 Akim Demaille <akim@epita.fr>
11169
11170 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
11171 ['"/] too eagerly.
11172 * tests/input.at (Torturing the Scanner): New.
11173
11174 2002-06-11 Akim Demaille <akim@epita.fr>
11175
11176 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
11177 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
11178 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
11179 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
11180 * src/reader.c (reader): Use it.
11181
11182 2002-06-11 Akim Demaille <akim@epita.fr>
11183
11184 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
11185 Adjust all callers.
11186 (scanner_last_string_free): New.
11187
11188 2002-06-11 Akim Demaille <akim@epita.fr>
11189
11190 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
11191 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
11192 (last_string, YY_OBS_FREE): New.
11193 Use them when returning an ID.
11194
11195 2002-06-11 Akim Demaille <akim@epita.fr>
11196
11197 Have Bison grammars parsed by a Bison grammar.
11198
11199 * src/reader.c, src/reader.h (prologue_augment): New.
11200 * src/reader.c (copy_definition): Remove.
11201
11202 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
11203 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
11204 (grammar_current_rule_prec_set, grammar_current_rule_check)
11205 (grammar_current_rule_symbol_append)
11206 (grammar_current_rule_action_append): Export.
11207 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
11208 (symbol_list_action_append): Remove.
11209 Hook the routines from reader.
11210 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
11211 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
11212
11213 * src/reader.c (read_declarations): Remove, unused.
11214
11215 * src/parse-gram.y: Handle the epilogue.
11216 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
11217 (grammar_start_symbol_set): this.
11218 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
11219 * src/reader.c (readgram): Remove, unused.
11220 (reader): Adjust to insert eoftoken and axiom where appropriate.
11221
11222 * src/reader.c (copy_dollar): Replace with...
11223 * src/scan-gram.h (handle_dollar): this.
11224 * src/parse-gram.y: Remove `%thong'.
11225
11226 * src/reader.c (copy_at): Replace with...
11227 * src/scan-gram.h (handle_at): this.
11228
11229 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
11230 New.
11231
11232 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
11233 time being.
11234
11235 * src/reader.h, src/reader.c (grammar_rule_end): New.
11236
11237 * src/parse.y (current_type, current_class): New.
11238 Implement `%nterm', `%token' support.
11239 Merge `%term' into `%token'.
11240 (string_as_id): New.
11241 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
11242 type name.
11243
11244 * src/parse-gram.y: Be sure to handle properly the beginning of
11245 rules.
11246
11247 * src/parse-gram.y: Handle %type.
11248 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
11249
11250 * src/parse-gram.y: More directives support.
11251 * src/options.c: No longer handle source directives.
11252
11253 * src/parse-gram.y: Fix %output.
11254
11255 * src/parse-gram.y: Handle %union.
11256 Use the prologue locations.
11257 * src/reader.c (parse_union_decl): Remove.
11258
11259 * src/reader.h, src/reader.c (epilogue_set): New.
11260 * src/parse-gram.y: Use it.
11261
11262 * data/bison.simple, data/bison.c++: b4_stype is now either not
11263 defined, then default to int, or to the contents of %union,
11264 without `union' itself.
11265 Adjust.
11266 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
11267
11268 * src/output.c (actions_output): Don't output braces, as they are
11269 already handled by the scanner.
11270
11271 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
11272 characters to themselves.
11273
11274 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
11275 that the epilogue has a proper #line.
11276
11277 * src/parse-gram.y: Handle precedence/associativity.
11278
11279 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
11280 a terminal.
11281 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
11282 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
11283 at all to define terminals that cannot be emitted.
11284
11285 * src/scan-gram.l: Escape M4 characters.
11286
11287 * src/scan-gram.l: Working properly with escapes in user
11288 strings/characters.
11289
11290 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
11291 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
11292 grammar.
11293 Use more modest sizes, as for the time being the parser does not
11294 release memory, and therefore the process swallows a huge amount
11295 of memory.
11296
11297 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
11298 stricter %token grammar.
11299
11300 * src/symtab.h (associativity): Add `undef_assoc'.
11301 (symbol_precedence_set): Do nothing when passed an undef_assoc.
11302 * src/symtab.c (symbol_check_alias_consistence): Adjust.
11303
11304 * tests/regression.at (Invalid %directive): Remove, as it is now
11305 meaningless.
11306 (Invalid inputs): Adjust to the new error messages.
11307 (Token definitions): The new grammar doesn't allow too many
11308 eccentricities.
11309
11310 * src/lex.h, src/lex.c: Remove.
11311 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
11312 (copy_character, copy_string2, copy_string, copy_identifier)
11313 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
11314 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
11315 (parse_action): Remove.
11316 * po/POTFILES.in: Adjust.
11317
11318 2002-06-11 Akim Demaille <akim@epita.fr>
11319
11320 * src/reader.c (parse_action): Don't store directly into the
11321 rule's action member: return the action as a string.
11322 Don't require `rule_length' as an argument: compute it.
11323 (grammar_current_rule_symbol_append)
11324 (grammar_current_rule_action_append): New, eved out from
11325 (readgram): here.
11326 Remove `action_flag', `rulelength', unused now.
11327
11328 2002-06-11 Akim Demaille <akim@epita.fr>
11329
11330 * src/reader.c (grammar_current_rule_prec_set).
11331 (grammar_current_rule_check): New, eved out from...
11332 (readgram): here.
11333 Remove `xaction', `first_rhs': useless.
11334 * tests/input.at (Type clashes): New.
11335 * tests/existing.at (GNU Cim Grammar): Adjust.
11336
11337 2002-06-11 Akim Demaille <akim@epita.fr>
11338
11339 * src/reader.c (grammar_midrule_action): New, Eved out from
11340 (readgram): here.
11341
11342 2002-06-11 Akim Demaille <akim@epita.fr>
11343
11344 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
11345 New.
11346 (readgram): Use them as replacement of inlined code, crule and
11347 crule1.
11348
11349 2002-06-11 Akim Demaille <akim@epita.fr>
11350
11351 * src/reader.c (grammar_end, grammar_symbol_append): New.
11352 (readgram): Use them.
11353 Make the use of `p' as local as possible.
11354
11355 2002-06-10 Akim Demaille <akim@epita.fr>
11356
11357 GCJ's parser requires the tokens to be defined before the prologue.
11358
11359 * data/bison.simple: Output the token definition before the user's
11360 prologue.
11361 * tests/regression.at (Braces parsing, Duplicate string)
11362 (Mixing %token styles): Check the output from bison.
11363 (Early token definitions): New.
11364
11365 2002-06-10 Akim Demaille <akim@epita.fr>
11366
11367 * src/symtab.c (symbol_user_token_number_set): Don't complain when
11368 assigning twice the same user number to a token, so that we can
11369 use it in...
11370 * src/lex.c (lex): here.
11371 Also use `symbol_class_set' instead of hand written code.
11372 * src/reader.c (parse_assoc_decl): Likewise.
11373
11374 2002-06-10 Akim Demaille <akim@epita.fr>
11375
11376 * src/symtab.c, src/symtab.c (symbol_class_set)
11377 (symbol_user_token_number_set): New.
11378 * src/reader.c (parse_token_decl): Use them.
11379 Use a switch instead of ifs.
11380 Use a single argument.
11381
11382 2002-06-10 Akim Demaille <akim@epita.fr>
11383
11384 Remove `%thong' support as it is undocumented, unused, duplicates
11385 `%token's job, and creates useless e-mail traffic with people who
11386 want to know what it is, why it is undocumented, unused, and
11387 duplicates `%token's job.
11388
11389 * src/reader.c (parse_thong_decl): Remove.
11390 * src/options.c (option_table): Remove "thong".
11391 * src/lex.h (tok_thong): Remove.
11392
11393 2002-06-10 Akim Demaille <akim@epita.fr>
11394
11395 * src/symtab.c, src/symtab.c (symbol_type_set)
11396 (symbol_precedence_set): New.
11397 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
11398 (value_components_used): Remove, unused.
11399
11400 2002-06-09 Akim Demaille <akim@epita.fr>
11401
11402 Move symbols handling code out of the reader.
11403
11404 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
11405 (axiom): Move to...
11406 * src/symtab.h, src/symtab.c: here.
11407
11408 * src/gram.c (start_symbol): Remove: use startsymbol->number.
11409 * src/reader.c (startval): Rename as...
11410 * src/symtab.h, src/symtab.c (startsymbol): this.
11411 * src/reader.c: Adjust.
11412
11413 * src/reader.c (symbol_check_defined, symbol_make_alias)
11414 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11415 (token_translations_init)
11416 Move to...
11417 * src/symtab.c: here.
11418 * src/reader.c (packsymbols): Move to...
11419 * src/symtab.h, src/symtab.c (symbols_pack): here.
11420 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
11421 argument.
11422
11423 2002-06-03 Akim Demaille <akim@epita.fr>
11424
11425 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
11426 then statements.
11427
11428 2002-06-03 Akim Demaille <akim@epita.fr>
11429
11430 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
11431 structs with non literals.
11432 * src/scan-skel.l: never-interactive.
11433 * src/conflicts.c (enum conflict_resolution_e): No trailing
11434 comma.
11435 * src/getargs.c (usage): Split long literal strings.
11436 Reported by Hans Aberg.
11437
11438 2002-05-28 Akim Demaille <akim@epita.fr>
11439
11440 * data/bison.c++: Use C++ ostreams.
11441 (cdebug_): New member.
11442
11443 2002-05-28 Akim Demaille <akim@epita.fr>
11444
11445 * src/output.c (output_skeleton): Be sure to allocate enough room
11446 for `/' _and_ for `\0' in full_skeleton.
11447
11448 2002-05-28 Akim Demaille <akim@epita.fr>
11449
11450 * data/bison.c++: Catch up with bison.simple:
11451 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11452 and Paul Eggert <eggert@twinsun.com>: `error' handing.
11453 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
11454 and popping traces.
11455
11456 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11457
11458 * src/output.c (output_skeleton): Put an explicit path in front of
11459 the skeleton file name, rather than relying on the -I directory,
11460 to partially alleviate effects of having a skeleton file lying around
11461 in the current directory.
11462
11463 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11464
11465 * src/conflicts.c (log_resolution): Correct typo:
11466 obstack_printf should be obstack_fgrow1.
11467
11468 2002-05-26 Akim Demaille <akim@epita.fr>
11469
11470 * src/state.h (state_t): `solved_conflicts' is a new member.
11471 * src/LR0.c (new_state): Set it to 0.
11472 * src/conflicts.h, src/conflicts.c (print_conflicts)
11473 (free_conflicts, solve_conflicts): Rename as...
11474 (conflicts_print, conflicts_free, conflicts_solve): these.
11475 Adjust callers.
11476 * src/conflicts.c (enum conflict_resolution_e)
11477 (solved_conflicts_obstack): New, used by...
11478 (log_resolution): this.
11479 Adjust to attach the conflict resolution to each state.
11480 Complete the description with the precedence/associativity
11481 information.
11482 (resolve_sr_conflict): Adjust.
11483 * src/print.c (print_state): Output its solved_conflicts.
11484 * tests/conflicts.at (Unresolved SR Conflicts)
11485 (Solved SR Conflicts): Exercise --report=all.
11486
11487 2002-05-26 Akim Demaille <akim@epita.fr>
11488
11489 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11490 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11491 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
11492 (token_number_t, item_number_as_token_number)
11493 (token_number_as_item_number, muscle_insert_token_number_table):
11494 Rename as...
11495 (symbol_number_t, item_number_as_symbol_number)
11496 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
11497 these, since it is more appropriate.
11498
11499 2002-05-26 Akim Demaille <akim@epita.fr>
11500
11501 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
11502 `Error:' lines.
11503 * data/bison.simple (yystos) [YYDEBUG]: New.
11504 (yyparse) [YYDEBUG]: Display the symbols which are popped during
11505 error recovery.
11506 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
11507
11508 2002-05-25 Akim Demaille <akim@epita.fr>
11509
11510 * doc/bison.texinfo (Debugging): Split into...
11511 (Tracing): this new section, its former contents, and...
11512 (Understanding): this new section.
11513 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
11514 by...
11515 (report_flag): this.
11516 Adjust all dependencies.
11517 (report_args, report_types, report_argmatch): New.
11518 (usage, getargs): Report/support -r, --report.
11519 * src/options.h
11520 (struct option_table_struct): Rename as..,
11521 (struct option_table_s): this.
11522 Rename the `set_flag' member to `flag' to match with getopt_long's
11523 struct.
11524 * src/options.c (option_table): Split verbose into an entry for
11525 %verbose, and another for --verbose.
11526 Support --report/-r, so remove -r from the obsolete --raw.
11527 * src/print.c: Attach full item sets and lookaheads reports to
11528 report_flag instead of trace_flag.
11529 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
11530
11531 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11532 and Paul Eggert <eggert@twinsun.com>
11533
11534 * data/bison.simple (yyparse): Correct error handling to conform to
11535 POSIX and yacc. Specifically, after syntax error is discovered,
11536 do not reduce further before shifting the error token.
11537 Clean up the code a bit by removing the labels yyerrdefault,
11538 yyerrhandle, yyerrpop.
11539 * NEWS: Document the above.
11540
11541 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11542
11543 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
11544 type; it isn't always big enough, since it doesn't necessarily
11545 include non-terminals.
11546 (yytranslate): Expand definition of yy_token_number_type, so that
11547 the latter can be removed.
11548 (yy_token_number_type): Remove, only one use.
11549 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
11550 don't use TokenNumberType as element type.
11551
11552 * tests/regression.at: Modify expected output to agree with change
11553 to yyr1 and yytranslate.
11554
11555 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
11556
11557 * src/reader.c (parse_action): Use copy_character instead of
11558 obstack_1grow.
11559
11560 2002-05-13 Akim Demaille <akim@epita.fr>
11561
11562 * tests/regression.at (Token definitions): Prototype yylex and
11563 yyerror.
11564
11565 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11566
11567 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
11568 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
11569 32-bit arithmetic.
11570 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
11571
11572 2002-05-07 Akim Demaille <akim@epita.fr>
11573
11574 * tests/synclines.at: Be sure to prototype yylex and yyerror to
11575 avoid GCC warnings.
11576
11577 2002-05-07 Akim Demaille <akim@epita.fr>
11578
11579 Kill GCC warnings.
11580
11581 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
11582 over the RHS of each rule.
11583 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
11584 * src/state.h (state_t): Member `nitems' is unsigned short.
11585 * src/LR0.c (get_state): Adjust.
11586 * src/reader.c (packgram): Likewise.
11587 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
11588 `Type'.
11589 (muscle_insert_int_table): Remove, unused.
11590 (prepare_rules): Remove `max'.
11591
11592 2002-05-06 Akim Demaille <akim@epita.fr>
11593
11594 * src/closure.c (print_firsts): Display of the symbol tags.
11595 (bitmatrix_print): Move to...
11596 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
11597 here.
11598 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
11599
11600 2002-05-06 Akim Demaille <akim@epita.fr>
11601
11602 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
11603 hash_do_for_each.
11604
11605 2002-05-06 Akim Demaille <akim@epita.fr>
11606
11607 * src/LR0.c (new_state, get_state): Instead of using the global
11608 `kernel_size' and `kernel_base', have two new arguments:
11609 `core_size' and `core'.
11610 Adjust callers.
11611
11612 2002-05-06 Akim Demaille <akim@epita.fr>
11613
11614 * src/reader.c (packgram): No longer end `ritem' with a 0
11615 sentinel: it is not used.
11616
11617 2002-05-05 Akim Demaille <akim@epita.fr>
11618
11619 New experimental feature: display the lookaheads in the report and
11620 graph.
11621
11622 * src/print (print_core): When --trace-flag, display the rules
11623 lookaheads.
11624 * src/print_graph.c (print_core): Likewise.
11625 Swap the arguments.
11626 Adjust caller.
11627
11628 2002-05-05 Akim Demaille <akim@epita.fr>
11629
11630 * tests/torture.at (Many lookaheads): New test.
11631
11632 2002-05-05 Akim Demaille <akim@epita.fr>
11633
11634 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
11635 (GENERATE_MUSCLE_INSERT_TABLE): this.
11636 (output_int_table, output_unsigned_int_table, output_short_table)
11637 (output_token_number_table, output_item_number_table): Replace with...
11638 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
11639 (muscle_insert_short_table, muscle_insert_token_number_table)
11640 (muscle_insert_item_number_table): these.
11641 Adjust all callers.
11642 (prepare_tokens): Don't free `translations', since...
11643 * src/reader.h, src/reader.c (grammar_free): do it.
11644 Move to...
11645 * src/gram.h, src/gram.c (grammar_free): here.
11646 * data/bison.simple, data/bison.c++: b4_token_number_max is now
11647 b4_translate_max.
11648
11649 2002-05-05 Akim Demaille <akim@epita.fr>
11650
11651 * src/output.c (output_unsigned_int_table): New.
11652 (prepare_rules): `i' is unsigned.
11653 `prhs', `rline', `r2' are unsigned int.
11654 Rename muscle `rhs_number_max' as `rhs_max'.
11655 Output muscles `prhs_max', `rline_max', and `r2_max'.
11656 Free rline and r1.
11657 * data/bison.simple, data/bison.c++: Adjust to use these muscles
11658 to compute types instead of constant types.
11659 * tests/regression.at (Web2c Actions): Adjust.
11660
11661 2002-05-04 Akim Demaille <akim@epita.fr>
11662
11663 * src/symtab.h (SALIAS, SUNDEF): Rename as...
11664 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
11665 Adjust dependencies.
11666 * src/output.c (token_definitions_output): Be sure not to output a
11667 `#define 'a'' when fed with `%token 'a' "a"'.
11668 * tests/regression.at (Token definitions): New.
11669
11670 2002-05-03 Paul Eggert <eggert@twinsun.com>
11671
11672 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
11673 for K&R C.
11674
11675 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
11676
11677 * Makefile.am (SUBDIRS): Remove intl.
11678 (EXTRA_DIST): Add config/config.rpath.
11679
11680 2002-05-03 Akim Demaille <akim@epita.fr>
11681
11682 * data/bison.simple (m4_if): Don't output empty enums.
11683 And actually, output valid enum definitions :(.
11684
11685 2002-05-03 Akim Demaille <akim@epita.fr>
11686
11687 * configure.bat: Remove, completely obsolete.
11688 * Makefile.am (EXTRA_DIST): Adjust.
11689 Don't distribute config.rpath...
11690 * config/Makefile.am (EXTRA_DIST): Do it.
11691
11692 2002-05-03 Akim Demaille <akim@epita.fr>
11693
11694 * configure.in (GETTEXT_VERSION): New.
11695 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
11696
11697 2002-05-03 Akim Demaille <akim@epita.fr>
11698
11699 * data/bison.simple (b4_token_enum): New.
11700 (b4_token_defines): Use it to output tokens both as #define and
11701 enums.
11702 Suggested by Paul Eggert.
11703 * src/output.c (token_definitions_output): Don't output spurious
11704 white spaces.
11705
11706 2002-05-03 Akim Demaille <akim@epita.fr>
11707
11708 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11709
11710 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
11711
11712 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
11713 Update the stack class, give a try to deque as the default container.
11714
11715 2002-05-02 Akim Demaille <akim@epita.fr>
11716
11717 * data/bison.simple (yyparse): Do not implement @$ = @1.
11718 (YYLLOC_DEFAULT): Adjust to do it.
11719 * doc/bison.texinfo (Location Default Action): Fix.
11720
11721 2002-05-02 Akim Demaille <akim@epita.fr>
11722
11723 * src/reader.c (parse_braces): Merge into...
11724 (parse_action): this.
11725
11726 2002-05-02 Akim Demaille <akim@epita.fr>
11727
11728 * configure.in (ALL_LINGUAS): Remove.
11729 * po/LINGUAS, hr.po: New.
11730
11731 2002-05-02 Akim Demaille <akim@epita.fr>
11732
11733 Remove the so called hairy (semantic) parsers.
11734
11735 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
11736 * src/gram.h, src/gram.c (semantic_parser): Remove.
11737 (rule_t): Remove the guard and guard_line members.
11738 * src/lex.h (token_t): remove tok_guard.
11739 * src/options.c (option_table): Remove %guard and %semantic_parser
11740 support.
11741 * src/output.c, src/output.h (guards_output): Remove.
11742 (prepare): Adjust.
11743 (token_definitions_output): Don't output the `T'
11744 tokens (???).
11745 (output_skeleton): Don't output the guards.
11746 * src/files.c, src/files.c (attrsfile): Remove.
11747 * src/reader.c (symbol_list): Remove the guard and guard_line
11748 members.
11749 Adjust dependencies.
11750 (parse_guard): Remove.
11751 * data/bison.hairy: Remove.
11752 * doc/bison.texinfo (Environment Variables): Remove occurrences of
11753 BISON_HAIRY.
11754
11755 2002-05-02 Akim Demaille <akim@epita.fr>
11756
11757 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
11758 (parse_guard): Rename the formal argument `stack_offset' as
11759 `rule_length', which is more readable.
11760 Adjust callers.
11761 (copy_at, copy_dollar): Instead of outputting the hard coded
11762 values of $$, $n and so forth, output invocation to b4_lhs_value,
11763 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
11764 Note: this patch partially drops `semantic-parser' support: it
11765 always does `rule_length - n', where semantic parsers ought to
11766 always use `-n'.
11767 * data/bison.simple, data/bison.c++ (b4_lhs_value)
11768 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
11769
11770 2002-05-02 Akim Demaille <akim@epita.fr>
11771
11772 * configure.in (AC_INIT): Bump to 1.49b.
11773 (AM_INIT_AUTOMAKE): Short invocation.
11774
11775 2002-05-02 Akim Demaille <akim@epita.fr>
11776
11777 Version 1.49a.
11778
11779 2002-05-01 Akim Demaille <akim@epita.fr>
11780
11781 * src/skeleton.h: Remove.
11782
11783 2002-05-01 Akim Demaille <akim@epita.fr>
11784
11785 * src/skeleton.h: Fix the #endif.
11786 Reported by Magnus Fromreide.
11787
11788 2002-04-26 Paul Eggert <eggert@twinsun.com>
11789
11790 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
11791 Define if we define YYSTYPE and YYLTYPE, respectively.
11792 (YYCOPY): Fix [] quoting problem in the non-GCC case.
11793
11794 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
11795
11796 * src/scan-skel.l: Postprocess quadrigraphs.
11797
11798 * src/reader.c (copy_character): New function, used to output
11799 single characters while replacing `[' and `]' with quadrigraphs, to
11800 avoid troubles with M4 quotes.
11801 (copy_comment): Output characters with copy_character.
11802 (read_additionnal_code): Likewise.
11803 (copy_string2): Likewise.
11804 (copy_definition): Likewise.
11805
11806 * tests/calc.at: Exercise M4 quoting.
11807
11808 2002-04-25 Akim Demaille <akim@epita.fr>
11809
11810 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
11811 between `!' and the command.
11812 Reported by Paul Eggert.
11813
11814 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
11815
11816 * tests/calc.at: Exercise prologue splitting.
11817
11818 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
11819 `b4_post_prologue' instead of `b4_prologue'.
11820
11821 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
11822 muscles.
11823 (output): Free pre_prologue_obstack and post_prologue_obstack.
11824 * src/files.h, src/files.c (attrs_obstack): Remove.
11825 (pre_prologue_obstack, post_prologue_obstack): New.
11826 * src/reader.c (copy_definition): Add a parameter to specify the
11827 obstack to fill, instead of using attrs_obstack unconditionally.
11828 (read_declarations): Pass pre_prologue_obstack to copy_definition if
11829 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
11830
11831 2002-04-23 Paul Eggert <eggert@twinsun.com>
11832
11833 * data/bison.simple: Remove unnecessary commentary and white
11834 space differences from 1_29-branch.
11835 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
11836
11837 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
11838 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
11839 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
11840 constructors or destructors.
11841
11842 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
11843
11844 2002-04-23 Akim Demaille <akim@epita.fr>
11845
11846 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
11847 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
11848 location with columns.
11849 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
11850 All reported by Paul Eggert.
11851
11852 2002-04-22 Akim Demaille <akim@epita.fr>
11853
11854 * src/reduce.c (dump_grammar): Move to...
11855 * src/gram.h, src/gram.c (grammar_dump): here.
11856 Be sure to separate long item numbers.
11857 Don't read the members of a rule's prec if its nil.
11858
11859 2002-04-22 Akim Demaille <akim@epita.fr>
11860
11861 * src/output.c (table_size, table_grow): New.
11862 (MAXTABLE): Remove, replace uses with table_size.
11863 (pack_vector): Instead of dying when the table is too big, grow it.
11864
11865 2002-04-22 Akim Demaille <akim@epita.fr>
11866
11867 * data/bison.simple (yyr1): Its type is that of a token number.
11868 * data/bison.c++ (r1_): Likewise.
11869 * tests/regression.at (Web2c Actions): Adjust.
11870
11871 2002-04-22 Akim Demaille <akim@epita.fr>
11872
11873 * src/reader.c (token_translations_init): 256 is now the default
11874 value for the error token, i.e., it will be assigned another
11875 number if the user assigned 256 to one of her tokens.
11876 (reader): Don't force 256 to error.
11877 * doc/bison.texinfo (Symbols): Adjust.
11878 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
11879 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
11880 etc. instead of 10, 20, 30 (which was used to `jump' over error
11881 (256) and undefined (2)).
11882
11883 2002-04-22 Akim Demaille <akim@epita.fr>
11884
11885 Propagate more token_number_t.
11886
11887 * src/gram.h (token_number_as_item_number)
11888 (item_number_as_token_number): New.
11889 * src/output.c (GENERATE_OUTPUT_TABLE): New.
11890 Use it to create output_item_number_table and
11891 output_token_number_table.
11892 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11893 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
11894 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
11895 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
11896
11897 2002-04-22 Akim Demaille <akim@epita.fr>
11898
11899 * src/output.h, src/output.c (get_lines_number): Remove.
11900
11901 2002-04-19 Akim Demaille <akim@epita.fr>
11902
11903 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
11904 as Lex/Flex'.
11905 (Debugging): More details about enabling the debugging features.
11906 (Table of Symbols): Describe $$, $n, @$, and @n.
11907 Suggested by Tim Josling.
11908
11909 2002-04-19 Akim Demaille <akim@epita.fr>
11910
11911 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
11912
11913 2002-04-10 Akim Demaille <akim@epita.fr>
11914
11915 * src/system.h: Rely on HAVE_LIMITS_H.
11916 Suggested by Paul Eggert.
11917
11918 2002-04-09 Akim Demaille <akim@epita.fr>
11919
11920 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
11921 full stderr, and strip it according to the bison options, instead
11922 of composing the error message from different bits.
11923 This makes it easier to check for several error messages.
11924 Adjust all the invocations.
11925 Add an invocation exercising the error token.
11926 Add an invocation demonstrating a stupid error message.
11927 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
11928 Adjust the tests.
11929 Error message are for stderr, not stdout.
11930
11931 2002-04-09 Akim Demaille <akim@epita.fr>
11932
11933 * src/gram.h, src/gram.c (error_token_number): Remove, use
11934 errtoken->number.
11935 * src/reader.c (reader): Don't specify the user token number (2)
11936 for $undefined, as it uselessly prevents using it.
11937 * src/gram.h (token_number_t): Move to...
11938 * src/symtab.h: here.
11939 (state_t.number): Is a token_number_t.
11940 * src/print.c, src/reader.c: Use undeftoken->number instead of
11941 hard coded 2.
11942 (Even though this 2 is not the same as above: the number of the
11943 undeftoken remains being 2, it is its user token number which
11944 might not be 2).
11945 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
11946 `user_token_number_max'.
11947 Output `undef_token_number'.
11948 * data/bison.simple, data/bison.c++: Use them.
11949 Be sure to map invalid yylex return values to
11950 `undef_token_number'. This saves us from gratuitous SEGV.
11951
11952 * tests/conflicts.at (Solved SR Conflicts)
11953 (Unresolved SR Conflicts): Adjust.
11954 * tests/regression.at (Web2c Actions): Adjust.
11955
11956 2002-04-08 Akim Demaille <akim@epita.fr>
11957
11958 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
11959 Adding #line.
11960 Remove the duplicate `typedefs'.
11961 (RhsNumberType): Fix the declaration and various other typos.
11962 Use __ofile__.
11963 * data/bison.simple: Use __ofile__.
11964 * src/scan-skel.l: Handle __ofile__.
11965
11966 2002-04-08 Akim Demaille <akim@epita.fr>
11967
11968 * src/gram.h (item_number_t): New, the type of item numbers in
11969 RITEM. Note that it must be able to code symbol numbers as
11970 positive number, and the negation of rule numbers as negative
11971 numbers.
11972 Adjust all dependencies (pretty many).
11973 * src/reduce.c (rule): Remove this `short *' pointer: use
11974 item_number_t.
11975 * src/system.h (MINSHORT, MAXSHORT): Remove.
11976 Include `limits.h'.
11977 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
11978 (shortcpy): Remove.
11979 (MAXTABLE): Move to...
11980 * src/output.c (MAXTABLE): here.
11981 (prepare_rules): Use output_int_table to output rhs.
11982 * data/bison.simple, data/bison.c++: Adjust.
11983 * tests/torture.at (Big triangle): Move the limit from 254 to
11984 500.
11985 * tests/regression.at (Web2c Actions): Ajust.
11986
11987 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
11988 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
11989 passes, but produces negative #line number, once fixed, GCC is
11990 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
11991 C), it passes.
11992 * src/state.h (state_h): Code input lines on ints, not shorts.
11993
11994 2002-04-08 Akim Demaille <akim@epita.fr>
11995
11996 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
11997 and then the grammar.
11998
11999 2002-04-08 Akim Demaille <akim@epita.fr>
12000
12001 * src/system.h: No longer using strndup.
12002
12003 2002-04-07 Akim Demaille <akim@epita.fr>
12004
12005 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
12006 * src/output.c (output_table_data): Return the longest number.
12007 (prepare_tokens): Output `token_number_max').
12008 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
12009 New.
12010 Use them to define yy_token_number_type/TokenNumberType.
12011 Use this type for yytranslate.
12012 * tests/torture.at (Big triangle): Push the limit from 124 to
12013 253.
12014 * tests/regression.at (Web2c Actions): Adjust.
12015
12016 2002-04-07 Akim Demaille <akim@epita.fr>
12017
12018 * tests/torture.at (Big triangle): New.
12019 (GNU AWK Grammar, GNU Cim Grammar): Move to...
12020 * tests/existing.at: here.
12021
12022 2002-04-07 Akim Demaille <akim@epita.fr>
12023
12024 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
12025 nritems.
12026 Adjust dependencies.
12027
12028 2002-04-07 Akim Demaille <akim@epita.fr>
12029
12030 * src/reader.c: Normalize increments to prefix form.
12031
12032 2002-04-07 Akim Demaille <akim@epita.fr>
12033
12034 * src/reader.c, symtab.c: Remove debugging code.
12035
12036 2002-04-07 Akim Demaille <akim@epita.fr>
12037
12038 Rename all the `bucket's as `symbol_t'.
12039
12040 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
12041 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
12042 * src/symtab.c, src/symtab.h (bucket): Rename as...
12043 (symbol_t): this.
12044 (symbol_list_new, bucket_check_defined, bucket_make_alias)
12045 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
12046 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
12047 (buckets_new, buckets_free, buckets_do): Rename as...
12048 (symbol_list_new, symbol_check_defined, symbol_make_alias)
12049 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
12050 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
12051 (symbols_new, symbols_free, symbols_do): these.
12052
12053 2002-04-07 Akim Demaille <akim@epita.fr>
12054
12055 Use lib/hash for the symbol table.
12056
12057 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
12058 EOF.
12059 * src/lex.c (lex): Set the `number' member of new terminals.
12060 * src/reader.c (bucket_check_defined, bucket_make_alias)
12061 (bucket_check_alias_consistence, bucket_translation): New.
12062 (reader, grammar_free, readgram, token_translations_init)
12063 (packsymbols): Adjust.
12064 (reader): Number the predefined tokens.
12065 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
12066 for predefined tokens.
12067 * src/symtab.h (bucket): Remove all the hash table related
12068 members.
12069 * src/symtab.c (symtab): Replace by...
12070 (bucket_table): this.
12071 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
12072 (buckets_new, buckets_do): New.
12073
12074 2002-04-07 Akim Demaille <akim@epita.fr>
12075
12076 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
12077 (start_symbol, max_user_token_number, semantic_parser)
12078 (error_token_number): Initialize.
12079 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
12080 Initialize.
12081 (reader): Don't.
12082 (errtoken, eoftoken, undeftoken, axiom): Extern.
12083
12084 2002-04-07 Akim Demaille <akim@epita.fr>
12085
12086 * src/gram.h (rule_s): prec and precsym are now pointers
12087 to the bucket giving the priority/associativity.
12088 Member `associativity' removed: useless.
12089 * src/reduce.c, src/conflicts.c: Adjust.
12090
12091 2002-04-07 Akim Demaille <akim@epita.fr>
12092
12093 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
12094 Properly escape the symbols' TAG when outputting them.
12095
12096 2002-04-07 Akim Demaille <akim@epita.fr>
12097
12098 * src/lalr.h (LA): Is a bitsetv, not bitset*.
12099
12100 2002-04-07 Akim Demaille <akim@epita.fr>
12101
12102 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
12103 (LArule): this, which is an array to rule_t*.
12104 * src/print.c, src/conflicts.c: Adjust.
12105
12106 2002-04-07 Akim Demaille <akim@epita.fr>
12107
12108 * src/gram.h (rule_t): Rename `number' as `user_number'.
12109 `number' is a new member.
12110 Adjust dependencies.
12111 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
12112
12113 2002-04-07 Akim Demaille <akim@epita.fr>
12114
12115 As a result of the previous patch, it is no longer needed
12116 to reorder ritem itself.
12117
12118 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
12119
12120 2002-04-07 Akim Demaille <akim@epita.fr>
12121
12122 Be sure never to walk through RITEMS, but use only data related to
12123 the rules themselves. RITEMS should be banished.
12124
12125 * src/output.c (output_token_translations): Rename as...
12126 (prepare_tokens): this.
12127 In addition to `translate', prepare the muscles `tname' and
12128 `toknum', which were handled by...
12129 (output_rule_data): this.
12130 Remove, and move the remainder of its outputs into...
12131 (prepare_rules): this new routines, which also merges content from
12132 (output_gram): this.
12133 (prepare_rules): Be sure never to walk through RITEMS.
12134 (output_stos): Rename as...
12135 (prepare_stos): this.
12136 (output): Always invoke prepare_states, after all, just don't use it
12137 in the output if you don't need it.
12138
12139 2002-04-07 Akim Demaille <akim@epita.fr>
12140
12141 * src/LR0.c (new_state): Display `nstates' as the name of the
12142 newly created state.
12143 Adjust to initialize first_state and last_state if needed.
12144 Be sure to distinguish the initial from the final state.
12145 (new_states): Create the itemset of the initial state, and use
12146 new_state.
12147 * src/closure.c (closure): Now that the initial state has its
12148 items properly set, there is no need for a special case when
12149 creating `ruleset'.
12150
12151 As a result, now the rule 0, reducing to $axiom, is visible in the
12152 outputs. Adjust the test suite.
12153
12154 * tests/conflicts.at (Solved SR Conflicts)
12155 (Unresolved SR Conflicts): Adjust.
12156 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
12157 * tests/conflicts.at (S/R in initial): New.
12158
12159 2002-04-07 Akim Demaille <akim@epita.fr>
12160
12161 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
12162 the RHS of the rules.
12163 * src/output.c (output_gram): Likewise.
12164
12165 2002-04-07 Akim Demaille <akim@epita.fr>
12166
12167 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
12168 bucket.
12169 Adjust all dependencies.
12170 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
12171 `number' of the buckets too.
12172 * src/gram.h: Include `symtab.h'.
12173 (associativity): Move to...
12174 * src/symtab.h: here.
12175 No longer include `gram.h'.
12176
12177 2002-04-07 Akim Demaille <akim@epita.fr>
12178
12179 * src/gram.h, src/gram.c (rules_rhs_length): New.
12180 (ritem_longest_rhs): Use it.
12181 * src/gram.h (rule_t): `number' is a new member.
12182 * src/reader.c (packgram): Set it.
12183 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
12184 the end of `rules', and count them out of `nrules'.
12185 (reduce_output, dump_grammar): Adjust.
12186 * src/print.c (print_grammar): It is no longer needed to check for
12187 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
12188 * tests/reduce.at (Reduced Automaton): New test.
12189
12190 2002-04-07 Akim Demaille <akim@epita.fr>
12191
12192 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
12193 lacking `+ 1' to nrules, Bison reported as useless a token if it
12194 was used solely to set the precedence of the last rule...
12195
12196 2002-04-07 Akim Demaille <akim@epita.fr>
12197
12198 * data/bison.c++, data/bison.simple: Don't output the current file
12199 name in #line, to avoid useless diffs between two identical
12200 outputs under different names.
12201
12202 2002-04-07 Akim Demaille <akim@epita.fr>
12203
12204 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
12205 Normalize loops to using `< nrules + 1', not `<= nrules'.
12206
12207 2002-04-07 Akim Demaille <akim@epita.fr>
12208
12209 * TODO: Update.
12210
12211 2002-04-07 Akim Demaille <akim@epita.fr>
12212
12213 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
12214 bucket.value as bucket.number.
12215
12216 2002-04-07 Akim Demaille <akim@epita.fr>
12217
12218 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
12219 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
12220 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
12221 RHS, instead of being an index in RITEMS.
12222
12223 2002-04-04 Paul Eggert <eggert@twinsun.com>
12224
12225 * doc/bison.texinfo: Update copyright date.
12226 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
12227 (Symbols): Warn about running Bison in one character set,
12228 but compiling and/or running in an incompatible one.
12229 Warn about character code 256, too.
12230
12231 2002-04-03 Paul Eggert <eggert@twinsun.com>
12232
12233 * src/bison.data (YYSTACK_ALLOC): Depend on whether
12234 YYERROR_VERBOSE is nonzero, not whether it is defined.
12235
12236 Merge changes from bison-1_29-branch.
12237
12238 2002-03-20 Paul Eggert <eggert@twinsun.com>
12239
12240 Merge fixes from Debian bison_1.34-1.diff.
12241
12242 * configure.in (AC_PREREQ): 2.53.
12243
12244 2002-03-20 Akim Demaille <akim@epita.fr>
12245
12246 * src/conflicts.c (log_resolution): Argument `resolution' is const.
12247
12248 2002-03-19 Paul Eggert <eggert@twinsun.com>
12249
12250 * src/bison.simple (YYCOPY): New macro.
12251 (YYSTACK_RELOCATE): Use it.
12252 Remove Type arg; no longer needed. All callers changed.
12253 (yymemcpy): Remove; no longer needed.
12254
12255 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
12256 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12257
12258 2002-03-19 Akim Demaille <akim@epita.fr>
12259
12260 Test and fix the #line outputs.
12261
12262 * tests/atlocal.at (GCC): New.
12263 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
12264 (Prologue synch line, %union synch line, Postprologue synch line)
12265 (Action synch line, Epilogue synch line): New tests.
12266 * src/reader.c (parse_union_decl): Define the muscle stype_line.
12267 * data/bison.simple, data/bison.c++: Use it.
12268
12269 2002-03-19 Akim Demaille <akim@epita.fr>
12270
12271 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
12272 (Solved SR Conflicts, %expect not enough, %expect right)
12273 (%expect too much): Move to...
12274 * tests/conflicts.at: this new file.
12275
12276 2002-03-19 Akim Demaille <akim@epita.fr>
12277
12278 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
12279 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
12280 that we can move to enums for instance.
12281 * src/output.c (token_definitions_output): Output a list of
12282 `token-name, token-number' instead of the #define.
12283 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
12284
12285 2002-03-14 Akim Demaille <akim@epita.fr>
12286
12287 Use Gettext 0.11.1.
12288
12289 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
12290
12291 * data/bison.c++: Make the user able to add members to the generated
12292 parser by subclassing.
12293
12294 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
12295
12296 * src/reader.c (read_additionnal_code): `c' should be an integer, not
12297 a character.
12298 Reported by Nicolas Tisserand and Nicolas Burrus.
12299
12300 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
12301
12302 * src/reader.c: Warn about lacking semi-colons, do not complain.
12303
12304 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
12305
12306 * data/bison.c++: Remove a debug line.
12307
12308 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
12309
12310 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
12311 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
12312 provide a default implementation.
12313
12314 2002-03-04 Akim Demaille <akim@epita.fr>
12315
12316 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
12317 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
12318 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
12319 * tests/semantic.at (Parsing Guards): Similarly.
12320 * src/reader.at (readgram): Complain if the last rule is not ended
12321 with a semi-colon.
12322
12323 2002-03-04 Akim Demaille <akim@epita.fr>
12324
12325 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
12326 * src/closure.c: here.
12327 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
12328 RTC.
12329 * src/warshall.h, src/warshall.c: Remove.
12330 * tests/sets.at (Broken Closure): Adjust.
12331
12332 2002-03-04 Akim Demaille <akim@epita.fr>
12333
12334 * src/output.c (output_skeleton): tempdir is const.
12335 bytes_read is unused.
12336
12337 2002-03-04 Akim Demaille <akim@epita.fr>
12338
12339 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12340 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
12341 Update.
12342 From Michael Hayes.
12343
12344 2002-03-04 Akim Demaille <akim@epita.fr>
12345
12346 * src/closure.c (closure): `r' is unused.
12347
12348 2002-03-04 Akim Demaille <akim@epita.fr>
12349
12350 * tests/sets.at (Broken Closure): Add the ending `;'.
12351 * src/reader.at (readgram): Complain if a rule is not ended with a
12352 semi-colon.
12353
12354 2002-03-04 Akim Demaille <akim@epita.fr>
12355
12356 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
12357 (count_sr_conflicts): Use bitset_count.
12358 * src/reduce.c (inaccessable_symbols): Ditto.
12359 (bits_size): Remove.
12360 * src/warshall.h, src/warshall.c: Convert to bitsetv.
12361
12362 2002-03-04 Akim Demaille <akim@epita.fr>
12363
12364 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
12365 * src/reduce.c: Remove the `bitset_zero's following the
12366 `bitset_create's, as now it is performed by the latter.
12367
12368 2002-03-04 Akim Demaille <akim@epita.fr>
12369
12370 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
12371 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
12372 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
12373 latest sources from Michael.
12374
12375 2002-03-04 Akim Demaille <akim@epita.fr>
12376
12377 * src/output.c (output): Don't free the grammar.
12378 * src/reader.c (grammar_free): New.
12379 * src/main.c (main): Call it and don't free symtab here.
12380
12381 2002-03-04 Akim Demaille <akim@epita.fr>
12382
12383 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
12384 before returning.
12385 Reported by Benoit Perrot.
12386
12387 2002-03-04 Akim Demaille <akim@epita.fr>
12388
12389 Use bitset operations when possible, not loops over bits.
12390
12391 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
12392 bitset_or.
12393 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
12394 * src/reduce.c (useless_nonterminals): Formatting changes.
12395 * src/warshall.c (TC): Use bitset_or.
12396
12397 2002-03-04 Akim Demaille <akim@epita.fr>
12398
12399 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
12400 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
12401 Ditto.
12402
12403 2002-03-04 Akim Demaille <akim@epita.fr>
12404
12405 * src/lalr.c (F): Now a bitset*.
12406 Adjust all dependencies.
12407
12408 2002-03-04 Akim Demaille <akim@epita.fr>
12409
12410 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
12411 Adjust all dependencies.
12412
12413 2002-03-04 Akim Demaille <akim@epita.fr>
12414
12415 * src/L0.c, src/LR0.h (nstates): Be size_t.
12416 Adjust comparisons (signed vs unsigned).
12417 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
12418 bitset*.
12419 Adjust all dependencies.
12420
12421 2002-03-04 Akim Demaille <akim@epita.fr>
12422
12423 * src/closure.c (firsts): Now, also a bitset.
12424 Adjust all dependencies.
12425 (varsetsize): Remove, now unused.
12426 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
12427
12428 2002-03-04 Akim Demaille <akim@epita.fr>
12429
12430 * src/print.c: Convert to use bitset.h, not hand coded iterations
12431 over ints.
12432
12433 2002-03-04 Akim Demaille <akim@epita.fr>
12434
12435 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
12436
12437 2002-03-04 Akim Demaille <akim@epita.fr>
12438
12439 * src/closure.c (ruleset): Be a bitset.
12440 (rulesetsize): Remove.
12441
12442 2002-03-04 Akim Demaille <akim@epita.fr>
12443
12444 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12445 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
12446 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
12447 * src/closure.c (fderives): Be an array of bitsets.
12448
12449 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
12450
12451 * data/bison.c++: Merge the two generated headers. Insert a copyright
12452 notice in each output file.
12453
12454 2002-02-28 Akim Demaille <akim@epita.fr>
12455
12456 * data/bison.c++: Copy the prologue of bison.simple to fetch
12457 useful M4 definitions, such as b4_header_guard.
12458
12459 2002-02-25 Akim Demaille <akim@epita.fr>
12460
12461 * src/getargs.c (version): Give the name of the authors, and use a
12462 translator friendly scheme for the bgr
12463 copyright notice.
12464
12465 2002-02-25 Akim Demaille <akim@epita.fr>
12466
12467 * src/output.c (header_output): Remove, now handled completely via
12468 M4.
12469
12470 2002-02-25 Akim Demaille <akim@epita.fr>
12471
12472 * m4/m4.m4: New, from CVS Autoconf.
12473 * configure.in: Invoke it.
12474 * src/output.c (output_skeleton): Use its result instead of the
12475 hard coded name.
12476
12477 2002-02-25 Akim Demaille <akim@epita.fr>
12478
12479 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
12480 Fileutils 4.1.5.
12481 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
12482 * src/output.c (output_skeleton): Use mkstemp to create a real
12483 temporary file.
12484 Move the filling of `skeleton' and its muscle to...
12485 (prepare): here.
12486 (output): Move the definition of the prologue muscle to...
12487 (prepare): here.
12488 * src/system.h (DEFAULT_TMPDIR): New.
12489
12490 2002-02-14 Paul Eggert <eggert@twinsun.com>
12491
12492 Remove the support for C++ namespace cleanliness; it was
12493 causing more problems than it was curing, since it didn't work
12494 properly on some nonstandard C++ compilers. This can wait
12495 for a proper C++ parser.
12496
12497 * NEWS: Document this.
12498 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
12499 of C++, as it's treated like C now.
12500 * src/bison.simple (YYSTD): Remove.
12501 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
12502 Treat C++ just like Standard C instead of trying to support
12503 namespace cleanliness.
12504
12505 2002-02-14 Akim Demaille <akim@epita.fr>
12506
12507 * tests/regression.at (else): Adjust to Andreas' change.
12508
12509 2002-02-14 Akim Demaille <akim@epita.fr>
12510
12511 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
12512
12513 2002-02-13 Andreas Schwab <schwab@suse.de>
12514
12515 * src/output.c (output_rule_data): Don't output NULL, it might
12516 not be defined yet.
12517
12518 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
12519
12520 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
12521 (Copyright notice): Update.
12522
12523 2002-02-11 Akim Demaille <akim@epita.fr>
12524
12525 * tests/regression.at (%nonassoc and eof): Don't include
12526 nonportable headers.
12527
12528 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
12529
12530 * data/bison.c++: Correct error recovery. Make the user able to
12531 initialize the starting location.
12532
12533 2002-02-07 Akim Demaille <akim@epita.fr>
12534
12535 * tests/input.at: New.
12536
12537 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12538
12539 * data/bison.c++: Replace some direct m4 expansions by constants. Be
12540 more consistent when naming methods and variables. Put preprocessor
12541 directives around tables only needed for debugging.
12542
12543 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12544
12545 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
12546 C++ parsers.
12547 (yy::b4_name::parse): Use print_.
12548
12549 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12550
12551 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
12552
12553 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12554
12555 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
12556 C++ parsers.
12557 (yy::b4_name::parse): Build verbose error messages, and use error_.
12558
12559 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
12560
12561 * data/bison.c++: Fix m4 quoting in comments.
12562
12563 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
12564
12565 * data/bison.c++: Adjust the parser code. Fix some muscles that were
12566 not expanded by m4.
12567
12568 2002-02-05 Akim Demaille <akim@epita.fr>
12569
12570 * data/bison.c++: Adjust to the M4 back end.
12571 More is certainly needed.
12572
12573 2002-02-05 Akim Demaille <akim@epita.fr>
12574
12575 Give a try to M4 as a back end.
12576
12577 * lib/readpipe.c: New, from wdiff.
12578 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
12579 BISON_HAIRY.
12580 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
12581 specific values. Now it is m4 that performs the lookup.
12582 * src/parse-skel.y: Remove.
12583 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
12584 * src/output.c (actions_output, guards_output)
12585 (token_definitions_output): No longer keeps track of the output
12586 line number, hence remove the second argument.
12587 (guards_output): Check against the guard member of a rule, not the
12588 action member.
12589 Adjust callers.
12590 (output_skeleton): Don't look for the skeleton location, let m4 do
12591 that.
12592 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
12593 file will be used.
12594 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
12595 (prepare): Given that for the time being changesyntax is not
12596 usable in M4, rename the muscles using `-' to `_'.
12597 Define `defines_flag', `output_parser_name' and `output_header_name'.
12598 * src/output.h (actions_output, guards_output)
12599 (token_definitions_output): Adjust prototypes.
12600 * src/scan-skel.l: Instead of scanning the skeletons, it now
12601 processes the output of m4: `__oline__' and `#output'.
12602 * data/bison.simple: Adjust to be used by M4(sugar).
12603 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
12604 to date.
12605 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
12606 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
12607 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
12608 shamelessly stolen from CVS Autoconf.
12609
12610 2002-02-05 Akim Demaille <akim@epita.fr>
12611
12612 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
12613 * configure.in: Check for the declarations of free and malloc.
12614 * src/muscle_tab.c: Adjust.
12615
12616 2002-02-05 Akim Demaille <akim@epita.fr>
12617
12618 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
12619 which have no values.
12620
12621 2002-02-05 Akim Demaille <akim@epita.fr>
12622
12623 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
12624 * data/: here.
12625
12626 2002-01-29 Paul Eggert <eggert@twinsun.com>
12627
12628 * src/bison.simple (YYSIZE_T): Do not define merely because
12629 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
12630 On some platforms, <alloca.h> does not declare YYSTD (size_t).
12631
12632 2002-01-27 Akim Demaille <akim@epita.fr>
12633
12634 Fix `%nonassoc and eof'.
12635
12636 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
12637 which were not properly copied! Replace
12638 memcpy (res->errs, src->errs, src->nerrs);
12639 with
12640 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
12641 !!!
12642 * tests/regression.at (%nonassoc and eof): Adjust to newest
12643 Autotest: `.' is not in the PATH.
12644
12645 2002-01-27 Akim Demaille <akim@epita.fr>
12646
12647 * tests/sets.at (AT_EXTRACT_SETS): New.
12648 (Nullable): Use it.
12649 (Firsts): New.
12650
12651 2002-01-26 Akim Demaille <akim@epita.fr>
12652
12653 * tests/actions.at, tests/calc.at, tests/headers.at,
12654 * tests/torture.at: Adjust to the newest Autotest which no longer
12655 forces `.' in the PATH.
12656
12657 2002-01-25 Akim Demaille <akim@epita.fr>
12658
12659 * tests/regression.at (%nonassoc and eof): New.
12660 Suggested by Robert Anisko.
12661
12662 2002-01-24 Akim Demaille <akim@epita.fr>
12663
12664 Bison dumps core when trying to complain about broken input files.
12665 Reported by Cris van Pelt.
12666
12667 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
12668 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
12669 into...
12670 (Invalid inputs): Strengthen: exercise parse_percent_token.
12671
12672 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
12673
12674 * src/Makefile.am: Add bison.c++.
12675 * src/bison.c++: New skeleton.
12676
12677 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
12678
12679 * po/it.po: New.
12680
12681 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
12682
12683 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
12684
12685 2002-01-20 Marc Autret <marc@gnu.org>
12686
12687 * src/files.c (compute_output_file_names): Fix
12688
12689 2002-01-20 Marc Autret <marc@gnu.org>
12690
12691 * tests/output.at: New test.
12692 * src/files.c (compute_base_names): Don't map extensions when
12693 the YACC flag is set, use defaults.
12694 Reported by Evgeny Stambulchik.
12695
12696 2002-01-20 Marc Autret <marc@gnu.org>
12697
12698 * src/system.h: Need to define __attribute__ away for non-GCC
12699 compilers as well (i.e., the vendor C compiler).
12700 Suggested by Albert Chin-A-Young.
12701
12702 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
12703
12704 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
12705 canonical definition.
12706 * src/system.h: Use the canonical definition for PARAMS (avoids
12707 a conflict with the macro from lib/hash.h).
12708
12709 2002-01-11 Akim Demaille <akim@epita.fr>
12710
12711 * configure.in: Use AC_FUNC_STRNLEN.
12712 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
12713
12714 2002-01-09 Akim Demaille <akim@epita.fr>
12715
12716 * src/files.c, src/files.h (output_infix): New.
12717 (tab_extension): Remove.
12718 (compute_base_names): Compute the former, drop the latter.
12719 * src/output.c (prepare): Insert the muscles `output-infix', and
12720 `output-suffix'.
12721 * src/parse-skel.y (string, string.1): New.
12722 (section.header): Use it.
12723 (section.yacc): Remove.
12724 (prefix): Remove too.
12725 * src/scan-skel.l: Adjust.
12726 * src/bison.simple, src/bison.hairy: Adjust.
12727
12728 2002-01-09 Akim Demaille <akim@epita.fr>
12729
12730 * configure.in (WERROR_CFLAGS): Compute it.
12731 * src/Makefile.am (CFLAGS): Pass it.
12732 * tests/atlocal.in (CFLAGS): Idem.
12733 * src/files.c: Fix a few warnings.
12734 (get_extension_index): Remove, unused.
12735
12736 2002-01-08 Akim Demaille <akim@epita.fr>
12737
12738 * src/getargs.c (AS_FILE_NAME): New.
12739 (getargs): Use it to convert DOSish file names.
12740 * src/files.c (base_name): Rename as full_base_name to avoid
12741 clashes with `base_name ()'.
12742 (filename_split): New.
12743 (compute_base_names): N-th rewrite, using filename_split.
12744
12745 2002-01-08 Akim Demaille <akim@epita.fr>
12746
12747 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
12748 New, stolen from the Fileutils 4.1.
12749 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
12750 * configure.in: Check for the presence of memrchr, and of its
12751 prototype.
12752
12753 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
12754
12755 * lib/hash.h (__P): Added definition for this macro.
12756 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
12757 BUILT_SOURCES, to ensure they are generated first.
12758 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
12759 %error-verbose to allow bootstrapping with bison 1.30x.
12760
12761 2002-01-06 Akim Demaille <akim@epita.fr>
12762
12763 * src/reader.c (parse_braces): Don't fetch the next char, the
12764 convention is to fetch on entry.
12765 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
12766 'switch' without a following semicolon.
12767 * tests/regression.at (braces parsing): New.
12768
12769 2002-01-06 Akim Demaille <akim@epita.fr>
12770
12771 Bison is dead wrong in its RR conflict reports.
12772
12773 * tests/torture.at (GNU Cim Grammar): New.
12774 * src/conflicts.c (count_rr_conflicts): Fix.
12775
12776 2002-01-06 Akim Demaille <akim@epita.fr>
12777
12778 Creating package.m4 from configure.ac causes too many problems.
12779
12780 * tests/Makefile.am (package.m4): Create it by hand,
12781 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
12782
12783 2002-01-06 Akim Demaille <akim@epita.fr>
12784
12785 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
12786 skeleton.h.
12787
12788 2002-01-04 Paul Eggert <eggert@twinsun.com>
12789
12790 * doc/bison.texinfo (Debugging):
12791 Remove YYSTDERR; it's no longer defined or used.
12792 Also, s/cstdio.h/cstdio/.
12793
12794 2002-01-03 Akim Demaille <akim@epita.fr>
12795
12796 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
12797
12798 2002-01-03 Akim Demaille <akim@epita.fr>
12799
12800 * src/parse-skel.y (process_skeleton): Don't bind the parser's
12801 tracing code to --trace, wait for a better --trace option, with
12802 args.
12803
12804 2002-01-03 Akim Demaille <akim@epita.fr>
12805
12806 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
12807 The ISO C++ standard is extremely clear about it: stderr is
12808 considered a macro, not a regular symbol (see table 94 `Header
12809 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
12810 Therefore std:: does not apply to it. It still does with fprintf.
12811 Also, s/cstdio.h/cstdio/.
12812
12813 2002-01-03 Akim Demaille <akim@epita.fr>
12814
12815 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
12816 for non system headers.
12817
12818 2002-01-02 Akim Demaille <akim@epita.fr>
12819
12820 Equip the skeleton chain with location tracking, runtime trace,
12821 pure parser and scanner.
12822
12823 * src/parse-skel.y: Request a pure parser, locations, and prefix
12824 renaming.
12825 (%union): Having several members with the same type does not help
12826 type mismatches, simplify.
12827 (YYPRINT, yyprint): New.
12828 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
12829 (skel_error): this.
12830 Handle locations.
12831 * src/scan-skel.l: Adjust to these changes.
12832 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
12833 (LOCATION_PRINT, skel_control_t): New.
12834
12835 2001-12-30 Akim Demaille <akim@epita.fr>
12836
12837 * src/parse-skel.y: Get rid of the shift/reduce conflict:
12838 replace `gb' with BLANKS.
12839 * src/scan-skel.l: Adjust.
12840
12841 2001-12-30 Akim Demaille <akim@epita.fr>
12842
12843 * src/system.h: We don't need nor want bcopy.
12844 Throw away MS-DOS crap: we don't need getpid.
12845 * configure.in: We don't need strndup. It was even causing
12846 problems: because Flex includes the headers *before* us,
12847 _GNU_SOURCE is not defined by config.h, and therefore strndup was
12848 not visible.
12849 * lib/xstrndup.c: New.
12850 * src/scan-skel.l: Use it.
12851 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
12852 * src/parse-skel.y: Use %directives instead of #defines.
12853
12854 2001-12-30 Akim Demaille <akim@epita.fr>
12855
12856 * src/skeleton.h: New.
12857 * src/output.c (output_parser, output_master_parser): Remove, dead
12858 code.
12859 * src/output.h (get_lines_number, actions_output, guards_output)
12860 (token_definitions_output): Prototype them.
12861 * src/parse-skel.y: Add the license notice.
12862 Include output.h and skeleton.h.
12863 (process_skeleton): Returns void, and takes a single parameter.
12864 * src/scan-skel.l: Add the license notice.
12865 Include skeleton.h.
12866 Don't use %option yylineno: it seems that then Flex imagines
12867 REJECT has been used, and therefore it won't reallocate its
12868 buffers (which makes no other sense to me than a bug). It results
12869 in warnings for `unused: yy_flex_realloc'.
12870
12871 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
12872
12873 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12874 (MUSCLE_INSERT_PREFIX): ...to there.
12875 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12876 (MUSCLE_INSERT_PREFIX): Move from here...
12877
12878 * src/bison.hairy: Add a section directive. Put braces around muscle
12879 names. This parser skeleton is still broken, but Bison should not
12880 choke on a bad muscle 'syntax'.
12881 * src/bison.simple: Add a section directive. Put braces around muscle
12882 names.
12883
12884 * src/files.h (strsuffix, stringappend): Add declarations.
12885 (tab_extension): Add declaration.
12886 (short_base_name): Add declaration.
12887
12888 * src/files.c (strsuffix, stringappend): No longer static. These
12889 functions are used in the skeleton parser.
12890 (tab_extension): New.
12891 (compute_base_names): Use the computations done in this function
12892 to guess if the generated parsers should have '.tab' in their
12893 names.
12894 (short_base_name): No longer static.
12895
12896 * src/output.c (output_skeleton): New.
12897 (output): Disable call to output_master_parser, and give a try to
12898 a new skeleton handling system.
12899 (guards_output, actions_output): No longer static.
12900 (token_definitions_output, get_lines_number): No longer static.
12901
12902 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
12903
12904 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
12905 parse-skel.y.
12906
12907 * src/parse-skel.y: New file.
12908 * src/scan-skel.l: New file.
12909
12910 2001-12-29 Akim Demaille <akim@epita.fr>
12911
12912 %name-prefix is broken.
12913
12914 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
12915 Adjust all dependencies.
12916 * tests/headers.at (export YYLTYPE): Strengthen this test: use
12917 %name-prefix.
12918
12919 Renaming yylval but not yylloc is not consistent. Now we do.
12920
12921 * src/bison.simple: Prefix yylloc if used.
12922 * doc/bison.texinfo (Decl Summary): Document that.
12923
12924 2001-12-29 Akim Demaille <akim@epita.fr>
12925
12926 * doc/bison.texinfo: Promote `%long-directive' over
12927 `%long_directive'.
12928 Remove all references to fixed-output-files, yacc is enough.
12929
12930 2001-12-29 Akim Demaille <akim@epita.fr>
12931
12932 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
12933 user prologue. These are defaults.
12934 * tests/actions.at (Mid-rule actions): Make sure the user can
12935 define YYDEBUG and YYERROR_VERBOSE.
12936
12937 2001-12-29 Akim Demaille <akim@epita.fr>
12938
12939 * src/output.c (header_output): Don't forget to export YYLTYPE and
12940 yylloc.
12941 * tests/headers.at (export YYLTYPE): New, make sure it does.
12942 * tests/regression.at (%union and --defines, Invalid CPP headers):
12943 Move to...
12944 * tests/headers.at: here.
12945
12946 2001-12-29 Akim Demaille <akim@epita.fr>
12947
12948 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
12949
12950 2001-12-29 Akim Demaille <akim@epita.fr>
12951
12952 * tests/actions.at (Mid-rule actions): Output on a single line
12953 instead of several.
12954
12955 2001-12-29 Akim Demaille <akim@epita.fr>
12956
12957 * doc/bison.texinfo: Formatting changes.
12958
12959 2001-12-29 Akim Demaille <akim@epita.fr>
12960
12961 Don't store the token defs in a muscle, just be ready to output it
12962 on command. Now possible via `symbols'. Fixes a memory leak.
12963
12964 * src/output.c (token_definitions_output): New.
12965 (output_parser, header_output): Use it.
12966 * src/reader.c (symbols_save): Remove.
12967
12968 2001-12-29 Akim Demaille <akim@epita.fr>
12969
12970 * src/bison.simple: Do not provide a default for YYSTYPE and
12971 YYLTYPE before the user's prologue. Otherwise it's hardly... a
12972 default.
12973
12974 2001-12-29 Akim Demaille <akim@epita.fr>
12975
12976 Mid-rule actions are simply... ignored!
12977
12978 * src/reader.c (readgram): Be sure to attach mid-rule actions to
12979 the empty-rule associated to the dummy symbol, not to the host
12980 rule.
12981 * tests/actions.at (Mid-rule actions): New.
12982
12983 2001-12-29 Akim Demaille <akim@epita.fr>
12984
12985 Memory leak.
12986
12987 * src/reader.c (reader): Free grammar.
12988
12989 2001-12-29 Akim Demaille <akim@epita.fr>
12990
12991 Memory leak.
12992
12993 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
12994 since it allocates it for each state, although only one is needed.
12995 (allocate_storage): Do it here.
12996
12997 2001-12-29 Akim Demaille <akim@epita.fr>
12998
12999 * src/options.h, src/options.c (create_long_option_table): Rename
13000 as...
13001 (long_option_table_new): this, with a clearer prototype.
13002 (percent_table): Remove, unused,
13003 * src/getargs.c (getargs): Adjust.
13004
13005 2001-12-29 Akim Demaille <akim@epita.fr>
13006
13007 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
13008 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
13009 as states.
13010
13011 2001-12-29 Akim Demaille <akim@epita.fr>
13012
13013 * src/lalr.c (build_relations): Rename `states' as `states1'.
13014 Sorry, I don't understand exactly what it is, no better name...
13015
13016 2001-12-29 Akim Demaille <akim@epita.fr>
13017
13018 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
13019 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
13020 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
13021 as rules.
13022
13023 2001-12-29 Akim Demaille <akim@epita.fr>
13024
13025 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
13026 ago.
13027
13028 2001-12-29 Akim Demaille <akim@epita.fr>
13029
13030 * src/reader.c, src/reader.h (user_toknums): Remove.
13031 Adjust all users to use symbols[i]->user_token_number.
13032
13033 2001-12-29 Akim Demaille <akim@epita.fr>
13034
13035 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
13036 Adjust all users to use symbols[i]->prec or ->assoc.
13037
13038 2001-12-29 Akim Demaille <akim@epita.fr>
13039
13040 * src/reader.c, src/reader.h (tags): Remove.
13041 Adjust all users to use symbols[i]->tag.
13042
13043 2001-12-29 Akim Demaille <akim@epita.fr>
13044
13045 * src/gram.h, src/gram.c (symbols): New, similar to state_table
13046 and rule_table.
13047 * src/reader.c (packsymbols): Fill this table.
13048 Drop sprec.
13049 * src/conflicts.c (resolve_sr_conflict): Adjust.
13050 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
13051 single table.
13052 Use symbols[i]->tag instead of tags[i].
13053
13054 2001-12-29 Akim Demaille <akim@epita.fr>
13055
13056 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
13057 In addition, put a comment in there, to replace...
13058 * tests/regression.at (%union and C comments): Remove.
13059
13060 2001-12-29 Akim Demaille <akim@epita.fr>
13061
13062 * tests/regression.at (Web2c Actions): Blindly move the actual
13063 output as expected output. The contents *seem* right to me, but I
13064 can't pretend reading perfectly parser tables... Nonetheless, all
13065 the other tests pass correctly, the table look OK, even though the
13066 presence of `$axiom' is to be noted: AFAICS it is useless (but
13067 harmless).
13068
13069 2001-12-29 Akim Demaille <akim@epita.fr>
13070
13071 * src/reader.c (readgram): Don't add the rule 0 if there were no
13072 rules read. In other words, add it _after_ having performed
13073 grammar sanity checks.
13074 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
13075
13076 2001-12-29 Akim Demaille <akim@epita.fr>
13077
13078 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
13079 visible, and some states have now a different number.
13080
13081 2001-12-29 Akim Demaille <akim@epita.fr>
13082
13083 * src/reader.c (readgram): Bind the initial rule's lineno to that
13084 of the first rule.
13085 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
13086 (Solved SR Conflicts): Adjust rule 0's line number.
13087
13088 2001-12-29 Akim Demaille <akim@epita.fr>
13089
13090 Fix the `GAWK Grammar' failure.
13091
13092 * src/LR0.c (final_state): Initialize to -1 so that we do compute
13093 the reductions of the first state which was mistakenly confused
13094 with the final state because precisely final_state was initialized
13095 to 0.
13096 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
13097 now noticed by Bison.
13098 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
13099 have a reduction on $default.
13100
13101 2001-12-29 Akim Demaille <akim@epita.fr>
13102
13103 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
13104 rule line numbers.
13105 * src/closure.c (print_closure): Likewise.
13106 * src/derives.c (print_derives): Likewise.
13107 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
13108 now.
13109
13110 2001-12-29 Akim Demaille <akim@epita.fr>
13111
13112 * src/lalr.c (lookaheads_print): New.
13113 (lalr): Call it when --trace-flag.
13114 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
13115 are dumped.
13116
13117 2001-12-29 Akim Demaille <akim@epita.fr>
13118
13119 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
13120 when walking through ritem, even via rule->rhs.
13121 * src/reduce.c (dump_grammar, useful_production, reduce_output)
13122 (useful_production, useless_nonterminals): Likewise.
13123 (reduce_grammar_tables): Likewise, plus update nritems.
13124 * src/nullable.c (set_nullable): Likewise.
13125 * src/lalr.c (build_relations): Likewise.
13126 * tests/sets.at (Nullable): Adjust.
13127 Fortunately, now, the $axiom is no longer nullable.
13128
13129 2001-12-29 Akim Demaille <akim@epita.fr>
13130
13131 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
13132 the 0-sentinel.
13133 * src/gram.c (ritem_longest_rhs): Likewise.
13134 * src/reduce.c (nonterminals_reduce): Likewise.
13135 * src/print_graph.c (print_graph): Likewise.
13136 * src/output.c (output_rule_data): Likewise.
13137 * src/nullable.c (set_nullable): Likewise.
13138
13139 2001-12-29 Akim Demaille <akim@epita.fr>
13140
13141 * src/output.c: Comment changes.
13142
13143 2001-12-27 Paul Eggert <eggert@twinsun.com>
13144
13145 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
13146 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
13147 Sparc, as they were causing more porting problems than the
13148 (minor) performance improvement was worth.
13149
13150 Also, catch up with 1.31's YYSTD.
13151
13152 2001-12-27 Akim Demaille <akim@epita.fr>
13153
13154 * src/output.c (output_gram): Rely on nritems, not the
13155 0-sentinel. See below.
13156 Use -1 as separator, not 0.
13157 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
13158 Rely on -1 as separator in yyrhs, instead of 0.
13159 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
13160 twice `Now at end of input', therefore there are two lines less to
13161 expect.
13162
13163 2001-12-27 Akim Demaille <akim@epita.fr>
13164
13165 * tests/regression.at (Unresolved SR Conflicts):
13166 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
13167 below.
13168
13169 2001-12-27 Akim Demaille <akim@epita.fr>
13170
13171 * src/LR0.c (new_state): Recognize the final state by the fact it
13172 is reached by eoftoken.
13173 (insert_start_shifting_state, insert_eof_shifting_state)
13174 (insert_accepting_state, augment_automaton): Remove, since now
13175 these states are automatically computed from the initial state.
13176 (generate_states): Adjust.
13177 * src/print.c: When reporting a rule number to the user, substract
13178 1, so that the axiom rule is rule 0, and the first user rule is 1.
13179 * src/reduce.c: Likewise.
13180 * src/print_graph.c (print_core): For the time being, just as for
13181 the report, depend upon --trace-flags to dump the full set of
13182 items.
13183 * src/reader.c (readgram): Once the grammar read, insert the rule
13184 0: `$axiom: START-SYMBOL $'.
13185 * tests/set.at: Adjust: rule 0 is now displayed, and since the
13186 number of the states has changed (the final state is no longer
13187 necessarily the last), catch up.
13188
13189 2001-12-27 Akim Demaille <akim@epita.fr>
13190
13191 Try to make the use of the eoftoken valid. Given that its value
13192 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
13193 is used instead of > 0 where appropriate, (ii), depend upon nritems
13194 instead of the 0-sentinel.
13195
13196 * src/gram.h, src/gram.c (nritems): New.
13197 Expected to be duplication of nitems, but for the time being...
13198 * src/reader.c (packgram): Assert nritems and nitems are equal.
13199 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
13200 * src/closure.c (print_closure, print_fderives): Likewise.
13201 * src/gram.c (ritem_print): Likewise.
13202 * src/print.c (print_core, print_grammar): Likewise.
13203 * src/print_graph.c: Likewise.
13204
13205 2001-12-27 Akim Demaille <akim@epita.fr>
13206
13207 * src/main.c (main): If there are complains after grammar
13208 reductions, then output the report anyway if requested, then die.
13209 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
13210 * src/reader.c (eoftoken): New.
13211 (parse_token_decl): If the token being defined has value `0', it
13212 is the eoftoken.
13213 (packsymbols): No longer hack `tags' to insert `$' by hand.
13214 Be sure to preserve the value of the eoftoken.
13215 (reader): Make sure eoftoken is defined.
13216 Initialize nsyms to 0: now eoftoken is created just like the others.
13217 * src/print.c (print_grammar): Don't special case the eof token.
13218 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
13219 lie anyway, albeit pleasant.
13220 * tests/calc.at: Exercise error messages with eoftoken.
13221 Change the grammar so that empty input is invalid.
13222 Adjust expectations.
13223 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
13224
13225 2001-12-27 Akim Demaille <akim@epita.fr>
13226
13227 * configure.in: Check the protos of strchr ans strspn.
13228 Replace strchr if needed.
13229 * src/system.h: Provide the protos of strchr, strspn and memchr if
13230 missing.
13231 * lib/strchr.c: New.
13232 * src/reader.c (symbols_save): Use strchr.
13233
13234 2001-12-27 Akim Demaille <akim@epita.fr>
13235
13236 * src/print.c, src/print_graph.c (escape): New.
13237 Use it to quote the TAGS outputs.
13238 * src/print_graph.c (print_state): Now errors are in red, and
13239 reductions in green.
13240 Prefer high to wide: output the state number on a line of its own.
13241
13242 2001-12-27 Akim Demaille <akim@epita.fr>
13243
13244 * src/state.h, src/state.c (reductions_new): New.
13245 * src/LR0.c (set_state_table): Let all the states have a
13246 `reductions', even if reduced to 0.
13247 (save_reductions): Adjust.
13248 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
13249 * src/print.c (print_reductions, print_actions): Adjust.
13250 * src/output.c (action_row): Adjust.
13251
13252 2001-12-27 Akim Demaille <akim@epita.fr>
13253
13254 * src/state.h, src/state.c (errs_new, errs_dup): New.
13255 * src/LR0.c (set_state_table): Let all the states have an errs,
13256 even if reduced to 0.
13257 * src/print.c (print_errs, print_reductions): Adjust.
13258 * src/output.c (output_actions, action_row): Adjust.
13259 * src/conflicts.c (resolve_sr_conflict): Adjust.
13260
13261 2001-12-27 Akim Demaille <akim@epita.fr>
13262
13263 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
13264
13265 2001-12-27 Akim Demaille <akim@epita.fr>
13266
13267 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
13268 * src/print.c: here.
13269 (lookaheadset, shiftset): New, used as additional storage by
13270 print_reductions.
13271 (print_results): Adjust.
13272 (print_shifts, print_gotos, print_errs): New, extracted from...
13273 (print_actions): here.
13274 * src/print_graph.c (print_actions): Remove dead code.
13275
13276 2001-12-27 Akim Demaille <akim@epita.fr>
13277
13278 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
13279 `$n' and `@n'.
13280
13281 2001-12-27 Akim Demaille <akim@epita.fr>
13282
13283 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
13284 (build_relations): Adjust.
13285
13286 2001-12-27 Akim Demaille <akim@epita.fr>
13287
13288 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
13289 duplication.
13290
13291 2001-12-27 Akim Demaille <akim@epita.fr>
13292
13293 * src/reader.c (packgram): Catch nitems overflows.
13294
13295 2001-12-27 Akim Demaille <akim@epita.fr>
13296
13297 * src/files.c, src/files.h (guard_obstack): Remove.
13298 * src/output.c (output): Adjust.
13299 * src/reader.c (parse_braces): New, factoring...
13300 (copy_action, copy_guard): these two which are renamed as...
13301 (parse_action, parse_guard): these.
13302 As a voluntary consequence, using braces around guards is now
13303 mandatory.
13304
13305 2001-12-27 Akim Demaille <akim@epita.fr>
13306
13307 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
13308 * src/reader.c (symbol_list): `guard' and `guard_line' are new
13309 members.
13310 (symbol_list_new): Adjust.
13311 (copy_action): action_line is the first line, not the last.
13312 (copy_guard): Just as for actions, store the `action' only, not
13313 the switch/case/break flesh.
13314 Don't parse the user action that might follow the guard, let...
13315 (readgram): do it, i.e., now, there can be an action after a
13316 guard.
13317 In other words the guard is just explicitly optional.
13318 (packgram): Adjust.
13319 * src/output.c (guards_output): New.
13320 (output_parser): Call it when needed.
13321 (output): Also free the guard and attrs obstacks.
13322 * src/files.c, src/files.h (obstack_save): Remove.
13323 (output_files): Remove.
13324 As a result, if one needs the former `.act' file, using an
13325 appropriate skeleton which requires actions and guards is now
13326 required.
13327 * src/main.c (main): Adjust.
13328 * tests/semantic.at: New.
13329 * tests/regression.at: Use `input.y' as input file name.
13330 Avoid 8+3 problems by requiring input.c when the test needs the
13331 parser.
13332
13333 2001-12-27 Akim Demaille <akim@epita.fr>
13334
13335 * src/reader.c (symbol_list_new): Be sure to initialize all the
13336 fields.
13337
13338 2001-12-27 Akim Demaille <akim@epita.fr>
13339
13340 All the hacks using a final pseudo state are now useless.
13341
13342 * src/LR0.c (set_state_table): state_table holds exactly nstates.
13343 * src/lalr.c (nLA): New.
13344 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
13345 instead of lookaheadsp from the pseudo state (nstate + 1).
13346
13347 2001-12-27 Akim Demaille <akim@epita.fr>
13348
13349 * src/output.c (action_row, token_actions): Use a state_t instead
13350 of a integer, and nlookaheads instead of the following state's
13351 lookaheadsp.
13352
13353 2001-12-27 Akim Demaille <akim@epita.fr>
13354
13355 * src/conflicts.c (log_resolution, flush_shift)
13356 (resolve_sr_conflict, set_conflicts, solve_conflicts)
13357 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
13358 (conflicts_print, print_reductions): Use a state_t instead of an
13359 integer when referring to a state.
13360 As much as possible, depend upon nlookaheads, instead of the
13361 `lookaheadsp' member of the following state (since lookaheads of
13362 successive states are successive, the difference between state n + 1
13363 and n served as the number of lookaheads for state n).
13364 * src/lalr.c (add_lookback_edge): Likewise.
13365 * src/print.c (print_core, print_actions, print_state)
13366 (print_results): Likewise.
13367 * src/print_graph.c (print_core, print_actions, print_state)
13368 (print_graph): Likewise.
13369 * src/conflicts.h: Adjust.
13370
13371 2001-12-27 Akim Demaille <akim@epita.fr>
13372
13373 * src/bison.hairy: Formatting/comment changes.
13374 ANSIfy.
13375 Remove `register' indications.
13376 Add plenty of `static'.
13377
13378 2001-12-27 Akim Demaille <akim@epita.fr>
13379
13380 * src/output.c (prepare): Drop the muscle `ntbase' which
13381 duplicates ntokens.
13382 * src/bison.simple: Formatting/comment changes.
13383 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
13384 is an undocumented synonym.
13385
13386 2001-12-22 Akim Demaille <akim@epita.fr>
13387
13388 * src/output.c (output_table_data): Change the prototype to use
13389 `int' for array ranges: some invocations do pass an int, not a
13390 short.
13391 Reported by Wayne Green.
13392
13393 2001-12-22 Akim Demaille <akim@epita.fr>
13394
13395 Some actions of web2c.y are improperly triggered.
13396 Reported by Mike Castle.
13397
13398 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
13399 * tests/regression.at (Web2c): Rename as...
13400 (Web2c Report): this.
13401 (Web2c Actions): New.
13402
13403 2001-12-22 Akim Demaille <akim@epita.fr>
13404
13405 Reductions in web2c.y are improperly reported.
13406 Reported by Mike Castle.
13407
13408 * src/conflicts.c (print_reductions): Fix.
13409 * tests/regression.at (Web2c): New.
13410
13411 2001-12-18 Akim Demaille <akim@epita.fr>
13412
13413 Some host fail on `assert (!"foo")', which expands to
13414 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
13415 Reported by Nelson Beebee.
13416
13417 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
13418 `#define it_succeeded 0' and `assert (it_succeeded)'.
13419
13420 2001-12-17 Marc Autret <autret_m@epita.fr>
13421
13422 * src/bison.simple: Don't hard code the skeleton line and filename.
13423 * src/output.c (output_parser): Rename 'line' as 'output_line'.
13424 New line counter 'skeleton_line' (skeleton-line muscle).
13425
13426 2001-12-17 Paul Eggert <eggert@twinsun.com>
13427
13428 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
13429 YYDEBUG must be defined to a nonzero value.
13430
13431 * src/bison.simple (yytname): Do not assume that the user defines
13432 YYDEBUG to a properly parenthesized expression.
13433
13434 2001-12-17 Akim Demaille <akim@epita.fr>
13435
13436 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
13437 nlookaheads is a new member.
13438 Adjust all users.
13439 * src/lalr.h (nlookaheads): Remove this orphan declaration.
13440 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
13441 state.
13442
13443 2001-12-17 Akim Demaille <akim@epita.fr>
13444
13445 * src/files.h, src/files.c (open_files, close_files): Remove.
13446 * src/main.c (main): Don't open/close files, nor invoke lex_free,
13447 let...
13448 * src/reader.c (reader): Do it.
13449
13450 2001-12-17 Akim Demaille <akim@epita.fr>
13451
13452 * src/conflicts.c (print_reductions): Formatting changes.
13453
13454 2001-12-17 Akim Demaille <akim@epita.fr>
13455
13456 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
13457 (flush_reduce): New.
13458 (resolve_sr_conflict): Adjust.
13459
13460 2001-12-17 Akim Demaille <akim@epita.fr>
13461
13462 * src/output.c (output_obstack): Be static and rename as...
13463 (format_obstack): this, to avoid any confusion with files.c's
13464 output_obstack.
13465 * src/reader.h (muscle_obstack): Move to...
13466 * src/output.h: here, since it's defined in output.c.
13467
13468 2001-12-17 Akim Demaille <akim@epita.fr>
13469
13470 * src/output.c (action_row, save_column, default_goto)
13471 (sort_actions, matching_state, pack_vector): Better variable
13472 locality.
13473
13474 2001-12-17 Akim Demaille <akim@epita.fr>
13475
13476 * src/output.c: Various formatting changes.
13477
13478 2001-12-17 Akim Demaille <akim@epita.fr>
13479
13480 * src/files.c (output_files): Free the output_obstack.
13481 * src/main.c (main): Call print and print_graph conditionally.
13482 * src/print.c (print): Work unconditionally.
13483 * src/print_graph.c (print_graph): Work unconditionally.
13484 * src/conflicts.c (log_resolution): Output only if verbose_flag.
13485
13486 2001-12-16 Marc Autret <autret_m@epita.fr>
13487
13488 * src/output.c (actions_output): Fix. When we use %no-lines,
13489 there is one less line per action.
13490
13491 2001-12-16 Marc Autret <autret_m@epita.fr>
13492
13493 * src/bison.simple: Remove a useless #line directive.
13494 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
13495 * src/output.c (get_lines_number): New.
13496 (output_parser): Adjust, now takes care about the lines of a
13497 output muscles.
13498 Fix line numbering.
13499 (actions_output): Computes the number of lines taken by actions.
13500 (output_master_parser): Insert new skeleton which is the name of
13501 the output parser file name.
13502
13503 2001-12-15 Marc Autret <autret_m@epita.fr>
13504
13505 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
13506
13507 2001-12-15 Marc Autret <autret_m@epita.fr>
13508
13509 * src/output.c (output_gram): Keep track of the hairy one.
13510
13511 2001-12-15 Akim Demaille <akim@epita.fr>
13512
13513 Make `make distcheck' work.
13514
13515 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
13516 system.h which uses libgettext.h.
13517
13518 2001-12-15 Akim Demaille <akim@epita.fr>
13519
13520 * src/nullable.c (set_nullable): Useless rules must be skipped,
13521 otherwise, since we range over their symbols, we might look at a
13522 nonterminal which no longer ``exists'', i.e., it is not counted in
13523 `nvars', hence we overflow our arrays.
13524
13525 2001-12-15 Akim Demaille <akim@epita.fr>
13526
13527 The header can also be produced directly, without any obstack!
13528 Yahoo!
13529
13530 * src/files.c, src/files.h (defines_obstack): Remove.
13531 (compute_header_macro): Global.
13532 (defines_obstack_save): Remove.
13533 * src/reader.c (parse_union_decl): No longer output to
13534 defines_obstack: its content can be found in the `stype' muscle
13535 anyway.
13536 (output_token_translations): Merge into...
13537 (symbols_output): this.
13538 Rename as...
13539 (symbols_save): this.
13540 (reader): Adjust.
13541 * src/output.c (header_output): New.
13542 (output): Call it.
13543
13544 2001-12-15 Akim Demaille <akim@epita.fr>
13545
13546 * src/reader.c (parse_union_decl): Instead of handling two obstack
13547 simultaneously, use one to define the `stype' muscle, and use the
13548 value of the latter to fill defines_obstack.
13549 (copy_comment): Remove.
13550 (copy_comment2): Work for a single obstack.
13551 Rename as...
13552 (copy_comment): this.
13553
13554 2001-12-15 Akim Demaille <akim@epita.fr>
13555
13556 * src/lex.c, src/lex.h (xgetc): No longer static.
13557 * src/reader.c (parse_union_decl): Revamp.
13558
13559 2001-12-15 Akim Demaille <akim@epita.fr>
13560
13561 Still making progress in separating Bison into (i) input, (ii)
13562 process, (iii) output: now we can directly output the parser file
13563 without using table_obstack at all.
13564
13565 * src/files.c, src/files.h (table_obstack): Bye bye.
13566 (parser_file_name): New.
13567 * src/files.c (compute_output_file_names): Compute it.
13568 * src/output.c (actions_output, output_parser)
13569 (output_master_parser): To a file instead of an obstack.
13570
13571 2001-12-15 Akim Demaille <akim@epita.fr>
13572
13573 Attach actions to rules, instead of pre-outputting them to
13574 actions_obstack.
13575
13576 * src/gram.h (rule_t): action and action_line are new members.
13577 * src/reader.c (symbol_list): Likewise.
13578 (copy_action): Save the actions within the rule.
13579 (packgram): Save them in rule_table.
13580 * src/output.c (actions_output): New.
13581 (output_parser): Use it on `%%actions'.
13582 (output_rule_data): Don't free rule_table.
13583 (output): Do it.
13584 (prepare): Don't save the `action' muscle.
13585 * src/bison.simple: s/%%action/%%actions/.
13586
13587 2001-12-15 Akim Demaille <akim@epita.fr>
13588
13589 * src/reader.c (copy_action): When --yacc, don't append a `;'
13590 to the user action: let it fail if lacking.
13591 Suggested by Arnold Robbins and Tom Tromey.
13592
13593 2001-12-14 Akim Demaille <akim@epita.fr>
13594
13595 * src/lex.c (literalchar): Simply return the char you decoded, non
13596 longer mess around with obstacks and int pointers.
13597 Adjust all callers.
13598
13599 2001-12-14 Akim Demaille <akim@epita.fr>
13600
13601 * src/lex.c (literalchar): Don't escape the special characters,
13602 just decode them, and keep them as char (before, eol was output as
13603 the 2 char string `\n' etc.).
13604 * src/output.c (output_rule_data): Use quotearg to output the
13605 token strings.
13606
13607 2001-12-13 Paul Eggert <eggert@twinsun.com>
13608
13609 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
13610 Do not infringe on the global user namespace when using C++.
13611 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
13612 All uses of `fprintf' and `stderr' changed.
13613
13614 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
13615
13616 2001-12-13 Akim Demaille <akim@epita.fr>
13617
13618 The computation of nullable is broken: it doesn't handle empty
13619 RHS's properly.
13620
13621 * tests/torture.at (GNU AWK Grammar): New.
13622 * tests/sets.at (Nullable): New.
13623 * src/nullable.c (set_nullable): Instead of blindly looping over
13624 `ritems', loop over the rules, and then over their rhs's.
13625
13626 Work around Autotest bugs.
13627
13628 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
13629 frame, because Autotest understand lines starting with a `+' as
13630 traces from the shell. Then, they are not processed properly.
13631 Admittedly an Autotest bug, but we don't have time to wait for
13632 Autotest to catch up.
13633 * tests/regression.at (Broken Closure): Adjust to the new table
13634 frames.
13635 Move to...
13636 * tests/sets.at: here.
13637
13638 2001-12-13 Akim Demaille <akim@epita.fr>
13639
13640 * src/closure.c (closure): Use nrules instead of playing tricks
13641 with BITS_PER_WORD.
13642
13643 2001-12-13 Akim Demaille <akim@epita.fr>
13644
13645 * src/print.c (print_actions): Output the handling of `$' as the
13646 traces do: shifting the token EOF. Before EOF was treated as a
13647 nonterminal.
13648 * tests/regression.at: Adjust some tests.
13649 * src/print_graph.c (print_core): Complete the set of items via
13650 closure. The next-to-final and final states are still unsatisfying,
13651 but that's to be addressed elsewhere.
13652 No longer output the rule numbers, but do output the state number.
13653 A single loop for the shifts + gotos is enough, but picked a
13654 distinct color for each.
13655 (print_graph): Initialize and finalize closure.
13656
13657 2001-12-13 Akim Demaille <akim@epita.fr>
13658
13659 * src/reader.c (readgram): Remove dead code, an strip useless
13660 braces.
13661 (get_type): Remove, unused.
13662
13663 2001-12-12 Akim Demaille <akim@epita.fr>
13664
13665 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
13666 on that of lib/error.c.
13667
13668 2001-12-12 Akim Demaille <akim@epita.fr>
13669
13670 Some hosts don't like `/' in includes.
13671
13672 * src/system.h: Include libgettext.h without qualifying the path.
13673 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
13674 $(top_srcdir).
13675
13676 2001-12-11 Marc Autret <autret_m@epita.fr>
13677
13678 * src/output.c (output_parser): Remove useless muscle.
13679
13680 2001-12-11 Marc Autret <autret_m@epita.fr>
13681
13682 * src/bison.simple: Remove #line just before %%epilogue. It
13683 is now handled in ...
13684 * src/reader.c (read_additionnal_code): Add the output of a
13685 #line for the epilogue.
13686
13687 2001-12-10 Marc Autret <autret_m@epita.fr>
13688
13689 * src/reader.c (copy_definition): Re-use CPP-outed code which
13690 replace precedent remove.
13691 * src/bison.simple: Remove #line before %%prologue because
13692 %%input-line is wrong at this time.
13693
13694 2001-12-10 Marc Autret <autret_m@epita.fr>
13695
13696 * src/reader.c (symbols_output): Clean up.
13697 * src/output.c (output_gram, output): Clean up.
13698
13699 2001-12-10 Akim Demaille <akim@epita.fr>
13700
13701 * src/lalr.c (initialize_lookaheads): New. Extracted from...
13702 * src/LR0.c (set_state_table): here.
13703 * src/lalr.c (lalr): Call it.
13704
13705 2001-12-10 Akim Demaille <akim@epita.fr>
13706
13707 * src/state.h (shifts): Remove the `number' member: shifts are
13708 attached to state, hence no longer need to be labelled with a
13709 state number.
13710
13711 2001-12-10 Akim Demaille <akim@epita.fr>
13712
13713 Now that states have a complete set of members, the linked list of
13714 shifts is useless: just fill directly the state's shifts member.
13715
13716 * src/state.h (shifts): Remove the `next' member.
13717 * src/LR0.c (first_state, last_state): Remove.
13718 Adjust the callers.
13719 (augment_automaton): Don't look for the shifts that must be added
13720 a shift on EOF: it is those of the state we looked for! But now,
13721 since shifts are attached, it is no longer needed to looking
13722 merely by its id: its number.
13723
13724 2001-12-10 Akim Demaille <akim@epita.fr>
13725
13726 * src/LR0.c (augment_automaton): Better variable locality.
13727 Remove an impossible branch: if there is a state corresponding to
13728 the start symbol being shifted, then there is shift for the start
13729 symbol from the initial state.
13730
13731 2001-12-10 Akim Demaille <akim@epita.fr>
13732
13733 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
13734 only when appropriate: when insert_start_shifting_state' is not
13735 invoked.
13736 * tests/regression.at (Rule Line Numbers): Adjust.
13737
13738 2001-12-10 Akim Demaille <akim@epita.fr>
13739
13740 * src/LR0.c (augment_automaton): Now that all states have shifts,
13741 merge the two cases addition shifts to the initial state.
13742
13743 2001-12-10 Akim Demaille <akim@epita.fr>
13744
13745 * src/lalr.c (set_state_table): Move to...
13746 * src/LR0.c: here.
13747 * src/lalr.c (lalr): Don't call it...
13748 * src/LR0.c (generate_states): do it.
13749 * src/LR0.h (first_state): Remove, only the table is used.
13750
13751 2001-12-10 Akim Demaille <akim@epita.fr>
13752
13753 * src/LR0.h (first_shift, first_reduction): Remove.
13754 * src/lalr.c: Don't use first_shift: find shifts through the
13755 states.
13756
13757 2001-12-10 Akim Demaille <akim@epita.fr>
13758
13759 * src/LR0.c: Attach shifts to states as soon as they are
13760 computed.
13761 * src/lalr.c (set_state_table): Instead of assigning shifts to
13762 state, just assert that the mapping was properly done.
13763
13764 2001-12-10 Akim Demaille <akim@epita.fr>
13765
13766 * src/LR0.c (insert_start_shift): Rename as...
13767 (insert_start_shifting_state): this.
13768 (insert_eof_shifting_state, insert_accepting_state): New.
13769 (augment_automaton): Adjust.
13770 Better locality of the variables.
13771 When looking if the start_symbol is shifted from the initial
13772 state, using `while (... symbol != start_symbol ...)' sounds
13773 better than `while (... symbol < start_symbol ...)': If fail
13774 to see how the order between symbols could be relevant!
13775
13776 2001-12-10 Akim Demaille <akim@epita.fr>
13777
13778 * src/getargs.h: Don't declare `spec_name_prefix' and
13779 `spec_file_prefix', declared by src/files.h.
13780 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
13781 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
13782 * src/output.c (prepare): Adjust.
13783 * src/reader.c (symbols_output): Likewise.
13784 * src/vmsgetargs.c: Vaguely adjust, but who cares?
13785
13786 2001-12-10 Akim Demaille <akim@epita.fr>
13787
13788 * src/muscle_tab.c (muscle_init): NULL is a better default than
13789 `"0"'.
13790
13791 2001-12-10 Akim Demaille <akim@epita.fr>
13792
13793 * src/reader.c (reader): Calling symbols_output once is enough.
13794
13795 2001-12-10 Akim Demaille <akim@epita.fr>
13796
13797 Now that states have a complete set of members, the linked list of
13798 reductions is useless: just fill directly the state's reductions
13799 member.
13800
13801 * src/state.h (struct reductions): Remove member `number' and
13802 `next'.
13803 * src/LR0.c (first_reduction, last_reduction): Remove.
13804 (save_reductions): Don't link the new reductions, store them in
13805 this_state.
13806 * src/lalr.c (set_state_table): No need to attach reductions to
13807 states, it's already done.
13808 * src/output.c (output_actions): No longer free the shifts, then
13809 the reductions, then the states: free all the states and their
13810 members.
13811
13812 2001-12-10 Akim Demaille <akim@epita.fr>
13813
13814 * src/options.c (OPTN, DRTV, BOTH): New.
13815 (option_table): Use them.
13816
13817 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
13818 the job of system.h.
13819 * src/options.c: Don't include stdio.h and xalloc.h for the same
13820 reasons.
13821
13822 2001-12-10 Akim Demaille <akim@epita.fr>
13823
13824 * src/output.c (output, prepare): Make sure the values of the
13825 muscles `action' and `prologue' are 0-terminated.
13826
13827 2001-12-10 Akim Demaille <akim@epita.fr>
13828
13829 Clean up GCC warnings.
13830
13831 * src/reader.c (copy_action): `buf' is not used.
13832 (parse_skel_decl): Be static.
13833 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
13834 * src/options.h (create_long_option_table): Have a real prototype.
13835 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
13836 (hash_delete_at): Return const void *.
13837 Adjust casts to preserve the const.
13838
13839 2001-12-10 Akim Demaille <akim@epita.fr>
13840
13841 * configure.in: Require 2.52g.
13842 M4 is not needed, but AUTOM4TE is.
13843 * m4/m4.m4: Remove.
13844 * tests/Makefile.am: Adjust.
13845
13846 2001-12-10 Akim Demaille <akim@epita.fr>
13847
13848 One structure for states is enough, even though theoretically
13849 there are LR(0) states and LALR(1) states.
13850
13851 * src/lalr.h (state_t): Remove.
13852 (state_table): Be state_t **, not state_t *.
13853 * src/state.h (core, CORE_ALLOC): Rename as...
13854 (state_t, STATE_ALLOC): this.
13855 Add the LALR(1) members: shifts, reductions, errs.
13856 * src/LR0.c (state_table): Rename as...
13857 (state_hash): this, to avoid name clashes with the global
13858 `state_table'.
13859 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
13860 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
13861
13862 2001-12-10 Akim Demaille <akim@epita.fr>
13863
13864 Bison dumps core on bash.y.
13865 Reported by Pascal Bart.
13866
13867 * src/warshall.c (bitmatrix_print): New.
13868 (TC): Use it.
13869 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
13870 j must be the outer loop.
13871 * tests/regression.at (Broken Closure): New.
13872
13873 2001-12-05 Akim Demaille <akim@epita.fr>
13874
13875 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
13876 its argument.
13877 Reported by Peter Hamorsky.
13878
13879 2001-12-05 Akim Demaille <akim@epita.fr>
13880
13881 * src/conflicts.c (err_table): Remove.
13882 (resolve_sr_conflict): Adjust.
13883 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
13884 Rename as...
13885 (state_t.reductions, state_t.shifts): this.
13886
13887 2001-12-05 Akim Demaille <akim@epita.fr>
13888
13889 * src/reduce.c (reduce_grammar_tables): No longer disable the
13890 removal of useless rules via CPP but via `if (0)', so that the
13891 compiler still check the code is valid.
13892 For instance, it should have noticed `rline' no longer exists: use
13893 the `line' member of rule_t.
13894 * src/gram.c (dummy, rline): Remove, unused.
13895
13896 2001-12-05 Akim Demaille <akim@epita.fr>
13897
13898 * src/output.c (pack_vector): Use assert, not berror.
13899 * src/main.c (berror): Remove, unused.
13900
13901 2001-12-05 Akim Demaille <akim@epita.fr>
13902
13903 New experimental feature: if --verbose --trace output all the
13904 items of a state, not only its kernel.
13905
13906 * src/print.c (print_core): If `trace_flag', then invoke closure
13907 before outputting the items of the state (print_core is no longer
13908 a correct name them).
13909 (print_results): Invoke new_closure/free_closure if needed.
13910
13911 2001-12-05 Akim Demaille <akim@epita.fr>
13912
13913 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
13914 * src/closure.c, src/closure.h (itemsetsize): Rename as...
13915 (nitemset): for consistency with the rest of the project.
13916
13917 2001-12-05 Akim Demaille <akim@epita.fr>
13918
13919 * src/closure.c (print_closure): Improve.
13920 (closure): Use it for printing input and output.
13921
13922 2001-12-05 Akim Demaille <akim@epita.fr>
13923
13924 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
13925 indexed by nonterminals.
13926
13927 2001-12-05 Akim Demaille <akim@epita.fr>
13928
13929 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
13930 what it was!).
13931 * src/warshall.h: Remove accidental duplication of the content.
13932
13933 2001-12-05 Akim Demaille <akim@epita.fr>
13934
13935 * src/closure.c (set_fderives): De-obfuscate.
13936
13937 2001-12-05 Akim Demaille <akim@epita.fr>
13938
13939 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
13940
13941 2001-12-05 Akim Demaille <akim@epita.fr>
13942
13943 * src/closure.c (set_firsts): De-obfuscate.
13944
13945 2001-12-05 Akim Demaille <akim@epita.fr>
13946
13947 * src/output.c (action_row): De-obfuscate
13948 using the good o' techniques: arrays not pointers, variable
13949 locality, BITISSET, RESETBIT etc.
13950
13951 2001-12-05 Akim Demaille <akim@epita.fr>
13952
13953 Pessimize the code to simplify it: from now on, all the states
13954 have a valid SHIFTS, which NSHIFTS is possibly 0.
13955
13956 * src/LR0.c (shifts_new): Be global and move to..
13957 * src/state.c, src/state.h: here.
13958 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
13959 * src/print_graph: Adjust.
13960
13961 2001-12-05 Akim Demaille <akim@epita.fr>
13962
13963 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
13964 * src/conflicts.c: Use it.
13965 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
13966 incorrectly ``simplified''.
13967
13968 2001-12-05 Akim Demaille <akim@epita.fr>
13969
13970 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
13971 using the good o' techniques: arrays not pointers, variable
13972 locality, BITISSET, RESETBIT etc.
13973
13974 2001-12-05 Akim Demaille <akim@epita.fr>
13975
13976 * src/state.h (SHIFT_SYMBOL): New.
13977 * src/conflicts.c: Use it to deobfuscate.
13978
13979 2001-12-05 Akim Demaille <akim@epita.fr>
13980
13981 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
13982 (print_reductions): De-obfuscate using the good o' techniques:
13983 arrays not pointers, variable locality, BITISSET.
13984
13985 2001-12-05 Akim Demaille <akim@epita.fr>
13986
13987 * src/conflicts.c (print_reductions): Arrays, not pointers.
13988 Use BITISSET.
13989
13990 2001-12-05 Akim Demaille <akim@epita.fr>
13991
13992 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13993
13994 2001-12-05 Akim Demaille <akim@epita.fr>
13995
13996 * src/conflicts.c (print_reductions): Improve variable locality.
13997
13998 2001-12-05 Akim Demaille <akim@epita.fr>
13999
14000 * src/conflicts.c (print_reductions): Pessimize, but clarify.
14001
14002 2001-12-05 Akim Demaille <akim@epita.fr>
14003
14004 * src/conflicts.c (print_reductions): Improve variable locality.
14005
14006 2001-12-05 Akim Demaille <akim@epita.fr>
14007
14008 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
14009 * src/lalr.c: Use them.
14010
14011 2001-12-05 Akim Demaille <akim@epita.fr>
14012
14013 * src/LR0.c (augment_automaton): Formatting changes.
14014 Better variable locality.
14015
14016 2001-12-05 Akim Demaille <akim@epita.fr>
14017
14018 * src/lalr.c (matrix_print): New.
14019 (transpose): Use it.
14020 Use arrays instead of pointers.
14021
14022 2001-12-05 Akim Demaille <akim@epita.fr>
14023
14024 * src/lalr.c (maxrhs): Move to...
14025 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
14026 * src/lalr.c (build_relations): Adjust.
14027
14028 2001-12-05 Akim Demaille <akim@epita.fr>
14029
14030 * src/lalr.c (transpose): Free the memory allocated to the
14031 argument, as it is replaced by the results by the unique caller.
14032 (build_relations): Merely invoke transpose: it handles the memory
14033 deallocation.
14034 Improve variable locality.
14035 Avoid variables used as mere abbreviations.
14036 (compute_lookaheads): Use arrays instead of pointers.
14037
14038 2001-12-05 Akim Demaille <akim@epita.fr>
14039
14040 * src/lalr.c (initialize_F): Improve variable locality.
14041 Avoid variables used as mere abbreviations.
14042
14043 2001-12-05 Akim Demaille <akim@epita.fr>
14044
14045 * src/derives.c (print_derives): Display the ruleno.
14046 * src/lalr.c (initialize_F, transpose): Better variable locality
14047 to improve readability.
14048 Avoid variables used as mere abbreviations.
14049
14050 2001-12-05 Akim Demaille <akim@epita.fr>
14051
14052 * src/lalr.c (traverse): Use arrays instead of pointers.
14053
14054 2001-12-05 Akim Demaille <akim@epita.fr>
14055
14056 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
14057 the handling of squeue.
14058 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
14059
14060 2001-12-05 Akim Demaille <akim@epita.fr>
14061
14062 Because useless nonterminals are now kept alive (instead of being
14063 `destroyed'), we now sometimes examine them, and store information
14064 related to them. Hence we need to know their number, and adjust
14065 memory allocations.
14066
14067 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
14068 static.
14069 * src/LR0.c (allocate_itemsets): The memory allocated to
14070 `symbol_count' was used for two different purpose: once to count
14071 the number of occurrences of each symbol, and later reassigned to
14072 `shift_symbol', containing the symbol that can be shifted from a
14073 given state.
14074 Deobfuscate, i.e., allocate, use and free `symbol_count' here
14075 only, and...
14076 (new_itemsets): Allocate `shift_symbol' here.
14077 (allocate_itemsets): symbol_count includes useless nonterminals.
14078 Make room for them.
14079 (free_storage): Use `free', not `XFREE', for pointers that cannot
14080 be null.
14081
14082 2001-12-05 Akim Demaille <akim@epita.fr>
14083
14084 * src/nullable.c (set_nullable): Deobfuscate the handling of
14085 ritem.
14086 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
14087
14088 2001-12-05 Akim Demaille <akim@epita.fr>
14089
14090 * src/gram.c, src/gram.h (ritem_print): New.
14091 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
14092 (This useless function was defined only to work around VMS linkers
14093 that can't handle compilation units with variables only).
14094 * src/reduce.c (dump_grammar): Use it to trace the construction of
14095 ritem.
14096
14097 2001-12-04 Paul Eggert <eggert@twinsun.com>
14098
14099 * src/bison.simple (union yyalloc): Change member names
14100 to be the same as the stack names.
14101 (yyparse): yyptr is now union yyalloc *, not char *.
14102 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
14103 and may generate better code on some machines.
14104 (yystpcpy): Use prototype if __STDC__ is defined, not just
14105 if __cplusplus is defined.
14106
14107 2001-11-30 Akim Demaille <akim@epita.fr>
14108
14109 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
14110 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
14111 Gettext doesn't compile cleanly, and dies with -Werror.
14112 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
14113 Include WARNING_CFLAGS here.
14114 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
14115 before being defined.
14116
14117 2001-11-27 Paul Eggert <eggert@twinsun.com>
14118
14119 * lib/quotearg.h (quotearg_n, quotearg_n_style):
14120 First arg is int, not unsigned.
14121 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
14122 (SIZE_MAX, UINT_MAX): New macros.
14123 (quotearg_n_options): Abort if N is negative.
14124 Avoid overflow check on hosts where size_t is 64 bits and int
14125 is 32 bits, as overflow is impossible there.
14126 Fix off-by-one typo that caused unnecessary reallocation.
14127
14128 2001-11-29 Paul Eggert <eggert@twinsun.com>
14129
14130 Name space cleanup in generated parser.
14131
14132 * doc/bison.texinfo (Bison Parser): Discuss system headers
14133 and their effect on the user name space.
14134
14135 * src/bison.simple:
14136 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
14137 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
14138 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
14139
14140 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
14141 on user names when possible.
14142
14143 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
14144 Simplify test for whather <alloca.h> exists.
14145
14146 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
14147
14148 (<stdio.h>): Include if YYDEBUG.
14149
14150 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
14151 ! defined (yyoverflow) && ! defined (yymemcpy).
14152
14153 (yymemcpy, yyparse): Rename local variables as needed so that
14154 they all begin with 'yy'.
14155
14156 (yystrlen, yystpcpy): New functions.
14157
14158 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
14159 All uses changed.
14160
14161 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
14162 instead of relying on string.h functions. Use YYSTACK_ALLOC
14163 and YYSTACK_FREE instead of malloc and free.
14164
14165 2001-11-30 Akim Demaille <akim@epita.fr>
14166
14167 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
14168 before their first uses.
14169 (YYBISON, YYPURE): Move to the top of the output.
14170
14171 2001-11-30 Akim Demaille <akim@epita.fr>
14172
14173 * tests/reduce.at (Useless Nonterminals): Fix.
14174
14175 2001-11-30 Akim Demaille <akim@epita.fr>
14176
14177 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
14178 if body instead of `;' to pacify GCC's warnings.
14179
14180 2001-11-30 Akim Demaille <akim@epita.fr>
14181
14182 Instead of mapping the LHS of unused rules to -1, keep the LHS
14183 valid, but flag the rules as invalid.
14184
14185 * src/gram.h (rule_t): `useful' is a new member.
14186 * src/print.c (print_grammar): Adjust.
14187 * src/derives.c (set_derives): Likewise.
14188 * src/reader.c (packgram, reduce_output): Likewise.
14189 * src/reduce.c (reduce_grammar_tables): Likewise.
14190 * tests/reduce.at (Underivable Rules, Useless Rules): New.
14191
14192 2001-11-30 Akim Demaille <akim@epita.fr>
14193
14194 * src/reduce.c (reduce_output): Formatting changes.
14195 * src/print.c (print_results, print_grammar): Likewise.
14196 * tests/regression.at (Rule Line Numbers)
14197 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
14198
14199 2001-11-30 Akim Demaille <akim@epita.fr>
14200
14201 * src/reduce.c (nonterminals_reduce): Instead of throwing away
14202 useless nonterminals, move them at the end of the symbol arrays.
14203 (reduce_output): Adjust.
14204 * tests/reduce.at (Useless Nonterminals): Adjust.
14205
14206 2001-11-30 Akim Demaille <akim@epita.fr>
14207
14208 * src/reduce.c: Various comment/formatting changes.
14209 (nonterminals_reduce): New, extracted from...
14210 (reduce_grammar_tables): here.
14211 (reduce_grammar): Call nonterminals_reduce.
14212
14213 2001-11-29 Paul Eggert <eggert@twinsun.com>
14214
14215 * src/bison.simple (YYSTACK_REALLOC): Remove.
14216 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
14217 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
14218 New macros.
14219 (union yyalloc): New type.
14220 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
14221 an arbitrary restriction on hosts where size_t is wider than int.
14222
14223 (yyparse): Don't dump core if alloca or malloc fails; instead, report
14224 a parser stack overflow. Allocate just one block of memory for all
14225 three stacks, instead of allocating three blocks; this typically is
14226 faster and reduces fragmentation.
14227
14228 Do not limit the number of items in the stack to a value that fits
14229 in 'int', as this is an arbitrary limit on hosts with 64-bit
14230 size_t and 32-bit int.
14231
14232 2001-11-29 Marc Autret <autret_m@epita.fr>
14233
14234 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
14235 of defining YYERROR_VERBOSE.
14236 [AT_DATA]: $4 is now out of C declarations in the prologue.
14237
14238 2001-11-28 Marc Autret <autret_m@epita.fr>
14239
14240 * src/reader.c (parse_dquoted_param): New.
14241 (parse_skel_decl): Use it.
14242 * src/lex.h: Add its prototype.
14243 * src/lex.c (literalchar): Become not static.
14244
14245 2001-11-28 Marc Autret <autret_m@epita.fr>
14246
14247 * src/output.h: And put its extern declaration here.
14248 * src/output.c (error_verbose): Define here.
14249 (prepare): Echo name modification.
14250 * src/getargs.h: Clean its extern declaration.
14251 * src/getargs.c (error_verbose_flag): Remove.
14252 (getargs): Remove case 'e'.
14253 * src/options.c (option_table): 'error-verbose' is now seen as simple
14254 percent option.
14255 Include output.h.
14256
14257 * src/reader.c (read_declarations): Remove case tok_include.
14258 (parse_include_decl): Remove.
14259 * src/lex.h (token_t): Remove tok_include.
14260 * src/options.c (option_table): 'include' is now a simple command line
14261 option.
14262
14263 2001-11-28 Marc Autret <autret_m@epita.fr>
14264
14265 * src/bison.simple: Adjust muscle names.
14266 * src/muscle_tab.c (muscle_init): Also rename the muscles.
14267 * src/output.c (prepare): s/_/-/ for the muscles names.
14268 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
14269
14270 2001-11-28 Marc Autret <autret_m@epita.fr>
14271
14272 * src/bison.simple: Fix debug.
14273 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
14274
14275 2001-11-28 Akim Demaille <akim@epita.fr>
14276
14277 * src/LR0.c (shifts_new): New.
14278 (save_shifts, insert_start_shift, augment_automaton): Use it.
14279
14280 2001-11-28 Akim Demaille <akim@epita.fr>
14281
14282 * src/closure.c (closure): `b' and `ruleno' denote the same value:
14283 keep ruleno only.
14284
14285 2001-11-28 Akim Demaille <akim@epita.fr>
14286
14287 * src/closure.c (closure): Instead of looping over word in array
14288 then bits in words, loop over bits in array.
14289
14290 2001-11-28 Akim Demaille <akim@epita.fr>
14291
14292 * src/closure.c (closure): No longer optimize the special case
14293 where all the bits of `ruleset[r]' are set to 0, to make the code
14294 clearer.
14295
14296 2001-11-28 Akim Demaille <akim@epita.fr>
14297
14298 * src/closure.c (closure): `r' and `c' are new variables, used to
14299 de-obfuscate accesses to RULESET and CORE.
14300
14301 2001-11-28 Akim Demaille <akim@epita.fr>
14302
14303 * src/reduce.c (reduce_print): Use ngettext.
14304 (dump_grammar): Improve the trace accuracy.
14305
14306 2001-11-28 Akim Demaille <akim@epita.fr>
14307
14308 * src/reduce.c (dump_grammar): Don't translate trace messages.
14309
14310 2001-11-28 Akim Demaille <akim@epita.fr>
14311
14312 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
14313 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
14314 as all tags are free'ed afterwards.
14315 From Enrico Scholz.
14316
14317 2001-11-27 Paul Eggert <eggert@twinsun.com>
14318
14319 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
14320 use alloca when we didn't want to, and vice versa.
14321
14322 2001-11-27 Marc Autret <autret_m@epita.fr>
14323
14324 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
14325 initialization.
14326 * src/output.c (prepare): Remove its update.
14327
14328 2001-11-27 Marc Autret <autret_m@epita.fr>
14329
14330 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
14331 Use %error-verbose.
14332
14333 2001-11-27 Marc Autret <autret_m@epita.fr>
14334
14335 * src/bison.simple: Remove YYERROR_VERBOSE using.
14336 Use %%error_verbose.
14337 (yyparse): Likewise.
14338 * src/output.c (prepare): Give its final value.
14339 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
14340 * src/getargs.h: Add its extern declaration.
14341 * src/getargs.c (error_verbose_flag): New int.
14342 (getargs): Update to catch new case.
14343 * src/options.c (option_table): 'error-verbose' is a new option.
14344 (shortopts): Update.
14345
14346 2001-11-27 Akim Demaille <akim@epita.fr>
14347
14348 * src/system.h: Use intl/libgettext.h.
14349 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
14350
14351 2001-11-27 Akim Demaille <akim@epita.fr>
14352
14353 * tests/torture.at (Exploding the Stack Size with Malloc):
14354 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
14355
14356 2001-11-27 Akim Demaille <akim@epita.fr>
14357
14358 * src/files.c: Include error.h.
14359 Reported by Hans Aberg.
14360
14361 2001-11-26 Marc Autret <autret_m@epita.fr>
14362
14363 * src/reader.c (parse_include_decl): New, not yet implemented.
14364 (read_declarations): Add case tok_include.
14365 * src/getargs.h (include): Add its extern definition.
14366 * src/getargs.c (include): New const char *.
14367 (getargs): Add case '-I'.
14368 * src/options.c (option_table): Add include as command line and
14369 percent option.
14370 * src/lex.h (token_t): Add tok_include.
14371
14372 2001-11-26 Akim Demaille <akim@epita.fr>
14373
14374 * src/reader.c (readgram): Make sure rules for mid-rule actions
14375 have a lineno equal to that of their host rule.
14376 Reported by Hans Aberg.
14377 * tests/regression.at (Rule Line Numbers): New.
14378
14379 2001-11-26 Akim Demaille <akim@epita.fr>
14380
14381 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
14382 size_ts.
14383
14384 2001-11-26 Akim Demaille <akim@epita.fr>
14385
14386 * src/complain.c, src/complain.h (error): Remove, provided by
14387 lib/error.[ch].
14388
14389 2001-11-26 Akim Demaille <akim@epita.fr>
14390
14391 * src/reader.c (read_declarations): Don't abort on tok_illegal,
14392 issue an error message.
14393 * tests/regression.at (Invalid %directive): New.
14394 Reported by Hans Aberg.
14395
14396 2001-11-26 Akim Demaille <akim@epita.fr>
14397
14398 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
14399 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
14400
14401 2001-11-26 Akim Demaille <akim@epita.fr>
14402
14403 * src/conflicts.c (conflicts_print): Don't complain at all when
14404 there are no reduce/reduce conflicts, and as many shift/reduce
14405 conflicts as expected.
14406 * tests/regression.at (%expect right): Adjust.
14407
14408 2001-11-23 Akim Demaille <akim@epita.fr>
14409
14410 * lib/alloca.c: Update, from fileutils.
14411
14412 2001-11-23 Akim Demaille <akim@epita.fr>
14413
14414 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
14415
14416 2001-11-23 Akim Demaille <akim@epita.fr>
14417
14418 * src/system.h: Include alloca.h.
14419 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
14420
14421 2001-11-23 Akim Demaille <akim@epita.fr>
14422
14423 * src/print_graph.c (print_actions): Remove `rule', unused.
14424 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
14425 pacify GCC's signed < unsigned warnings.
14426 * src/closure.c (itemsetsize): Likewise.
14427 * src/reader.c (symbol_list_new): Static.
14428
14429 2001-11-23 Akim Demaille <akim@epita.fr>
14430
14431 Attaching lineno to buckets is stupid, since only one copy of each
14432 symbol is kept, only the line of the first occurrence is kept too.
14433
14434 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
14435 * src/reader.c (rline_allocated): Remove, unused.
14436 (symbol_list): Have a `line' member.
14437 (symbol_list_new): New.
14438 (readgram): Use it.
14439 * src/print.c (print_grammar): Output the rule line numbers.
14440 * tests/regression.at (Solved SR Conflicts)
14441 (Unresolved SR Conflicts): Adjust.
14442 Reported by Hans Aberg.
14443
14444 2001-11-22 Marc Autret <autret_m@epita.fr>
14445
14446 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
14447
14448 2001-11-22 Marc Autret <autret_m@epita.fr>
14449
14450 * src/muscle_tab.c (muscle_init): Remove initialization of
14451 skeleton muscle.
14452 * src/output.c (output_master_parser): Do it here.
14453
14454 2001-11-20 Akim Demaille <akim@epita.fr>
14455
14456 * po/sv.po: New.
14457 * configure.in (ALL_LINGUAS): Adjust.
14458 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
14459 longer contains strings to translate.
14460
14461 2001-11-19 Akim Demaille <akim@epita.fr>
14462
14463 * src/conflicts.c (conflicts_print): Add a missing \n.
14464
14465 2001-11-19 Akim Demaille <akim@epita.fr>
14466
14467 * src/nullable.c (nullable_print): New.
14468 (set_nullable): Call it when tracing.
14469 Better locality of variables.
14470
14471 2001-11-19 Akim Demaille <akim@epita.fr>
14472
14473 * src/print.c (print_actions): Better locality of variables.
14474
14475 2001-11-19 Akim Demaille <akim@epita.fr>
14476
14477 * src/derives.c (print_derives): Fix and enrich.
14478 * src/closure.c (print_fderives): Likewise.
14479
14480 2001-11-19 Akim Demaille <akim@epita.fr>
14481
14482 * src/closure.c (itemsetend): Remove, replaced with...
14483 (itemsetsize): new.
14484
14485 2001-11-19 Akim Demaille <akim@epita.fr>
14486
14487 * src/LR0.c (kernel_end): Remove, replaced with...
14488 (kernel_size): new.
14489
14490 2001-11-19 Akim Demaille <akim@epita.fr>
14491
14492 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
14493 to clarify.
14494
14495 2001-11-19 Akim Demaille <akim@epita.fr>
14496
14497 * src/closure.c (closure): Use arrays instead of pointers to clarify.
14498
14499 2001-11-19 Akim Demaille <akim@epita.fr>
14500
14501 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
14502 trace messages.
14503 * src/LR0.c: Likewise.
14504 (allocate_itemsets): Use arrays instead of pointers to clarify.
14505
14506 2001-11-19 Akim Demaille <akim@epita.fr>
14507
14508 * src/getargs.c (statistics_flag): Replace with...
14509 (trace_flag): New.
14510 (longopts): Accept --trace instead of --statistics.
14511 * src/getargs.h, src/options.c: Adjust.
14512 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
14513 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
14514
14515 2001-11-19 Akim Demaille <akim@epita.fr>
14516
14517 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
14518 pointers to clarify the code.
14519 (save_reductions, save_shifts): Factor common parts of alternatives.
14520
14521 2001-11-19 Akim Demaille <akim@epita.fr>
14522
14523 * src/LR0.c (new_state, get_state): Complete TRACE code.
14524 * src/closure.c: Include `reader.h' to get `tags', needed by the
14525 trace code.
14526 Rename the conditional DEBUG as TRACE.
14527 Output consistently TRACEs to stderr, not stdout.
14528 * src/derives.c: Likewise.
14529 * src/reduce.c: (inaccessable_symbols): Using if is better style
14530 than goto.
14531 Use `#if TRACE' instead of `#if 0' for tracing code.
14532
14533 2001-11-19 Akim Demaille <akim@epita.fr>
14534
14535 * src/system.h (LIST_FREE, shortcpy): New.
14536 * src/LR0.c: Use them.
14537 * src/output.c (free_itemsets, free_reductions, free_shifts):
14538 Remove, replaced by LIST_FREE.
14539
14540 2001-11-19 Akim Demaille <akim@epita.fr>
14541
14542 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
14543 (REDUCTIONS_ALLOC): New.
14544 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
14545 allocation.
14546
14547 2001-11-19 Akim Demaille <akim@epita.fr>
14548
14549 * src/LR0.c (new_state): Complete trace code.
14550 * src/nullable.c (set_nullable): Don't translate traces.
14551
14552 2001-11-19 Akim Demaille <akim@epita.fr>
14553
14554 * src/print_graph.c (print_core): Better locality of variables.
14555 * src/print.c (print_core): Likewise.
14556
14557 2001-11-19 Akim Demaille <akim@epita.fr>
14558
14559 * src/vcg.c: You do the output, so you are responsible of the
14560 handling of VCG syntax, in particular: use quotearg.
14561 * src/print_graph.c: Don't.
14562 (print_actions): Don't output the actions as part of the nodes,
14563 since that's the job of the edges.
14564 (print_state): Don't output by hand: fill the node description,
14565 and ask for its output.
14566
14567 2001-11-19 Akim Demaille <akim@epita.fr>
14568
14569 * src/bison.simple (yyparse): When verbosely reporting an error,
14570 no longer put additional quotes around token names.
14571 * tests/calc.at: Adjust.
14572
14573 2001-11-19 Akim Demaille <akim@epita.fr>
14574
14575 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
14576 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
14577 * src/output.c: Adjust.
14578
14579 2001-11-19 Akim Demaille <akim@epita.fr>
14580
14581 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
14582 (rule_t): this.
14583 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
14584
14585 2001-11-19 Akim Demaille <akim@epita.fr>
14586
14587 * src/gram.h (rule_t): New.
14588 (rule_table): New.
14589 (rrhs, rlhs): Remove, part of state_t.
14590 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
14591 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14592 * src/reader.c, src/reduce.c: Adjust.
14593
14594 2001-11-19 Akim Demaille <akim@epita.fr>
14595
14596 * src/reader.c (symbols_output): New, extracted from...
14597 (packsymbols): Here.
14598 (reader): Call it.
14599
14600 2001-11-19 Akim Demaille <akim@epita.fr>
14601
14602 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
14603 (maxrhs): this new function.
14604
14605 2001-11-19 Akim Demaille <akim@epita.fr>
14606
14607 * src/lalr.c (F): New macro to access the variable F.
14608 Adjust.
14609
14610 2001-11-19 Akim Demaille <akim@epita.fr>
14611
14612 * src/lalr.h (LA): New macro to access the variable LA.
14613 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14614 * src/lalr.c: Adjust.
14615
14616 2001-11-19 Akim Demaille <akim@epita.fr>
14617
14618 * src/lalr.c (initialize_LA): Only initialize LA. Let...
14619 (set_state_table): handle the `lookaheads' members.
14620
14621 2001-11-19 Akim Demaille <akim@epita.fr>
14622
14623 * src/lalr.h (lookaheads): Removed array, whose contents is now
14624 a member of...
14625 (state_t): this structure.
14626 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14627 Adjust.
14628
14629 2001-11-19 Akim Demaille <akim@epita.fr>
14630
14631 * src/lalr.h (consistent): Removed array, whose contents is now
14632 a member of...
14633 (state_t): this structure.
14634 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14635 Adjust.
14636
14637 2001-11-19 Akim Demaille <akim@epita.fr>
14638
14639 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
14640 contents are now members of...
14641 (state_t): this structure.
14642 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14643 Adjust.
14644
14645 2001-11-19 Akim Demaille <akim@epita.fr>
14646
14647 * src/lalr.h (state_t): New.
14648 (state_table): Be a state_t * instead of a core **.
14649 (accessing_symbol): Remove, part of state_t.
14650 * src/lalr.c: Adjust.
14651 (set_accessing_symbol): Merge into...
14652 (set_state_table): this.
14653 * src/print_graph.c, src/conflicts.c: Adjust.
14654
14655 2001-11-14 Akim Demaille <akim@epita.fr>
14656
14657 * tests/calc.at, tests/output.at, tests/regression.at,
14658 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
14659 now the tests are run in private dirs, therefore AC_CLEANUP and
14660 family can be simplified to 0-ary.
14661 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
14662 use abs. path to find config.h.
14663 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
14664 stderr, there can be way too much random noise.
14665 Instead pass -Werror to GCC and rely on the exit status.
14666 Reported by Wolfram Wagner.
14667
14668 2001-11-14 Akim Demaille <akim@epita.fr>
14669
14670 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
14671 defined only if yyoverflow is defined, to avoid `warning: unused
14672 variable `yyvs1''.
14673 Reported by The Test Suite.
14674
14675 2001-11-14 Akim Demaille <akim@epita.fr>
14676
14677 * src/print.c: Include reduce.h.
14678 Reported by Hans Aberg.
14679
14680 2001-11-14 Akim Demaille <akim@epita.fr>
14681
14682 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
14683 Revert a previous patch: these are really const.
14684 * src/conflicts.c (conflict_report): Additional useless pair of
14685 braces to pacify GCC's warnings for `if () if () {} else {}'.
14686 * src/lex.c (parse_percent_token): Replace equal_offset with
14687 arg_offset.
14688 arg is const.
14689 Be sure to strdup `arg' when used, since there is no reason for
14690 token_buffer not to change.
14691
14692 2001-11-14 Akim Demaille <akim@epita.fr>
14693
14694 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
14695 definition.
14696 * src/main.c (main): Use them.
14697 Suggested by Hans Aberg.
14698
14699 2001-11-12 Akim Demaille <akim@epita.fr>
14700
14701 * src/system.h (ngettext): Now that we use ngettext, be sure to
14702 provide a default definition when NLS are not used.
14703
14704 2001-11-12 Akim Demaille <akim@epita.fr>
14705
14706 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
14707 Use @kbd to denote user input.
14708 (Language and Grammar): ANSIfy the example.
14709 Adjust its layout for info/notinfo.
14710 (Location Tracking Calc): Output error messages to stderr.
14711 Output locations in a more GNUtically correct way.
14712 Fix a couple of Englishos.
14713 Adjust @group/@end group pairs.
14714
14715 2001-11-12 Akim Demaille <akim@epita.fr>
14716
14717 %expect was not functioning at all.
14718
14719 * src/conflicts.c (expected_conflicts): Set to -1.
14720 (conflict_report): Use ngettext.
14721 (conflicts_print): Check %expect and make its violation an error.
14722 * doc/bison.texinfo (Expect Decl): Adjust.
14723 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
14724 * tests/regression.at (%expect not enough, %expect right)
14725 (%expect too much): New.
14726
14727 2001-11-12 Akim Demaille <akim@epita.fr>
14728
14729 * tests/regression.at (Conflicts): Rename as...
14730 (Unresolved SR Conflicts): this.
14731 (Solved SR Conflicts): New.
14732
14733 2001-11-12 Akim Demaille <akim@epita.fr>
14734
14735 * src/reduce.c (print_results): Rename as...
14736 (reduce_output): This.
14737 Output to OUT, passed as argument, instead of output_obstack.
14738 (dump_grammar): Likewise.
14739 (reduce_free): New.
14740 Also free V1.
14741 (reduce_grammar): No longer call reduce_output, since...
14742 * src/print.c (print_results): do it.
14743 * src/main.c (main): Call reduce_free;
14744
14745 2001-11-12 Akim Demaille <akim@epita.fr>
14746
14747 * src/conflicts.c (print_reductions): Accept OUT as argument.
14748 Output to it, not to output_obstack.
14749 * src/print.c (print_actions): Adjust.
14750
14751 2001-11-12 Akim Demaille <akim@epita.fr>
14752
14753 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
14754 the result instead of using...
14755 (src_total, rrc_total, src_count, rrc_count): Remove.
14756 (any_conflicts): Remove.
14757 (print_conflicts): Split into...
14758 (conflicts_print, conflicts_output): New.
14759 * src/conflicts.h: Adjust.
14760 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
14761 * src/print.c (print_grammar): Issue `\n' between two rules.
14762 * tests/regression.at (Conflicts): New.
14763 Reported by Tom Lane.
14764
14765 2001-11-12 Akim Demaille <akim@epita.fr>
14766
14767 * tests/regression.at (Invalid input): Remove, duplicate with
14768 ``Invalid input: 1''.
14769
14770 2001-11-12 Akim Demaille <akim@epita.fr>
14771
14772 * tests/torture.at (AT_DATA_STACK_TORTURE)
14773 (Exploding the Stack Size with Alloca)
14774 (Exploding the Stack Size with Malloc): New.
14775
14776 2001-11-12 Akim Demaille <akim@epita.fr>
14777
14778 * src/bison.simple (YYSTACK_REALLOC): New.
14779 (yyparse) [!yyoverflow]: Use it and free the old stack.
14780 Reported by Per Allansson.
14781
14782 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
14783
14784 * src/bison.simple: Define type yystype instead of YYSTYPE, and
14785 define CPP macro, which substitute YYSTYPE by yystype.
14786 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
14787 with yyltype/YYLTYPE. This allows inclusion of the generated
14788 header within the parser if the compiler, such as GGC, accepts
14789 multiple equivalent #defines.
14790 From Akim.
14791
14792 2001-11-05 Akim Demaille <akim@epita.fr>
14793
14794 * src/reader.c (symbols_output): New, extracted from...
14795 (packsymbols): here.
14796 (reader): Adjust.
14797
14798 2001-11-05 Akim Demaille <akim@epita.fr>
14799
14800 * src/lex.c (parse_percent_token): s/quotearg/quote/.
14801
14802 2001-11-05 Akim Demaille <akim@epita.fr>
14803
14804 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
14805 pattern.
14806
14807 2001-11-05 Akim Demaille <akim@epita.fr>
14808
14809 * src/options.h (struct option_table_struct): set_flags is void*.
14810 * src/options.c (longopts): Support `--output' and `%output'.
14811 (usage): Adjust.
14812 * src/lex.h (tok_setopt): Remove, replaced with...
14813 (tok_intopt, tok_stropt): these new guys.
14814 * src/lex.c (getopt.h): Not needed.
14815 (token_buffer, unlexed_token_buffer): Not const.
14816 (percent_table): Promote `-' over `_' in directive names.
14817 Active `%name-prefix', `file-prefix', and `output'.
14818 (parse_percent_token): Accept possible arguments to directives.
14819 Promote `-' over `_' in directive names.
14820
14821 2001-11-04 Akim Demaille <akim@epita.fr>
14822
14823 * doc/bison.texinfo (Decl Summary): Split the list into
14824 `directives for grammars' and `directives for bison'.
14825 Sort'em.
14826 Add description of `%name-prefix', `file-prefix', and `output'.
14827 Promote `-' over `_' in directive names.
14828 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
14829 Simplify the description of `--name-prefix'.
14830 Promote `-' over `_' in directive names.
14831 Promote `--output' over `--output-file'.
14832 Fix the description of `--defines'.
14833 * tests/output.at: Exercise %file-prefix and %output.
14834
14835 2001-11-02 Akim Demaille <akim@epita.fr>
14836
14837 * doc/refcard.tex: Update.
14838
14839 2001-11-02 Akim Demaille <akim@epita.fr>
14840
14841 * src/symtab.h (SUNDEF): New.
14842 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
14843 stand for `uninitialized', instead of 0.
14844 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
14845 * src/lex.c (lex): Adjust.
14846
14847 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
14848 Number it 0.
14849 Let yylex return it instead of a plain 0.
14850 Reported by Dick Streefland.
14851
14852 2001-11-02 Akim Demaille <akim@epita.fr>
14853
14854 * tests/regression.at (Mixing %token styles): New test.
14855
14856 2001-11-02 Akim Demaille <akim@epita.fr>
14857
14858 * src/reader.c (parse_thong_decl): Formatting changes.
14859 (token_translations_init): New, extracted from...
14860 (packsymbols): Here.
14861 Adjust.
14862
14863 2001-11-01 Akim Demaille <akim@epita.fr>
14864
14865 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
14866 Check that `9foo.y' produces correct cpp guards.
14867 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
14868 guards.
14869 Reported by Wwp.
14870
14871 2001-11-01 Akim Demaille <akim@epita.fr>
14872
14873 * tests/regression.at (Invalid input: 2): New.
14874 * src/lex.c (unlexed_token_buffer): New.
14875 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
14876 too.
14877 Reported by Wwp.
14878
14879 2001-11-01 Akim Demaille <akim@epita.fr>
14880
14881 * tests/calc.at: Catch up with 1.30.
14882 * configure.in: Bump to 1.49a.
14883 Adjust to newer Autotest.
14884
14885 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
14886
14887 * src/conflicts.c: Move global variables rrc_total and src_total ...
14888 (print_conflicts): here.
14889 * src/output.c (output): Free global variable user_toknums.
14890 * src/lex.c (token_obstack): Become static.
14891
14892 2001-10-18 Akim Demaille <akim@epita.fr>
14893
14894 * tests/atlocal.in (GCC): Add.
14895 * tests/calc.at: s/m4_match/m4_bmatch/.
14896 s/m4_patsubst/m4_bpatsubst/.
14897 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
14898 * configure.in: AC_SUBST(GCC).
14899
14900 2001-10-14 Marc Autret <autret_m@epita.fr>
14901
14902 * src/options.c (create_long_option_table): Fix.
14903
14904 2001-10-10 Akim Demaille <akim@epita.fr>
14905
14906 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
14907
14908 2001-10-04 Akim Demaille <akim@epita.fr>
14909
14910 * src/reader.c (parse_union_decl): Push the caracters in
14911 union_obstack, not attrs_obstack.
14912
14913 2001-10-04 Akim Demaille <akim@epita.fr>
14914
14915 Merge in the branch 1.29.
14916
14917 * src/reader.c (packsymbols): Use a temporary obstack for
14918 `%%tokendef', since output_stack is already used elsewhere.
14919
14920 2001-10-02 Akim Demaille <akim@epita.fr>
14921
14922 Bump 1.29d.
14923
14924 2001-10-02 Akim Demaille <akim@epita.fr>
14925
14926 Version 1.29c.
14927
14928 2001-10-02 Akim Demaille <akim@epita.fr>
14929
14930 * tests/regression.at (Invalid CPP headers): New.
14931 From Alexander Belopolsky.
14932 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
14933
14934 2001-10-02 Akim Demaille <akim@epita.fr>
14935
14936 * tests/regression.at (Invalid input): New.
14937 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
14938 Reported by Shura.
14939
14940 2001-10-02 Akim Demaille <akim@epita.fr>
14941
14942 * tests/calc.at: Now that --debug works, the tests must be adjusted.
14943
14944 2001-10-02 Akim Demaille <akim@epita.fr>
14945
14946 * src/output.c (output_parser): Assert `skeleton'.
14947 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
14948 systems.
14949 From Shura.
14950
14951 2001-10-01 Marc Autret <autret_m@epita.fr>
14952
14953 * src/lex.h: Echo modifications.
14954 * src/lex.c (unlex): Parameter is now token_t.
14955 From Hans Aberg.
14956
14957 2001-10-01 Marc Autret <autret_m@epita.fr>
14958
14959 * src/main.c: Include lex.h.
14960 From Hans Aberg.
14961
14962 2001-09-29 Akim Demaille <akim@epita.fr>
14963
14964 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
14965
14966 2001-09-28 Akim Demaille <akim@epita.fr>
14967
14968 * tests/testsuite.at: Update to newer Autotest.
14969 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
14970
14971 2001-09-27 Akim Demaille <akim@epita.fr>
14972
14973 Position independent wrapper.
14974
14975 * tests/bison: Remove.
14976 * tests/bison.in: New.
14977 * configure.in: Adjust.
14978
14979 2001-09-27 Paul Eggert <eggert@twinsun.com>
14980
14981 Port quotearg fixes from tar 1.13.24.
14982
14983 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
14984 tm to be declared.
14985 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
14986 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
14987
14988 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
14989 * m4/mbrtowc.m4: New file.
14990 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
14991 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
14992
14993 2001-09-27 Akim Demaille <akim@epita.fr>
14994
14995 Bump to 1.29c.
14996
14997 2001-09-27 Akim Demaille <akim@epita.fr>
14998
14999 Version 1.29b.
15000
15001 2001-09-25 Akim Demaille <akim@epita.fr>
15002
15003 * src/system.h: Include `xalloc.h'.
15004 Remove it from the C files.
15005 * src/files.c (output_files): Free the obstacks.
15006 * src/lex.c (init_lex): Rename as...
15007 (lex_init): this.
15008 (lex_free): New.
15009 * src/main.c (main): Use it.
15010
15011 2001-09-24 Marc Autret <autret_m@epita.fr>
15012
15013 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
15014 to output informations in fout (FILE*).
15015 (open_graph, close_graph): Likewise.
15016 (output_graph, output_edge, output_node): Likewise.
15017 * src/vcg.h: Update function prototypes.
15018 * src/print_graph.c (print_graph): Open output graph file.
15019 (print_actions): Adjust.
15020 * src/files.h: Remove extern declaration.
15021 * src/files.c: Remove graph_obstack declaration.
15022 (open_files): Remove graph_obstack initialization.
15023 (output_files): Remove graph_obstack saving.
15024
15025 2001-09-24 Marc Autret <autret_m@epita.fr>
15026
15027 * src/files.c (compute_output_file_names): Fix.
15028
15029 2001-09-24 Marc Autret <autret_m@epita.fr>,
15030 Akim Demaille <akim@epita.fr>
15031
15032 * src/reader.c (reader): Remove call to free_symtab ().
15033 * src/main.c (main): Call it here.
15034 Include symtab.h.
15035 * src/conflicts.c (initialize_conflicts): Rename as...
15036 (solve_conflicts): this.
15037 * src/print.c (print_core, print_actions, print_state)
15038 (print_grammar): Dump to a file instead a `output_obstack'.
15039 (print_results): Dump `output_obstack', and then proceed with the
15040 FILE *.
15041 * src/files.c (compute_output_file_names, close_files): New.
15042 (output_files): Adjust.
15043 * src/main.c (main): Adjust.
15044
15045 2001-09-23 Marc Autret <autret_m@epita.fr>
15046
15047 * src/files.c (compute_header_macro): Computes header macro name
15048 from spec_defines_file when given.
15049
15050 2001-09-23 Marc Autret <autret_m@epita.fr>
15051
15052 * src/files.c (output_files): Add default extensions.
15053
15054 2001-09-22 Akim Demaille <akim@epita.fr>
15055
15056 * src/conflicts.c (finalize_conflicts): Rename as...
15057 (free_conflicts): this.
15058
15059 2001-09-22 Akim Demaille <akim@epita.fr>
15060
15061 * src/gram.c (gram_free): Rename back as...
15062 (dummy): this.
15063 (output_token_translations): Free `token_translations'.
15064 * src/symtab.c (free_symtab): Free the tag field.
15065
15066 2001-09-22 Akim Demaille <akim@epita.fr>
15067
15068 Remove `translations' as it is always set to true.
15069
15070 * src/gram.h: Adjust.
15071 * src/reader.c (packsymbols, parse_token_decl): Adjust
15072 * src/print.c (print_grammar): Adjust.
15073 * src/output.c (output_token_translations): Adjust.
15074 * src/lex.c (lex): Adjust.
15075 * src/gram.c: Be sure the set pointers to NULL.
15076 (dummy): Rename as...
15077 (gram_free): this.
15078
15079 2001-09-22 Akim Demaille <akim@epita.fr>
15080
15081 * configure.in: Invoke AM_LIB_DMALLOC.
15082 * src/system.h: Use dmalloc.
15083 * src/LR0.c: Be sure to have pointers initialized to NULL.
15084 (allocate_itemsets): Allocate kernel_items only if needed.
15085
15086 2001-09-22 Akim Demaille <akim@epita.fr>
15087
15088 * configure.in: Bump to 1.29b.
15089 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
15090 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
15091 need xmalloc.c in calc.y.
15092 From Pascal Bart.
15093
15094 2001-09-21 Akim Demaille <akim@epita.fr>
15095
15096 Version 1.29a.
15097 * Makefile.maint, config/config.guess, config/config.sub,
15098 * config/missing: Update from masters.
15099 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
15100 upon package.m4.
15101 * configure.in (ALL_LINGUAS): Add `tr'.
15102
15103 2001-09-21 Akim Demaille <akim@epita.fr>
15104
15105 * tests/Makefile.am (package.m4): Move to...
15106 ($(srcdir)/$(TESTSUITE)): here.
15107
15108 2001-09-20 Akim Demaille <akim@epita.fr>
15109
15110 * src/complain.c: No longer try to be standalone: use system.h.
15111 Don't assume __STDC__ is defined to 1. Just test if it is defined.
15112 * src/complain.h: Likewise.
15113 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
15114 Remove the unused variable `n'.
15115 From Albert Chin-A-Young.
15116
15117 2001-09-18 Marc Autret <autret_m@epita.fr>
15118
15119 * doc/bison.1: Update.
15120 * doc/bison.texinfo (Bison Options): Update --defines and --graph
15121 descriptions.
15122 (Option Cross Key): Update.
15123 Add --graph.
15124
15125 2001-09-18 Marc Autret <autret_m@epita.fr>
15126
15127 * tests/regression.at: New test (comment in %union).
15128
15129 2001-09-18 Marc Autret <autret_m@epita.fr>
15130
15131 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
15132 do that.
15133 Reported by Keith Browne.
15134
15135 2001-09-18 Marc Autret <autret_m@epita.fr>
15136
15137 * tests/output.at: Add tests for --defines and --graph.
15138
15139 2001-09-18 Marc Autret <autret_m@epita.fr>
15140
15141 * tests/output.at: Removes tests of %{header,src}_extension features.
15142
15143 2001-09-18 Akim Demaille <akim@epita.fr>
15144
15145 * tests/Makefile.am (package.m4): New.
15146 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
15147 (_AT_CHECK_CALC_ERROR): Likewise.
15148 Factor the `, ' part of verbose error messages.
15149
15150 2001-09-18 Marc Autret <autret_m@epita.fr>
15151
15152 * src/getargs.c (longopts): Declare --defines and --graph as options
15153 with optional arguments.
15154 * src/files.h: Add extern declarations.
15155 * src/files.c (spec_graph_file, spec_defines_file): New.
15156 (output_files): Update.
15157 Remove CPP-outed code.
15158
15159 2001-09-18 Marc Autret <autret_m@epita.fr>
15160
15161 Turn off %{source,header}_extension feature.
15162
15163 * src/files.c (compute_exts_from_gf): Update.
15164 (compute_exts_from_src): Update.
15165 (output_files): CPP-out useless code.
15166 * src/files.h: Remove {header,source}_extension extern declarations.
15167 * src/reader.c (parse_dquoted_param): CPP-out.
15168 (parse_header_extension_decl): Remove.
15169 (parse_source_extension_decl): Remove.
15170 (read_declarations): Remove cases tok_{hdrext,srcext}.
15171 * src/lex.c (percent_table): Remove {header,source}_extension entries.
15172 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
15173
15174 2001-09-10 Akim Demaille <akim@epita.fr>
15175
15176 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
15177 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
15178 (AT_CHECK_OUTPUT): this.
15179 Merely check ls' exit status, its output is useless.
15180
15181 2001-09-10 Akim Demaille <akim@epita.fr>
15182
15183 * tests/calc.at: Use m4_match.
15184 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
15185
15186 2001-09-10 Marc Autret <autret_m@epita.fr>,
15187 Akim Demaille <akim@epita.fr>
15188
15189 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
15190 enum color_e.
15191 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
15192 to `normal'.
15193 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
15194 * src/lex.h: Adjust prototype.
15195 (token_t): Add `tok_undef'.
15196 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
15197 (parse_percent_token): Now returns token_t.
15198 Add default statement in switch.
15199 (lex): Separate `c' as an input variable, from the token_t result
15200 part.
15201 (unlexed): Is a token_t.
15202
15203 2001-09-10 Akim Demaille <akim@epita.fr>
15204
15205 * configure.in: Bump to 1.29a.
15206
15207 2001-09-07 Akim Demaille <akim@epita.fr>
15208
15209 Version 1.29.
15210
15211 2001-08-30 Akim Demaille <akim@epita.fr>
15212
15213 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
15214 * m4/atconfig.m4: Remove.
15215 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
15216 * tests/bison: New.
15217 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
15218 m4_if, m4_patsubst, and m4_regexp.
15219 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
15220 `input' file instead of echo.
15221
15222 2001-08-29 Akim Demaille <akim@epita.fr>
15223
15224 Bump to 1.28e.
15225
15226 2001-08-29 Akim Demaille <akim@epita.fr>
15227
15228 Version 1.28d.
15229
15230 2001-08-29 Paul Eggert <eggert@twinsun.com>
15231
15232 * src/bison.simple (yyparse): Don't take the address of an
15233 item before the start of an array, as that doesn't conform to
15234 the C Standard.
15235
15236 2001-08-29 Robert Anisko <anisko_r@epita.fr>
15237
15238 * doc/bison.texinfo (Location Tracking Calc): New node.
15239
15240 2001-08-29 Paul Eggert <eggert@twinsun.com>
15241
15242 * src/output.c (output): Do not define const, as this now
15243 causes more problems than it cures.
15244
15245 2001-08-29 Akim Demaille <akim@epita.fr>
15246
15247 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
15248 the nodes.
15249 Be sure to tag the `detailmenu'.
15250
15251 2001-08-29 Akim Demaille <akim@epita.fr>
15252
15253 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
15254 download in a tmp dir.
15255
15256 2001-08-28 Marc Autret <autret_m@epita.fr>
15257
15258 * config/depcomp: New file.
15259
15260 2001-08-28 Marc Autret <autret_m@epita.fr>
15261
15262 * doc/bison.1 (mandoc): Adjust.
15263 From Juan Manuel Guerrero.
15264
15265 2001-08-28 Marc Autret <autret_m@epita.fr>
15266
15267 * src/print_graph.c (print_state): Fix.
15268
15269 2001-08-27 Marc Autret <autret_m@epita.fr>
15270
15271 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
15272 char * members.
15273 Echo modifications to the functions prototypes.
15274 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
15275
15276 2001-08-27 Marc Autret <autret_m@epita.fr>
15277
15278 * src/vcg.c: Include `xalloc.h'.
15279 (add_colorentry): New.
15280 (add_classname): New.
15281 (add_infoname): New.
15282 * src/vcg.h: Add new prototypes.
15283
15284 2001-08-27 Akim Demaille <akim@epita.fr>
15285
15286 * Makefile.maint: Sync. again with CVS Autoconf.
15287
15288 2001-08-27 Akim Demaille <akim@epita.fr>
15289
15290 * Makefile.maint: Formatting changes.
15291 (po-update, cvs-update, update): New targets.
15292 (AMTAR): Remove.
15293
15294 2001-08-27 Akim Demaille <akim@epita.fr>
15295
15296 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15297 * Makefile.maint: Sync. with CVS Autoconf.
15298
15299 2001-08-27 Marc Autret <autret_m@epita.fr>
15300
15301 * src/vcg.h (struct infoname_s): New.
15302 (struct colorentry_s): New.
15303 (graph_s): New fields {vertical,horizontal}_order in structure.
15304 Add `infoname' field.
15305 Add `colorentry' field;
15306 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
15307 (G_HORIZONTAL_ORDER): New.
15308 (G_INFONAME): New.
15309 (G_COLORENTRY): New.
15310 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
15311 Add output of `infoname'.
15312 Add output of `colorentry'.
15313
15314 2001-08-27 Marc Autret <autret_m@epita.fr>
15315
15316 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
15317 This one shadowed a global parameter.
15318
15319 2001-08-24 Marc Autret <autret_m@epita.fr>
15320
15321 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
15322 instead of `unsigned'.
15323 (print_state): Do not call obstack_object_size () in obstack_grow ()
15324 to avoid macro variables shadowing.
15325
15326 2001-08-23 Marc Autret <autret_m@epita.fr>
15327
15328 * src/lex.c (percent_table): Typo: s/naem/name/.
15329 Add graph option.
15330 Normalize new options declarations.
15331
15332 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
15333
15334 * tests/suite.at: Exercise %header_extension and %source_extension.
15335
15336 2001-08-16 Marc Autret <autret_m@epita.fr>
15337
15338 * src/reader.c (parse_dquoted_param): New.
15339 (parse_header_extension_decl): Use it.
15340 (parse_source_extension_decl): Likewise.
15341
15342 2001-08-16 Marc Autret <autret_m@epita.fr>
15343
15344 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
15345 (get_xxxx_str): Use assert () instead of complain ().
15346 Remove return invokations in default cases.
15347 (get_decision_str): Modify default behaviour. Remove second argument.
15348 Echo modifications on calls.
15349 (output_graph): Fix.
15350
15351 2001-08-16 Marc Autret <autret_m@epita.fr>
15352
15353 * src/getargs.c (usage): Update with ``-g, --graph''.
15354
15355 2001-08-16 Marc Autret <autret_m@epita.fr>
15356
15357 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
15358 (Option Cross Key): Likewise.
15359 * doc/bison.1: Update.
15360
15361 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
15362
15363 * src/output.c (output_master_parser): Don't finish action_obstack.
15364 (output_parser): Don't care about the muscle action, here.
15365 (prepare): Copy the action_obstack in the action muscle.
15366 (output): Free action_obstack.
15367
15368 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
15369
15370 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
15371 will contain `%union' declaration.
15372 (parse_union_decl): Delete #line directive output.
15373 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
15374 informations about %union.
15375 (parse_union_decl): Copy the union_obstack in the muscle stype.
15376 * src/bison.simple: Add new #line directive.
15377 Add typdef %%stype YYSTYPE.
15378
15379 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
15380
15381 * src/bison.simple: Add new `#line' directive.
15382
15383 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
15384
15385 * src/bison.simple: New `#line' directive.
15386 * src/output.c (output_parser): Support new dynamic muscle input_line.
15387
15388 2001-09-22 Marc Autret <autret_m@epita.fr>
15389
15390 * src/output.c (output_master_parser): New.
15391 (output_parser): Be more re-entrant.
15392
15393 2001-09-21 Marc Autret <autret_m@epita.fr>
15394
15395 * src/reader.c (copy_definition, parse_union_decl): Update and use
15396 `linef' muscle.
15397 (copy_action): Likewise.
15398 Use obstack_1grow ().
15399 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
15400
15401 2001-09-21 Marc Autret <autret_m@epita.fr>
15402
15403 * src/options.c (option_table): Adjust.
15404 * src/lex.c (parse_percent_token): Fix.
15405
15406 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
15407
15408 * src/options.c (symtab.h): Include it, need by lex.h.
15409
15410 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
15411
15412 * src/lex.c (parse_percent_token): Change type of variable `tx', which
15413 is now an option_table_struct*.
15414 (option_strcmp): New function option_strcmp.
15415 (parse_percent_token): Call option_strcmp.
15416 * src/getargs.c (xalloc.h, options.h): Include it.
15417 (getargs): Call create_long_option_table.
15418 (getargs): Free longopts at the end of the function.
15419 (shortopts): Move in options.c.
15420 * src/options.c (create_long_option_table): New function. Convert
15421 information from option_table to option structure.
15422 * src/reader.c (options.h): Include it.
15423
15424 * src/Makefile.am: Adjust.
15425 * src/options.c (option_table): Create from longopts and percent_table.
15426 * src/getargs.c (longopts): Delete.
15427 * src/lex.c (struct percent_table_struct): Delete.
15428 (percent_table): Delete.
15429 (options.h): Include it.
15430 * src/options.c: Create.
15431 * src/options.h: Create.
15432 Declare enum opt_access_e.
15433 Define struct option_table_struct.
15434
15435 2001-09-20 Marc Autret <autret_m@epita.fr>
15436
15437 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
15438 sections of Bison.
15439
15440 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
15441
15442 * src/bison.simple: s/%%filename/%%skeleton.
15443 * src/muscle_tab.c (getargs.h): Include it.
15444 (muscle_init): Insert new muscle skeleton.
15445
15446 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
15447
15448 * src/output.c (output_parser): Delete unused variable actions_dumped.
15449
15450 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
15451
15452 * src/output.c (output): Delete call to reader_output_yylsp.
15453 * src/reader.c (reader): Likewise.
15454 * src/reader.h: Delete declaration of reader_output_yylsp.
15455
15456 2001-09-02 Marc Autret <autret_m@epita.fr>
15457
15458 * src/reader.c: Include muscle_tab.h.
15459 (parse_union_decl): Update.
15460 (parse_macro_decl): Rename parse_muscle_decl.
15461 Update to use renamed functions and variable.
15462 (read_declarations, copy_action, read_additionnal_code, : Updated
15463 with correct variables and functions names.
15464 (packsymbols, reader): Likewise.
15465
15466 * src/reader.h (muscle_obstack): Extern declaration update.
15467
15468 * src/output.c: Include muscle_tab.h
15469 In all functions using macro_insert, change by using muscle_insert ().
15470 (macro_obstack): Rename muscle_obstack.
15471 Echo modifications in the whole file.
15472 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
15473 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
15474 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
15475
15476 * src/muscle_tab.h: Update double inclusion macros.
15477 (macro_entry_s): Rename muscle_entry_s.
15478 Update prototypes.
15479
15480 * src/muscle_tab.c: Include muscle_tab.h.
15481 Rename macro_tabble to muscle_table.
15482 (mhash1, mhash2, mcmp): Use muscle_entry.
15483 (macro_init): Rename muscle_init. Update.
15484 (macro_insert): Rename muscle_insert. Update.
15485 (macro_find): Rename muscle_find. Update.
15486
15487 * src/main.c: Include muscle_tab.h.
15488 (main): Call muscle_init ().
15489 * src/Makefile.am (bison_SOURCES): Echo modifications.
15490
15491 2001-09-02 Marc Autret <autret_m@epita.fr>
15492
15493 Now the files macro_tab.[ch] are named muscle_tab.[ch].
15494
15495 * src/muscle_tab.c, src/muscle_tab.h: Add files.
15496
15497 2001-09-02 Marc Autret <autret_m@epita.fr>
15498
15499 * src/macrotab.c, src/macrotab.h: Remove.
15500
15501 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
15502
15503 * src/reader.c (copy_guard): Use muscle to specify the `#line'
15504 filename.
15505
15506 2001-09-01 Marc Autret <autret_m@epita.fr>
15507
15508 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
15509 to an explicit value to activate the feature. We do it here.
15510
15511 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15512
15513 * src/output.c (prepare): Delete the `filename' muscule insertion.
15514 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
15515 (parse_union_decl): Likewise.
15516 * src/macrotab.c (macro_init): Initialize filename by infile.
15517
15518 2001-08-31 Marc Autret <autret_m@epita.fr>
15519
15520 * src/bison.simple (YYLSP_NEEDED): New definition.
15521 * src/output.c (prepare): Add macro insertion of `locations_flag'
15522
15523 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15524
15525 * src/output.c (prepare): Delete insertion of previous muscles,
15526 and insert the `prefix' muscles.
15527 * src/macrotab.c (macro_init): Likewise.
15528 (macro_init): Initialization prefix directive by `yy'.
15529 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
15530 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
15531 yylval, yydebug, yyerror, yynerrs and yyparse.
15532 New directive `#define' to substitute yydebug, ... with option
15533 name_prefix.
15534
15535 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15536
15537 * src/main.c (main): Standardize.
15538 * src/output.c (output_table_data, output_parser): Likewise.
15539 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
15540
15541 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
15542
15543 * src/reader.c (read_additionnal_code): Rename %%user_code to
15544 %%epilogue.
15545 * src/output.c (output): Rename %%declarations to %%prologue.
15546 * src/bison.simple: Echo modifications.
15547
15548 2001-08-31 Marc Autret <autret_m@epita.fr>
15549
15550 * src/reader.c (readgram): CleanUp.
15551 (output_token_defines): Likewise.
15552 (packsymbols): Likewise.
15553 (reader): Likewise.
15554 * src/output.c (output): CPP-out useless code.
15555
15556 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15557
15558 * src/reader.c (reader): Delete obsolete call to function
15559 output_trailers and output_headers.
15560 * src/output.h: Remove obsolete functions prototypes of output_headers
15561 and output_trailers.
15562
15563 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
15564
15565 * src/main.c: Include macrotab.h.
15566 * src/macrotab.h (macro_entry_s): Constify fields.
15567 Adjust functions prototypes.
15568 * src/macrotab.c (macro_insert): Constify key and value.
15569 (macro_find): Constify key.
15570 (macro_insert): Include 'xalloc.h'
15571 (macro_insert): Use XMALLOC.
15572 (macro_find): Constify return value.
15573 * src/output.c (output_table_data): Rename table to table_data.
15574 (output_parser): Constify macro_key, macro_value.
15575
15576 2001-08-30 Marc Autret <autret_m@epita.fr>
15577
15578 * src/reader.c (parse_skel_decl): New.
15579 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
15580 * src/lex.h (token_t): New token `tok_skel'.
15581 * src/lex.c (percent_table): Add skeleton option entry.
15582 Standardize.
15583
15584 2001-08-29 Marc Autret <autret_m@epita.fr>
15585
15586 * src/bison.simple: Add %%user_code directive at the end.
15587 * src/reader.c (read_additionnal_code): New.
15588 (reader): Use it.
15589 * src/output.c (output_program): Remove.
15590 (output): Update.
15591
15592 2001-08-28 Marc Autret <autret_m@epita.fr>
15593
15594 * src/output.c (output_actions): Clean up.
15595 (output_gram): CPP-out useless code.
15596 * src/reader.c (reader): Clean up, CPP-out useless code.
15597
15598 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
15599
15600 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
15601 directive.
15602 * src/bison.simple: Add `%%definitions'.
15603
15604 2001-08-28 Marc Autret <autret_m@epita.fr>
15605
15606 * config/depcomp: New file.
15607
15608 2001-08-27 Paul Eggert <eggert@twinsun.com>
15609
15610 * src/bison.simple (yyparse): Don't take the address of an
15611 item before the start of an array, as that doesn't conform to
15612 the C Standard.
15613
15614 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
15615
15616 * src/output.c (output): Remove the initialization of the macro
15617 obstack. It was done too late here.
15618
15619 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
15620 completely wrong.
15621 (reader): Initialize the macro obstack here, since we need it to grow
15622 '%define' directives.
15623
15624 * src/reader.h: Declare the macro obstack as extern.
15625
15626 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
15627
15628 * src/output.c (output_parser): Fix. Store single '%' characters in
15629 the output obstack instead of throwing them away.
15630
15631 2001-08-27 Akim Demaille <akim@epita.fr>
15632
15633 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15634
15635 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15636
15637 * lib/Makefile.am: Adjust.
15638
15639 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15640
15641 * src/bison.simple: Update and add '%%' directives.
15642
15643 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15644
15645 * src/reader.c (reader): Remove calls to 'output_headers' and
15646 'output_trailers'. Remove some C output.
15647 (readgram): Disable a piece of code that was writing a default
15648 definition for 'YYSTYPE'.
15649 (reader_output_yylsp): Remove.
15650 (packsymbols): Output token defintions to a macro.
15651 (copy_definition): Disable C output.
15652
15653 * src/reader.c (parse_macro_decl): New function used to parse macro
15654 declarations.
15655 (copy_string2): Put the body of copy_string into this new function.
15656 Add a parameter to let the caller choose whether he wants to copy the
15657 string delimiters or not.
15658 (copy_string): Be a simple call to copy_string2 with the last argument
15659 bound to true.
15660 (read_declarations): Add case for macro definition.
15661 (copy_identifier): New.
15662 (parse_macro_decl): Read macro identifiers using copy_identifier
15663 rather than lex.
15664
15665 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15666
15667 * src/output.c (prepare): Add prefixed names.
15668 (output_parser): Output semantic actions.
15669 (output_parser): Fix bug on '%%line' directives.
15670
15671 * src/output.c (output_headers): Remove. The C code printed by this
15672 function should now be in the skeletons.
15673 (output_trailers): Remove.
15674 (output): Disable call to 'reader_output_yylsp'.
15675 (output_rule_data): Do not output tables to the table obstack.
15676
15677 * src/output.c: Remove some C dedicated output.
15678 Improve the use of macro and output obstacks.
15679 (output_defines): Remove.
15680
15681 * src/output.c (output_token_translations): Associate 'translate'
15682 table with a macro. No output to the table obstack.
15683 (output_gram): Same for 'rhs' and 'prhs'.
15684 (output_stos): Same for 'stos'.
15685 (output_rule_data): Same for 'r1' and 'r2'.
15686 (token_actions): Same for 'defact'.
15687 (goto_actions): Same for 'defgoto'.
15688 (output_base): Same for 'pact' and 'pgoto'.
15689 (output_table): Same for 'table'.
15690 (output_check): Same for 'check'.
15691
15692 * src/output.c (output_table_data): New function.
15693 (output_short_table): Remove.
15694 (output_short_or_char_table): Remove.
15695
15696 * src/output.c (output_parser): Replace most of the skeleton copy code
15697 with something new. Skeletons are now processed character by character
15698 rather than line by line, and Bison looks for '%%' macros. This is the
15699 first step in making Bison's output process (a lot) more flexible.
15700 (output_parser): Use the macro table.
15701
15702 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15703
15704 * src/main.c (main): Initialize the macro table.
15705
15706 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15707
15708 * src/lex.c (percent_table): Add tok_define.
15709 * src/lex.h: Add tok_define.
15710
15711 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15712
15713 * src/macrotab.c: New file.
15714 * src/macrotab.h: New file.
15715 * src/Makefile.am: Update.
15716
15717 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15718
15719 * lib/hash.c: New file.
15720 * lib/hash.h: New file.
15721 * lib/Makefile.am: Update.
15722
15723 2001-08-15 Akim Demaille <akim@epita.fr>
15724
15725 Version 1.28c.
15726
15727 2001-08-15 Marc Autret <autret_m@epita.fr>
15728
15729 * src/reader.c (readgram): Indent output macro YYSTYPE.
15730 (packsymbols): Likewise.
15731 (output_token_defines): Likewise.
15732 * src/files.c: Standardize.
15733 (compute_header_macro): New.
15734 (defines_obstack_save): New. Use compute_header_macro.
15735 (output_files): Update. Use defines_obstack_save.
15736
15737 2001-08-15 Akim Demaille <akim@epita.fr>
15738
15739 * doc/bison.texinfo (Table of Symbols): Document
15740 YYSTACK_USE_ALLOCA.
15741
15742 2001-08-15 Akim Demaille <akim@epita.fr>
15743
15744 * missing: Update from CVS Automake.
15745 * config/config.guess, config/config.sub, config/texinfo.tex:
15746 Update from gnu.org.
15747
15748 2001-08-15 Akim Demaille <akim@epita.fr>
15749
15750 * Makefile.maint: Sync with CVS Autoconf.
15751
15752 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
15753
15754 * doc/bison.texinfo: Include GNU Free Documentation License from
15755 `fdl.texi'.
15756 * doc/fdl.texi: Add to package.
15757
15758 2001-08-14 Marc Autret <autret_m@epita.fr>
15759
15760 Turn on %{source,header}_extension features.
15761
15762 * src/lex.c (percent_table): Un-CPP out header_extension and
15763 source_extension.
15764 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
15765 (compute_exts_from_src): Remove conditions. It restores priorities
15766 between options.
15767
15768 2001-08-14 Marc Autret <autret_m@epita.fr>
15769
15770 * src/files.c (compute_base_names): Add extensions computing when
15771 `--file-prefix' used.
15772 Standardize function calls.
15773
15774 2001-08-13 Marc Autret <autret_m@epita.fr>
15775
15776 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
15777 defining it (defined but null disables alloca).
15778
15779 2001-08-13 Marc Autret <autret_m@epita.fr>
15780
15781 * src/bison.simple (_yy_memcpy): CPP reformat.
15782
15783 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
15784
15785 * tests/atconfig.in (CPPFLAGS): Fix.
15786
15787 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
15788
15789 * doc/bison.texinfo: Include GNU General Public License from
15790 `gpl.texi'.
15791 * doc/gpl.texi: Add to package.
15792
15793 2001-08-10 Marc Autret <autret_m@epita.fr>
15794
15795 * src/print_graph.h: Fix.
15796 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
15797
15798 2001-08-10 Akim Demaille <akim@epita.fr>
15799
15800 * src/system.h: Provide default declarations for stpcpy, strndup,
15801 and strnlen.
15802
15803 2001-08-10 Robert Anisko <anisko_r@epita.fr>
15804
15805 * doc/bison.texinfo (Locations): Update @$ stuff.
15806
15807 2001-08-09 Robert Anisko <anisko_r@epita.fr>
15808
15809 * src/bison.simple (YYLLOC_DEFAULT): Update.
15810 (yyparse): Adjust.
15811
15812 2001-08-08 Marc Autret <autret_m@epita.fr>
15813
15814 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
15815 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
15816 Reported by Fabrice Bauzac.
15817
15818 2001-08-08 Marc Autret <autret_m@epita.fr>
15819
15820 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
15821 * src/vcg.c (output_node): Fix.
15822 * src/vcg.h: Cleanup.
15823 * src/print_graph.c: Add comments.
15824 (node_output_size): New global variable. Simplify the formatting of
15825 the VCG graph output.
15826 (print_actions): Unused code is now used. It notifies the final state
15827 and no action states in the VCG graph. It also give the reduce actions.
15828 The `shift and goto' edges are red and the `go to state' edges are
15829 blue.
15830 Get the current node name and node_obstack by argument.
15831 (node_obstack): New variable.
15832 (print_state): Manage node_obstack.
15833 (print_core): Use node_obstack given by argument.
15834 A node is not only computed here but in print_actions also.
15835 (print_graph): CPP out useless code instead of commenting it.
15836
15837 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
15838
15839 * tests/atconfig.in (CPPFLAGS): Fix.
15840
15841 2001-08-07 Akim Demaille <akim@epita.fr>
15842
15843 * src/print_graph.c (quote): New.
15844 (print_core): Use it.
15845
15846 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
15847
15848 * src/vcg.c (complain.h): Include it.
15849 Unepitaize `return' invocations.
15850 [NDEBUG] (main): Remove.
15851 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
15852 * src/files.c (open_files): Initialize graph_obstack.
15853 * src/print_graph.c (print_actions): CPP out useless code.
15854 (print_core): Don't output the last `\n' in labels.
15855 Use `quote'.
15856 * src/files.c (output_files): Output the VCG file.
15857 * src/main.c (main): Invoke print_graph ();
15858
15859 2001-08-06 Marc Autret <autret_m@epita.fr>
15860
15861 Automaton VCG graph output.
15862 Using option ``-g'' or long option ``--graph'', you can generate
15863 a gram_filename.vcg file containing a VCG description of the LALR (1)
15864 automaton of your grammar.
15865
15866 * src/main.c: Call to print_graph() function.
15867 * src/getargs.h: Update.
15868 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
15869 (graph_flag): New flag.
15870 (longopts): Update.
15871 (getargs): Add case `g'.
15872 * src/files.c (graph_obstack): New obstack struct.
15873 (open_files): Initialize new obstack.
15874 (output_files): Saves graph_obstack if required.
15875 * src/files.h (graph_obstack): New extern declaration.
15876 * src/Makefile.am: Add new source files.
15877
15878 2001-08-06 Marc Autret <autret_m@epita.fr>
15879
15880 * src/print_graph.c, src/print_graph.h (graph): New.
15881 * src/vcg.h: New file.
15882 * src/vcg.c: New file, VCG graph handling.
15883
15884 2001-08-06 Marc Autret <autret_m@epita.fr>
15885
15886 Add of %source_extension and %header_extension which specify
15887 the source or/and the header output file extension.
15888
15889 * src/files.c (compute_base_names): Remove initialisation of
15890 src_extension and header_extension.
15891 (compute_exts_from_gf): Update.
15892 (compute_exts_from_src): Update.
15893 (output_files): Update.
15894 * src/reader.c (parse_header_extension_decl): New.
15895 (parse_source_extension_decl): New.
15896 (read_declarations): New case statements for the new tokens.
15897 * src/lex.c (percent_table): Add entries for %source_extension
15898 and %header_extension.
15899 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
15900
15901 2001-08-06 Marc Autret <autret_m@epita.fr>
15902
15903 * configure.in: Bump to 1.28c.
15904 * doc/bison.texinfo: Texinfo thingies.
15905
15906 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
15907
15908 * tests/atconfig.in (CPPFLAGS): Add.
15909 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
15910
15911 2001-08-03 Akim Demaille <akim@epita.fr>
15912
15913 Version 1.28b.
15914
15915 2001-08-03 Akim Demaille <akim@epita.fr>
15916
15917 * tests/Makefile.am (check-local): Ship testsuite.
15918 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
15919 Include `string.h'.
15920
15921 2001-08-03 Akim Demaille <akim@epita.fr>
15922
15923 * configure.in: Try using -Wformat when compiling.
15924
15925 2001-08-03 Akim Demaille <akim@epita.fr>
15926
15927 * configure.in: Bump to 1.28b.
15928
15929 2001-08-03 Akim Demaille <akim@epita.fr>
15930
15931 * src/complain.c: Adjust strerror_r portability issues.
15932
15933 2001-08-03 Akim Demaille <akim@epita.fr>
15934
15935 Version 1.28a.
15936
15937 2001-08-03 Akim Demaille <akim@epita.fr>
15938
15939 * src/getargs.c, src/getarg.h (skeleton)): Constify.
15940 * src/lex.c (literalchar): Avoid name clashes on `buf'.
15941 * src/getargs.c: Include complain.h.
15942 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
15943 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
15944
15945 2001-08-03 Akim Demaille <akim@epita.fr>
15946
15947 * src/reader.c (readgram): Display hidden chars in error messages.
15948
15949 2001-08-03 Akim Demaille <akim@epita.fr>
15950
15951 Update to gettext 0.10.39.
15952
15953 2001-08-03 Akim Demaille <akim@epita.fr>
15954
15955 * lib/strspn.c: New.
15956
15957 2001-08-01 Marc Autret <autret_m@epita.fr>
15958
15959 * doc/bison.texinfo: Update.
15960 * doc/bison.1 (mandoc): Update.
15961 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
15962 * src/files.c: Support output files extensions computing.
15963 (src_extension): New static variable.
15964 (header_extension): New static variable.
15965 (tr): New function.
15966 (get_extension_index): New function, gets the index of an extension
15967 filename in a string.
15968 (compute_exts_from_gf): New function, computes extensions from the
15969 grammar file extension.
15970 (compute_exts_from_src): New functions, computes extensions from the
15971 C source file extension, file given by ``-o'' option.
15972 (compute_base_names): Update.
15973 (output_files): Update.
15974
15975 2001-08-01 Robert Anisko <anisko_r@epita.fr>
15976
15977 * doc/bison.texi: Document @$.
15978 (Locations): New section.
15979
15980 2001-07-18 Akim Demaille <akim@epita.fr>
15981
15982 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
15983 * config/prev-version.txt, config/move-if-change: New.
15984 * Makefile.am: Adjust.
15985
15986 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
15987
15988 * src/bison.simple (yyparse): Suppress warning `comparaison
15989 between signed and unsigned'.
15990
15991 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
15992
15993 * src/getargs.h (raw_flag): Remove.
15994 * src/getargs.c: Die on `-r'/`--raw'.
15995 * src/lex.c (parse_percent_token): Die on `%raw'.
15996 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
15997 * tests/calc.at: Suppress test with option `--raw'.
15998
15999 2001-07-14 Akim Demaille <akim@epita.fr>
16000
16001 * config/: New.
16002 * configure.in: Require Autoconf 2.50.
16003 Update to gettext 0.10.38.
16004
16005 2001-03-16 Akim Demaille <akim@epita.fr>
16006
16007 * doc/bison.texinfo: ANSIfy the examples.
16008
16009 2001-03-16 Akim Demaille <akim@epita.fr>
16010
16011 * getargs.c (skeleton): New variable.
16012 (longopts): --skeleton is a new option.
16013 (shortopts, getargs): -S is a new option.
16014 * getargs.h: Declare skeleton.
16015 * output.c (output_parser): Use it.
16016
16017 2001-03-16 Akim Demaille <akim@epita.fr>
16018
16019 * m4/strerror_r.m4: New.
16020 * m4/error.m4: Run AC_FUNC_STRERROR_R.
16021 * lib/error.h, lib/error.c: Update.
16022
16023 2001-03-16 Akim Demaille <akim@epita.fr>
16024
16025 * src/getargs.c (longopts): Clean up.
16026
16027 2001-02-21 Akim Demaille <akim@epita.fr>
16028
16029 * src/reader.c (gensym): `gensym_count' is your own.
16030 Use a static buf to create the symbol name, as token_buffer is no
16031 longer a buffer.
16032
16033 2001-02-08 Akim Demaille <akim@epita.fr>
16034
16035 * src/conflicts.c (conflict_report): Be sure not to append to res
16036 between two calls, which could happen if both first sprintf were
16037 skipped, but not the first cp += strlen.
16038
16039 2001-02-08 Akim Demaille <akim@epita.fr>
16040
16041 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
16042 New, from fileutils 4.0.37.
16043 * configure.in: Require Autoconf 2.49c. I took some time before
16044 making this decision. This is the only way out for portability
16045 issues in Bison, it would mean way too much duplicate effort to
16046 import in Bison features implemented in 2.49c since 2.13.
16047 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
16048
16049 2001-02-02 Akim Demaille <akim@epita.fr>
16050
16051 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
16052 * lib/xalloc.h, lib/xmalloc.c: Update.
16053
16054 2001-01-19 Akim Demaille <akim@epita.fr>
16055
16056 Get rid of the ad hoc handling of token_buffer in the scanner: use
16057 the obstacks.
16058
16059 * src/lex.c (token_obstack): New.
16060 (init_lex): Initialize it. No longer call...
16061 (grow_token_buffer): this. Remove it.
16062 Adjust all the places which used it to use the obstack.
16063
16064 2001-01-19 Akim Demaille <akim@epita.fr>
16065
16066 * src/lex.h: Rename all the tokens:
16067 s/\bENDFILE\b/tok_eof/g;
16068 s/\bIDENTIFIER\b/tok_identifier/g;
16069 etc.
16070 Let them be enums, not #define, to ease debugging.
16071 Adjust all the code.
16072
16073 2001-01-18 Akim Demaille <akim@epita.fr>
16074
16075 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
16076 * src/lex.c (maxtoken, grow_token_buffer): Static.
16077
16078 2001-01-18 Akim Demaille <akim@epita.fr>
16079
16080 Since we now use obstacks, more % directives can be enabled.
16081
16082 * src/lex.c (percent_table): Also accept `%yacc',
16083 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
16084 `%debug'.
16085 Handle the actions for `%semantic_parser' and `%pure_parser' here,
16086 instead of returning a token.
16087 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
16088 * src/reader.c (read_declarations): Adjust.
16089 * src/files.c (open_files): Don't call `compute_base_names', don't
16090 compute `attrsfile' since they depend upon data which might be
16091 *in* the input file now.
16092 (output_files): Do it here.
16093 * src/output.c (output_headers): Document the fact that this patch
16094 introduces a guaranteed SEGV for semantic parsers.
16095 * doc/bison.texinfo: Document them.
16096 * tests/suite.at: Exercise these %options.
16097
16098 2000-12-20 Akim Demaille <akim@epita.fr>
16099
16100 Also handle the output file (--verbose) with obstacks.
16101
16102 * files.c (foutput): Remove.
16103 (output_obstack): New.
16104 Adjust all dependencies.
16105 * src/conflicts.c: Return a string.
16106 * src/system.h (obstack_grow_string): Rename as...
16107 (obstack_sgrow): this. Be ready to work with non literals.
16108 (obstack_fgrow4): New.
16109
16110 2000-12-20 Akim Demaille <akim@epita.fr>
16111
16112 * src/files.c (open_files): Fix the computation of short_base_name
16113 in the case of `-o foo.tab.c'.
16114
16115 2000-12-20 Akim Demaille <akim@epita.fr>
16116
16117 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
16118 (copy_dollar): Now that everything uses obstacks, get rid of the
16119 FILE * parameters.
16120
16121 2000-12-20 Akim Demaille <akim@epita.fr>
16122
16123 * src/files.c (open_files): Actually the `.output' file is based
16124 on the short_base_name, not base_name.
16125 * tests/suite.at (Checking output file names): Adjust.
16126
16127 2000-12-20 Akim Demaille <akim@epita.fr>
16128
16129 * src/bison.s1: Remove, we now use directly...
16130 * src/bison.simple: this.
16131 * src/Makefile.am: Use pkgdata instead of data.
16132
16133 2000-12-20 Akim Demaille <akim@epita.fr>
16134
16135 * src/files.c (guard_obstack): New.
16136 (open_files): Initialize it.
16137 (output_files): Dump it...
16138 * src/files.h: Export it.
16139 * src/reader.c (copy_guard): Use it.
16140
16141 2000-12-19 Akim Demaille <akim@epita.fr>
16142
16143 * src/files.c (outfile, defsfile, actfile): Removed as global
16144 vars.
16145 (open_files): Don't compute them.
16146 (output_files): Adjust.
16147 (base_name, short_base_name): Be global.
16148 Adjust dependencies.
16149
16150 2000-12-19 Akim Demaille <akim@epita.fr>
16151
16152 * src/files.c (strsuffix): New.
16153 (stringappend): Be just like strcat but allocate.
16154 (base_names): Eve out from open_files.
16155 Try to simplify the rather hairy computation of base_name and
16156 short_base_name.
16157 (open_files): Use it.
16158 * tests/suite.at (Checking output file names): New test.
16159
16160 2000-12-19 Akim Demaille <akim@epita.fr>
16161
16162 * src/system.h (obstack_grow_literal_string): Rename as...
16163 (obstack_grow_string): this.
16164 * src/output.c (output_parser): Recognize `%% actions' instead of
16165 `$'.
16166 * src/bison.s1: s/$/%% actions/.
16167 * src/bison.hairy: Likewise.
16168
16169 2000-12-19 Akim Demaille <akim@epita.fr>
16170
16171 * src/output.c (output_parser): Compute the `#line' lines when
16172 there are.
16173 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
16174 Suggested by Hans Aberg.
16175
16176 2000-12-19 Akim Demaille <akim@epita.fr>
16177
16178 Let the handling of the skeleton files be local to the procedures
16179 that use it.
16180
16181 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
16182 longer static.
16183 (fparser, open_extra_files): Remove.
16184 (open_files, output_files): Don't take care of fparser.
16185 * src/files.h: Adjust.
16186 * src/output.c (output_parser): Open and close the file to the
16187 skeleton.
16188 * src/reader.c (read_declarations): When %semantic_parser, open
16189 fguard.
16190
16191 2000-12-19 Akim Demaille <akim@epita.fr>
16192
16193 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
16194 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
16195
16196 2000-12-19 Akim Demaille <akim@epita.fr>
16197
16198 * src/files.c (open_files): Yipee! We no longer need all the code
16199 looking for `/tmp' since we have no tmp file.
16200
16201 2000-12-19 Akim Demaille <akim@epita.fr>
16202
16203 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
16204 New macros.
16205 * src/files.c (open_files): Less dependency on MSDOS etc.
16206
16207 2000-12-14 Akim Demaille <akim@epita.fr>
16208
16209 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
16210 Provide a default definition.
16211 Use it when executing the default @ action.
16212 * src/reader.c (reader_output_yylsp): No longer include
16213 `timestamp' and `text' in the default YYLTYPE.
16214
16215 2000-12-12 Akim Demaille <akim@epita.fr>
16216
16217 * src/reader.c (copy_definition, parse_union_decl, copy_action)
16218 (copy_guard): Quote the file names.
16219 Reported by Laurent Mascherpa.
16220
16221 2000-12-12 Akim Demaille <akim@epita.fr>
16222
16223 * src/output.c (output_headers, output_program, output): Be sure
16224 to escape special characters when outputting filenames.
16225 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
16226 (output_headers): Don't depend on them, Use ACTSTR.
16227
16228 2000-11-17 Akim Demaille <akim@epita.fr>
16229
16230 * lib/obstack.h: Formatting changes.
16231 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
16232 prevents type checking.
16233 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
16234 cast the value to (void *): assigning a `foo *' to a `void *'
16235 variable is valid.
16236 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
16237 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
16238 append characters.
16239
16240 2000-11-17 Akim Demaille <akim@epita.fr>
16241
16242 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
16243 as...
16244 (suite.m4, regression.m4, calc.m4): these.
16245 * tests/atgeneral.m4: Update from CVS Autoconf.
16246
16247 2000-11-17 Akim Demaille <akim@epita.fr>
16248
16249 * tests/regression.m4 (%union and --defines): New test,
16250 demonstrating a current bug in the obstack implementation.
16251
16252 2000-11-17 Akim Demaille <akim@epita.fr>
16253
16254 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
16255 macros.
16256 Use them to declare the variables which are global or local to
16257 `yyparse'.
16258
16259 2000-11-17 Akim Demaille <akim@epita.fr>
16260
16261 * acconfig.h: Remove, no longer used.
16262
16263 2000-11-07 Akim Demaille <akim@epita.fr>
16264
16265 * src: s/Copyright (C)/Copyright/g.
16266
16267 2000-11-07 Akim Demaille <akim@epita.fr>
16268
16269 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
16270 defining.
16271 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
16272
16273 2000-11-07 Akim Demaille <akim@epita.fr>
16274
16275 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
16276 Merge in a single CPP if/else.
16277
16278 2000-11-07 Akim Demaille <akim@epita.fr>
16279
16280 * src/output.c (output): Remove useless variables.
16281 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
16282 argument `data' for consistency with the prototypes.
16283 Qualify it `const'.
16284 (obstack_copy, obstack_copy0): Rename the second argument as
16285 `address' for consistency. Qualify it `const'.
16286 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
16287 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
16288 `const' their input argument (`data' or `address').
16289 Adjust the corresponding macros to include `const' in casts.
16290
16291 2000-11-03 Akim Demaille <akim@epita.fr>
16292
16293 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
16294 s/PFILE1/BISON_HAIRY/.
16295 Adjust dependencies.
16296
16297 2000-11-03 Akim Demaille <akim@epita.fr>
16298
16299 For some reason, this was not applied.
16300
16301 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
16302 `unlink': it's no longer used.
16303
16304 2000-11-03 Akim Demaille <akim@epita.fr>
16305
16306 * src/files.c (skeleton_find): New function, eved out of...
16307 (open_files, open_extra_files): here.
16308
16309 2000-11-03 Akim Demaille <akim@epita.fr>
16310
16311 Don't use `atexit'.
16312
16313 * src/files.c (obstack_save): New function.
16314 (done): Rename as...
16315 (output_files): this.
16316 Use `obstack_save'.
16317 * src/main.c (main): Don't use `atexit' to register `done', since
16318 it no longer has to remove tmp files, just call `output_files'
16319 when there are no errors.
16320
16321 2000-11-02 Akim Demaille <akim@epita.fr>
16322
16323 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
16324 `unlink': it's no longer used.
16325 * src/files.h: Formatting changes.
16326
16327 2000-11-02 Akim Demaille <akim@epita.fr>
16328
16329 Remove the last uses of mktemp and unlink/delete.
16330
16331 * src/files.c (fdefines, ftable): Removed.
16332 (defines_ostack, table_obstack): New.
16333 Adjust dependencies of the former into uses of the latter.
16334 * src/output.c (output_short_or_char_table, output_short_table):
16335 Convert to using obstacks.
16336 * src/reader.c (copy_comment2): Accept one FILE * and two
16337 obstacks.
16338 (output_token_defines, reader_output_yylsp): Use obstacks.
16339 * src/system.h (obstack_fgrow3): New.
16340 * po/POTFILES.in: Adjust.
16341
16342 2000-11-01 Akim Demaille <akim@epita.fr>
16343
16344 Change each use of `fattrs' into a use of `attrs_obstack'.
16345
16346 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
16347 * src/files.c (fattrs): Remove.
16348 (attrs_obstack): New.
16349 Adjust all dependencies.
16350 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
16351
16352 2000-11-01 Akim Demaille <akim@epita.fr>
16353
16354 Introduce obstacks.
16355 Change each use of `faction' into a use of `action_obstack'.
16356
16357 * lib/obstack.h, lib/obstack.c: New files.
16358 * src/files.c (faction): Remove.
16359 (action_obstack): New.
16360 Adjust all dependencies.
16361
16362 2000-10-20 Akim Demaille <akim@epita.fr>
16363
16364 * lib/quote.h (PARAMS): New macro. Use it.
16365
16366 2000-10-16 Akim Demaille <akim@epita.fr>
16367
16368 * src/output.c (output_short_or_char_table): New function.
16369 (output_short_table, output_token_translations): Use it.
16370 (goto_actions): Use output_short_table.
16371
16372 2000-10-16 Akim Demaille <akim@epita.fr>
16373
16374 * src/symtab.c (bucket_new): New function.
16375 (getsym): Use it.
16376
16377 * src/output.c (output_short_table): New argument to display the
16378 comment associated with the table.
16379 Adjust dependencies.
16380 (output_gram): Use it.
16381 (output_rule_data): Nicer output layout for YYTNAME.
16382
16383 2000-10-16 Akim Demaille <akim@epita.fr>
16384
16385 * src/lex.c (read_typename): New function.
16386 (lex): Use it.
16387 * src/reader.c (copy_dollar): Likewise.
16388
16389 2000-10-16 Akim Demaille <akim@epita.fr>
16390
16391 * src/reader.c (copy_comment2): Expect the input stream to be on
16392 the `/' which is suspected to open a comment, instead of being
16393 called after `//' or `/*' was read.
16394 (copy_comment, copy_definition, parse_union_decl, copy_action)
16395 (copy_guard): Adjust.
16396
16397 2000-10-16 Akim Demaille <akim@epita.fr>
16398
16399 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
16400 `read_signed_integer'.
16401
16402 2000-10-16 Akim Demaille <akim@epita.fr>
16403
16404 * src/reader.c (copy_dollar): New function.
16405 (copy_guard, copy_action): Use it.
16406
16407 2000-10-16 Akim Demaille <akim@epita.fr>
16408
16409 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
16410 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
16411 New files, from Fileutils 4.0.27.
16412 * src/main.c (printable_version): Remove.
16413 * src/lex.c, src/reader.c: Use `quote'.
16414
16415 2000-10-04 Akim Demaille <akim@epita.fr>
16416
16417 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
16418
16419 2000-10-04 Akim Demaille <akim@epita.fr>
16420
16421 * doc/bison.texinfo: Various typos spotted by Neil Booth.
16422
16423 2000-10-04 Akim Demaille <akim@epita.fr>
16424
16425 When a literal string is used to define two different tokens,
16426 `bison -v' segfaults.
16427 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
16428
16429 * tests/regression.m4: New file.
16430 Include the core of the sample provided by Piotr Gackiewicz.
16431 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
16432 properly.
16433
16434 2000-10-04 Akim Demaille <akim@epita.fr>
16435
16436 * src/reader.c (parse_expect_decl): Keep `count' within the size
16437 of `buffer'.
16438 From Neil Booth.
16439
16440 2000-10-02 Paul Eggert <eggert@twinsun.com>
16441
16442 * bison.s1 (yyparse): Assign the default value
16443 unconditionally, to avoid a GCC warning and make the parser a
16444 tad smaller.
16445
16446 2000-10-02 Akim Demaille <akim@epita.fr>
16447
16448 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
16449 options.
16450
16451 2000-10-02 Akim Demaille <akim@epita.fr>
16452
16453 * src/derives.c, src/print.c, src/reduce.c: To ease the
16454 translation, move some `\n' out of the translated strings.
16455
16456 2000-10-02 Akim Demaille <akim@epita.fr>
16457
16458 The location tracking mechanism is precious for parse error
16459 messages. Nevertheless, it is enabled only when `@n' is used in
16460 the grammar, which is a different issue (you can use it in error
16461 message, but not in the grammar per se). Therefore, there should
16462 be another means to enable it.
16463
16464 * src/getargs.c (getargs): Support `--locations'.
16465 (usage): Report it.
16466 * src/getargs.h (locationsflag): Export it.
16467 * src/lex.c (percent_table): Support `%locations'.
16468 * src/reader.c (yylsp_needed): Remove this variable, now replaced
16469 with `locationsflag'.
16470 * doc/bison.texinfo: Document `--locations' and `%locations'.
16471 Sort the options.
16472 * tests/calc.m4: Test it.
16473
16474 For regularity of the names, replace each
16475 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
16476 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
16477 In addition replace each `flag' with `_flag'.
16478
16479 2000-10-02 Akim Demaille <akim@epita.fr>
16480
16481 Also test parse error messages, including with YYERROR_VERBOSE.
16482
16483 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
16484 associative).
16485 Use it to check the computations.
16486 Use it to check `nonassoc' is honored.
16487 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
16488 `--yyerror-verbose'.
16489 (_AT_CHECK_CALC): Adjust to this option.
16490 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
16491
16492 2000-10-02 Akim Demaille <akim@epita.fr>
16493
16494 Test also `--verbose', `--defines' and `--name-prefix'. Testing
16495 the latter demonstrates a flaw in the handling of non debugging
16496 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
16497 was used in order to simplify:
16498
16499 #if YYDEBUG
16500 if (yydebug)
16501 {
16502 ...
16503 }
16504 #endif
16505
16506 into
16507
16508 if (yydebug)
16509 {
16510 ...
16511 }
16512
16513 unfortunately this leads to a CPP conflict when
16514 `--name-prefix=foo' is used since it produces `#define yydebug
16515 foodebug'.
16516
16517 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
16518 (YYDPRINTF): New macro.
16519 Spread its use.
16520 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
16521 the bison options.
16522 Also test `--verbose', `--defines' and `--name-prefix'.
16523
16524 2000-10-02 Akim Demaille <akim@epita.fr>
16525
16526 Improve the readability of the produced parsers.
16527
16528 * src/bison.s1: Formatting changes.
16529 Improve the comment related to the `$' mark.
16530 (yydefault): Don't fall through to `yyresume': `goto' there.
16531 * src/output.c (output_parser): When the `$' is met, skip the end
16532 of its line.
16533 New variable, `number_of_dollar_signs', to check there's exactly
16534 one `$' in the parser skeleton.
16535
16536 2000-10-02 Akim Demaille <akim@epita.fr>
16537
16538 * lib/xstrdup.c: New file, from the fileutils.
16539 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
16540 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
16541 instead of strlen + xmalloc + strcpy.
16542 * src/symtab.c (copys): Remove, use xstrdup instead.
16543
16544 2000-10-02 Akim Demaille <akim@epita.fr>
16545
16546 * src/gram.h (associativity): New enum type which replaces the
16547 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
16548 `right_assoc', `left_assoc' and `non_assoc'.
16549 Adjust all dependencies.
16550 * src/reader.c: Formatting changes.
16551 (LTYPESTR): Don't define it, use it as a literal in
16552 `reader_output_yylsp'.
16553 * src/symtab.h (symbol_class): New enum type which replaces the
16554 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
16555 `sunknown', `stoken and `snterm'.
16556
16557 2000-10-02 Akim Demaille <akim@epita.fr>
16558
16559 * src/getargs.c (fixed_outfiles): Rename as...
16560 (yaccflag): for consistency and accuracy.
16561 Adjust dependencies.
16562
16563 2000-10-02 Akim Demaille <akim@epita.fr>
16564
16565 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
16566 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
16567 difficult and introduced a lot of core dump. It turns out that
16568 Bison used an implementation of `xmalloc' based on `calloc', and
16569 at various places it does depend upon the initialization to 0. I
16570 have not tried to isolate the pertinent places, and all the former
16571 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
16572 someone should address this issue.
16573
16574 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
16575 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
16576 files.
16577 Adjust dependencies.
16578 * src/warshall.h: New file.
16579 Propagate.
16580
16581 2000-10-02 Akim Demaille <akim@epita.fr>
16582
16583 Various anti-`extern in *.c' changes.
16584
16585 * src/system.h: Include `assert.h'.
16586
16587 2000-10-02 Akim Demaille <akim@epita.fr>
16588
16589 * src/state.h (nstates, final_state, first_state, first_shift)
16590 (first_reduction): Move their exportation from here...
16591 * src/LR0.h: to here.
16592 Adjust dependencies.
16593 * src/getargs.c (statisticsflag): New variable.
16594 Add support for `--statistics'.
16595 Adjust dependencies.
16596
16597 Remove a lot of now useless `extern' statements in most files.
16598
16599 2000-10-02 Akim Demaille <akim@epita.fr>
16600
16601 * src/LR0.h: New file.
16602 Propagate its use.
16603
16604 2000-10-02 Akim Demaille <akim@epita.fr>
16605
16606 * src/print.h: New file.
16607 Propagate its use.
16608 * src/print.c: Formatting and ordering changes.
16609 (verbose, terse): Replace with...
16610 (print_results): this new function.
16611 Adjust dependencies.
16612
16613 2000-10-02 Akim Demaille <akim@epita.fr>
16614
16615 * src/conflicts.c (conflict_report): New function.
16616 (conflict_log, verbose_conflict_log): Replace with...
16617 (print_conflicts): this function.
16618 Adjust dependencies.
16619 * src/conflicts.h: New file.
16620 Propagate its inclusion.
16621
16622 2000-10-02 Akim Demaille <akim@epita.fr>
16623
16624 * src/nullable.h: New file.
16625 Propagate its inclusion.
16626 * src/nullable.c: Formatting changes.
16627
16628 2000-10-02 Akim Demaille <akim@epita.fr>
16629
16630 * src/reduce.h: New file.
16631 Propagate its inclusion.
16632 * src/reduce.c: Topological sort and other formatting changes.
16633 (bool, TRUE, FALSE): Move their definition to...
16634 * src/system.h: here.
16635
16636 2000-10-02 Akim Demaille <akim@epita.fr>
16637
16638 * src/files.c: Formatting changes.
16639 (tryopen, tryclose, openfiles): Rename as...
16640 (xfopen, xfclose, open_files): this.
16641 (stringappend): static.
16642 * src/files.h: Complete the list of exported symbols.
16643 Propagate its use.
16644
16645 2000-10-02 Akim Demaille <akim@epita.fr>
16646
16647 * src/reader.h: New file.
16648 Propagate its use instead of tedious list of `extern' and
16649 prototypes.
16650 * src/reader.c: Formatting changes, topological sort,
16651 s/register//.
16652
16653 2000-10-02 Akim Demaille <akim@epita.fr>
16654
16655 * src/lex.h: Prototype `lex.c' exported functions.
16656 * src/reader.c: Adjust.
16657 * src/lex.c: Formatting changes.
16658 (safegetc): Rename as...
16659 (xgetc): this.
16660
16661 2000-10-02 Akim Demaille <akim@epita.fr>
16662
16663 * src/lalr.h: New file.
16664 Propagate its inclusion instead of prototypes and `extern'.
16665 * src/lalr.c: Formatting changes, topological sorting etc.
16666
16667 2000-10-02 Akim Demaille <akim@epita.fr>
16668
16669 * src/output.c (token_actions): Introduce a temporary array,
16670 YYDEFACT, that makes it possible for this function to use
16671 output_short_table.
16672
16673 2000-10-02 Akim Demaille <akim@epita.fr>
16674
16675 `user_toknums' is output as a `short[]' in `output.c', while it is
16676 defined as a `int[]' in `reader.c'. For consistency with the
16677 other output tables, `user_toknums' is now defined as a table of
16678 shorts.
16679
16680 * src/reader.c (user_toknums): Be a short table instead of an int
16681 table.
16682 Adjust dependencies.
16683
16684 Factor the short table outputs.
16685
16686 * src/output.c (output_short_table): New function.
16687 * src/output.c (output_gram, output_stos, output_rule_data)
16688 (output_base, output_table, output_check): Use it.
16689
16690 2000-10-02 Akim Demaille <akim@epita.fr>
16691
16692 * src/output.c (output): Topological sort of the functions, in
16693 order to get rid of the `static' prototypes.
16694 No longer use `register'.
16695 * src/output.h: New file.
16696 Propagate its inclusion in files explicitly prototyping functions
16697 from output.c.
16698
16699 2000-09-21 Akim Demaille <akim@epita.fr>
16700
16701 * src/atgeneral.m4: Update from Autoconf.
16702
16703 2000-09-21 Akim Demaille <akim@epita.fr>
16704
16705 * src/closure.h: New file.
16706 * src/closure.c: Formatting changes, topological sort over the
16707 functions, use of closure.h.
16708 (initialize_closure, finalize_closure): Rename as...
16709 (new_closure, free_closure): these. Adjust dependencies.
16710 * src/LR0.c: Formatting changes, topological sort, use of
16711 cloture.h.
16712 (initialize_states): Rename as...
16713 (new_states): this.
16714 * src/Makefile.am (noinst_HEADERS): Adjust.
16715
16716 2000-09-20 Akim Demaille <akim@epita.fr>
16717
16718 * src/acconfig.h: Don't protect config.h against multiple
16719 inclusion.
16720 Don't define PARAMS.
16721 * src/system.h: Define PARAMS.
16722 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
16723 purpose of config.h. system.h must not try to fix wrong
16724 definitions in config.h.
16725
16726 2000-09-20 Akim Demaille <akim@epita.fr>
16727
16728 * src/derives.h: New file.
16729 * src/main.c, src/derives.h: Use it.
16730 Formatting changes.
16731 * src/Makefile.am (noinst_HEADERS): Adjust.
16732
16733 2000-09-20 Akim Demaille <akim@epita.fr>
16734
16735 * tests/atgeneral.m4: Update from Autoconf.
16736 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
16737 (AT_CHECK_CALC): New macros.
16738 Use these macros to test bison with options `', `--raw',
16739 `--debug', `--yacc', `--yacc --debug'.
16740
16741 2000-09-19 Akim Demaille <akim@epita.fr>
16742
16743 * src/output.c: Formatting changes.
16744 * src/machine.h: Remove, leaving its contents in...
16745 * src/system.h: here.
16746 Include stdio.h.
16747 Adjust all dependencies on stdio.h and machine.h.
16748 * src/getargs.h: New file.
16749 Let all `extern' declarations about getargs.c be replaced with
16750 inclusion of `getargs.h'.
16751 * src/Makefile.am (noinst_HEADERS): Adjust.
16752
16753 * tests/calc.m4 (yyin): Be initialized in main, not on the global
16754 scope.
16755 (yyerror): Returns void, not int.
16756 * doc/bison.texinfo: Formatting changes.
16757
16758 2000-09-19 Akim Demaille <akim@epita.fr>
16759
16760 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
16761 portable.
16762
16763 2000-09-18 Akim Demaille <akim@epita.fr>
16764
16765 * configure.in: Append WARNING_CFLAGS to CFLAGS.
16766 * src/Makefile.am (INCLUDES): Don't.
16767 Be ready to fetch headers in lib/.
16768
16769 2000-09-18 Akim Demaille <akim@epita.fr>
16770
16771 * doc/bison.texinfo: Update the copyright.
16772 ANSIfy and GNUify the examples.
16773 Remove the old menu.
16774
16775 2000-09-18 Akim Demaille <akim@epita.fr>
16776
16777 First set of tests: use the `calc' example from the documentation.
16778
16779 * src/bison.s1 (yyparse): Condition the code using `yytname' which
16780 is defined only when YYDEBUG is.
16781 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
16782 * src/files.c (tryopen, tryclose): Formatting changes.
16783 Move to the top and be static.
16784 * src/reader.c (read_signed_integer): Likewise.
16785 * tests/calc.m4: New file.
16786 * Makefile.am, suite.m4: Adjust.
16787 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
16788
16789 2000-09-18 Akim Demaille <akim@epita.fr>
16790
16791 Add support for an Autotest test suite for Bison.
16792
16793 * m4/m4.m4, m4/atconfig.m4: New files.
16794 * m4/Makefile.am (EXTRA_DIST): Adjust.
16795 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
16796 files.
16797 * src/getargs.c: Display a more standard --version message.
16798 * src/reader.c (reader): Formatting changes.
16799 No longer depend upon VERSION_STRING.
16800 * configure.in: No longer use `dnl'.
16801 Set up the test suite and the new directory `tests/.
16802 (VERSION_STRING): Remove.
16803
16804 2000-04-14 Akim Demaille <akim@epita.fr>
16805
16806 * src/reader.c (copy_comment2): New function, same as former
16807 `copy_comment', but outputs into two FILE *.
16808 (copy_comment): Use it.
16809 (parse_union_decl): Use it.
16810 (get_type, parse_start_decl): Use the same `invalid' message.
16811 (parse_start_decl, parse_union_decl): Use the same `multiple'
16812 message.
16813 (parse_union_decl, copy_guard, copy_action): Use the same
16814 `unmatched' message.
16815 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
16816
16817 2000-03-31 Akim Demaille <akim@epita.fr>
16818
16819 * src/files.c (tryopen, tryclose): Move to the top.
16820 Be static.
16821
16822 2000-03-31 Akim Demaille <akim@epita.fr>
16823
16824 * src/main.c (main): Don't call `done', exit does it.
16825
16826 2000-03-31 Akim Demaille <akim@epita.fr>
16827
16828 * allocate.c: s/return (foo)/return foo/.
16829 * lalr.c: Likewise.
16830 * LR0.c: Likewise.
16831 * output.c: Likewise.
16832 * reader.c: Likewise.
16833 * symtab.c: Likewise.
16834 * vmsgetargs.c: Likewise.
16835
16836 2000-03-31 Akim Demaille <akim@epita.fr>
16837
16838 Clean up the error reporting functions.
16839
16840 * src/report.c: New file.
16841 * src/report.h: Likewise.
16842 * src/Makefile.am: Adjust.
16843 * m4/error.m4: New file.
16844 * m4/Makefile.am: Adjust.
16845 * configure.in (jm_PREREQ_ERROR): Call it.
16846 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
16847 Remove.
16848 (fatal, fatals): Remove. All callers use complain.c::fatal.
16849 (warn, warni, warns, warnss, warnss): Remove. All callers use
16850 complain.c::complain.
16851 (toomany): Remove, use fatal instead.
16852 * src/files.c (done): No argument, use complain_message_count.
16853 * src/main.c (main): Register `done' to `atexit'.
16854
16855 * src/getargs.c (usage): More `fputs', less `fprintf'.
16856
16857 2000-03-28 Akim Demaille <akim@epita.fr>
16858
16859 * lib/: New directory.
16860 * Makefile.am (SUBDIRS): Adjust.
16861 * configure.in: Adjust.
16862 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
16863 useless.
16864 * src/alloca.c: Moved to lib/.
16865 * src/getopt.c: Likewise.
16866 * src/getopt1.c: Likewise.
16867 * src/getopt.h: Likewise.
16868 * src/ansi2knr.c: Likewise.
16869 * src/ansi2knr.1: Likewise.
16870 * src/Makefile.am: Adjust.
16871 * lib/Makefile.am: New file.
16872
16873 2000-03-28 Akim Demaille <akim@epita.fr>
16874
16875 * src/getargs.c (usage): Refresh the help message.
16876
16877 2000-03-17 Akim Demaille <akim@epita.fr>
16878
16879 * src/getopt1.c: Updated from textutils 2.0e
16880 * src/getopt.c: Likewise.
16881 * src/getopt.h: Likewise.
16882
16883 2000-03-17 Akim Demaille <akim@epita.fr>
16884
16885 * src/Makefile.am (bison.simple): Fix the awk program: quote only
16886 the file name, not the whole `#line LINE FILE'.
16887
16888 2000-03-17 Akim Demaille <akim@epita.fr>
16889
16890 On syntax errors, report the token on which we choked.
16891
16892 * src/bison.s1 (yyparse): In the label yyerrlab, when
16893 YYERROR_VERBOSE, add yychar in msg.
16894
16895 2000-03-17 Akim Demaille <akim@epita.fr>
16896
16897 * src/reader.c (copy_at): New function.
16898 (copy_guard): Use it.
16899 (copy_action): Use it.
16900
16901 2000-03-17 Akim Demaille <akim@epita.fr>
16902
16903 Be kind to translators, save some useless translations.
16904
16905 * src/main.c (banner): New function.
16906 (fatal_banner): Use it.
16907 (warn_banner): Use it.
16908
16909 2000-03-17 Akim Demaille <akim@epita.fr>
16910
16911 * src/reader.c (copy_definition): Use copy_string and
16912 copy_comment. Removed now unused `match', `ended',
16913 `cplus_comment'.
16914 (copy_comment, copy_string): Moved, to be visible from
16915 copy_definition.
16916
16917 2000-03-17 Akim Demaille <akim@epita.fr>
16918
16919 * src/reader.c (copy_string): Declare `static inline'. No
16920 problems with inline, since it is checked by configure.
16921 (copy_comment): Likewise.
16922
16923 2000-03-17 Akim Demaille <akim@epita.fr>
16924
16925 * src/reader.c (packsymbols): Formatting changes.
16926
16927 2000-03-17 Akim Demaille <akim@epita.fr>
16928
16929 * src/reader.c (copy_comment): New function, factored out from:
16930 (copy_action): Use it. Removed now unused `match', `ended',
16931 `cplus_comment'.
16932 (copy_guard): Likewise.
16933
16934 2000-03-17 Akim Demaille <akim@epita.fr>
16935
16936 * src/reader.c (copy_string): New function, factored out from:
16937 (copy_action): Use it.
16938 (copy_guard): Likewise.
16939
16940 2000-03-17 Akim Demaille <akim@epita.fr>
16941
16942 Change the handling of @s so that they behave exactly like $s.
16943 There is now a pseudo variable @$ (readble and writable), location
16944 of the lhs of the rule (by default ranging from the location of
16945 the first symbol of the rhs, to the location of the last symbol,
16946 or, if the rhs is empty, YYLLOC).
16947
16948 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
16949 yyval.
16950 (yyparse): When providing a default semantic action, provide a
16951 default location action.
16952 (after the $): No longer change `*YYLSP', just stack YYLOC the
16953 same way you stack YYVAL.
16954 * src/reader.c (read_declarations): Use warns.
16955 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
16956 (copy_action, case '@'): Likewise.
16957 Use a standard error message, to save useless work from
16958 translators.
16959
16960 2000-03-17 Akim Demaille <akim@epita.fr>
16961
16962 * src/bison.s1: Formatting and cosmetics changes.
16963 * src/reader.c: Likewise.
16964 Update the Copyright notice.
16965
16966 2000-03-17 Akim Demaille <akim@epita.fr>
16967
16968 * src/bison.s1 (#line): All set to `#line' only, since the
16969 Makefile now handles them.
16970
16971 2000-03-16 Akim Demaille <akim@epita.fr>
16972
16973 * src/output.c (output_rule_data): Output the documentation of
16974 some of the tables.
16975 (Copyright notice): Update.
16976 Formatting changes.
16977
16978 2000-03-16 Akim Demaille <akim@epita.fr>
16979
16980 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
16981 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
16982 One `#if YYDEBUG' remains, since it uses variables which are
16983 defined only if `YYDEBUG != 0'.
16984
16985 2000-03-16 Akim Demaille <akim@epita.fr>
16986
16987 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
16988 and related variables so that the similarities are highlighted.
16989
16990 2000-03-16 Akim Demaille <akim@epita.fr>
16991
16992 * src/bison.s1: Properly indent CPP directives.
16993
16994 2000-03-16 Akim Demaille <akim@epita.fr>
16995
16996 * src/bison.s1: Properly indent the `alloca' CPP section.
16997
16998 2000-03-16 Akim Demaille <akim@epita.fr>
16999
17000 Do not hard code values of directories in `configure.in'.
17001 Update the `configure' tool chain.
17002
17003 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
17004 src/makefile.am.
17005 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
17006 (AC_OUTPUT): Add m4/Makefile.
17007 Bump to bison 1.28a, 1.29 has never been released.
17008 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
17009 handled via src/Makefile.am.
17010 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
17011 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
17012 autoheader.
17013 * Makefile.am (SUBDIRS): Add m4.
17014 (ACLOCAL_AM_FLAGS): New variable.
17015 (AUTOMAKE_OPTIONS): Add check-news.
17016 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
17017 the proper line number and file name.
17018 (DEFS): Propagate the location of bison library files and of the
17019 locale files.
17020 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
17021 builddir.
17022 * acinclude.m4: Remove, replaced by the directory m4.
17023 * m4/Makefile.am (EXTRA_DIST): New variable.
17024 * m4/gettext.m4: New file, from the fileutils.
17025 * m4/lcmessage.m4: Likewise
17026 * m4/progtest.m4: Likewise.
17027 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
17028
17029 2000-03-10 Akim Demaille <akim@epita.fr>
17030
17031 * src/closure.c:
17032 Formatting changes of various comments.
17033 Respect the GNU coding standards at various places.
17034 Don't use `_()' when no translation is needed.
17035
17036 1999-12-13 Jesse Thilo <jthilo@gnu.org>
17037
17038 * src/files.c:
17039 OS/2 honors TMPDIR environment variable.
17040
17041 1999-12-13 Jesse Thilo <jthilo@gnu.org>
17042
17043 * doc/bison.texinfo: Tweaked spelling and grammar.
17044 Updated ISBN.
17045 Removed reference to price of printed copy.
17046 Mention BISON_SIMPLE and BISON_HAIRY.
17047
17048 1999-12-13 Jesse Thilo <jthilo@gnu.org>
17049
17050 * configure.in, NEWS:
17051 Bison 1.29 released.
17052
17053 1999-10-27 Jesse Thilo <jthilo@gnu.org>
17054
17055 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
17056 Added reference card.
17057
17058 1999-07-26 Jesse Thilo <jthilo@gnu.org>
17059
17060 * po/ru.po: Added Russian translation.
17061
17062 1999-07-26 Jesse Thilo <jthilo@gnu.org>
17063
17064 * configure.in: Added Russian translation.
17065
17066 1999-07-06 Jesse Thilo <jthilo@gnu.org>
17067
17068 * configure.in, NEWS, README:
17069 Released version 1.28.
17070
17071 1999-06-14 Jesse Thilo <jthilo@gnu.org>
17072
17073 * src/system.h:
17074 Squashed redefinition warning on some systems.
17075
17076 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
17077 Have configure build version string instead of relying on ANSI string
17078 concatentation.
17079
17080 1999-06-14 Jesse Thilo <jthilo@gnu.org>
17081
17082 * po/POTFILES.in: Got rid of version.c.
17083
17084 1999-06-14 Jesse Thilo <jthilo@gnu.org>
17085
17086 * acconfig.h, configure.in:
17087 Have configure build version string instead of relying on ANSI string
17088 concatentation.
17089
17090 1999-06-08 Jesse Thilo <jthilo@gnu.org>
17091
17092 * doc/bison.1:
17093 Dropped mention of `+' for long-named options.
17094
17095 1999-05-30 Jesse Thilo <jthilo@gnu.org>
17096
17097 * src/files.c: Added <unistd.h> for unlink().
17098
17099 * src/Makefile.am, src/system.h:
17100 I18n fixes.
17101
17102 1999-05-30 Jesse Thilo <jthilo@gnu.org>
17103
17104 * README: Added a FAQ list.
17105
17106 * configure.in, acconfig.h:
17107 I18n fixes.
17108
17109 1999-05-30 Jesse Thilo <jthilo@gnu.org>
17110
17111 * doc/FAQ, doc/Makefile.am:
17112 Added a FAQ list.
17113
17114 1999-05-19 Jesse Thilo <jthilo@gnu.org>
17115
17116 * src/alloc.h, src/symtab.h, src/version.c:
17117 Protected inclusion of "config.h" with HAVE_CONFIG_H.
17118
17119 1999-04-18 Jesse Thilo <jthilo@gnu.org>
17120
17121 * src/.cvsignore, src/Makefile.am:
17122 Reorganized: sources in `src', documentation in `doc'.
17123
17124 * src/lex.c (literalchar):
17125 fixed the code for escaping double quotes (thanks
17126 Jonathan Czisny.)
17127
17128 1999-04-18 Jesse Thilo <jthilo@gnu.org>
17129
17130 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
17131 Adjusted paths to reflect directory reorganization.
17132
17133 1999-04-18 Jesse Thilo <jthilo@gnu.org>
17134
17135 * doc/.cvsignore, doc/Makefile.am:
17136 Reorganized: sources in `src', documentation in `doc'.
17137
17138 1999-04-18 Jesse Thilo <jthilo@gnu.org>
17139
17140 * configure.in:
17141 Updated AC_INIT file to reflect directory reorganization.
17142
17143 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
17144 Reorganized: sources in `src', documentation in `doc'.
17145
17146 1999-04-13 Jesse Thilo <jthilo@gnu.org>
17147
17148 * src/allocate.c:
17149 Don't declare calloc() and realloc() if not necessary.
17150
17151 1999-04-13 Jesse Thilo <jthilo@gnu.org>
17152
17153 * configure.in, acconfig.h, acinclude.m4:
17154 Don't declare calloc() and realloc() if not necessary.
17155
17156 1999-03-23 Jesse Thilo <jthilo@gnu.org>
17157
17158 * po/.cvsignore: Added i18n support.
17159
17160 1999-03-23 Jesse Thilo <jthilo@gnu.org>
17161
17162 * acconfig.h, configure.in, Makefile.am:
17163 Added i18n support.
17164
17165 1999-03-22 Jesse Thilo <jthilo@gnu.org>
17166
17167 * src/bison.s1: Fixed #line numbers.
17168
17169 1999-03-15 Jesse Thilo <jthilo@gnu.org>
17170
17171 * po/es.po, po/fr.po, po/nl.po, po/de.po:
17172 Added PO files from Translation Project.
17173
17174 1999-03-03 Jesse Thilo <jthilo@gnu.org>
17175
17176 * Makefile.am:
17177 Added support for non-ANSI compilers (ansi2knr).
17178
17179 1999-02-16 Jesse Thilo <jthilo@gnu.org>
17180
17181 * configure.in: Bumped version number to 1.27.
17182
17183 * Makefile.am:
17184 Added `bison.simple' to list of files removed by `make distclean'.
17185
17186 1999-02-12 Jesse Thilo <jthilo@gnu.org>
17187
17188 * src/files.c, src/files.h:
17189 Defined locations of parser files in config.h instead of Makefile.
17190
17191 1999-02-12 Jesse Thilo <jthilo@gnu.org>
17192
17193 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
17194 Defined locations of parser files in config.h instead of Makefile.
17195
17196 1999-02-09 Jesse Thilo <jthilo@gnu.org>
17197
17198 * Makefile.am:
17199 Removed inappropriate use of $< macro.
17200
17201 1999-02-05 Jesse Thilo <jthilo@gnu.org>
17202
17203 * po/Makefile.in.in, po/POTFILES.in:
17204 Add `po' directory skeleton.
17205
17206 1999-01-27 Jesse Thilo <jthilo@gnu.org>
17207
17208 * README: Document help-bison list.
17209
17210 * configure.in: Add check for mkstemp().
17211
17212 1999-01-20 Jesse Thilo <jthilo@gnu.org>
17213
17214 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
17215 Hush a few compiler warnings.
17216
17217 * src/files.c:
17218 Add tryclose(), which verifies that fclose was successful.
17219 Hush a couple of compiler warnings.
17220
17221 1999-01-20 Jesse Thilo <jthilo@gnu.org>
17222
17223 * Makefile.am, OChangeLog:
17224 ChangeLog is now automatically generated. Include the old version as
17225 OChangeLog.
17226
17227 1999-01-14 Jesse Thilo <jthilo@gnu.org>
17228
17229 * 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:
17230 Update FSF address.
17231
17232 1999-01-14 Jesse Thilo <jthilo@gnu.org>
17233
17234 * doc/bison.texinfo: Fix formatting glitch.
17235
17236 * doc/bison.texinfo: Update FSF address.
17237
17238 1999-01-14 Jesse Thilo <jthilo@gnu.org>
17239
17240 * acconfig.h: Update FSF address.
17241
17242 1999-01-08 Jesse Thilo <jthilo@gnu.org>
17243
17244 * src/system.h:
17245 Don't define PACKAGE here, since config.h defines it.
17246
17247 1998-12-30 Jesse Thilo <jthilo@gnu.org>
17248
17249 * src/reader.c: Update copyright date.
17250
17251 * src/main.c:
17252 Ditch sprintf to statically-sized buffers in fatal/warn functions in
17253 favor of output directly to stderr (avoids buffer overruns).
17254
17255 * src/reader.c: Some checks for premature EOF.
17256
17257 * 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:
17258 Use prototypes if the compiler understands them.
17259
17260 * src/files.c: Honor TMPDIR on Unix hosts.
17261 Use prototypes if the compiler understands them.
17262
17263 * src/reader.c:
17264 Fix a couple of buffer overrun bugs.
17265 Use prototypes if the compiler understands them.
17266
17267 * src/system.h: Include unistd.h and ctype.h.
17268 Use #ifdef instead of #if for NLS symbols.
17269
17270 1998-12-30 Jesse Thilo <jthilo@gnu.org>
17271
17272 * doc/bison.texinfo:
17273 Delete comment "consider using @set for edition number, etc..." since
17274 we now are doing so.
17275
17276 1998-12-30 Jesse Thilo <jthilo@gnu.org>
17277
17278 * configure.in:
17279 Use prototypes if the compiler understands them.
17280
17281 * NEWS: Document 1.26 highlights.
17282
17283 * Makefile.am: Require Automake 1.3 or later.
17284
17285 * acconfig.h:
17286 Use prototypes if the compiler understands them.
17287
17288 1998-12-29 Jesse Thilo <jthilo@gnu.org>
17289
17290 * src/version.c:
17291 Use VERSION symbol from automake for version number.
17292
17293 1998-12-29 Jesse Thilo <jthilo@gnu.org>
17294
17295 * acconfig.h, configure.in, version.cin:
17296 Use VERSION symbol from automake for version number.
17297
17298 1998-11-28 Jesse Thilo <jthilo@gnu.org>
17299
17300 * Makefile.am:
17301 Distribute original version of simple parser (bison.s1), not built
17302 version (bison.simple).
17303
17304 1998-11-28 Jesse Thilo <jthilo@gnu.org>
17305
17306 * doc/bison.texinfo: Add info dir entry.
17307
17308 * doc/bison.texinfo:
17309 Let automake put version number into documentation.
17310
17311 1998-11-26 Jesse Thilo <jthilo@gnu.org>
17312
17313 * src/bison.cld, src/build.com, src/vmshlp.mar:
17314 Add non-RCS files from /gd/gnu/bison.
17315
17316 1998-11-26 Jesse Thilo <jthilo@gnu.org>
17317
17318 * doc/bison.1:
17319 Document the BISON_HAIRY and BISON_SIMPLE variables.
17320
17321 1998-11-25 Jesse Thilo <jthilo@gnu.org>
17322
17323 * src/version.c: Build version.c automatically.
17324
17325 * src/reader.c:
17326 Fix token numbering (used to start at 258, not 257).
17327
17328 * src/system.h: Include config.h.
17329
17330 * src/getargs.c: Update bug report address.
17331
17332 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
17333 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
17334
17335 1998-11-25 Jesse Thilo <jthilo@gnu.org>
17336
17337 * Makefile.am:
17338 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17339
17340 * configure.in, version.cin:
17341 Build version.c automatically.
17342
17343 * AUTHORS: Add AUTHORS file.
17344
17345 * README: Update bug report address.
17346
17347 * bison.simple:
17348 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17349
17350 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
17351 Add automake stuff.
17352
17353 1998-11-25 Jesse Thilo <jthilo@gnu.org>
17354
17355 * doc/bison.texinfo: Clean up some formatting.
17356
17357 1998-05-05 Richard Stallman <rms@gnu.org>
17358
17359 * doc/bison.texinfo:
17360 Explain better why to make a pure parser.
17361
17362 1998-01-05 Richard Stallman <rms@gnu.org>
17363
17364 * src/files.c (openfiles):
17365 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
17366 find a temporary directory, if possible. Do not unlink files while
17367 they are open.
17368
17369 1997-08-25 Richard Stallman <rms@gnu.org>
17370
17371 * src/reader.c (stack_offset;):
17372 Change some warni to warns.
17373
17374 * src/lex.c (literalchar): Use warns, not warni.
17375
17376 1997-06-28 Richard Stallman <rms@gnu.org>
17377
17378 * src/bison.s1: Add a Bison version comment.
17379
17380 * src/main.c (fatal, warn, berror):
17381 Use program_name.
17382
17383 1997-06-28 Richard Stallman <rms@gnu.org>
17384
17385 * Makefile.in (bison_version): New variable.
17386 (dist): Use that variable.
17387 (bison.s1): Substitute the Bison version into bison.simple.
17388
17389 * bison.simple: Add a Bison version comment.
17390
17391 1997-06-18 Richard Stallman <rms@gnu.org>
17392
17393 * src/main.c (fatal, warn, berror):
17394 Make error messages standard.
17395 (toomany): Improve error message text.
17396
17397 * 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:
17398 new.h renamed to alloc.h.
17399
17400 1997-06-18 Richard Stallman <rms@gnu.org>
17401
17402 * Makefile.in: new.h renamed to alloc.h.
17403
17404 1997-05-24 Richard Stallman <rms@gnu.org>
17405
17406 * src/lex.c (literalchar):
17407 Fix the code for escaping \, " and '.
17408
17409 (lex): Avoid trouble when there are many chars
17410 to discard in a char literal with just several chars in it.
17411
17412 1997-05-17 Richard Stallman <rms@gnu.org>
17413
17414 * src/bison.s1:
17415 Use malloc, if using alloca is troublesome.
17416 (YYSTACK_USE_ALLOCA): New flag macro.
17417 Define it for some systems and compilers.
17418 (YYSTACK_ALLOC): New macro.
17419 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17420 If it was malloc'd, free it.
17421
17422 1997-05-17 Richard Stallman <rms@gnu.org>
17423
17424 * bison.simple:
17425 Use malloc, if using alloca is troublesome.
17426 (YYSTACK_USE_ALLOCA): New flag macro.
17427 Define it for some systems and compilers.
17428 (YYSTACK_ALLOC): New macro.
17429 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17430 If it was malloc'd, free it.
17431
17432 1997-04-23 Richard Stallman <rms@gnu.org>
17433
17434 * src/bison.s1:
17435 (alloca) [__hpux]: Always define as __builtin_alloca.
17436
17437 1997-04-23 Richard Stallman <rms@gnu.org>
17438
17439 * bison.simple:
17440 (alloca) [__hpux]: Always define as __builtin_alloca.
17441
17442 1997-04-22 Richard Stallman <rms@gnu.org>
17443
17444 * src/bison.s1:
17445 [__hpux]: Include alloca.h (right for HPUX 10)
17446 instead of declaring alloca (right for HPUX 9).
17447
17448 * src/bison.s1 (__yy_memcpy):
17449 Declare arg `count' as unsigned int.
17450 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17451
17452 1997-04-22 Richard Stallman <rms@gnu.org>
17453
17454 * bison.simple:
17455 [__hpux]: Include alloca.h (right for HPUX 10)
17456 instead of declaring alloca (right for HPUX 9).
17457
17458 * bison.simple (__yy_memcpy):
17459 Declare arg `count' as unsigned int.
17460 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17461
17462 1997-01-03 Richard Stallman <rms@gnu.org>
17463
17464 * src/allocate.c: [__STDC__ or _MSC_VER]:
17465 Declare calloc and realloc to return void *.
17466
17467 1997-01-02 Richard Stallman <rms@gnu.org>
17468
17469 * src/system.h:
17470 [_MSC_VER]: Include stdlib.h and process.h.
17471 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
17472
17473 * src/main.c (main): Return FAILURE as a value.
17474 (printable_version): Declare arg as int, not char.
17475
17476 1997-01-02 Richard Stallman <rms@gnu.org>
17477
17478 * Makefile.in (dist):
17479 Explicitly check for symlinks, and copy them.
17480
17481 1996-12-19 Richard Stallman <rms@gnu.org>
17482
17483 * src/files.c:
17484 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
17485
17486 1996-12-18 Paul Eggert <eggert@gnu.org>
17487
17488 * src/bison.s1 (yyparse):
17489 If __GNUC__ and YYPARSE_PARAM are both defined,
17490 declare yyparse to have a void * argument.
17491
17492 1996-12-18 Paul Eggert <eggert@gnu.org>
17493
17494 * bison.simple (yyparse):
17495 If __GNUC__ and YYPARSE_PARAM are both defined,
17496 declare yyparse to have a void * argument.
17497
17498 1996-12-17 Richard Stallman <rms@gnu.org>
17499
17500 * src/reduce.c (nbits): Add some casts.
17501
17502 1996-08-12 Richard Stallman <rms@gnu.org>
17503
17504 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
17505
17506 1996-08-12 Richard Stallman <rms@gnu.org>
17507
17508 * bison.simple: Test _MSDOS as well as _MSDOS_.
17509
17510 1996-07-31 Richard Stallman <rms@gnu.org>
17511
17512 * src/bison.s1:
17513 [__sun && __i386]: Include alloca.h.
17514
17515 1996-07-31 Richard Stallman <rms@gnu.org>
17516
17517 * bison.simple:
17518 [__sun && __i386]: Include alloca.h.
17519
17520 1996-07-30 Richard Stallman <rms@gnu.org>
17521
17522 * src/bison.s1: Comment change.
17523
17524 * src/bison.s1: Test _MSDOS_, not MSDOS.
17525
17526 1996-07-30 Richard Stallman <rms@gnu.org>
17527
17528 * bison.simple: Comment change.
17529
17530 * bison.simple: Test _MSDOS_, not MSDOS.
17531
17532 1996-06-01 Richard Stallman <rms@gnu.org>
17533
17534 * 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:
17535 Insert `_' macro around many string constants.
17536
17537 * src/main.c:
17538 Insert `_' macro around many string constants.
17539
17540 (main): Call setlocale, bindtextdomain and textdomain.
17541
17542 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
17543 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
17544 [ENABLE_NLS]: Include libintl.h.
17545 [ENABLE_NLS] (gettext): Define.
17546 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
17547 (N_, PACKAGE, LOCALEDIR): New macros.
17548
17549 1996-06-01 Richard Stallman <rms@gnu.org>
17550
17551 * POTFILES.in: New file.
17552
17553 * Makefile.in (allocate.o):
17554 Define target explicitly.
17555
17556 * Makefile.in (CFLAGS): Set to @CFLAGS@.
17557 (LDFLAGS): Set to @LDFLAGS@.
17558 (configure): Run autoconf only if preceding `cd' succeeds.
17559 (bison.s1): Redirect output to temporary file then move the
17560 temporary to the target, rather than redirecting directly to bison.s1.
17561 (clean): Remove config.status and config.log.
17562 (distclean): Don't remove config.status here.
17563
17564 1996-05-12 Richard Stallman <rms@gnu.org>
17565
17566 * src/bison.s1:
17567 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17568
17569 1996-05-12 Richard Stallman <rms@gnu.org>
17570
17571 * bison.simple:
17572 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17573
17574 1996-05-11 Richard Stallman <rms@gnu.org>
17575
17576 * src/bison.s1 (__yy_memcpy):
17577 Really reorder the args, as was supposedly done on Feb 14 1995.
17578 (yyparse): Calls changed accordingly.
17579
17580 1996-05-11 Richard Stallman <rms@gnu.org>
17581
17582 * Makefile.in (dist): Don't use $(srcdir).
17583
17584 * bison.simple (__yy_memcpy):
17585 Really reorder the args, as was supposedly done on Feb 14 1995.
17586 (yyparse): Calls changed accordingly.
17587
17588 1996-01-27 Richard Stallman <rms@gnu.org>
17589
17590 * src/output.c (output_rule_data):
17591 Test YYERROR_VERBOSE in the conditional
17592 around the definition of ttyname.
17593
17594 1995-12-29 Richard Stallman <rms@gnu.org>
17595
17596 * src/bison.s1:
17597 Fix line numbers in #line commands.
17598
17599 1995-12-29 Richard Stallman <rms@gnu.org>
17600
17601 * bison.simple:
17602 Fix line numbers in #line commands.
17603
17604 1995-12-27 Richard Stallman <rms@gnu.org>
17605
17606 * src/bison.s1 (YYPARSE_PARAM_DECL):
17607 In C++, make it always null.
17608 (YYPARSE_PARAM_ARG): New macro.
17609 (yyparse): Use YYPARSE_PARAM_ARG.
17610
17611 1995-12-27 Richard Stallman <rms@gnu.org>
17612
17613 * bison.simple (YYPARSE_PARAM_DECL):
17614 In C++, make it always null.
17615 (YYPARSE_PARAM_ARG): New macro.
17616 (yyparse): Use YYPARSE_PARAM_ARG.
17617
17618 1995-11-29 Richard Stallman <rms@gnu.org>
17619
17620 * doc/bison.texinfo:
17621 Describe literal string tokens, %raw, %no_lines, %token_table.
17622
17623 1995-11-29 Daniel Hagerty <hag@gnu.org>
17624
17625 * doc/bison.texinfo: Fixed update date
17626
17627 1995-10-16 Richard Stallman <rms@gnu.org>
17628
17629 * src/version.c: Version 1.25.
17630
17631 1995-10-16 Richard Stallman <rms@gnu.org>
17632
17633 * NEWS: *** empty log message ***
17634
17635 1995-10-16 Richard Stallman <rms@gnu.org>
17636
17637 * doc/bison.1, doc/bison.rnh:
17638 Add new options.
17639
17640 1995-10-15 Richard Stallman <rms@gnu.org>
17641
17642 * src/vmsgetargs.c, src/getargs.c:
17643 Added -n, -k, and -raw switches.
17644 (noparserflag, toknumflag, rawtoknumflag): New variables.
17645
17646 * src/symtab.h (SALIAS):
17647 New #define for adding aliases to %token.
17648 (struct bucket): Added `alias' field.
17649
17650 * src/reduce.c (reduce_grammar):
17651 Revise error message.
17652 (print_notices): Remove final `.' from error message.
17653
17654 * src/reader.c (reader_output_yylsp):
17655 New function.
17656 (readgram): Use `#if 0' around code that accepted %command
17657 inside grammar rules: The documentation doesn't allow it,
17658 and it will fail since the %command processors scan for the next %.
17659 (parse_token_decl): Extended the %token
17660 declaration to allow a multi-character symbol as an alias.
17661 (parse_thong_decl): New function.
17662 (read_declarations): Added %thong declarations.
17663 (read_declarations): Handle NOOP to deal with allowing
17664 % declarations as another means to specify the flags.
17665 (readgram): Allow %prec prior to semantics embedded in a rule.
17666 (skip_to_char, read_declarations, copy_definition)
17667 (parse_token_decl, parse_start_decl, parse_type_decl)
17668 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
17669 (get_type_name, copy_guard, copy_action, readgram)
17670 (get_type, packsymbols): Revised most error messages.
17671 Changed `fatal' to `warnxxx' to avoid aborting for error.
17672 Revised and use multiple warnxxx functions to avoid using VARARGS1.
17673 (read_declarations): Improve the error message for
17674 an invalid character. Do not abort.
17675 (read_declarations, copy_guard, copy_action): Use
17676 printable_version to avoid unprintable characters in printed output.
17677 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
17678 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
17679 Allow the type of a non-terminal can be given
17680 more than once, as long as all specifications give the same type.
17681
17682 * src/output.c:
17683 (output_headers, output_trailers, output, output_gram)
17684 (output_rule_data): Implement noparserflag variable.
17685 Implement toknumflag variable.
17686 (output): Call reader_output_yylsp to output LTYPESTR.
17687
17688 * src/main.c (main):
17689 If reader sees an error, don't process the grammar.
17690 (fatals): Updated to not use VARARGS1.
17691 (printable_version, int_to_string, warn, warni, warns, warnss)
17692 (warnsss): New error reporting functions. Avoid abort for error.
17693
17694 * src/lex.h:
17695 Added THONG and NOOP for alias processing.
17696 Added SETOPT for the new code that allows setting options with %flags.
17697
17698 * src/lex.c:
17699 Include getopt.h. Add some extern decls.
17700 (safegetc): New function to deal with EOF gracefully.
17701 (literalchar); new function to deal with reading \ escapes.
17702 (lex): Use literalchar.
17703 (lex): Implemented "..." tokens.
17704 (literalchar, lex, parse_percent_token): Made tokenbuffer
17705 always contain the token. This includes growing the token
17706 buffer while reading an integer.
17707 (parse_percent_token): Replaced if-else statement with percent_table.
17708 (parse_percent_token): Added % declarations as another
17709 way to specify the flags -n, -l, and -r. Also added hooks for
17710 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
17711 major changes to files.c.
17712 (lex) Retain in the incoming stream a character following
17713 an incorrect '/'.
17714 (skip_white_space, lex): Revised most error messages
17715 and changed fatal to warn to avoid aborting.
17716 (percent_table): Added %thong declarations.
17717
17718 * src/gram.h: Comment changes.
17719
17720 * src/files.c (openfiles, open_extra_files, done):
17721 Add faction flag
17722 and actfile file. Handle noparserflag. Both for -n switch.
17723
17724 * src/conflicts.c (resolve_sr_conflict):
17725 Remove use of alloca.
17726
17727 1995-06-01 Jim Meyering <meyering@gnu.org>
17728
17729 * doc/bison.texinfo: *** empty log message ***
17730
17731 1995-05-06 Richard Stallman <rms@gnu.org>
17732
17733 * src/bison.s1: Comment change.
17734
17735 1995-05-06 Richard Stallman <rms@gnu.org>
17736
17737 * bison.simple: Comment change.
17738
17739 1995-05-03 Richard Stallman <rms@gnu.org>
17740
17741 * src/version.c: Version now 1.24.
17742
17743 * src/bison.s1: Change distribution terms.
17744
17745 * src/version.c: Version now 1.23.
17746
17747 1995-05-03 Richard Stallman <rms@gnu.org>
17748
17749 * doc/bison.texinfo:
17750 Rewrite "Conditions for Using Bison".
17751 Update version to 1.24.
17752
17753 1995-05-03 Richard Stallman <rms@gnu.org>
17754
17755 * bison.simple: Change distribution terms.
17756
17757 1995-02-23 Richard Stallman <rms@gnu.org>
17758
17759 * src/files.c: Test __VMS_POSIX as well as VMS.
17760
17761 1995-02-14 Jim Meyering <meyering@gnu.org>
17762
17763 * src/bison.s1 (__yy_memcpy):
17764 Renamed from __yy_bcopy to avoid
17765 confusion. Reverse FROM and TO arguments to be consistent with
17766 those of memcpy.
17767
17768 1995-02-14 Jim Meyering <meyering@gnu.org>
17769
17770 * bison.simple (__yy_memcpy):
17771 Renamed from __yy_bcopy to avoid
17772 confusion. Reverse FROM and TO arguments to be consistent with
17773 those of memcpy.
17774
17775 1994-11-10 David J. MacKenzie <djm@gnu.org>
17776
17777 * NEWS: reformat
17778
17779 * NEWS: New file.
17780
17781 * Makefile.in (DISTFILES): Include NEWS.
17782
17783 * Makefile.in (DISTFILES):
17784 Include install-sh, not install.sh.
17785
17786 * configure.in: Update to Autoconf v2 macro names.
17787
17788 1994-10-05 David J. MacKenzie <djm@gnu.org>
17789
17790 * Makefile.in: fix typo
17791
17792 * Makefile.in (prefix, exec_prefix):
17793 Let configure set them.
17794
17795 1994-09-28 David J. MacKenzie <djm@gnu.org>
17796
17797 * Makefile.in: Set datadir to $(prefix)/share.
17798
17799 1994-09-15 Richard Stallman <rms@gnu.org>
17800
17801 * src/bison.s1:
17802 Update copyright notice and GPL version.
17803
17804 1994-09-15 Richard Stallman <rms@gnu.org>
17805
17806 * bison.simple:
17807 Update copyright notice and GPL version.
17808
17809 1994-07-12 Richard Stallman <rms@gnu.org>
17810
17811 * src/reduce.c, src/reader.c:
17812 entered into RCS
17813
17814 1994-05-05 David J. MacKenzie <djm@gnu.org>
17815
17816 * Makefile.in: entered into RCS
17817
17818 1994-03-26 Richard Stallman <rms@gnu.org>
17819
17820 * src/bison.s1: entered into RCS
17821
17822 1994-03-26 Richard Stallman <rms@gnu.org>
17823
17824 * bison.simple: entered into RCS
17825
17826 1994-03-25 Richard Stallman <rms@gnu.org>
17827
17828 * src/main.c: entered into RCS
17829
17830 1994-03-24 Richard Stallman <rms@gnu.org>
17831
17832 * src/conflicts.c: entered into RCS
17833
17834 1994-01-02 Richard Stallman <rms@gnu.org>
17835
17836 * Makefile.in: *** empty log message ***
17837
17838 1993-11-21 Richard Stallman <rms@gnu.org>
17839
17840 * src/bison.s1: *** empty log message ***
17841
17842 1993-11-21 Richard Stallman <rms@gnu.org>
17843
17844 * doc/bison.texinfo: entered into RCS
17845
17846 * doc/bison.texinfo: *** empty log message ***
17847
17848 1993-11-21 Richard Stallman <rms@gnu.org>
17849
17850 * bison.simple: *** empty log message ***
17851
17852 1993-10-25 David J. MacKenzie <djm@gnu.org>
17853
17854 * doc/bison.texinfo: *** empty log message ***
17855
17856 1993-10-19 Richard Stallman <rms@gnu.org>
17857
17858 * src/bison.s1: *** empty log message ***
17859
17860 1993-10-19 Richard Stallman <rms@gnu.org>
17861
17862 * bison.simple: *** empty log message ***
17863
17864 1993-10-14 Richard Stallman <rms@gnu.org>
17865
17866 * src/bison.s1: *** empty log message ***
17867
17868 1993-10-14 Richard Stallman <rms@gnu.org>
17869
17870 * bison.simple: *** empty log message ***
17871
17872 1993-09-14 David J. MacKenzie <djm@gnu.org>
17873
17874 * doc/bison.texinfo: *** empty log message ***
17875
17876 1993-09-13 Noah Friedman <friedman@gnu.org>
17877
17878 * Makefile.in: *** empty log message ***
17879
17880 1993-09-10 Richard Stallman <rms@gnu.org>
17881
17882 * src/conflicts.c: *** empty log message ***
17883
17884 * src/system.h: entered into RCS
17885
17886 1993-09-10 Richard Stallman <rms@gnu.org>
17887
17888 * doc/bison.1: entered into RCS
17889
17890 1993-09-06 Noah Friedman <friedman@gnu.org>
17891
17892 * src/version.c: entered into RCS
17893
17894 1993-09-06 Noah Friedman <friedman@gnu.org>
17895
17896 * Makefile.in: *** empty log message ***
17897
17898 1993-07-30 David J. MacKenzie <djm@gnu.org>
17899
17900 * Makefile.in: *** empty log message ***
17901
17902 1993-07-24 Richard Stallman <rms@gnu.org>
17903
17904 * src/bison.s1: *** empty log message ***
17905
17906 1993-07-24 Richard Stallman <rms@gnu.org>
17907
17908 * bison.simple: *** empty log message ***
17909
17910 1993-07-08 David J. MacKenzie <djm@gnu.org>
17911
17912 * Makefile.in: *** empty log message ***
17913
17914 1993-07-04 Richard Stallman <rms@gnu.org>
17915
17916 * src/bison.s1: *** empty log message ***
17917
17918 1993-07-04 Richard Stallman <rms@gnu.org>
17919
17920 * bison.simple: *** empty log message ***
17921
17922 1993-06-26 David J. MacKenzie <djm@gnu.org>
17923
17924 * src/getargs.c: entered into RCS
17925
17926 1993-06-26 David J. MacKenzie <djm@gnu.org>
17927
17928 * doc/bison.texinfo: *** empty log message ***
17929
17930 * doc/bison.1: New file.
17931
17932 1993-06-25 Richard Stallman <rms@gnu.org>
17933
17934 * src/getargs.c: New file.
17935
17936 1993-06-16 Richard Stallman <rms@gnu.org>
17937
17938 * src/bison.s1: *** empty log message ***
17939
17940 1993-06-16 Richard Stallman <rms@gnu.org>
17941
17942 * bison.simple: *** empty log message ***
17943
17944 1993-06-03 Richard Stallman <rms@gnu.org>
17945
17946 * src/bison.s1: New file.
17947
17948 1993-06-03 Richard Stallman <rms@gnu.org>
17949
17950 * doc/bison.texinfo: *** empty log message ***
17951
17952 1993-06-03 Richard Stallman <rms@gnu.org>
17953
17954 * bison.simple: New file.
17955
17956 1993-05-19 Richard Stallman <rms@gnu.org>
17957
17958 * doc/bison.texinfo: New file.
17959
17960 1993-05-07 Noah Friedman <friedman@gnu.org>
17961
17962 * Makefile.in: *** empty log message ***
17963
17964 1993-04-28 Noah Friedman <friedman@gnu.org>
17965
17966 * src/reader.c: *** empty log message ***
17967
17968 1993-04-23 Noah Friedman <friedman@gnu.org>
17969
17970 * src/alloc.h: entered into RCS
17971
17972 1993-04-20 David J. MacKenzie <djm@gnu.org>
17973
17974 * src/version.c: *** empty log message ***
17975
17976 * src/files.c, src/allocate.c:
17977 entered into RCS
17978
17979 * src/reader.c: *** empty log message ***
17980
17981 * src/lex.c: entered into RCS
17982
17983 * src/conflicts.c: New file.
17984
17985 * src/symtab.c: entered into RCS
17986
17987 * src/alloc.h: New file.
17988
17989 * src/LR0.c: entered into RCS
17990
17991 1993-04-18 Noah Friedman <friedman@gnu.org>
17992
17993 * src/reader.c: New file.
17994
17995 * src/version.c: *** empty log message ***
17996
17997 1993-04-18 Noah Friedman <friedman@gnu.org>
17998
17999 * Makefile.in: *** empty log message ***
18000
18001 1993-04-17 Noah Friedman <friedman@gnu.org>
18002
18003 * Makefile.in: *** empty log message ***
18004
18005 1993-04-15 Richard Stallman <rms@gnu.org>
18006
18007 * src/main.c, src/files.c:
18008 New file.
18009
18010 1993-04-15 Noah Friedman <friedman@gnu.org>
18011
18012 * configure.in: entered into RCS
18013
18014 * configure.in: *** empty log message ***
18015
18016 * configure.in: New file.
18017
18018 1993-04-14 Richard Stallman <rms@gnu.org>
18019
18020 * Makefile.in: New file.
18021
18022 1993-04-13 Richard Stallman <rms@gnu.org>
18023
18024 * src/version.c: New file.
18025
18026 1993-03-25 Richard Stallman <rms@gnu.org>
18027
18028 * src/output.c: entered into RCS
18029
18030 1992-09-25 Richard Stallman <rms@gnu.org>
18031
18032 * configure.bat: entered into RCS
18033
18034 1992-06-22 Richard Stallman <rms@gnu.org>
18035
18036 * src/vmsgetargs.c: entered into RCS
18037
18038 1992-06-22 Richard Stallman <rms@gnu.org>
18039
18040 * doc/bison.rnh: entered into RCS
18041
18042 1992-04-20 David J. MacKenzie <djm@gnu.org>
18043
18044 * README: entered into RCS
18045
18046 1992-01-22 Richard Stallman <rms@gnu.org>
18047
18048 * src/machine.h: entered into RCS
18049
18050 1991-12-21 Richard Stallman <rms@gnu.org>
18051
18052 * src/lalr.c, src/closure.c:
18053 entered into RCS
18054
18055 1991-12-20 Richard Stallman <rms@gnu.org>
18056
18057 * src/state.h: entered into RCS
18058
18059 1991-12-18 Richard Stallman <rms@gnu.org>
18060
18061 * src/print.c, src/nullable.c, src/derives.c:
18062 entered into RCS
18063
18064 1991-11-03 David J. MacKenzie <djm@gnu.org>
18065
18066 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
18067 entered into RCS
18068
18069 1988-09-09 Richard Stallman <rms@gnu.org>
18070
18071 * src/bison.hairy: entered into RCS
18072
18073 1987-12-16 Richard Stallman <rms@gnu.org>
18074
18075 * REFERENCES: entered into RCS
18076
18077
18078 -----
18079
18080 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
18081 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
18082 Software Foundation, Inc.
18083
18084 Copying and distribution of this file, with or without
18085 modification, are permitted provided the copyright notice and this
18086 notice are preserved.
18087
18088 $Id$