]> git.saurik.com Git - bison.git/blob - ChangeLog
Fix memory leaks in scanners generated by at least Flex 2.5.9 and
[bison.git] / ChangeLog
1 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4 later. Reported by Paul Eggert in
5 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7 * src/scan-code.l (translate_action): Don't bother invoking
8 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
9 (code_scanner_free): Instead of invoking
10 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
11 which frees more.
12 * src/scan-gram.l (gram_scanner_free): Likewise.
13 * src/scan-skel.l (scan_skel): Likewise.
14
15 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
16
17 * src/files.c (tr): Change return type to void.
18 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
19 has been called previously for the same key.
20 (muscle_find): Return storage instead of value so that
21 --enable-gcc-warnings doesn't produce warnings that the return discards
22 const. aver that the value and storage are the same since storage
23 could potentially be NULL when value is not.
24 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
25 same as 0.
26
27 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
28
29 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
30 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
31 us a slightly cleaner distribution, and also works.
32 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
33 gnulib changes.
34
35 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
36 and Paul Eggert <eggert@cs.ucla.edu>
37
38 Don't let Bison leak memory except when it complains.
39 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
40 (spec_defines_file, dir_prefix): Now char *, not const char *,
41 since they are freed.
42 * src/files.c: Likewise.
43 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
44 Likewise.
45 (tr): Now operates in-place. All uses changed.
46 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
47 values.
48 (compute_file_name_parts, compute_output_file_names): Don't store
49 read-only data in variables that will be freed.
50 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
51 src_extension, and header_extension.
52 (output_file_names_free): New public function to free
53 spec_verbose_file, spec_graph_file, spec_defines_file,
54 parser_file_name, and dir_prefix.
55 * src/getargs.c (getargs): Don't store read-only data in variables that
56 will be freed.
57 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
58 (which previously existed but was unused), and quotearg_free.
59 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
60 * src/muscle_tab.c: Likewise.
61 (muscle_entry): Make the value char const *,
62 and add a new storage member that is char * and can be freed.
63 (muscle_entry_free): New private function.
64 (muscle_init): Use it instead of free.
65 (muscle_insert, muscle_grow): Update and use new storage member.
66 (muscle_code_grow): Free the string passed to muscle_grow
67 since it's not needed anymore.
68 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
69 add a new `char *code' member.
70 ("{...}"): Declare semantic type as code.
71 * src/scan-code.h (translate_rule_action):
72 (translate_symbol_action, translate_code, translate_action): Return
73 `char const *' rather than `char *' since external code should not free
74 these strings.
75 * src/scan-code.l: Likewise.
76 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
77 which is "{...}" in the parser.
78 * tests/Makefile.am (maintainer-check-valgrind): Set
79 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
80 Valgrind.
81 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
82 complain.
83 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
84 expecting a non-zero exit status sets --leak-check=summary and
85 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
86 this case, and we don't want to hear about it.
87
88 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
89
90 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
91 instead of from the template, to simplify configuration a bit.
92 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
93 and m4/wint_t.m4, as they are needed with the latest gnulib.
94
95 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
96
97 Disable unset/unused mid-rule value warnings by default, and recognize
98 --warnings=midrule-values to enable them. Discussed starting at
99 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
100 * NEWS (2.3a+): Mention.
101 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
102 warnings): Add entry for midrule-values subargument.
103 * src/reader.c (symbol_should_be_used): Don't return true just because
104 the value is a set/used mid-rule value unless
105 --warnings=midrule-values was specified.
106 * tests/input.at (Unused values, Unused values before symbol
107 declarations): Run tests with and without --warnings=midrule-values.
108
109 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
110 than LIST_FREE directly.
111
112 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
113
114 Finish implementing --warnings=error, which should not be implied by
115 --warnings=all (or by its synonyms -W and --warnings without
116 subarguments).
117 * src/complain.c (set_warning_issued): New function to report that
118 warnings are being treated as errors and to record an error if so.
119 Invoke...
120 (warn_at, warn): ... here.
121 * src/getargs.c (warnings_args, warnings_types): Reorder so that
122 "error - warnings are errors" does not appear above "all - all of the
123 above".
124 (getargs): For -W and --warnings without subarguments, don't let
125 FLAGS_ARGMATCH set warnings_error in warnings_flag.
126 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
127
128 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
129
130 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
131 empty subargument list. For example: `bison --warnings= parser.y'.
132
133 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
134
135 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
136 the parser header file so that gcc doesn't warn.
137
138 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
139
140 Split the default %destructor/%printer into two kinds: <*> and <!>.
141 Discussed starting at
142 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
143 * NEWS (2.3a+): Mention.
144 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
145 previous change today related to mid-rules.
146 (Bison Symbols): Remove %symbol-default and add <*> and <!>.
147 * src/parser-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
148 (TYPE_TAG_ANY): Add as <*>.
149 (TYPE_TAG_NONE): Add as <!>.
150 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
151 for <*> and <!>.
152 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
153 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
154 * src/symlist.c (symbol_list_default_new): Split into tagged and
155 tagless versions.
156 (symbol_list_destructor_set, symbol_list_printer_set): Split
157 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
158 SYMLIST_DEFAULT_TAGLESS.
159 * src/symlist.h: Update symbol_list_default*_new prototypes.
160 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
161 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
162 * src/symtab.c (default_destructor, default_destructor_location,
163 default_printer, default_printer_location): Split each into tagged and
164 tagless versions.
165 (symbol_destructor_get, symbol_destructor_location_get,
166 symbol_printer_get, symbol_printer_location_get): Implement tagged
167 default and tagless default cases.
168 (default_destructor_set, default_printer_set): Split each into tagged
169 and tagless versions.
170 * src/symtab.h: Update prototypes.
171 * tests/actions.at (Default %printer and %destructor): Rename to...
172 (Default tagless %printer and %destructor): ... this, and extend.
173 (Per-type %printer and %destructor): Rename to...
174 (Default tagged and per-type %printer and %destructor): ... this, and
175 extend.
176 (Default %printer and %destructor for user-defined end token): Extend.
177 (Default %printer and %destructor are not for error or $undefined):
178 Update.
179 (Default %printer and %destructor are not for $accept): Update.
180 (Default %printer and %destructor for mid-rule values): Extend.
181 * tests/input.at (Default %printer and %destructor redeclared): Extend.
182 (Unused values with default %destructor): Extend.
183
184 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
185
186 Don't apply the default %destructor/%printer to an unreferenced midrule
187 value. Mentioned at
188 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
189 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
190 like $@n instead of just @n so that the default %destructor/%printer
191 logic doesn't see them as user-defined symbols.
192 (symbol_is_dummy): Check for both forms of the name.
193 * src/reader.c (packgram): Remove the `$' from each midrule symbol
194 name for which the midrule value is referenced in any action.
195 * tests/actions.at (Default %printer and %destructor for mid-rule
196 values): New test.
197 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
198 for change to dummy symbol names.
199
200 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
201
202 Warn about unset midrule $$ if the corresponding $n is used.
203 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
204 $n usage.
205 (packgram): Before invoking grammar_rule_check on any rule, make sure
206 all actions have already been scanned in order to set `used' flags.
207 Otherwise, checking that a midrule's $$ is set will not always work
208 properly because the midrule check must forward-reference the midrule's
209 parent rule.
210 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
211 warning.
212
213 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
214
215 More improvements to the documentation of the prologue alternatives:
216 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
217 Bison manual.
218 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
219 some text to clarify the relative importance of the new directives and
220 to show how these directives may be viewed as code labels.
221
222 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
223
224 Similar to the recently removed %before-header, add %code-top as the
225 alternative to the pre-prologue. Mentioned at
226 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
227 Also, let the prologue alternatives appear in the grammar section.
228 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
229 (prologue_declaration): Move the existing prologue alternatives to...
230 (grammar_declaration): ... here and add %code-top.
231 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
232
233 Clean up and extend documentation for the prologue alternatives.
234 * NEWS (2.3a+): Describe prologue alternatives.
235 * doc/bison.texinfo (Prologue): Move discussion of prologue
236 alternatives to...
237 (Prologue Alternatives): ... this new section, and extend it to discuss
238 all 4 directives in detail.
239 (Bison Symbols): Clean up discussion of prologue alternatives and add
240 %code-top.
241
242 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
243
244 DJGPP specific issues.
245
246 * djgpp/config.bat: config.hin has been moved to lib. Adjust
247 config.bat accordingly.
248 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
249 * djgpp/config.site: Likewise.
250
251 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
252
253 Replace %*-header with %provides, %requires, %code. See discussion at
254 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
255
256 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
257 (b4_user_start_header): Remove.
258 * data/glr.c: Use new macros instead of b4_*start_header
259 and b4_*end_header.
260 * data/glr.cc: Likewise.
261 * data/lalr1.cc: Likewise.
262 * data/push.c: Likewise.
263 * data/yacc.c: Likewise.
264
265 * doc/bison.texinfo: Remove %before-header, rename
266 %{start,end,after}-header to %requires, %provides, %code.
267
268 * src/parse-gram.y: Likewise (also rename token names accordingly).
269 * src/scan-gram.l: Likewise.
270 * tests/actions.at: Likewise.
271
272 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
273
274 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
275 Problem reported by Joel E. Denny.
276
277 2006-10-14 Jim Meyering <jim@meyering.net>
278
279 (Sync from coreutils.)
280 Work also when the working directory (with e.g. coreutils sources)
281 is version controlled with git, rather than CVS.
282 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
283 rather than CVS.
284 In messages and comments, say e.g., "checked-out sources",
285 rather than "CVS sources".
286 (version_controlled_file): New function. Work for git as well as
287 for CVS. Don't use grep's -q option.
288 (slurp): Call it here, in place of CVS-specific code.
289
290 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
291
292 Fix testsuite for ./configure --enable-gcc-warnings:
293 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
294 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
295 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
296 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
297 * test/regression.at (Diagnostic that expects two alternatives):
298 Likewise.
299
300 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
301
302 * bootstrap.conf (gnulib_modules): Add config-h.
303 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
304 worry about HAVE_CONFIG_H.
305 * lib/abitset.c: Likewise.
306 * lib/bitset.c: Likewise.
307 * lib/bitset_stats.c: Likewise.
308 * lib/bitsetv-print.c: Likewise.
309 * lib/bitsetv.c: Likewise.
310 * lib/ebitset.c: Likewise.
311 * lib/get-errno.c: Likewise.
312 * lib/lbitset.c: Likewise.
313 * lib/subpipe.c: Likewise.
314 * lib/timevar.c: Likewise.
315 * lib/vbitset.c: Likewise.
316 * lib/bitset.c: Include "bitset.h" first, to test interface.
317 * lib/bitset_stats.c: Include "bitset_stats.h" first.
318 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
319 * lib/bitsetv.c: Include "bitsetv.h" first.
320 * lib/get-errno.c: Include "get-errno.h" first.
321 * m4/.cvsignore: Add config-h.m4.
322 * tests/actions.at (Default %printer and %destructor for ...):
323 Adjust expected line numbers in output to reflect removal of #if
324 HAVE_CONFIG_H lines.
325 * tests/glr-regression.at (Missed %merge type warnings when ...):
326 Likewise.
327 * tests/regression.at (Braced code in declaration in rules section):
328 Likewise.
329 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
330 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
331 Include <config.h> unconditionally.
332
333 * bootstrap: Sync from coreutils, as follows:
334
335 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
336
337 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
338 variable was sometimes used without being initialized. This
339 messed up the installation of the INSTALL file in some cases.
340
341 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
342
343 * bootstrap (usage, main program, symlink_to_gnulib): Add option
344 --copy. Inspired by a suggestion from Bruno Haible.
345
346 2006-10-03 Jim Meyering <jim@meyering.net>
347
348 * bootstrap: Undo last change to this file, since now gnulib-tool
349 sticks with the automake default in generating dependencies.
350
351 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
352
353 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
354 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
355
356 * doc/bison.1: Add copyright notice.
357
358 * data/glr.c: Don't include <stdarg.h>; not used.
359
360 * NEWS: The -g and --graph options now output graphs in Graphviz
361 DOT format, not VCG format.
362 * doc/bison.1: Likewise.
363 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
364 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
365 of this change in
366 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
367 * TODO: Remove Graphviz entry.
368 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
369 remove vcg.c, vcg.h, vcg_defaults.h.
370 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
371 * src/graphviz.c, src/graphviz.h: New files.
372 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
373 * src/files.h: Make comment more generic.
374 * src/main.c (main): Likewise.
375 * src/print_graph.h: Likewise.
376 * src/getargs.c (usage): Make usage description more generic.
377 * src/print_graph.c: Include graphviz.h rather than vcg.h.
378 (static_graph, fgraph): Remove. All uses changed to pass
379 arguments instead of sharing a static var.
380 (print_core, print_actions, print_state, print_graph):
381 Output graphviz format rather than VCG format.
382 * tests/.cvsignore: Remove *.vcg; add *.dot.
383 * tests/output.at: Expect *.dot files, not *.vcg files.
384
385 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
386 accommodates the 2006-10-08 change.
387
388 2006-10-11 Bob Rossi <bob@brasko.net>
389
390 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
391 (b4_yyssa, b4_yyerror_range): New macros.
392 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
393 (yypvarsinit): Remove init of removed fields.
394 (yypushparse): Remove use of removed fields; use new macros instead.
395
396 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
397
398 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
399 in a push parser. Reindent slightly to match yacc.c better.
400
401 2006-10-11 Bob Rossi <bob@brasko.net>
402
403 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
404 yymsg_alloc fields.
405 (yypvarsinit, yypushparse): Remove init of removed fields.
406 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
407
408 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
409
410 * THANKS: Add Paolo Bonzini and Bob Rossi.
411
412 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
413
414 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
415 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
416 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
417 b4_define_user_cde and uses): Remove.
418 (b4_comment, b4_prefix, b4_sync_start): New.
419 * data/bison.m4: New file, with most of the content removed from c.m4.
420 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
421 * src/output.c (output_skeleton): Pass bison.m4.
422 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
423 only if specified.
424
425 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
426
427 Fix test failure reported by Tom Lane in
428 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
429 and try to make such failures easier to catch in the future.
430 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
431 that's now the caller's responsibility.
432 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
433 Set yychar = YYEOF if it's negative.
434 * tests/actions.at (yylex): Abort if asked to read past EOF.
435 * tests/conflicts.at (yylex): Likewise.
436 * tests/cxx-type.at (yylex): Likewise.
437 * tests/glr-regression.at (yylex): Likewise.
438 * tests/input.at (yylex): Likewise.
439 * tests/regression.at (yylex): Likewise.
440 * tests/torture.at (yylex): Likewise.
441
442 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
443
444 Fix problems with translating English-language diagnostics.
445 * bootstrap: Fix bug introduced in recent bootstrap changes, with
446 respect to bison-runtime pot generation. The YY_ stuff
447 wasn't being captured.
448 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
449 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
450 * runtime-po/POTFILES.in: Add data/push.c.
451
452 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
453
454 Merge bootstrap changes from coreutils.
455
456 2006-09-28 Jim Meyering <jim@meyering.net>
457
458 Automatically generated dependencies are important even
459 when all of the sources in a directory come from gnulib.
460 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
461 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
462
463 2006-09-23 Jim Meyering <jim@meyering.net>
464
465 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
466
467 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
468
469 * bootstrap: Add support for --force.
470 (usage): New function. Describe usage less tersely.
471 (CVS_only_file): New var.
472
473 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
474
475 * data/push.c (YYPUSH_MORE): Make it an enum instead.
476 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
477 Adjust white space and comments to match GNU style better.
478
479 2006-09-20 Bob Rossi <bob@brasko.net>
480
481 * data/push.c (yyresult_get): Remove function.
482 (YYPUSH_MORE): Add #define.
483 (yypushparse): Modify return value.
484
485 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
486
487 * stamp-h.in: Remove; no longer needed.
488 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
489 Remove config.h, config.hin, intl (no longer created).
490 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
491 stamp-h1.
492
493 Sync bootstrap from coreutils, as follows:
494
495 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
496
497 * bootstrap (symlink_to_gnulib): New function.
498 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
499 to copies-of-gnulib.
500 (cp_mark_as_generated, slurp, gnulib_files):
501 Avoid making a copy if it's the same as the old version.
502 (gnulib_files): Add support for this variable (used by Bison).
503
504 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
505
506 * src/getargs.c (usage): Rework to use conventions similar to
507 coreutils, to make translation a bit easier and the code a bit
508 smaller. Problem reported by Tim Van Holder.
509
510 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
511
512 Use some of gnulib's new modules, taken from coreutils.
513
514 * bootstrap: Sync from coreutils, except add support for gnulib_files.
515 * bootstrap.conf: New file.
516 (gnulib_modules): Add configmake, inttypes, unistd.
517 (XGETTEXT_OPTIONS): Add complain, complain_at,
518 fatal, fatal_at, warn, warn_at, unexpected_end.
519 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
520 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
521 (gl_EARLY): Add.
522 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
523 (gl_INIT): Add
524 (GNULIB_AUTOCONF_SNIPPET): Remove.
525 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
526 the pickiest.
527 * lib/.cvsignore: Add inttypes_.h.
528 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
529 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
530 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
531 no-longer-necessary initializations.
532 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
533 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
534 use the unistd module.
535 * src/system.h: Likewise.
536 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
537 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
538 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
539 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
540 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
541 * src/system.h: Include inttypes.h unconditionally, now that we
542 use the inttypes module. Don't bother to include stdint.h, since
543 inttypes.h now does that for us.
544 (LOCALEDIR): Remove, now that we use the configmake module.
545 * src/getargs.c: Include configmake.h.
546 * src/main.c: Likewise.
547 * src/output.c: Likewise.
548 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
549 not from $abs_top_builddir, since config.h moved.
550
551
552 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
553 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
554
555 * src/parse-gram.y (symbol_declaration): Don't put statements
556 before declarations; it's not portable to C89.
557 * src/scan-code.l (handle_action_at): Likewise.
558
559 * src/scan-code.l: Always initialize braces_level; the old code
560 left it uninitialized and therefore had undefined behavior.
561
562 Don't attempt to redefine 'assert', since it runs afoul of
563 systems where standard headers (mistakenly) include <assert.h>.
564 Instead, define and use our own alternative, called 'aver'.
565 * src/reader.c: Don't include assert.h, since we no longer
566 use assert.
567 * src/scan-code.l: Likewise.
568 * src/system.h (assert): Remove, replacing with....
569 (aver): New function, taking a bool arg. All uses changed.
570 * src/tables.c (pack_vector): Ensure that aver arg is bool,
571 not merely an integer.
572
573 2006-09-15 Bob Rossi <bob@brasko.net>
574
575 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
576 * data/c.m4 (YYPUSH): New.
577 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
578 * src/getargs.c (push_parser): New var.
579 * src/getargs.h (push_parser): New declaration.
580 * src/output.c (prepare): Add macro insertion of `push_flag'.
581 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
582 (prologue_declaration): Parse %push-parser.
583 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
584 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
585 list of removed lines from the traces observed.
586 (AT_CHECK_CALC_LALR): Added push parser tests.
587
588 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
589
590 * NEWS: Version 2.3a.
591 * configure.ac (AC_INIT): Likewise.
592
593 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
594 "#define YYSTYPE int" that caused "make maintainer-check" to fail
595 due to header ordering dependencies. I don't know why the #define
596 was there.
597
598 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
599 runtime cost when YYDEBUG is not defined, and so that some tests
600 that used to fail now work. Problem and initial suggestion by
601 Paolo Bonzini.
602 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
603 * data/glr.cc (b4_parser_class_name):
604 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
605 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
606 (yydebug_) [YYDEBUG]: New member.
607 (yycdebug_): Now defined only if YYDEBUG.
608 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
609 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
610 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
611 if YYYDEBUG.
612 (debug_stream, set_debug_stream, debug_level, set_debug_level):
613 Define only if YYDEBUG.
614 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
615 set_debug_level.
616 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
617 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
618 AT_CHECK_CALC_GLR_CC that are working now.
619
620 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
621
622 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
623 We don't need them in glr.cc, and glr.c defines them.
624 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
625 assumes that defining it to anything is the same as defining
626 it to 1. Problem reported by Paolo Bonzini.
627
628 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
629
630 * data/c.m4 (b4_null, b4_case): Define.
631 * src/output.c (prepare_symbols): Use b4_null.
632 (user_actions_output): Use b4_case.
633
634 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
635
636 * data/glr.c (b4_shared_declarations): Put start-header first,
637 before any #includes that we generate, so that feature-test
638 macros work. Problem reported by Michael Deutschmann in
639 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
640 * data/lalr1.cc: Likewise.
641 * doc/bison.texinfo (Prologue): Document that feature-test macros
642 should be defined before any Bison declarations.
643 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
644 that depend on location.hh after, not before, Bison decls, since
645 we now include location.hh after the first user prologue.
646
647 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
648 Sander Brandenburg in
649 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
650 Also, fix minor white space and comment issues.
651 (Prologue): Mention that it's better to define feature-test macros
652 before Bison declarations. Problem reported by Michael Deutschmann.
653
654 * README-cvs: Fix typo: "&" should be "&&". Problem reported
655 by Jim Meyering.
656 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
657 This adjusts to recent gnulib changes.
658
659 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
660
661 Finish implementation of per-type %destructor/%printer. Discussed
662 starting at
663 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
664 and
665 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
666 * NEWS (2.3+): Add a description of this feature to the default
667 %destructor/%printer description.
668 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
669 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
670 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
671 list node contains a semantic type.
672 * src/symtab.c, src/symtab.h: Extend with a table that associates
673 semantic types with their %destructor's and %printer's.
674 (semantic_type_from_uniqstr, semantic_type_get,
675 semantic_type_destructor_set, semantic_type_printer_set): New functions
676 composing the public interface of that table.
677 (symbol_destructor_get, symbol_destructor_location_get,
678 symbol_printer_get, symbol_printer_location_get): If there's no
679 per-symbol %destructor/%printer, look up the per-type before trying
680 the default.
681 * tests/actions.at (Per-type %printer and %destructor): New test case.
682 * tests/input.at (Default %printer and %destructor redeclared):
683 Extend to check that multiple occurrences of %symbol-default in a
684 single %destructor/%printer declaration is an error.
685 (Per-type %printer and %destructor redeclared, Unused values with
686 per-type %destructor): New test cases.
687
688 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
689
690 Require default %destructor/%printer to be declared using
691 %symbol-default instead of an empty symbol list, and start working on
692 new per-type %destructor/%printer. Discussed at
693 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
694 * NEWS (2.3+): Add %symbol-default to example.
695 * bison.texinfo (Freeing Discarded Symbols): Likewise.
696 (Bison Symbols): Add entry for %symbol-default.
697 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
698 (generic_symlist, generic_symlist_item): New nonterminals for creating
699 a list in which each item is a symbol, semantic type, or
700 %symbol-default.
701 (grammar_declaration): Use generic_symlist in %destructor and %printer
702 declarations instead of symbols.1 or an empty list.
703 (symbol_declaration, precedence_declaration, symbols.1): Update actions
704 for changes to symbol_list.
705 * src/reader.c: Update for changes to symbol_list.
706 * src/scan-code.l: Likewise.
707 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
708 * src/symlist.c, src/symlist.h: Extend such that a list node may
709 represent a semantic type or a %symbol-default in addition to just an
710 ordinary symbol. Add switched functions for setting %destructor's and
711 %printer's.
712 * tests/actions.at, tests/input.at: Add %symbol-default to all default
713 %destructor/%printer declarations.
714
715 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
716
717 Whether the default %destructor/%printer applies to a particular symbol
718 isn't a question of whether the user *declares* that symbol (in %token,
719 for example). It's a question of whether the user by any means
720 *defines* the symbol at all (by simply using a char token, for
721 example). $end is defined by Bison whereas any other token with token
722 number 0 is defined by the user. The error token is always defined by
723 Bison regardless of whether the user declares it with %token, but we
724 may one day let the user define error as a nonterminal instead.
725 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
726 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
727 the meaning of "user-defined".
728 * tests/actions.at (Default %printer and %destructor for user-declared
729 end token): Rename to...
730 (Default %printer and %destructor for user-defined end token): ...
731 this.
732
733 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
734 computation of whether to apply the default, don't maintain a list of
735 every Bison-defined symbol. Instead, just check for a first character
736 of '$', which a user symbol cannot have, and check for the error token.
737
738 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
739
740 Don't apply the default %destructor or %printer to the error token,
741 $undefined, or $accept. This change fits the general rule that the
742 default %destructor and %printer are only for user-declared symbols,
743 and it solves several difficulties that are described in the new test
744 cases listed below.
745 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
746 * tests/actions.at (Default %printer and %destructor are not for error
747 or $undefined, Default %printer and %destructor are not for $accept):
748 New test cases.
749
750 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
751
752 Allow %start after the first rule.
753 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
754 when parsing the first rule.
755 (check_and_convert_grammar): Search for it here after all grammar
756 declarations have been parsed. Skip midrules, which have dummy LHS
757 nonterminals.
758 * src/symtab.c (symbol_is_dummy): New function.
759 * src/symtab.h (symbol_is_dummy): Declare it.
760 * tests/input.at (%start after first rule): New test.
761
762 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
763
764 Redo some of the previous commit: add back the ability to use
765 non-aliased/undeclared string literals since it might be useful to
766 those declaring %token-table.
767 * src/reader.c (check_and_convert_grammar): Undo changes in previous
768 commit: don't worry about complaints from symbols_pack.
769 * src/symtab.c (symbol_new, symbol_class_set,
770 symbol_check_alias_consistency): Undo changes in previous commit: count
771 each string literal as a new symbol and token, assign it a symbol
772 number, and don't complain about non-aliased string literals.
773 (symbols_pack): Since symbol_make_alias still does not decrement symbol
774 and token counts but does still set aliased tokens to the same number,
775 symbol_pack_processor now leaves empty slots in the symbols array.
776 Remove those slots.
777 * tests/regression.at (Undeclared string literal): Remove test case
778 added in previous commit since non-aliased string literals are allowed
779 again.
780 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
781 remove unnecessary string literal declarations.
782 * tests/sets.at (Firsts): Likewise.
783
784 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
785
786 Don't allow an undeclared string literal, but allow a string literal to
787 be used before its declaration.
788 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
789 symbols_pack complained.
790 * src/symtab.c (symbol_new): Don't count a string literal as a new
791 symbol.
792 (symbol_class_set): Don't count a string literal as a new token, and
793 don't assign it a symbol number since symbol_make_alias does that.
794 (symbol_make_alias): It's not necessary to decrement the symbol and
795 token counts anymore. Don't assume that an alias declaration occurs
796 before any uses of the identifier or string, and thus don't assert that
797 one of them has the highest symbol number so far.
798 (symbol_check_alias_consistency): Complain if there's a string literal
799 that wasn't declared as an alias.
800 (symbols_pack): Bail if symbol_check_alias_consistency failed since
801 symbol_pack asserts that every token has been assigned a symbol number
802 although undeclared string literals have not.
803 * tests/regression.at (String alias declared after use, Undeclared
804 string literal): New test cases.
805 (Characters Escapes, Web2c Actions): Declare string literals as
806 aliases.
807 * tests/sets.at (Firsts): Likewise.
808
809 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
810
811 In the grammar scanner, STRING_FINISH unclosed constructs and return
812 them to the parser in order to improve error messages.
813 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
814 SC_BRACED_CODE, SC_PROLOGUE): Implement.
815 * tests/input.at (Unclosed constructs): New test case.
816 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
817 seen.
818
819 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
820 unused global.
821
822 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
823
824 Handle string aliases for character tokens correctly.
825 * src/symtab.c (symbol_user_token_number_set): If the token has an
826 alias, check and set its alias's user token number instead of its own,
827 which is set to indicate the alias. Previously, every occurrence of
828 the character token in the grammar overwrote that alias indicator with
829 the character code.
830 * tests/input.at (String aliases for character tokens): New test.
831
832 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
833
834 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
835
836 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
837
838 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
839 to prevent failures when building on older platforms.
840 Check for autopoint failure.
841 Set XGETTEXT_OPTIONS to values that check for C format strings,
842 so that translators are warned about them (this also helps
843 prevent core dumps).
844
845 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
846 function, since it simplifies our code a bit.
847
848 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
849 rather than -W, so we don't get bogus warnings about sign comparisons.
850 Add -Wpointer-arith, since that warning is useful (it reports code
851 that does not conform to C89 and that some compilers reject).
852 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
853 since it's no longer needed.
854
855 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
856
857 Clean up scanners a bit.
858 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
859 definitions so gcc won't warn when obstack_for_string is unused.
860 * src/scan-code.l: config.h and system.h are already #include'd by
861 scan-code-c.c, so get rid of them here.
862 * src/scan-gram.l: Likewise.
863 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
864 definitions rather than duplicating the rest of it.
865 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
866
867 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
868
869 Suppress signed/unsigned comparison warnings for yycheck.
870 * data/c.m4 (b4_safest_int_type): New macro.
871 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
872 a signed int type, cast it to b4_safest_int_type first.
873 * data/yacc.c: Likewise.
874 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
875 also overwritten.
876
877 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
878
879 * doc/bison.texinfo: Fix some typos.
880
881 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
882
883 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
884 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
885
886 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
887 the latest gnulib does this a different way.
888 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
889 translation was patched, so stop omitting it.
890
891 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
892
893 Enable declaration of default %printer/%destructor. Make the parser
894 use these for all user-declared grammar symbols for which the user does
895 not declare a specific %printer/%destructor. Thus, the parser uses it
896 for token 0 if the user declares it but not if Bison generates it as
897 $end. Discussed starting at
898 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
899 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
900 and
901 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
902 * NEWS (2.3+): Mention.
903 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
904 declare a %destructor for a mid-rule's semantic value. It's just
905 impossible to declare one specific to it.
906 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
907 code. Describe default %destructor form.
908 * src/parse-gram.y (grammar_declaration): Parse default
909 %printer/%destructor declarations.
910 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
911 and symbol_destructor_location_get rather than accessing the destructor
912 and destructor_location members of struct symbol.
913 (symbol_printers_output): Likewise but for %printer's.
914 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
915 again.
916 * src/symtab.c (default_destructor, default_destructor_location,
917 default_printer, default_printer_location): New static global
918 variables to record the default %destructor and %printer.
919 (symbol_destructor_get, symbol_destructor_location_get,
920 symbol_printer_get, symbol_printer_location_get): New functions to
921 compute the appropriate %destructor and %printer for a symbol.
922 (default_destructor_set, default_printer_set): New functions to set the
923 default %destructor and %printer.
924 * src/symtab.h: Prototype all those new functions.
925 * tests/actions.at (Default %printer and %destructor): New test to
926 check that the right %printer and %destructor are called, that they're
927 not called for $end, and that $$ and @$ work correctly.
928 (Default %printer and %destructor for user-declared end token): New
929 test to check that the default %printer and %destructor are called for
930 a user-declared end token.
931 * tests/input.at (Default %printer and %destructor redeclared, Unused
932 values with default %destructor): New tests to check related grammar
933 warnings and errors.
934
935 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
936
937 Clean up handling of %destructor for the end token (token 0).
938 Discussed starting at
939 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
940 and
941 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
942
943 Make the skeletons consistent in how they pop the end token and invoke
944 its %destructor.
945 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
946 state, which has token number 0, since this would invoke the
947 %destructor for the end token.
948 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
949 until after shifting the end token, or else it won't be popped.
950 * data/yacc.c (yyparse): Likewise.
951
952 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
953 it's the end token. Upon termination, destroy an unshifted lookahead
954 even when it's the end token.
955 * data/lalr1.cc (yy::parser::parse): Likewise.
956 * data/yacc.c (yyparse): Likewise.
957
958 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
959 value warnings for the end token when the user gives the end token a
960 %destructor.
961
962 * tests/actions.at (Printers and Destructors): Test all the above.
963
964 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
965
966 Update to latest gnulib and gettext versions.
967 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
968 Add fopen-safer.
969 (gnulib_files): Add m4/warning.m4. Don't worry about files
970 overwritten by autopoint.
971 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
972 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
973 rejects them.
974 Don't use autoreconf; instead, invoke autopoint etc. by hand,
975 so that we can remove the intl files at a better time.
976 (intl_files_to_remove): Remove aclocal.m4, since it gets
977 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
978 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
979 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
980 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
981 Remove datarootdir hack; no longer needed.
982 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
983 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
984 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
985 strdup.h.
986 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
987 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
988
989 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
990
991 * bootstrap: Adjust to today's change to gnulib-tool by invoking
992 it with --assume-autoconf='latest-stable'.
993
994 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
995
996 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
997 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
998 YYSTYPE' and `{'.
999 * src/muscle_tab.h (muscle_grow): Replace the header comments with
1000 those from muscle_tab.c since the old ones are misleading.
1001
1002 2006-07-13 Akim Demaille <akim@epita.fr>
1003
1004 Support %define "KEY" {VALUE}.
1005 * src/scan-code.h, src/scan-code.l (translate_action)
1006 (translate_rule_action, translate_symbol_action, translate_code):
1007 Return char *, not const char *.
1008 * src/parse-gram.y (declaration): Rename as...
1009 (prologue_declaration): this.
1010 (string_content): Remove this nonterminal, use STRING.
1011 (braceless, content, content.opt): New nonterminal.
1012 Use them.
1013 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
1014 as value.
1015 * src/scan-gram.l (getargs.h): Don't include it.
1016
1017 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
1018
1019 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
1020 rather than a for-loop that declares a local bool variable. This
1021 should work around a compatibility problem with a Cray x1e C++
1022 compiler reported by Hung Nguyen in
1023 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
1024 The for-loop was introduced in the 2004-11-17 change but I don't
1025 know why it was needed.
1026
1027 2006-07-12 Akim Demaille <akim@epita.fr>
1028
1029 * data/c.m4: Comment changes.
1030
1031 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
1032
1033 * src/complain.c (error_message, ERROR_MESSAGE): New.
1034 To factor...
1035 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
1036 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
1037
1038 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1039
1040 * NEWS: Instead of %union, you can define and use your own union type
1041 YYSTYPE if your grammar contains at least one <type> tag.
1042 Your YYSTYPE need not be a macro; it can be a typedef.
1043 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
1044 (Union Decl, Decl Summary): Document this.
1045 * data/glr.c (YYSTYPE): Implement this.
1046 * data/glr.cc (YYSTYPE): Likewise.
1047 * data/lalr1.cc (YYSTYPE): Likewise.
1048 * data/yacc.c (YYSTYPE): Likewise.
1049 * src/output.c (prepare): Output tag_seen_flag.
1050 * src/parse-gram.y (declaration, grammar_declaration):
1051 Use 'union_seen' rather than 'typed' to determine whether
1052 %union has been seen, since grammars can now be typed without
1053 %union.
1054 (symbol_declaration, type.opt, symbol_def):
1055 Keep track of whether a tag has been seen.
1056 * src/reader.c (union_seen, tag_seen): New vars.
1057 (typed): remove.
1058 * src/reader.h (union_seen, tag_seen, typed): Likewise.
1059 * src/scan-code.l (untyped_var_seen): New variable.
1060 (handle_action_dollar): Adjust to above changes.
1061 (handle_action_dollar, handle_action_at):
1062 Improve overflow checking for outlandish numbers.
1063 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
1064 avoid new diagnostics generated by above changes.
1065 * tests/regression.at (YYSTYPE typedef): Add test to check
1066 for type tags without %union.
1067
1068 * src/symlist.c (symbol_list_length): Return int, not unsigned
1069 int, since callers expect int. This may need to get revisited
1070 once we have proper integer overflow checking.
1071
1072 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
1073 object is now static.
1074
1075 * src/getargs.c (flags_argmatch): Return void, not int,
1076 to pacify ./configure --enable-gcc-warnings.
1077
1078 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
1079 since last_string is already defined to FLEX_PREFIX (last_string).
1080
1081 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
1082
1083 Implement --warnings/-W.
1084 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
1085 replaced by...
1086 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
1087 Adjust callers.
1088 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
1089 (warnings_args, warnings_types): New.
1090 (getargs, short_options, long_options): Accept -W/--warnings.
1091 Sort the options by alphabetical order, upper case letter right
1092 before its lower case.
1093
1094 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1095
1096 Change %merge result type clash warnings to errors. Discussed at
1097 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
1098 * src/reader.c (record_merge_function_type): Use complain_at.
1099 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1100 declared later): Update test case results.
1101
1102 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
1103
1104 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
1105 to be in alphabetical order.
1106 (trace_args): Spelling fixes.
1107
1108 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
1109
1110 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
1111 so they don't collide with user-defined macros.
1112 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
1113 this was never guaranteed, and now that we're using gnulib stdint,
1114 which defines int_fast16_t to long int, the problem is exposed.
1115
1116 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
1117
1118 * data/c.m4 (b4_basename): Simplify a bit, since we don't
1119 need the full POSIX semantics (and weren't implementing them
1120 anyway).
1121
1122 Adjust to Autoconf 2.60 and today's gnulib.
1123 * bootstrap (gnulib_modules): Add stdint.
1124 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
1125 no longer copies it.
1126 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
1127 since stdint needs the former and wcwidth (which is now required
1128 by mbswidth) needs the latter.
1129 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
1130 work around a compatibility glitch between gettext 0.14.6 and
1131 Autoconf 2.60.
1132 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
1133 Do not check for uintptr_t, since new stdint module does the right
1134 thing.
1135 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
1136 Add stdint.h, stdint_.h, wcwidth.h.
1137 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
1138 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
1139 stdint.m4, wchar_t.m4, wcwidth.m4.
1140 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
1141 usual order for ../lib/*.h files.
1142 (file_name_split): Use last_component, not base_name, to adjust
1143 to gnulib changes.
1144 * src/parse-gram.h: Include <strverscmp.h> in the usual order
1145 for ../lib/*.h files.
1146 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
1147 Define unconditionally, since we now assume the stdint module.
1148 * src/scan-skel.l: Include <dirname.h>.
1149 (BASE_QPUTS): Use last_component, not base_name.
1150 * src/system.h: Include <unlocked-io.h> in the usual order
1151 for ../lib/*.h files. Include <stdint.h> unconditionally,
1152 since we now use the stdint module.
1153 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
1154 HAVE_UINTPTR_T, since we now use the stdint module.
1155 (base_name): Remove decl, since files now include <dirname.h>
1156 to get the decl.
1157
1158 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
1159
1160 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
1161 New, default to 1.
1162 * data/yacc.c, data/glr.c, data/location.cc: Use them.
1163 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
1164 default.
1165 * tests/calc.at: Adjust.
1166
1167 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
1168
1169 * data/c.m4 (b4_basename): New.
1170 (b4_syncline): Also output the location of its invocation (from
1171 the skeleton).
1172 (b4_user_action, b4_define_user_action, b4_user_actions)
1173 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
1174 (b4_user_stype): New.
1175 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
1176
1177 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1178
1179 In the grammar file, the first column is 1 not 0 on the first line as
1180 on every other line.
1181 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
1182 * tests/input.at (Torturing the Scanner): Update output.
1183
1184 * src/scan-gram.l (scanner_cursor): Declare it static.
1185
1186 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
1187
1188 In warnings, say "previous declaration" rather than "first
1189 declaration".
1190 * src/symtab.c (redeclaration): Do that here.
1191 * src/reader.c (record_merge_function_type): In the case of a result
1192 type clash, report the previous declaration rather than the very first
1193 one in the grammar file.
1194 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1195 declared later): Add a third declaration to check this behavior.
1196 * tests/input.at (Incompatible Aliases): Update output.
1197
1198 2006-06-27 Akim Demaille <akim@epita.fr>
1199
1200 * doc/Doxyfile.in: New.
1201 * doc/Makefile.am: Use it.
1202 * src/lalr.h, src/symtab.h: Initial doxygenation.
1203
1204 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1205
1206 Don't miss %merge result type warnings just because the LHS types are
1207 declared after the %merge. This continues the effort of the previous
1208 patch.
1209 * src/reader.c (get_merge_function): Don't set the merger type yet.
1210 (record_merge_function_type): New function for setting the merger type
1211 and checking for clashes.
1212 (grammar_current_rule_merge_set): Set the location of the %merge for
1213 the current rule.
1214 (packgram): Invoke record_merge_function_type for each rule now that
1215 all symbol type declarations have been parsed.
1216 * src/reader.h (merger_list.type_declaration_location): New member
1217 storing the location of the first %merge from which the type for this
1218 merging function was derived.
1219 * src/symlist.h (symbol_list.merger_declaration_location): New member
1220 storing the location of a rule's %merge, if any.
1221 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
1222 declared later): New test to catch the error fixed by the above patch.
1223
1224 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1225
1226 Get action warnings (grammar_rule_check) right even when symbol
1227 declarations appear after the rules. Discussed at
1228 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
1229 and
1230 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
1231 Don't mistake the type of $$ in a midrule to be that of its parent
1232 rule's $$.
1233 * src/reader.c (grammar_current_rule_end): Don't invoke
1234 grammar_rule_check yet since not all symbol declarations may have been
1235 parsed yet.
1236 (grammar_midrule_action): Likewise.
1237 Don't record whether the midrule's $$ has been used yet since actions
1238 haven't been translated yet.
1239 Record the midrule's parent rule and its RHS index within the parent
1240 rule.
1241 (grammar_current_rule_action_append): Don't translate the action yet
1242 since not all symbol declarations may have been parsed yet and, thus,
1243 warnings about types for $$, $n, @$, and @n can't be reported yet.
1244 (packgram): Translate the action and invoke grammar_rule_check now that
1245 all symbol declarations have been parsed.
1246 * src/scan-code.l (handle_action_dollar): Now that this is invoked
1247 after parsing the entire grammar file, the symbol list here in the case
1248 of a midrule is actually the midrule's empty RHS, so reference its
1249 parent rule's RHS where necessary.
1250 On the other hand, now that you can already know it's a midrule, you
1251 aren't forced to think $$ has the same type as its parent rule's $$.
1252 (handle_action_at): In the case of a midrule, reference the parent rule
1253 where necessary.
1254 * src/symlist.c (symbol_list_new): Initialize new midrule-related
1255 members.
1256 (symbol_list_length): Now that this is invoked after all rules have
1257 been parsed, a NULL symbol (rather than a NULL symbol list node)
1258 terminates a rule. symbol_list_print already does this correctly.
1259 * src/symlist.h (symbol_list.midrule_parent_rule,
1260 symbol_list.midrule_parent_rhs_index): New members so that midrules can
1261 remember their relationships with their parents.
1262 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
1263 fixed by the above patch.
1264 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
1265 implementing...
1266 (Unused values): ... this old test case and...
1267 (Unused values before symbol declarations): ... this new test case.
1268 This one is the same as `Unused values' except that all symbol
1269 declarations appear after the rules in order to catch the rest of the
1270 errors fixed by the above patch.
1271
1272 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
1273
1274 More cleanup.
1275 * src/reader.c (current_rule): Declare it static since it's no longer
1276 used outside this file.
1277 (grammar_current_rule_action_append): Remove redundant arguments from
1278 translate_rule_action invocation.
1279 * src/reader.h (current_rule): Remove this unused extern.
1280 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
1281 * src/scan-code.l (translate_rule_action): Likewise.
1282
1283 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
1284
1285 Clean up yesterday's patch.
1286 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
1287 to...
1288 * src/reader.c (grammar_current_rule_action_append): ... here for
1289 consistency with grammar_current_rule_symbol_append.
1290 * tests/regression.at (Braced code in declaration in rules section):
1291 Make yyerror and yylex static as usual.
1292
1293 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
1294
1295 Fix bug that mistakes braced code in a declaration in the rules section
1296 to be a rule action. Mentioned at
1297 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
1298 * src/scan-gram.l: Move midrule action detection from the start of the
1299 scanning of any braced code to...
1300 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
1301 action. For readability, use $2 and @2 rather than the equivalent
1302 global variables.
1303 * tests/regression.at (Braced code in declaration in rules section):
1304 New test to catch the error fixed by the above patch.
1305
1306 Work on code readability some.
1307 * src/scan-code.l (current_rule): Get rid of this misleading and
1308 redundant declaration: it's actually extern'ed in reader.h.
1309 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
1310 translate_action): Add a rule argument and use it instead of the global
1311 current_rule.
1312 (translate_rule_action): This already receives current_rule through an
1313 argument, so pass it on to translate_action instead of assigning
1314 current_rule to current_rule.
1315 (translate_symbol_action, translate_code): Pass rule = NULL to
1316 translate_action.
1317
1318 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
1319
1320 Rename %before-definitions to %start-header and %after-definitions to
1321 %end-header. Don't use these declarations to separate pre-prologue
1322 blocks from post-prologue blocks. Add new order-independent
1323 declarations %before-header and %after-header as alternatives to the
1324 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
1325 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
1326 * NEWS (2.3+): Update for these changes.
1327 * data/glr.c (b4_before_definitions): Update to...
1328 (b4_start_header): ... this.
1329 (b4_after_definitions): Update to...
1330 (b4_end_header): ... this.
1331 * data/glr.cc: Likewise.
1332 * data/lalr1.cc: Likewise.
1333 * data/yacc.c: Likewise.
1334 * doc/bison.texinfo (The prologue): Update names, and replace remaining
1335 prologue blocks with %*-header declarations.
1336 (Calc++ Parser): Likewise.
1337 (Bison Declaration Summary): Update names.
1338 (Bison Symbols): Update description.
1339 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
1340 (PERCENT_END_HEADER): ... this.
1341 (PERCENT_BEFORE_DEFINITIONS): Update to...
1342 (PERCENT_START_HEADER): ... this.
1343 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1344 (declaration): Update token names and m4 macro names.
1345 When parsing %end-header and %start-header, invoke translate_code
1346 before muscle_code_grow, and no longer set global booleans to remember
1347 whether these declarations have been seen.
1348 Parse new %after-header and %before-header.
1349 * src/reader.c (before_definitions, after_definitions): Remove.
1350 (prologue_augment): Accept a new bool argument to specify whether to
1351 augment the pre-prologue or post-prologue.
1352 * src/reader.h (before_definitions, after_definitions): Remove these
1353 extern's.
1354 (prologue_augment): Add new bool argument.
1355 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
1356 (PERCENT_END_HEADER): ... this.
1357 (PERCENT_BEFORE_DEFINITIONS): Update to...
1358 (PERCENT_START_HEADER): ... this.
1359 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1360 * tests/actions.at (Printers and Destructors): Update names.
1361
1362 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
1363
1364 Add comparison operators for C++ location classes. Discussed at
1365 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
1366 * data/c++.m4 (b4_define_location_comparison): New boolean %define
1367 declaration indicating whether filename_type has an operator==. If
1368 filename_type is `std::string', it defaults to `1', `0' otherwise.
1369 * data/location.cc: Iff b4_define_location_comparison is `1', add
1370 operator== and operator!= for class position and for class location.
1371
1372 Some minor fixes.
1373 * src/scan-action.l: Remove unused file.
1374 * src/symtab.c (symbol_printer_set): Use printer_location not
1375 destructor_location.
1376 * src/symtab.h (struct symbol): Replace incorrect source comment for
1377 printer members.
1378 * tests/input.at (Incompatible Aliases): Update output with correct
1379 printer location.
1380
1381 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
1382
1383 Don't put the pre-prologue in the header file. For the yacc.c code
1384 file and the glr.c header and code files, move the pre-prologue before
1385 the token definitions. Add new %before-definitions and
1386 %after-definitions to declare code that will go in both the header file
1387 and code file. Discussed at
1388 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
1389 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
1390 and
1391 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
1392 * NEWS (2.3+): Describe these changes.
1393 * data/glr.c (b4_pre_prologue): Move from within to before...
1394 (b4_shared_declarations): ... this.
1395 Add new b4_before_definitions before b4_token_enums.
1396 Add new b4_after_definitions at the end.
1397 * data/glr.cc (b4_pre_prologue): Replace with...
1398 (b4_before_definitions): ... this in the header file.
1399 (b4_after_definitions): New near the end of the header file.
1400 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
1401 code file right before including the header file.
1402 (b4_before_definitions): New in the previous position of
1403 b4_pre_prologue in the header file.
1404 (b4_after_definitions): New near the end of the header file.
1405 * data/yacc.c: Clean up some m4 quoting especially in the header file.
1406 (b4_token_enums_defines): In the code file, move to right before
1407 YYSTYPE for consistency with the header file.
1408 (b4_before_definitions): New right before b4_token_enums_defines in
1409 both the header and code file.
1410 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
1411 header and code file.
1412 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
1413 of prologues for %union dependencies.
1414 (Bison Declaration Summary): In %defines description, mention the
1415 effect of %before-definitions and %after-definitions on the header
1416 file.
1417 (Calc++ Parser): Forward declare driver in a %before-definitions rather
1418 than in the pre-prologue so that make check succeeds.
1419 (Bison Symbols): Add entries for %before-definitions and
1420 %after-definitions.
1421 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
1422 %before-definitions.
1423 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
1424 (declaration): Parse those declarations and append to
1425 b4_before_definitions and b4_after_definitions, respectively.
1426 * src/reader.c (before_definitions, after_definitions): New bools to
1427 track whether those declarations have been seen.
1428 (prologue_augment): Add to the post-prologue if %union,
1429 %before-definitions, or %after-definitions has been seen.
1430 * src/reader.h (before_definitions, after_definitions): New extern's.
1431 * src/scan-gram.l: Scan the new declarations.
1432 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
1433 prologue block in a %before-definitions or a %after-definitions based
1434 on whether the %union is declared.
1435 * tests/regression.at (Early token definitions with --yacc, Early token
1436 definitions without --yacc): Move tests for token definitions into the
1437 post-prologue since token names are no longer defined in the
1438 pre-prologue.
1439
1440 2006-06-20 Akim Demaille <akim@epita.fr>
1441
1442 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
1443 (symbol_get): Use it.
1444 * src/parse-gram.y: Use it.
1445
1446 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
1447
1448 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
1449 build succeeds when configured with --enable-gcc-warnings.
1450
1451 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
1452
1453 * src/parse-gram.y (char_name): New function.
1454 (CHAR, STRING, string_content): For %printer, properly escape.
1455 (ID): Prefer fputs to fprintf.
1456 (id): Reindent to be consistent with other rules.
1457 Properly quote char.
1458
1459 The Translation Project changed its way of publishing translations
1460 to maintainers. I haven't received any responses to my request
1461 for supporting the old way, or for documenting the new way. I
1462 have modified 'bootstrap' to use screen scraping
1463 (in this case, HTML scraping). This is unreliable and inelegant,
1464 but I don't see any better way. Yuck.
1465 * bootstrap (TP_URL, WGET_COMMAND): New vars.
1466 (get_translations): New function, which uses HTML scraping to
1467 deduce locations of latest translations.
1468 Use this function to grab both bison and bison-runtime .po files.
1469 Don't bother priming the pump for the runtime-po domain any more,
1470 as it's now translated better than bison is.
1471
1472 2006-06-19 Akim Demaille <akim@epita.fr>
1473
1474 * src/scan-gram.l: No longer "parse" things after `%union' until
1475 `{'. Rather, return a single "%union" token.
1476 No longer make symbols: return strings, and leave the conversion
1477 to symbols to the parser.
1478 (SC_PRE_CODE, token_type): Remove.
1479 * src/parse-gram.y (%union): New field `character'.
1480 Sort tokens.
1481 (CHAR): New token.
1482 (ID, ID_COLON): Now that the scanner no longer makes them
1483 identifiers, adjust all uses to invoke symbol_get.
1484 (id_colon): New, wraps the conversion from string to symbol.
1485 (%union): Accept a possible union_name.
1486 (symbol): Now can be a char.
1487 * data/c.m4 (b4_union_name): Leave a default value.
1488 * data/glr.c, data/yacc.c: Use it.
1489
1490 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
1491
1492 For associating token numbers with token names for "yacc.c", don't use
1493 #define statements unless `--yacc' is specified; always use enum
1494 yytokentype. Most important discussions start at:
1495 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
1496 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
1497 and
1498 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
1499 * NEWS (2.3+): Mention.
1500 * data/c.m4 (b4_yacc_if): New.
1501 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
1502 token #define's.
1503 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
1504 on token name definitions.
1505 * src/getargs.c (usage): Capitalize `Yacc' in English.
1506 * src/output.c (prepare): Define b4_yacc_flag.
1507 * tests/regression.at (Early token definitions): Test that tokens names
1508 are defined before the pre-prologue not just before the post-prologue.
1509 Remove this test case and copy to...
1510 (Early token definitions with --yacc): ... this to test #define's.
1511 (Early token definitions without --yacc): ... and this to test enums.
1512
1513 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
1514
1515 * NEWS: Reword the post-2.3 change to not be so optimistic about
1516 removing the old "look-ahead" spelling.
1517 Update previous look-ahead/lookahead change reports.
1518 * REFERENCES: look-ahead -> lookahead (since that's
1519 what he actually wrote).
1520 * doc/refcard.tex: look ahead -> lookahead,
1521 look-ahead -> lookahead
1522
1523 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
1524
1525 For consistency, use `lookahead' instead of `look-ahead' or
1526 `look_ahead'. Discussed starting at
1527 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
1528 and then at
1529 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
1530 * NEWS: For the next release, note the change to `--report'.
1531 * TODO, doc/bison.1: Update English.
1532 * doc/bison.texinfo: Update English.
1533 (Understanding Your Parser, Bison Options): Document as
1534 `--report=lookahead' rather than `--report=look-ahead'.
1535 * src/conflicts.c: Update English in comments.
1536 (lookahead_set): Rename from look_ahead_set.
1537 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
1538 (resolve_sr_conflict): Rename local look_ahead_tokens to
1539 lookahead_tokens, and update other uses.
1540 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
1541 count_rr_conflicts, conflicts_free): Update uses.
1542 * src/getargs.c (report_args): Move "lookahead" before alternate
1543 spellings.
1544 (report_types): Update uses.
1545 (usage): For `--report' usage description, state `lookahead' spelling
1546 rather than `look-ahead'.
1547 * src/getargs.h (report.report_lookahead_tokens): Rename from
1548 report_look_ahead_tokens.
1549 * src/lalr.c: Update English in comments.
1550 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
1551 (state_lookahead_tokens_count): Rename from
1552 state_look_ahead_tokens_count.
1553 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1554 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
1555 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1556 Update other uses.
1557 Update English in output.
1558 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
1559 * src/print.c: Update English in comments.
1560 (lookahead_set): Rename from look_ahead_set.
1561 (print_reduction): Rename argument lookahead_token from
1562 look_ahead_token.
1563 (print_core, state_default_rule, print_reductions, print_results):
1564 Update uses.
1565 * src/print_graph.c: Update English in comments.
1566 (print_core): Update uses.
1567 * src/state.c: Update English in comments.
1568 (reductions_new): Update uses.
1569 (state_rule_lookahead_tokens_print): Rename from
1570 state_rule_look_ahead_tokens_print, and update other uses.
1571 * src/state.h: Update English in comments.
1572 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
1573 (state_rule_lookahead_tokens_print): Rename from
1574 state_rule_look_ahead_tokens_print.
1575 * src/tables.c: Update English in comments.
1576 (conflict_row, action_row): Update uses.
1577 * tests/glr-regression.at
1578 (Incorrect lookahead during deterministic GLR,
1579 Incorrect lookahead during nondeterministic GLR): Rename
1580 print_look_ahead to print_lookahead.
1581 * tests/torture.at: Update English in comments.
1582 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
1583 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
1584 (Many lookahead tokens): Update uses.
1585 * data/glr.c: Update English in comments.
1586 * lalr1.cc: Likewise.
1587 * yacc.c: Likewise.
1588 * src/conflicts.h: Likewise.
1589 * src/lalr.h: Likewise.
1590 * src/main.c: Likewise.
1591 * src/output.c: Likewise.
1592 * src/parse-gram.c: Likewise.
1593 * src/tables.h: Likewise.
1594 * tests/calc.at: Likewise.
1595
1596 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
1597
1598 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
1599
1600 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
1601
1602 * TODO: Add request from Nelson H. F. Beebe to be able to install
1603 Bison without installing the yacc script.
1604
1605 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1606
1607 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
1608 and yytext if they're already #define'd.
1609 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
1610 * src/scan-code-c.c: ... here.
1611 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
1612 <config.h>.
1613
1614 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1615
1616 Get Bison to build again when configured with --enable-gcc-warnings.
1617 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
1618 missing #include's.
1619 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
1620 loc argument as it shadows a global.
1621 * src/scan-gram.l: Remove stray comma that prevents boundary_set
1622 invocation.
1623
1624 * src/.cvsignore: Add scan-code.c.
1625
1626 2006-06-07 Akim Demaille <akim@epita.fr>
1627
1628 * src/scan-gram.l: Move the "add a trailing ; to actions" code
1629 to...
1630 * src/scan-code.l: here.
1631 * tests/input.at (Torturing the Scanner): Fix another location
1632 error.
1633
1634 2006-06-07 Akim Demaille <akim@epita.fr>
1635
1636 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
1637
1638 2006-06-06 Akim Demaille <akim@epita.fr>
1639
1640 Extract the parsing of user actions from the grammar scanner.
1641 As a consequence, the relation between the grammar scanner and
1642 parser is much simpler. We can also split "composite tokens" back
1643 into simple tokens.
1644 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
1645 * src/scan-gram.l (add_column_width, adjust_location): Move to and
1646 rename as...
1647 * src/location.h, src/location.c (add_column_width)
1648 (location_compute): these.
1649 Fix the column count: the initial column is 0.
1650 (location_print): Be robust to ending column being 0.
1651 * src/location.h (boundary_set): New.
1652 * src/main.c: Adjust to scanner_free being renamed as
1653 gram_scanner_free.
1654 * src/output.c: Include scan-code.h.
1655 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
1656 Use boundary_set.
1657 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
1658 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
1659 which is now, again, a separate token.
1660 Adjust all dependencies.
1661 Whereever actions with $ and @ are used, use translate_code.
1662 (action): Remove this nonterminal which is now useless.
1663 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
1664 (grammar_current_rule_action_append): Use translate_code.
1665 (packgram): Bound check ruleno, itemno, and rule_length.
1666 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
1667 (last_string, last_braced_code_loc, max_left_semantic_context)
1668 (scanner_initialize, scanner_free, scanner_last_string_free)
1669 (gram_out, gram_lineno, YY_DECL_): Move to...
1670 * src/scan-gram.h: this new file.
1671 (YY_DECL): Rename as...
1672 (GRAM_DECL): this.
1673 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
1674 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
1675 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
1676 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
1677 Move these declarations, and...
1678 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
1679 these to...
1680 * src/flex-scanner.h: this new file.
1681 * src/scan-gram.l (rule_length, rule_length_overflow)
1682 (increment_rule_length): Remove.
1683 (last_braced_code_loc): Rename as...
1684 (gram_last_braced_code_loc): this.
1685 Adjust to the changes of the parser.
1686 Move all the handling of $ and @ into...
1687 * src/scan-code.l: here.
1688 * src/scan-gram.l (handle_dollar, handle_at): Remove.
1689 (handle_action_dollar, handle_action_at): Move to...
1690 * src/scan-code.l: here.
1691 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
1692 scan-code.h, scan-code-c.c, scan-gram.h.
1693 (EXTRA_bison_SOURCES): Add scan-code.l.
1694 (BUILT_SOURCES): Add scan-code.c.
1695 (yacc): Be robust to white spaces.
1696
1697 * tests/conflicts.at, tests/input.at, tests/reduce.at,
1698 * tests/regression.at: Adjust the column numbers.
1699 * tests/regression.at: Adjust the error message.
1700
1701 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1702
1703 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1704 Use Akim's wording from
1705 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
1706
1707 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1708
1709 Between Bison releases, manually append `+' to the previous Bison
1710 release number, and use that as a signal to automatically print the
1711 ChangeLog's CVS Id keyword from --version. Discussed starting at
1712 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
1713 * ChangeLog: Add Id header.
1714 * configure.ac (AC_INIT): Append `+' to `2.3'.
1715 * src/.cvsignore: Add revision.c.
1716 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
1717 (BUILT_SOURCES): Add revision.c.
1718 (revision.c): New target rule. This file defines a new global variable
1719 named revision. It initializes it with either the Id from ChangeLog
1720 or, if VERSION doesn't contain `+', with the empty string.
1721 * src/getargs.c (version): Print the value of revision.
1722 * src/revision.h: Extern revision.
1723
1724 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
1725
1726 * NEWS: Version 2.3.
1727 * configure.ac (AC_INIT): Likewise.
1728
1729 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
1730
1731 * data/glr.c (YYRECOVERING): Define to be a function-like macro
1732 with no arguments, not as an object-like macro. This is for
1733 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
1734 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
1735 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
1736 Document this.
1737
1738 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
1739
1740 * src/getargs.c (usage): Back out yesterday's modification of the
1741 --help output so that we don't have to wait for translation before
1742 releasing 2.3.
1743
1744 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
1745
1746 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
1747 Problem reported by Akim Demaille.
1748
1749 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1750
1751 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1752
1753 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
1754
1755 * data/yacc.c (yy_reduce_print): Omit trailing white space in
1756 generated source code. Problem reported by Frans Englich in
1757 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
1758
1759 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
1760
1761 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
1762 shell, not within 'make', so that 'make' by an ordinary builder
1763 (using GNU make) does not worry about configuring gzip. This also
1764 works around a bug reported independently by Keith Thompson and by
1765 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
1766 stderr rather than stdout, messing up the build logs.
1767
1768 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1769
1770 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
1771 to make sure that YYID will never be unused. This fixes a 'make
1772 maintainer-check' failure caused by the recent changes to the 'Trivial
1773 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
1774 not used.
1775 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
1776
1777 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1778
1779 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
1780 state before an empty RHS is always resolved here. Only the location
1781 of that state is guaranteed to be resolved, and that's enough. This
1782 fixes the remaining bug reported by Derek M. Jones in
1783 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1784 * tests/glr-regression.at (Uninitialized location when reporting
1785 ambiguity): Test the above case.
1786 Also, the embedded comments in this test case claim it checks the case
1787 of an empty RHS that has inherited the initial location. However, the
1788 corresponding LHS was already resolved, so yyresolveLocations didn't
1789 actually have reason to modify it. Fix this by forcing
1790 nondeterministic operation at the beginning of the parse.
1791
1792 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
1793
1794 * data/c.m4 (b4_yy_symbol_print_generate):
1795 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
1796 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
1797 of the bugs reported today by Derek M Jones in
1798 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1799 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
1800 defined to be a type name without parens or brackets.
1801 (Location Type): Similarly for YYLTYPE.
1802 * tests/regression.at (Trivial grammars): Put in a test for this
1803 bug that will be caught by 'make maintainer-check' (though not,
1804 alas, by 'make check' unless your compiler is picky).
1805
1806 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
1807
1808 * NEWS: Version 2.2.
1809 * configure.ac (AC_INIT): Likewise.
1810
1811 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
1812
1813 * data/glr.c (yyreportTree): Make room in yystates for the state
1814 preceding the RHS. This fixes the segmentation fault reported by Derek
1815 M. Jones in
1816 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
1817 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
1818 to the user. Reported for yyreportTree by Derek M. Jones later in the
1819 same thread.
1820 * THANKS: Add Derek M. Jones.
1821 Update my email address.
1822 Fix typo in Steve Murphy's name.
1823
1824 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
1825
1826 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
1827 checking against YYLAST that caused the parser to miss a potential
1828 alternative in its diagnostic.
1829 Problem reported by Maria Jose Moron Fernandez in
1830 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
1831 * data/lalr1.cc (yysyntax_error_): Likewise.
1832 * data/yacc.c (yysyntax_error): Likewise.
1833 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
1834 tokens, in case we run into an older C compiler.
1835 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
1836 Use them to check for the off-by-one error fixed above.
1837
1838 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
1839 YYSIZE_T, not size_t.
1840 * tests/regression.at (Trivial grammars): New test, to catch
1841 the error fixed by the above patch.
1842
1843 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1844
1845 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
1846 scheme.
1847 Reported by Steve Murphy.
1848
1849 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1850
1851 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
1852 * data/glr.cc: b4_location_flag is now b4_locations_flag.
1853
1854 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1855
1856 Implement --trace=m4.
1857 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
1858 * src/output.c (output_skeleton): When set, pass -dV to m4.
1859
1860 Factor the handling of flags in m4.
1861 * src/output.c (prepare): Rename the muscle names debug, defines,
1862 error_verbose to debug_flag, defines_flag, error_verbose_flag.
1863 * data/c.m4: Adjust.
1864 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
1865 Use b4_define_flag_if to define other b4_FLAG_if macros.
1866 (b4_location_if): As a consequence, rename as...
1867 (b4_locations_if): this, for consistency.
1868 Adjust all the skeletons.
1869
1870 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1871
1872 * etc/bench.pm: Shorten bench names.
1873
1874 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1875
1876 * src/output.h, src/output.c (error_verbose): Move to...
1877 * src/getargs.h, src/getargs.c: here.
1878 Sort the flags.
1879 Adjust dependencies.
1880
1881 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
1882
1883 * data/c.m4 (b4_copyright): Put the special exception for Bison
1884 skeletons here, so we don't have to put it in each skeleton. All
1885 uses changed. Suggested by Akim Demaille. Also, wrap the
1886 copyright notice, in case it is longer than 80 columns. Replace
1887 comma by newline after title.
1888
1889 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
1890
1891 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
1892 incompatibility, not a bug. Mention that it wasn't fixed as of
1893 flex 2.5.33.
1894
1895 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
1896
1897 * examples/extexi: Enforce the precedence of concatenation over
1898 >>.
1899 Reported by Tommy Nordgren.
1900
1901 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
1902
1903 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
1904 with the member "token".
1905 Reported by Martin Nylin.
1906
1907 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
1908
1909 * data/glr.c: Switch to Bison 2.2 special-exception language in
1910 the copyright notice. Use more-regular format for titles and
1911 copyright notices.
1912 * data/glr.cc: Likewise.
1913 * data/location.cc: Likewise.
1914 * data/yacc.cc: Likewise.
1915 * doc/bison.texinfo (Conditions): Document this.
1916 * NEWS: likewise. Upgrade version to 2.2.
1917
1918 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
1919
1920 * data/glr.cc: Remove dead code.
1921
1922 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
1923
1924 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
1925 that variable and the line breaks the bootstrap. Problem reported
1926 by Juan M. Guerrero.
1927
1928 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
1929
1930 * doc/bison.texinfo (Multiple start-symbols): New.
1931
1932 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
1933
1934 * etc/README, etc/bench.pl: New.
1935
1936 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
1937
1938 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
1939 rule.
1940 Reported by Mickael Labau.
1941 * tests/input.at (Torturing the Scanner): Test it.
1942
1943 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
1944
1945 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
1946 Problem reported by Bob Rossi.
1947
1948 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
1949
1950 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
1951 and didn't really work.
1952 For the index, use @ifnotinfo, not @iftex.
1953 Minor cleanups of spacing and terminology.
1954
1955 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
1956
1957 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
1958 of AT_NAME_PREFIX when %name-prefix is not used.
1959
1960 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
1961
1962 Apply --prefix to C++ skeletons too: they change the namespace.
1963 The test suite already exercize these cases.
1964 * data/c++.m4 (b4_namespace): New.
1965 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
1966 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
1967 * data/yacc.c, data/glr.c: Remove a useless `[]'.
1968 * doc/bison.texinfo: Document it.
1969 (Option Cross Key): Use @multitable in all formats. It looks
1970 nicer, even in TeX outputs.
1971 (Rules): Use the same code whatever the output type is.
1972 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
1973 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
1974 * tests/calc.at: Use it, instead of hard coding `yy'.
1975
1976 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1977
1978 * TODO: Remove dead items.
1979
1980 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1981
1982 * doc/FAQ: Remove, merged into...
1983 * doc/bison.texinfo (FAQ): this.
1984 * doc/Makefile.am (EXTRA_DIST): Adjust.
1985
1986 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1987
1988 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
1989 even if empty.
1990 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
1991 * doc/bison.texinfo (Calc++ Scanner): Use it.
1992
1993 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
1994
1995 Fix two nits reported by twlevo, plus one more that I discovered.
1996
1997 * src/assoc.h (assoc_to_string): Give a name to the arg, as
1998 this is the usual Bison style.
1999 * src/location.h (location_print): Likewise.
2000
2001 * src/reader.h (token_name): Likewise.
2002
2003 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
2004
2005 Fix some nits reported by twlevo.
2006 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
2007 and "POSIX". Use more-modern syntax for URLs. Mention C++
2008 and ask for Java. Don't hardwire OS version numbers. Add
2009 copyright notice.
2010 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
2011 * src/conflicts.c (solved_conflicts_obstack): Now static.
2012
2013 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2014
2015 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
2016 page. Say "you can use it" not "you may use it" as on the web page;
2017 we're describing capabilities not granting permission.
2018
2019 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
2020
2021 * data/glr.c (yyresolveLocations): Rename local variables to avoid
2022 shadowing warnings. Use usual patter for iterating through RHS.
2023 * tests/glr-regression.at
2024 (Uninitialized location when reporting ambiguity):
2025 Modify yylex so that it uses its argument, rather than trying
2026 to rely on ARGSUSED (which doesn't work for gcc with warnings).
2027 const char -> char const.
2028
2029 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
2030 Don't use tabs inside commands; it messes up 'ps'.
2031 Problem reported by twlevo.
2032
2033 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
2034
2035 * tests/glr-regression.at (Uninitialized location when reporting
2036 ambiguity): New test case.
2037 * data/glr.c (yyresolveLocations): New function, which uses
2038 YYLLOC_DEFAULT.
2039 (yyresolveValue): Invoke yyresolveLocations before reporting an
2040 ambiguity.
2041 * doc/bison.texinfo (Default Action for Locations): Note
2042 YYLLOC_DEFAULT's usage for ambiguity locations.
2043 (GLR Semantic Actions): Cross-reference those notes.
2044
2045 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
2046
2047 * tests/glr-regression.at (Leaked semantic values when reporting
2048 ambiguity): Remove unnecessary union and type declarations.
2049 (Leaked lookahead after nondeterministic parse syntax error): New test
2050 case.
2051 * data/glr.c (yyparse): Check for zero stacks remaining before
2052 attempting to shift the lookahead so that you don't lose it.
2053
2054 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2055
2056 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
2057 * tests/glr-regression.at (Leaked semantic values when reporting
2058 ambiguity): New test case.
2059 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
2060 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
2061 now unnecessary yystackp parameter.
2062 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
2063 destructors can be called.
2064
2065 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
2066 in existing testcases.
2067
2068 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2069
2070 Don't leak semantic values for parent RHS when a user action cuts the
2071 parser, and clean up related code a bit.
2072 * tests/glr-regression.at (Leaked merged semantic value if user action
2073 cuts parse): Rename to...
2074 (Leaked semantic values if user action cuts parse): ... this. Add check
2075 for leaked parent RHS values.
2076 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
2077 between an unresolved state (non-empty chain of semantic options) and
2078 an incomplete one (signaled by an empty chain).
2079 (yyresolveStates): Document the interface. Move all manipulation of a
2080 successfully or unsuccessfully resolved yyGLRState to...
2081 (yyresolveValue): ... here so that yyresolveValue always leaves a
2082 yyGLRState with consistent data and thus is easier to understand.
2083 Remove the yyvalp and yylocp parameters since they are always just
2084 taken from the yys parameter. When reporting a discarded merged value
2085 in debugging output, note that it is incompletely merged. Document the
2086 interface.
2087 (yyresolveAction): If resolving any of the RHS states fails, destroy
2088 them all rather than leaking them. Thus, as long as user actions are
2089 written to clean up the RHS correctly, yyresolveAction always cleans up
2090 the RHS of a semantic option. Document the interface.
2091
2092 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
2093
2094 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
2095 led to a segmentation fault in GNU Pascal. Problem reported
2096 by Waldek Hebisch.
2097
2098 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
2099
2100 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
2101 mid-rule action inside a nonterminal symbol in order to declare a
2102 destructor for its semantic value.
2103
2104 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
2105
2106 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
2107 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
2108 __cplusplus && ! defined _STDLIB_H && !
2109 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
2110 defined free))]: Include <stdlib.h> rather than rolling our own
2111 declarations of malloc and free, to avoid problems with
2112 incompatible declarations (using 'throw') C++'s stdlib.h. This
2113 should fix Debian bug 340012
2114 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
2115 reported by Guillaume Melquiond.
2116
2117 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2118
2119 * NEWS: Clarify symbols versus types in unused-value warnings.
2120
2121 * configure.ac (AC_INIT): Bump version number.
2122
2123 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
2124
2125 * NEWS: Version 2.1a.
2126 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
2127 since C99 requires this.
2128
2129 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
2130
2131 * m4/c-working.m4: New file.
2132 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
2133
2134 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
2135
2136 * Makefile.maint: Merge from coreutils.
2137
2138 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
2139
2140 More portability fixes for problems summarized by Nelson H. F. Beebe.
2141
2142 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
2143 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
2144 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
2145 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
2146 messes up because C++ code is compiled in 32-bit mode but linked
2147 in 64-bit mode.
2148
2149 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
2150
2151 More portability fixes for problems summarized by Nelson H. F. Beebe.
2152
2153 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
2154 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
2155
2156 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
2157 nodist_PROGRAMS, since we don't need to actually compile the
2158 example if we're just doing a plain 'make'. This avoids bothering
2159 the installer unnecessarily about problems due to weird C++
2160 compilers.
2161
2162 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
2163
2164 More portability fixes for problems summarized by Nelson H. F. Beebe.
2165
2166 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
2167 than #include "...", and compile with -I'.'. The old method was
2168 not portable, according to Posix and the C standard, and it does
2169 not work with Sun C 5.7, where previous #line directives affect
2170 the working directory used in later #include "..." directives.
2171
2172 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2173
2174 Various DJGGP specific issues in /djgpp
2175
2176 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
2177
2178 More portability fixes for problems summarized by Nelson H. F. Beebe.
2179
2180 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
2181 '#include <map>' works and that you can apply ++ to iterators.
2182
2183 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
2184
2185 Work around portability problems summarized by Nelson H. F. Beebe in
2186 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
2187
2188 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2189 that '#include <string>' works.
2190
2191 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
2192 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
2193 "warning: sorry: semantics of inline function static data `const
2194 unsigned char translate_table[262]' are wrong (you'll wind up with
2195 multiple copies)".
2196
2197 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
2198 or, xor to not_, and_, or_, and xor_, respectively. This works
2199 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
2200 random system header somewhere that includes the equivalent of
2201 <iso646.h>.
2202
2203 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
2204 -E" works; it apparently doesn't work with PathScale EKO Compiler
2205 Suite Version 2.0.
2206
2207 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
2208
2209 During deterministic GLR operation, user actions should be able to
2210 influence the parse by changing yychar. To make this easier to fix and
2211 to make glr.c easier to evolve in general, don't maintain yytoken in
2212 parallel with yychar; just compute yytoken when needed.
2213 * tests/glr-regression.at (Incorrect lookahead during deterministic
2214 GLR): Check that setting yychar in a user action has the intended
2215 effect.
2216 * data/glr.c (yyGLRStack): Remove yytokenp member.
2217 (yyclearin): Don't set *yytokenp.
2218 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
2219 yychar rather than *yytokenp to determine the current lookahead.
2220 Compute yytoken locally when needed.
2221 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
2222 point to.
2223
2224 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
2225 after `--report' documentation.
2226
2227 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
2228
2229 * src/parse-gram.y (grammar_declaration): Location of printer
2230 symbol is @1, not list->location. Bug reported by twlevo.
2231 * tests/input.at (Incompatible Aliases): Adjust to above change.
2232
2233 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
2234
2235 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
2236 all the test at once. This makes the output easier to read in the
2237 normal case.
2238
2239 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
2240 got from <http://bro-ids.org/download.html>. The bug is that
2241 when two actions appeared in succession, the second one was
2242 scanned before the first one was added to the grammar rule
2243 as a midrule action. Bison then output the incorrect warning
2244 "parse.y:905.17-906.36: warning: unused value: $3".
2245 * src/parse-gram.y (BRACED_CODE, action): These are no longer
2246 associated with a value.
2247 (rhs): Don't invoke grammar_current_rule_action_append.
2248 (action): Invoke it here instead.
2249 * src/reader.c (grammar_midrule_action): Now extern.
2250 (grammar_current_rule_action_append): Don't invoke
2251 grammar_midrule_action; that is now the scanner's job.
2252 * src/reader.h (last_string, last_braced_code_loc):
2253 (grammar_midrule_action): New decls.
2254 * src/scan-gram.l (last_string): Now extern, sigh.
2255 (last_braced_code_loc): New extern variable.
2256 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
2257 rule already has an action.
2258 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
2259 * tests/input.at (AT_CHECK_UNUSED_VALUES):
2260 Add some tests to check that the above changes fixed the bug.
2261
2262 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
2263
2264 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
2265 All used changed. Check whether the symbol has a destructor,
2266 not whether it is typed.
2267 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
2268 that the values are still reported as unused. All line numbers
2269 adjusted.
2270
2271 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
2272
2273 Work around a bug in bro 0.8, which underparenthesizes its
2274 definition of YYLLOC_DEFAULT.
2275 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
2276 their arguments.
2277 * data/lalr1.cc: Likewise.
2278 * data/yacc.cc: Likewise.
2279
2280 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
2281
2282 Work around a bug in Pike 7.0, and give the Pike folks a
2283 better way to override the usual int widths.
2284 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
2285 user can override the types.
2286 (short): #undef, to work around a bug in Pike 7.0.
2287 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
2288 (union yyalloc.yyss): Use yytype_int16 rather than short.
2289 All uses changed.
2290 (yysigned_char): Remove.
2291 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
2292 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
2293 * tests/regression.at (Web2c Actions): Adjust to above changes.
2294
2295 * src/reader.c (check_and_convert_grammar): New function.
2296 (reader): Close the input file even if something went wrong during
2297 parsing. Minor file descriptor leak reported by twlevo.
2298
2299 * src/assoc.c (assoc_to_string): Use a default: abort (); case
2300 to pacify gcc -Wswitch-default.
2301 * src/scan-gram.l (adjust_location): Use a default: break; case
2302 to pacify gcc -Wswitch-default.
2303 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
2304 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2305 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2306 Move these decls to scan-skel.l, since they don't need to be
2307 visible elsewhere.
2308 * src/scan-skel.l: Accept the above decls.
2309 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
2310 is used.
2311
2312 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
2313
2314 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
2315 since we don't want to insist on a version number at the start
2316 of the changelog every time.
2317 * Makefile.maint: Sync from coreutils a bit better.
2318 (sc_trailing_blank): Renamed from sc_trailing_space.
2319 All uses changed.
2320 (sc_no_if_have_config_h, sc_require_config_h):
2321 (sc_prohibit_assert_without_use): New rules.
2322 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
2323 (sc_dd_max_sym_length): Fix leading spaces in rule.
2324 (sc_system_h_headers): Prefix with @.
2325 (sc_useless_cpp_parens, m4-check): Output line numbers.
2326 (changelog-check): Allow version only in head.
2327 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
2328 satisfy new Makefile.maint rule.
2329 * data/glr.c: Likewise.
2330 * data/glr.cc: Likewise.
2331 * data/lalr1.cc: Likewise.
2332 * data/yacc.c: Likewise.
2333 * lib/ebitsetv.c: Likewise.
2334 * lib/lbitset.c: Likewise.
2335 * lib/subpipe.c: Likewise.
2336 * lib/timevar.c: Likewise.
2337 * src/system.h: Likewise.
2338 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
2339 * djgpp/Makefile.maint: Add copyright notice.
2340 * djgpp/README.in: Likewise.
2341 * djgpp/config.bat: Likewise.
2342 * djgpp/config.site: Likewise.
2343 * djgpp/config_h.sed: Likewise.
2344 * djgpp/djunpack.bat: Likewise.
2345 * djgpp/config.sed: Fix copyright notice to match standard format.
2346 * djgpp/subpipe.h: Likewise.
2347 * lib/bitsetv-print.c: Likewise.
2348 * lib/bitsetv.c: Likewise.
2349 * lib/subpipe.h: Likewise.
2350 * lib/timevar.c: Likewise.
2351 * lib/timevar.h: Likewise.
2352 * djgpp/subpipe.c: Use standard recipe for config.h.
2353 * lib/abitset.c: Likewise.
2354 * lib/bitset.c: Likewise.
2355 * lib/bitset_stats.c: Likewise.
2356 * lib/bitsetv-print.c: Likewise.
2357 * lib/bitsetv.c: Likewise.
2358 * lib/ebitsetv.c: Likewise.
2359 * lib/get-errno.c: Likewise.
2360 * lib/lbitset.c: Likewise.
2361 * lib/subpipe.c: Likewise.
2362 * lib/timevar.c: Likewise.
2363 * lib/vbitset.c: Likewise.
2364 * tests/local.at: Likewise.
2365 * src/scan-gram.l: Don't include verify.h, since system.h does
2366 that for us.
2367 * .x-sc_require_config_h: New file.
2368 * .x-sc_unmarked_diagnostics: New file.
2369
2370 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
2371
2372 Be a bit more systematic about using 'abort'.
2373 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
2374 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
2375 Put 'default: abort ();' before some other case, to satisfy older
2376 pedantic compilers.
2377 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2378 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
2379 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
2380 * src/conflicts.c (resolve_sr_conflict): Likewise.
2381 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
2382 (get_decision_str, get_orientation_str, get_node_alignment_str):
2383 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
2384 (get_linestyle_str, get_arrowstyle_str): Likewise.
2385 * src/conflicts.c (resolve_sr_conflict):
2386 Use a default case rather than one for the one remaining enum
2387 value, to catch invalid enum values as well.
2388 * src/lalr.c (set_goto_map, map_goto):
2389 Prefer "assert (FOO);" to "if (!FOO) abort ();".
2390 * src/nullable.c (nullable_compute, token_definitions_output):
2391 Likewise.
2392 * src/reader.c (packgram, reader): Likewise.
2393 * src/state.c (transitions_to, state_new, state_reduction_find):
2394 Likewise.
2395 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
2396 (symbol_pack): Likewise.
2397 * src/tables.c (conflict_row, pack_vector): Likewise.
2398 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
2399 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
2400 * src/system.h: Don't include <assert.h>.
2401 (assert): New macro.
2402
2403 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
2404 (Destructor Decl, Parser Function, Pure Calling):
2405 Describe rules for braces inside C code more carefully.
2406
2407 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
2408
2409 Fix some porting glitches found by Nelson H. F. Beebe.
2410 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
2411 compilers that don't understand that abort () does not return.
2412 * src/state.c (transitions_to): Likewise.
2413 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2414 that '#include <cstdlib>' works.
2415 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
2416 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
2417 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
2418 for the benefit of some pre-C99 compilers.
2419
2420 * bootstrap: Undo changes to gnulib files that autoreconf made.
2421
2422 Minor fixups to get 'make maintainer-check' to work.
2423 * configure.ac: Don't use -Wnested-externs, as it's incompatible
2424 with the new verify.h implementation.
2425 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
2426 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
2427 * data/yacc.c (YYUSE): Likewise.
2428 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
2429 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
2430 * src/parse-gram.y (declaration): Don't pass a string constant
2431 to a function that expects char *, since GCC might complain
2432 about the constant value.
2433 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
2434 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
2435 before #defining them.
2436 * tests/glr-regression.at
2437 (Incorrectly initialized location for empty right-hand side in GLR):
2438 In yyerror, use the msg arg.
2439 (Corrupted semantic options if user action cuts parse):
2440 (Incorrect lookahead during deterministic GLR):
2441 (Incorrect lookahead during nondeterministic GLR):
2442 Don't name a local var 'index'; it shadows string.h's 'index'.
2443
2444 2006-01-19 Akim Demaille <akim@epita.fr>
2445
2446 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
2447 location, not just parts of it.
2448
2449 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
2450
2451 * NEWS: Document the fact that multiple %unions are now allowed.
2452 * doc/bison.texinfo (Union Decl): Likewise.
2453 * TODO: This feature is now implemented, so remove it from
2454 the wishlist.
2455
2456 * Makefile.maint: Merge with coreutils Makefile.maint.
2457 (CVS_LIST): Use build-aux version if available.
2458 (VERSION_REGEXP): New macro.
2459 (syntax-check-rules): Add sc_no_if_have_config_h,
2460 sc_prohibit_assert_without_use, sc_require_config_h,
2461 sc_useless_cpp_parens.
2462 (sc_obsolete_symbols): Check for O_NDELAY.
2463 (sc_dd_max_sym_length): Track coreutils.
2464 (sc_unmarked_diagnostics): Look in all files, not just *.c.
2465 (sc_useless_cpp_parens): New rule.
2466 (news-date-check): Look for version or today's date.
2467 (changelog-check): Don't require version number near head.
2468 (copyright-check): Use current year instead of hardwiring 2005.
2469 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2470 (announcement): Add --gpg-key-ID.
2471
2472 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
2473 with "file system".
2474
2475 Avoid undefined behavior that addressed just before the start of an
2476 array. Problem reported by twlevo.
2477 * src/reader.c (packgram): Prepend a new sentinel before ritem.
2478 * src/lalr.c (build_relations): Rely on new sentinel.
2479 * src/gram.c (gram_free): Adjust to new sentinel.
2480
2481 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
2482
2483 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
2484 yylookaheadNeeds. All uses updated.
2485 (yysplitStack): Rename local yynewLookaheadStatuses to
2486 yynewLookaheadNeeds.
2487 * data/glr-regression.at (Incorrect lookahead during nondeterministic
2488 GLR): In comments, change `lookahead status' to `lookahead need'.
2489
2490 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2491
2492 * data/glr.c (yysplitStack): A little stylistic rewrite.
2493
2494 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2495
2496 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
2497
2498 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
2499
2500 * doc/bison.texinfo: Fix some typos.
2501 (GLR Semantic Actions): New subsection discussing special
2502 considerations because GLR semantic actions might be deferred.
2503 (Actions): Mention look-ahead usage of yylval.
2504 (Actions and Locations): Mention look-ahead usage of yylloc.
2505 (Special Features for Use in Actions): Add YYEOF entry and mention it
2506 in the yychar entry.
2507 In the yychar entry, remove mention of the local yychar case (pure
2508 parser) since this is irrelevant information when writing semantic
2509 actions and since it's already discussed in `Bison Symbols' where
2510 yychar is otherwise described as an external variable.
2511 In the yychar entry, don't call it the `current' look-ahead since it
2512 isn't when semantic actions are deferred.
2513 In the yychar and yyclearin entries, add note about deferred semantic
2514 actions.
2515 Add yylloc and yylval entries discussing look-ahead usage.
2516 (Look-Ahead Tokens): When discussing yychar, don't call it the
2517 `current' look-ahead, and do mention yylval and yylloc.
2518 (Error Recovery): Cross-reference `Action Features' when mentioning
2519 yyclearin.
2520 (Bison Symbols): In the yychar entry, don't call it the `current'
2521 look-ahead.
2522 In the yylloc and yylval entries, mention look-ahead usage.
2523
2524 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2525
2526 * tests/glr-regression.at: Update copyright year to 2006.
2527
2528 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2529
2530 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
2531 use during nondeterministic operation to track which stacks have
2532 actually needed the current lookahead.
2533 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
2534 Allocate, deallocate, resize, and otherwise shuffle space for
2535 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
2536 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
2537 appropriately during nondeterministic operation.
2538 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
2539 members to store the current lookahead to be used by the deferred
2540 user action.
2541 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
2542 from which the RHS is taken. Set the lookahead members of the new
2543 yySemanticOption according to the lookahead status for stack yyk.
2544 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
2545 yyaddDeferredAction.
2546 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
2547 members of yySemanticOption before invoking yyuserAction, and then set
2548 them back to their current values afterward.
2549 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
2550 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
2551 * tests/glr-regression.at: Remove `.' from the ends of recent test case
2552 titles for consistency.
2553 (Leaked merged semantic value if user action cuts parse): In order to
2554 suppress lint warnings, use arguments in merge function, and assign
2555 char value < 128 in main.
2556 (Incorrect lookahead during deterministic GLR): New test case.
2557 (Incorrect lookahead during nondeterministic GLR): New test case.
2558
2559 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2560
2561 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
2562 !yyvaluep as signal that no semantic value is available to print.
2563 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
2564 to print a semantic value.
2565
2566 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2567
2568 * tests/glr-regression.at: For consistency with my newer test cases,
2569 don't thank myself.
2570
2571 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2572
2573 * data/glr.c (yyresolveValue): When merging semantic options, if at
2574 least one user action succeeds but a later one cuts the parse, then
2575 destroy the semantic value before returning rather than leaking it.
2576 (yyresolveStates): If a user action cuts the parse and thus
2577 yyresolveValue fails, ignore the (unset) semantic value rather than
2578 corrupting the yyGLRState, and empty the semantic options list since
2579 the user actions should have called all necessary destructors.
2580 Simplify code with YYCHK.
2581 * tests/glr-regression.at (Corrupted semantic options if user action
2582 cuts parse): New test case.
2583 (Undesirable destructors if user action cuts parse): New test case.
2584 Before applying any of this patch, this test case never actually failed
2585 for me... but only because the corrupted semantic options usually
2586 masked this bug.
2587 (Leaked merged semantic value if user action cuts parse): New test
2588 case.
2589
2590 2006-01-05 Akim Demaille <akim@epita.fr>
2591
2592 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
2593
2594 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
2595
2596 * data/c.m4 (b4_c_modern): New macro, with a new provision for
2597 _MSC_VER. Problem reported by Cenzato Marco.
2598 (b4_c_function_def): Use it.
2599 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
2600 b4_c_modern.
2601 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
2602 than rolling our own.
2603
2604 2006-01-04 Akim Demaille <akim@epita.fr>
2605
2606 Also warn about non-used mid-rule values.
2607 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
2608 member.
2609 (symbol_list_new): Adjust.
2610 * src/reader.c (symbol_typed_p): New.
2611 (grammar_rule_check): Use it.
2612 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
2613 Check its rule.
2614 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
2615 Use it.
2616 * tests/actions.at (Exotic Dollars): Adjust.
2617
2618 2006-01-04 Akim Demaille <akim@epita.fr>
2619
2620 * src/reader.c (grammar_midrule_action): If $$ is set in a
2621 mid-rule, move the `used' bit to its lhs.
2622 * tests/input.at (Unused values): New.
2623 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
2624
2625 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
2626
2627 * doc/bison.texinfo (Bison Options): Say more accurately what
2628 --yacc does.
2629 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
2630 about declarations in the grammar when in Yacc mode, as POSIX does
2631 not require a diagnostic when the grammar uses extensions.
2632
2633 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
2634
2635 Warn about dubious constructions like "%token T T".
2636 Reported by twlevo.
2637 * src/symtab.h (struct symbol.declared): New member.
2638 * src/symtab.c (symbol_new): Initialize it to false.
2639 (symbol_class_set): New arg DECLARING, specifying whether
2640 this is a declaration that we want to warn about, if there
2641 is more than one of them. All uses changed.
2642
2643 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
2644 Allow multiple %union directives, whose contents concatenate.
2645 * src/parse-gram.y (grammar_declaration): Likewise.
2646 Use muscle_code_grow, so that we don't need stype_line any more.
2647 All uses changed.
2648
2649 * src/muscle_tab.c (muscle_grow): Fix comment.
2650
2651 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
2652 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
2653 Update copyright year to 2006.
2654
2655 2006-01-03 Akim Demaille <akim@epita.fr>
2656
2657 Have glr.cc pass (some of) the calc.at tests.
2658 * data/glr.cc (b4_parse_param_orig): New.
2659 (b4_parse_param): Improve its definition, and bound it more
2660 clearly in the skeleton.
2661 (b4_epilogue): Append, instead of prepending, in order to keep
2662 #line consistency.
2663 Simplify the generation of auxiliary functions: locations and
2664 purity are mandated.
2665 (b4_global_tokens_and_yystype): Honor it.
2666 * data/location.cc (c++.m4): Don't include it.
2667 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
2668 and AT_SKEL_CC_IF.
2669 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
2670 AT_LALR1_CC_IF.
2671 Be sure to initialize the first position's filename.
2672 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
2673 mandated anyway.
2674 (AT_CHECK_CALC_GLR_CC): New.
2675 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
2676
2677 2006-01-02 Akim Demaille <akim@epita.fr>
2678
2679 * src/output.c (output_skeleton): Don't hard wire the inclusion of
2680 c.m4.
2681 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
2682 * data/glr.cc: Do not include stack.hh.
2683
2684 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2685
2686 * data/glr.c: Reformat whitespace with tabs.
2687 (b4_lpure_formals): Remove this unused m4 macro.
2688 * tests/cxx-type.at: Reformat whitespace with tabs.
2689 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
2690 since it's a member. Rename type to isNterm for clarity.
2691
2692 2005-12-29 Akim <akim@sulaco.local>
2693
2694 Let glr.cc catch up with symbol_value_print.
2695 * data/glr.cc (b4_yysymprint_generate): Replace by...
2696 (b4_yy_symbol_print_generate): this.
2697 (yy_symbol_print, yy_symbol_value_print): Declare them.
2698
2699 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
2700
2701 * src/location.h (boundary): Note that a line or column equal
2702 to INT_MAX indicates an overflow.
2703 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
2704 (rule_length_overflow, increment_rule_length, add_column_width):
2705 New functions.
2706 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
2707 (<SC_BRACED_CODE>"}"):
2708 Use increment_rule_length rather than incrementing it by hand.
2709 (adjust_location, handle_syncline): Diagnose overflow.
2710 (handle_action_dollar, handle_action_at):
2711 Fix bug with monstrosities like $-2147483648.
2712 Remove now-unnecessary checks.
2713 (scan_integer): Verify assumptions and remove now-unnecessary checks.
2714 (convert_ucn_to_byte): Verify assumptions.
2715 (handle_syncline): New arg LOC. All callers changed.
2716 Don't store through a value derived from char const * pointer.
2717
2718 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
2719 GCC warnings.
2720
2721 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
2722
2723 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
2724 Remove unnecessary forward static decls.
2725
2726 2005-12-27 Akim Demaille <akim@epita.fr>
2727
2728 * src/reader.c (grammar_current_rule_check): Also check that $$
2729 is used.
2730 Take the rule to check as argument, hence rename as...
2731 (grammar_rule_check): this.
2732 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
2733 Rename as...
2734 (grammar_rule_begin, grammar_rule_end): these, for consistency.
2735 (grammar_midrule_action, grammar_symbol_append): Now static.
2736 * tests/torture.at (input): Don't rely on the default action
2737 being always performed.
2738 * tests/calc.at: "Set" $$ even when the action is "cut" with
2739 YYERROR or other.
2740 * tests/actions.at (Exotic Dollars): Instead of using unused
2741 values, check that the warning is issued.
2742
2743 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
2744
2745 * NEWS: Improve wording for unused-value warnings.
2746
2747 2005-12-22 Akim Demaille <akim@epita.fr>
2748
2749 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
2750 (b4_yysymprint_generate): Rename as...
2751 (b4_yy_symbol_print_generate): this.
2752 Generate yy_symbol_print instead of yysymprint.
2753 Generate also yy_symbol_value_print, and use it.
2754
2755 2005-12-22 Akim Demaille <akim@epita.fr>
2756
2757 * NEWS: Warn about unused values.
2758 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
2759 a `used' member.
2760 (symbol_list_n_get, symbol_list_n_used_set): New.
2761 (symbol_list_n_type_name_get): Use symbol_list_n_get.
2762 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
2763 * src/reader.c (grammar_current_rule_check): Check that values are
2764 used.
2765 * src/symtab.c (symbol_print): Accept 0.
2766 * tests/existing.at: Remove the type information.
2767 Empty the actions.
2768 Remove useless actions (beware of mid-rule actions: perl -000
2769 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
2770 * tests/actions.at (Exotic Dollars): Use unused values.
2771 * tests/calc.at: Likewise.
2772 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2773 Likewise.
2774
2775 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
2776 rule_useful_p.
2777
2778 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
2779
2780 Undo 2005-12-01 tentative license wording change. The wording is
2781 still being reviewed by the lawyers, and we don't want to wait for
2782 them before publishing a test release. For now, revert to the
2783 previous wording.
2784 * NEWS: Undo 2005-12-01 change.
2785 * data/glr.c: Revert to previous license wording.
2786 * data/glr.cc: Likewise.
2787 * data/lalr1.cc: Likewise.
2788 * data/location.cc: Likewise.
2789 * data/yacc.c: Likewise.
2790
2791 * NEWS: Reword %destructor vs YYABORT etc.
2792 * data/glr.c: Use American spacing, for consistency.
2793 * data/glr.cc: Likewise.
2794 * data/lalr1.cc: Likewise.
2795 * data/yacc.c: Likewise.
2796 * data/yacc.c: Reformat comments slightly.
2797 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
2798 for consistency. Fix some spelling errors and reword recently-included
2799 text slightly.
2800 * tests/cxx-type.at: Cast results of malloc, for C++.
2801
2802 2005-12-21 Joel E. Denny <address@hidden>
2803
2804 * tests/cxx-type.at: Construct a tree, count the parents of shared
2805 nodes, and free each node once and only once. Previously, the memory
2806 for semantic values was leaked instead.
2807
2808 2005-12-21 Joel E. Denny <address@hidden>
2809
2810 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
2811 (yylval, yylloc): If pure, #define to yystackp->yyval and
2812 yystackp->yyloc similar to yychar and yynerrs.
2813 (yyparse): If pure, remove local yylval and yylloc. Add local
2814 yystackp to accommodate pure definitions of yylval and yylloc.
2815 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
2816 yylvalp and yyllocp to &yylval and &yylloc.
2817 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
2818 namespace. Previously, nerrs and char were missing, but lval and lloc
2819 weren't necessary.
2820 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
2821 yylvalp and yyllocp parameters since, if pure, these are now always
2822 accessible through yystackp. If not pure, they are still accessible
2823 globally.
2824 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
2825 `if (YYID (N))' to pacify lint.
2826
2827 2005-12-21 Akim Demaille <akim@epita.fr>
2828
2829 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
2830 destroy the RHS symbols of a rule.
2831 * data/yacc.c (yylen): Initialize to 0.
2832 Keep its value to the number of items to possibly shift.
2833 In particular, a regular successful parse that ends on YYFINAL by
2834 a (internal) YYACCEPT must not have yylen != 0.
2835 (yyerrorlab, yyreturn): Pop the RHS.
2836 Reorder a bit to emphasize the `shifting' bits of code.
2837 (YYPOPSTACK): Now accept a number of items to pop.
2838 * data/lalr1.cc: Likewise.
2839 * data/glr.c: Formatting changes.
2840 Use goto instead of fall through.
2841 * doc/bison.texinfo (Destructor Decl): Complete.
2842
2843 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2844
2845 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2846 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
2847 * djgpp/config.bat: Replace every occurence of the file name
2848 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2849 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2850 * djgpp/config.sed: Replace every occurence of the file name
2851 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2852 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2853 * djgpp/djunpack.bat: DJGPP specific file.
2854 * djgpp/fnchange.lst: DJGPP specific file.
2855 * djgpp/README.in: Add new information about how to unpack the bison
2856 source on MSDOS and other systems which have 8.3 file name restrictions
2857 using djunpack.bat and fnchange.lst.
2858
2859 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
2860
2861 * bootstrap (build_cvs_prefix): Remove; unused.
2862 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
2863 when getting gnulib.
2864
2865 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
2866
2867 * data/glr.c: Reorder typedef declarations for structs to match order
2868 of struct declarations.
2869 Rename yystack everywhere to yystackp except in yyparse where it's not
2870 a pointer.
2871 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
2872 consistency.
2873 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
2874 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
2875 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
2876 lint.
2877
2878 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
2879
2880 * tests/sets.at (Accept): Fix typos in regular expression used to
2881 sed out the final state number.
2882
2883 Work around portability problem on Solaris 10: flex-generated
2884 files include <stdio.h> before <config.h>, which messes up
2885 because the latter defines __EXTENSIONS__. Address the problem
2886 by creating two new little files that include <config.h> first,
2887 then include the flex-generated files. Rewrite everyone else
2888 to include <config.h> first, as well.
2889 * lib/timevar.c: Always include "config.h".
2890 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
2891 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
2892 (EXTRA_bison_SOURCES): New macro.
2893 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
2894 * src/system.h: Don't include config.h.
2895 * src/LR0.c: Include <config.h> first.
2896 * src/assoc.c: Likewise.
2897 * src/closure.c: Likewise.
2898 * src/complain.c: Likewise.
2899 * src/conflicts.c: Likewise.
2900 * src/derives.c: Likewise.
2901 * src/files.c: Likewise.
2902 * src/getargs.c: Likewise.
2903 * src/gram.c: Likewise.
2904 * src/lalr.c: Likewise.
2905 * src/location.c: Likewise.
2906 * src/main.c: Likewise.
2907 * src/muscle_tab.c: Likewise.
2908 * src/nullable.c: Likewise.
2909 * src/output.c: Likewise.
2910 * src/parse-gram.y: Likewise.
2911 * src/print.c: Likewise.
2912 * src/print_graph.c: Likewise.
2913 * src/reader.c: Likewise.
2914 * src/reduce.c: Likewise.
2915 * src/relation.c: Likewise.
2916 * src/state.c: Likewise.
2917 * src/symlist.c: Likewise.
2918 * src/symtab.c: Likewise.
2919 * src/tables.c: Likewise.
2920 * src/uniqstr.c: Likewise.
2921 * src/vcg.c: Likewise.
2922
2923 * src/parse-gram.y: Fix minor problems uncovered by lint.
2924 (current_lhs, current_lhs_location): Now static.
2925 (current_assoc): Remove unused variable.
2926
2927 Cleanups so that Bison-generated parsers have less lint.
2928 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
2929 Prepend /*ARGSUSED*/, for lint's sake.
2930 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
2931 definition if 'lint' is defined.
2932 (YYID): New macro (or function, if lint).
2933 All uses of /*CONSTCOND*/0 replaced by YYID(0).
2934 * data/yacc.c: Likewise.
2935 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
2936 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
2937 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
2938 is C++ only.
2939 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
2940 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
2941 Use YYID(0) rather than 0, for lint.
2942 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
2943 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
2944
2945 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
2946
2947 * tests/glr-regression.at
2948 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2949 Close memory leak reported by twlevo.
2950
2951 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
2952
2953 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
2954 all stacks.
2955 (yyparse): Iterate another stack in order to call user destructors.
2956 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2957 New test case.
2958 (Duplicated user destructor for lookahead): This test now is expected
2959 to succeed.
2960
2961 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
2962
2963 * NEWS: Document the following change.
2964 * data/yacc.c: Say "parser skeleton" rather than "file", since
2965 it's no longer just a file.
2966 * data/glr.c: Grant a special exception for C GLR parsers, that
2967 reads like the already-existing exception for C LALR(1) parsers.
2968 * data/glr.cc: Likewise.
2969 * data/lalr1.cc: Likewise.
2970 * data/location.cc: Likewise.
2971 * data/yacc.c: Reword the "written by" statement to clarify that
2972 it was the parser skeleton, not the entire output file.
2973 * data/glr.c: Written by Paul Hilfinger.
2974 * data/glr.cc: Written by Akim Demaille.
2975 * data/lalr1.cc: Likewise.
2976
2977 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
2978
2979 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
2980 Fix typos in previous change that broke 'make check'.
2981 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
2982 supported in C.
2983 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
2984 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
2985 We can revert this once things settle down.
2986
2987 * src/conflicts.c (conflicts_print): Don't print file name twice
2988 when %expect fails because there were no conflicts.
2989 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
2990 change.
2991 * tests/conflicts.at (%expect not enough, %expect too much):
2992 (%expect with reduce conflicts): Adjust to new behavior.
2993
2994 2005-11-18 Akim Demaille <akim@epita.fr>
2995
2996 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
2997 errors.
2998 * NEWS: Document this.
2999 * doc/bison.texinfo (Expect Decl): Likewise.
3000
3001 2005-11-16 Akim Demaille <akim@epita.fr>
3002
3003 Generalize the display of semantic values and locations in traces.
3004 * data/glr.c (yy_reduce_print): Fix indices (again).
3005 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
3006 literal integers.
3007 * data/lalr1.cc (yyreduce_print): Rename as...
3008 (yy_reduce_print): this.
3009 Display values and locations.
3010 * data/yacc.c (yy_reduce_print): Likewise.
3011 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
3012 (yysymprint): Move higher to be visible from yy_reduce_print).
3013 (yyparse): Adjust.
3014 * tests/calc.at: Adjust the expected length of the traces.
3015
3016 2005-11-14 Akim Demaille <akim@epita.fr>
3017
3018 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
3019 from 1 to N, while values and location start at 0.
3020 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
3021
3022 2005-11-14 Akim Demaille <akim@epita.fr>
3023
3024 * data/glr.c (yy_reduce_print): Fix the $ number.
3025
3026 2005-11-14 Akim Demaille <akim@epita.fr>
3027
3028 "Use" parse parameters.
3029 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
3030 * data/glr.c, data/glr.cc: Use them.
3031 * data/glr.c (YYUSE): Have a C++ definition that supports
3032 non-pointer types.
3033
3034 2005-11-14 Akim Demaille <akim@epita.fr>
3035
3036 * data/glr.c (yyexpandGLRStack): Declare only if defined.
3037
3038 2005-11-14 Akim Demaille <akim@epita.fr>
3039
3040 * data/glr.cc: New.
3041 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
3042
3043 2005-11-12 Akim Demaille <akim@epita.fr>
3044
3045 Let position and location be PODs.
3046 * data/location.cc (position::initialize, location::initialize): New.
3047 (position::position, location::location): Define only if
3048 b4_location_constructors is defined.
3049 * data/lalr1.cc (b4_location_constructors): Define it for backward
3050 compatibility.
3051 * doc/bison.texinfo (Initial Action Decl): Use initialize.
3052
3053 2005-11-12 Akim Demaille <akim@epita.fr>
3054
3055 * data/lalr1.cc: Move the body of the ctor and dtor into the
3056 parser file (instead of the header).
3057 Wrap the implementations in a "namespace yy".
3058
3059 2005-11-12 Akim Demaille <akim@epita.fr>
3060
3061 Have glr.c include its header file when created.
3062 * data/glr.c (b4_shared_declarations): New.
3063 Output them verbatim in the parser if !%defines, otherwise
3064 output then in the header file, and include it instead.
3065
3066 2005-11-11 Akim Demaille <akim@epita.fr>
3067
3068 * data/glr.c: Comment changes.
3069
3070 2005-11-11 Akim Demaille <akim@epita.fr>
3071
3072 When yydebug, report semantic and location values for reductions.
3073 * data/glr.c (yy_reduce_print): Report the semantic values and the
3074 locations.
3075 (YY_REDUCE_PRINT): Adjust.
3076 (yyglrReduce): Use them.
3077 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
3078 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
3079 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
3080 traces.
3081
3082 2005-11-10 Akim Demaille <akim@epita.fr>
3083
3084 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
3085 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
3086 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
3087
3088 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
3089
3090 * m4/cxx.m4, examples/Makefile.am: Don't build
3091 examples/calc++ if no C++ compiler is available. (trivial change)
3092
3093 2005-11-09 Akim Demaille <akim@epita.fr>
3094
3095 * src/scan-skel.l: Use a couple of asserts.
3096
3097 2005-11-03 Akim Demaille <akim@epita.fr>
3098
3099 In some (weird) cases, the final state number is incorrect.
3100 Reported by Alexandre Duret-Lutz.
3101 * src/LR0.c (state_list_append): Remove the computation of
3102 final_state.
3103 (save_reductions): Do it here.
3104 (get_state): Alpha conversion.
3105 (generate_states): Use a for loop.
3106 * src/gram.h (item_number_is_rule_number)
3107 (item_number_is_symbol_number): New.
3108 * src/state.c: Use assert.
3109 * src/system.h: Include assert.h.
3110 * tests/sets.at (Accept): New.
3111
3112 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3113
3114 * data/glr.c (yyfill): Adjust comment.
3115 (yyresolveAction): Initialize default location properly
3116 for empty right-hand sides.
3117 (yydoAction): Ditto.
3118 Add comment explaining apparently dead code.
3119 * tests/glr-regression.at
3120 (Incorrectly initialized location for empty right-hand side in GLR):
3121 New test.
3122
3123 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
3124
3125 * bootstrap (cleanup_gnulib): New function. Use it to clean up
3126 gnulib when interrupted. This fixes some race conditions and
3127 works around some portability problems (one noted by Paul
3128 Hilfinger).
3129
3130 2005-10-22 Akim <akim@epita.fr>
3131
3132 * Makefile.cfg: Adjust to config -> build-aux.
3133 Reported by twledo.
3134
3135 2005-10-21 Akim Demaille <akim@epita.fr>
3136
3137 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
3138 the %parse-params.
3139 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
3140 * data/yacc.c (b4_Pure_if): Rename as...
3141 (b4_yacc_pure_if): this.
3142 (YY_SYMBOL_PRINT, yyparse): Adjust.
3143 * doc/bison.texinfo: Formatting changes.
3144
3145 2005-10-21 Akim Demaille <akim@epita.fr>
3146
3147 Finish the transition config -> build-aux.
3148 * configure.ac, Makefile.am: Use build-aux.
3149 * config/prev-version, config/announce-gen, config/Makefile.am:
3150 Move to...
3151 * build-aux/prev-version, build-aux/announce-gen,
3152 * build-aux/Makefile.am: here.
3153
3154 2005-10-14 Akim Demaille <akim@epita.fr>
3155
3156 * examples/calc++/test: Use set -x only when VERBOSE.
3157
3158 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
3159
3160 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
3161 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
3162
3163 2005-10-13 Akim Demaille <akim@epita.fr>
3164
3165 * src/scan-skel.l: Output the base name parts of the parser and
3166 header file names.
3167 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
3168 additional checks.
3169 Use this to exercise C++ outputs in subdirs.
3170 Reported by Oleg Smolsky.
3171
3172 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
3173
3174 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
3175 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
3176 Problem reported by John P. Hartmann.
3177 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
3178 already defined it.
3179
3180 2005-10-12 Akim Demaille <akim@epita.fr>
3181
3182 * src/parse-gram.y (version_check): Exit 63 to please missing
3183 (stands for "version mismatch).
3184 * tests/input.at, doc/bison.texinfo: Adjust.
3185
3186 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
3187
3188 Work around portability problems with Visual Age C compiler
3189 (xlc and xlC_r) reported by John P. Hartmann.
3190 * data/location.cc (initial_column, initial_line): Remove.
3191 All uses replaced by 0 and 1.
3192 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
3193 that xlc complains about.
3194 * src/scan-skel.l (skel_wrap): Likewise.
3195 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
3196 as __STDC__.
3197 * data/yacc.c (YYMODERN_C): New macro, which also looks at
3198 __STDC_VERSION__. Use it everywhere instead of looking at
3199 __STDC__ and __cplusplus.
3200
3201 2005-10-10 Akim Demaille <akim@epita.fr>
3202
3203 * examples/calc++/test: Be quiet unless VERBOSE.
3204
3205 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
3206
3207 * data/c.m4 (yydestruct, yysymprint):
3208 Use YYUSE instead of casting to void.
3209 * data/glr.c (YYUSE): New macro.
3210 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3211 Use it instead of rolling our own.
3212 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3213 (YYCHK1):
3214 Use /*CONSTCOND*/ to suppress lint warnings.
3215 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
3216 (YY_STACK_PRINT): Use 'false' not '0'.
3217 (YYUSE): New macro.
3218 (yysymprint_, yydestruct_): Use it instead of rolling our own.
3219 * data/yacc.c (YYUSE): New macro.
3220 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
3221 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
3222 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
3223
3224
3225 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
3226 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
3227
3228 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
3229
3230 Undo the parts of the unlocked-I/O change that substituted
3231 putc or puts for printf. This might hurt performance a bit,
3232 but some people prefer the printf style.
3233 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
3234 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
3235 All uses replaced by YYFPRINTF and YYDPRINTF.
3236 * data/yacc.c: Likewise.
3237 * lib/bitset.c (bitset_print): Likewise.
3238 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
3239 putc and puts.
3240 * lib/lbitset.c (debug_lbitset): Likewise.
3241 * src/closure.c (print_firsts, print_fderives): Likewise.
3242 * src/gram.c (grammar_dump): Likewise.
3243 * src/lalr.c (look_ahead_tokens_print): Likewise.
3244 * src/output.c (escaped_output): Likewise.
3245 (user_actions_output): Break apart two printfs.
3246 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
3247 * src/reduce.c (reduce_print): Likewise.
3248 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
3249 * src/system.h: Include unlocked-io.h rathe than stdio.h.
3250
3251 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
3252 Use assignments rather than casts-to-void to suppress
3253 unused-variable warnings. This pacifies 'lint'.
3254 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
3255 unused-variable warnings.
3256
3257 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3258
3259 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
3260
3261 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
3262
3263 Use unlocked I/O for a minor performance improvement on hosts like
3264 GNU/Linux and Solaris that support unlocked I/O. The basic idea
3265 is to use the gnlib unlocked-io module, and to prefer putc and
3266 puts to printf when either will work (since the latter doesn't
3267 come in an unlocked flavor).
3268 * bootstrap (gnulib_modules): Add unlocked-io.
3269 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
3270 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
3271 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
3272 and similarly for puts and putc and printf.
3273 * data/yacc.c: Likewise.
3274 * lib/bitset.c (bitset_print): Likewise.
3275 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
3276 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
3277 to printf.
3278 * lib/lbitset.c (debug_lbitset): Likewise.
3279 * src/closure.c (print_firsts, print_fderives): Likewise.
3280 * src/gram.c (grammar_dump): Likewise.
3281 * src/lalr.c (look_ahead_tokens_print): Likewise.
3282 * src/output.c (escaped_output): Likewise.
3283 (user_actions_output): Coalesce two printfs.
3284 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
3285 * src/reduce.c (reduce_print): Likewise.
3286 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
3287 * src/system.h: Include unlocked-io.h rather than stdio.h.
3288
3289 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
3290 this confuses xgettext.
3291
3292 2005-10-02 Akim Demaille <akim@epita.fr>
3293
3294 * bootstrap (gnulib_modules): Add strverscmp.
3295 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
3296 * m4/.cvsignore: Add strverscmp.m4.
3297 * src/parse-gram.y (%require): New token, new rule.
3298 (version_check): New.
3299 * src/scan-gram.l (%require): Adjust.
3300 * tests/input.at (AT_REQUIRE): New.
3301 Use it.
3302 * doc/bison.texinfo (Require Decl): New.
3303 (Calc++ Parser): Use %require.
3304
3305 2005-10-02 Akim Demaille <akim@epita.fr>
3306
3307 * data/location.cc: New.
3308
3309 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
3310 Akim Demaille <akim@epita.fr>
3311
3312 Make sure -odir/foo.cc creates dir/location.hh etc.
3313 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
3314 (spec_file_prefix, spec_verbose_file, spec_graph_file)
3315 (spec_defines_file): Now const.
3316 (dir_prefix): New.
3317 (short_base_name): Remove.
3318 * src/files.c: Adjust.
3319 (dirname.h): Include.
3320 (base_name): Don't prototype it.
3321 (finput): Remove, duplicates gram_in.
3322 (full_base_name, short_base_name): Replace by...
3323 (all_but_ext, all_but_tab_ext): these.
3324 (compute_base_names): Rename as...
3325 (compute_file_name_parts): this.
3326 Update to compute the new variables, including dir_prefix.
3327 Adjust dependencies.
3328 * src/output.c (prepare): Output them.
3329 * src/reader.c: Adjust to use gram_in, not finput.
3330 * src/scan-skel.l (@dir_prefix@): New.
3331
3332 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3333
3334 * lib/subpipe.c: New function end_of_output_subpipe() added
3335 to allow support for non-posix systems. This is a no-op function
3336 for posix systems.
3337
3338 * lib/subpipe.h: New function end_of_output_subpipe() added
3339 to allow support for non-posix systems. This is a no-op function
3340 for posix systems.
3341
3342 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
3343 handle the lack of pipe/fork functionality on non-posix systems.
3344
3345 * djgpp/Makefile.maint: DJGPP specific file.
3346
3347 * djgpp/README.in: DJGPP specific file.
3348
3349 * djgpp/config.bat: DJGPP specific configuration file.
3350
3351 * djgpp/config.sed: DJGPP specific configuration file.
3352
3353 * djgpp/config.site: DJGPP specific configuration file.
3354
3355 * djgpp/config_h.sed: DJGPP specific configuration file.
3356
3357 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
3358
3359 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
3360
3361 2005-10-02 Akim Demaille <akim@epita.fr>
3362
3363 * data/location.cc: New, extract from...
3364 * data/lalr1.cc: here.
3365 (location.hh): Include it after the user prologue, in case the
3366 filename type is defined by the user.
3367 Forward declation location and position before the pre-prologue.
3368 (yyresult_): Rename as...
3369 (yyresult): this, it's a local variable, not an attribute.
3370 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
3371
3372 2005-10-01 Akim Demaille <akim@epita.fr>
3373
3374 * examples/extexi: Restore the #line generation.
3375
3376 2005-09-30 Akim Demaille <akim@epita.fr>,
3377 Alexandre Duret-Lutz <adl@gnu.org>
3378
3379 Move the token type and YYSTYPE in the parser class.
3380 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
3381 (parser::token): New, from the moved free definition of tokens.
3382 (parser::semantic_value): Now a full definition instead of an
3383 indirection to YYSTYPE.
3384 (b4_post_prologue): No longer included in the header file, but
3385 in the implementation file.
3386 * doc/bison.texi (C+ Language Interface): Update.
3387 * src/parse-gram.y: Support unary %define.
3388 * tests/actions.at: Define global_tokens_and_yystype for backward
3389 compatibility until we update the tests.
3390 * tests/calc.at: Idem.
3391 (first_line, first_column, last_line, last_column): Define for lalr1.cc
3392 to simplify the code.
3393
3394 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
3395
3396 Port to SunOS 4.1.4, which lacks strtoul and strerror.
3397 Ah, the good old days! Problem reported by Peter Klein.
3398 * bootstrap (gnulib_modules): Add strerror, strtoul.
3399 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
3400 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
3401
3402 2005-09-29 Akim Demaille <akim@epita.fr>
3403
3404 * data/c.m4 (b4_error_verbose_if): New.
3405 * data/lalr1.cc: Use it.
3406 (YYERROR_VERBOSE_IF): Remove.
3407 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
3408 parser members, replaced by...
3409 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
3410 local variables.
3411 (yysyntax_error_): Takes the state number as argument.
3412 (yyreduce_print_): Use the argument yyrule, not the former
3413 attribute yyn_.
3414
3415 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
3416
3417 * bootstrap (gnulib_modules): Add verify.
3418 * lib/.cvsignore: Add verify.h.
3419 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
3420 * src/system.h (verify): Remove.
3421 Include verify.h instead.
3422 * src/tables.c (tables_generate): Use new API for 'verify'.
3423
3424 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
3425
3426 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
3427 local variables whose names begin with 'yy'.
3428 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
3429 Trivial changes from Joel E. Denny.
3430
3431 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
3432 it itself.
3433 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
3434 don't use alloca any more.
3435
3436 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
3437 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
3438 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
3439 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
3440 to match yacc.c, to test more hosts.
3441
3442 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
3443
3444 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
3445 doesn't affect behavior.
3446 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
3447 Solaris, AIX, MSC.
3448 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
3449 This works a bit better with glibc, if user code has already included
3450 stdlib.h.
3451 * doc/bison.texinfo (Bison Parser): Document that users can't
3452 arbitrarily use malloc and free for other purposes. Document
3453 that <alloca.h> and <malloc.h> might be included.
3454 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
3455 user must declare alloca.
3456
3457 * HACKING (release): Forwarn the Translation Project about
3458 stable releses.
3459
3460 2005-09-20 Akim Demaille <akim@epita.fr>
3461
3462 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
3463
3464 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
3465
3466 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
3467 (YYSTACK_ALLOC_MAXIMUM): Use it.
3468 (yysyntax_error): New function.
3469 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
3470 multiple syntax errors are reported, and alloca is being used.
3471 Instead, reallocate buffers twice as big each time, so that
3472 we waste at most half the allocated memory. Start with a small
3473 (128-byte) buffer that will suffice in most cases anyway.
3474 Use yysyntax_error to do most of the work.
3475
3476 * doc/bison.texinfo (Error Reporting, Table of Symbols):
3477 yynerrs is the number of errors reported, not the number of
3478 errors encountered.
3479
3480 * tests/glr-regression.at (Duplicated user destructor for lookahead):
3481 Mark it as expected to fail.
3482 Cast result of malloc; problem reported by twlevo@xs4all.nl.
3483 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
3484 Don't start user-code symbols with "yy", to avoid name space problems.
3485
3486 2005-09-19 Akim Demaille <akim@epita.fr>
3487
3488 Remove the traits, failed experiment.
3489 It never proved useful, and anyway because of the current
3490 definition, it was not possible to have several specialization of
3491 this traits, making it useless.
3492 * data/lalr1.cc (yy:traits): Remove.
3493 Inline its definitions in the parser class.
3494
3495 2005-09-19 Akim Demaille <akim@epita.fr>
3496
3497 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
3498 least Mac OSX with a /usr/local install of gettext.
3499
3500 2005-09-19 Akim Demaille <akim@epita.fr>
3501
3502 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
3503 and yytoken for similarity with the other skeletons.
3504
3505 2005-09-19 Akim Demaille <akim@epita.fr>
3506
3507 * NEWS, configure.ac: update version number to 2.1a.
3508
3509 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
3510
3511 * NEWS: Version 2.1.
3512
3513 * NEWS: Remove notice of yytname change, since it was never in an
3514 official release.
3515 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
3516 diagnostic.
3517 * src/output.c (prepare): Likewise.
3518 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
3519 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
3520 is not defined. This is an awful hack, but it's enough for now.
3521 All callers changed.
3522 * tests/glr-regression-at (make_value): Args are const pointers now,
3523 to avoid GCC warning.
3524 (Duplicated user destructor for lookahead): New test. Currently
3525 skipped. It fails on my host but I'm not sure it'll always fail.
3526
3527 2005-09-16 Akim Demaille <akim@epita.fr>
3528
3529 * src/symtab.h (struct symbol): Declare the printer and destructor
3530 as const, to avoid accidental calls to free.
3531 (symbol_destructor_set, symbol_printer_set): Adjust.
3532 * src/symtab.c: Adjust.
3533
3534 2005-09-16 Akim Demaille <akim@epita.fr>
3535
3536 * data/c.m4 (b4_token_enums): New.
3537 (b4_token_defines): Rename as...
3538 (b4_token_enums_defines): this.
3539 (b4_token_defines): New, output only the #defines.
3540 * data/yacc.c, data/glr.c: Adjust.
3541 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
3542 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
3543 as default values.
3544
3545 2005-09-16 Akim Demaille <akim@epita.fr>
3546
3547 * data/lalr1.cc (yylex_): Remove, inline its code.
3548 (yyreport_syntax_error_): Remove, replaced by...
3549 (yysyntax_error_): this which returns a string and leaves to the
3550 caller the call to the users' error function.
3551 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
3552 Move from members of the parser object...
3553 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
3554 to local variables of the parse function.
3555
3556 2005-09-16 Akim Demaille <akim@epita.fr>
3557
3558 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
3559 since it's in Bison's name space.
3560
3561 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
3562
3563 * data/glr.c (yyresolveValue): Add default case to pacify
3564 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
3565
3566 * NEWS: Document when yyparse started to return 2.
3567 * doc/bison.texinfo (Parser Function): Document when yyparse
3568 returns 2.
3569
3570 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
3571 (b4_filename_type): Renamed back from b4_file_name_type. All uses
3572 changed.
3573 (class position): file_name -> filename (reverting). All uses changed.
3574
3575 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
3576
3577 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
3578 do anything if $@ exists. This reverts part of the 2005-07-07
3579 patch.
3580
3581 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
3582
3583 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
3584 contains obsolete information and isn't worth distributing as a
3585 separate file anyway.
3586 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
3587 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
3588 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
3589 (yyparse): Abort if user code uses longjmp to throw an unexpected
3590 value.
3591
3592 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
3593
3594 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
3595 Suggested by twlevo@xs4all.nl.
3596
3597 * data/glr.c (YYCHK1): Do not assume YYE is in range.
3598 This avoids a diagnostic from gcc -Wswitch-enum.
3599 Problem reported by twlevo@xs4all.nl.
3600
3601 * doc/bison.texinfo: Don't use "filename", as per GNU coding
3602 standards. Use "file name" or "file" or "name", depending on
3603 the context.
3604 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
3605 not to hack/foo.tab.c.
3606 (Calc++ Top Level): 2nd arg of main is not const.
3607 * data/glr.c: b4_filename -> b4_file_name.
3608 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
3609 All uses changed.
3610 (class position): filename -> file_name. All uses changed.
3611 * data/yacc.c: b4_filename -> b4_file_name.
3612 * lib/bitset.h: filename -> file_name in local vars.
3613 * lib/bitset_stats.c: Likewise.
3614 * src/files.c: Likewise.
3615 * src/scan-skel.l ("@output ".*\n): Likewise.
3616 * src/files.c (file_name_split): Renamed from filename_split.
3617 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
3618
3619 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
3620
3621 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
3622 to accommodate latest gnulib.
3623
3624 * tests/glr-regression.at (Duplicate representation of merged trees):
3625 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
3626
3627 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
3628 needed.
3629
3630 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
3631
3632 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
3633 All uses changed. Invoke user destructor after an error during a
3634 split parse (trivial change from Joel E. Denny).
3635
3636 * tests/glr-regression.at
3637 (User destructor after an error during a split parse): New test case.
3638 Problem reported by Joel E. Denny in:
3639 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
3640
3641 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
3642
3643 * README-cvs: Give URLs for recommended tools.
3644 Mention Gzip version problem, and bootstrapping issues.
3645 Remove troubleshooting section, as it's somewhat obsolete.
3646
3647 * bootstrap (no_cache): New var, to accommodate different wget
3648 variants. Use it instead of '-C off'. Problem reported by
3649 twlevo@xs4all.nl.
3650
3651 * data/glr.c (yydestroyStackItem): New function.
3652 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
3653 debugging information. Problem reported by Joel E. Denny.
3654
3655 2005-08-25 Akim Demaille <akim@epita.fr>
3656
3657 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
3658
3659 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
3660
3661 * data/glr.c (yyrecoverSyntaxError, yyreturn):
3662 Don't invoke destructor on unresolved entries.
3663 * tests/glr-regression.at
3664 (User destructor for unresolved GLR semantic value): New test case.
3665 Problem reported by Joel E. Denny in:
3666 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
3667
3668 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
3669
3670 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
3671 Add strnlen.c.
3672 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
3673 lib-prefix.m4, po.m4.
3674
3675 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
3676 in yydestruct diagnostic, since it might not be an error.
3677 Problem reported by Joel Denny near end of
3678 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3679 * data/lalr1.cc (yyerturn): Likewise.
3680 * data/yacc.c (yyreturn): Likewise.
3681 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
3682
3683 * src/files.c: Remove obsolete FIXME comment.
3684
3685 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
3686 with the other templates, and to fix bogus run-on messages such
3687 as the one reported at the end of
3688 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3689 All callers changed to avoid the newline.
3690 (yyprocessOneStack): Output two lines rather than one, to accommodate
3691 the above change. This changes the debug output format slightly.
3692
3693 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
3694 reported by Joel E. Denny in
3695 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
3696 (trivial change).
3697 * tests/glr-regression.at (Duplicate representation of merged trees):
3698 New test, from Joel E. Denny in:
3699 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
3700 * THANKS: Add Joel E. Denny.
3701
3702 * configure.ac (AC_INIT): Bump to 2.0c.
3703
3704 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
3705
3706 * NEWS: Version 2.0b.
3707
3708 * Makefile.am (SUBDIRS): Put examples before tests, so that
3709 "make check" doesn't finish with "All 1 tests passed".
3710
3711 * tests/regression.at (Token definitions): Don't rely on
3712 AT_PARSER_CHECK for data that contains backslashes. It currently
3713 uses 'echo', and 'echo' isn't portable if its argument contains
3714 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
3715 that the byte '\0xff' is not printable in the C locale; it is,
3716 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
3717 not printable, so use '\0x81' to test.
3718
3719 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
3720 version of GCC, since the macro is used with non-GCC compilers.
3721
3722 Fix core dump reported by Pablo De Napoli in
3723 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
3724 * tests/regression.at (Invalid inputs with {}): New test.
3725 * src/parse-gram.y (token_name): Translate type before using
3726 it as an index.
3727
3728 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
3729 the user's name space. All uses changed to __attribute__
3730 ((__unused__)).
3731 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
3732 Add __attribute__ ((__noreturn__)).
3733
3734 * etc/clcommit: Remove. We weren't using it, and it failed
3735 "make maintainer-distcheck".
3736 * Makefile.maint: Merge from coreutils.
3737 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
3738 (syntax-check-rules): Change list of rules as described below.
3739 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
3740 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
3741 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
3742 (sc_trailing_space): New rules.
3743 (sc_xalloc_h_in_src): Remove.
3744 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
3745 (sc_space_tab, sc_error_exit_success, sc_changelog):
3746 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
3747 (makefile-check, po-check, author_mark_check):
3748 (makefile_path_separator_check, copyright-check):
3749 Use grep -n, to make it easier to find violations.
3750 Use CVS_LIST and CVS_LIST_EXCEPT.
3751 (header_regexp, h_re): Remove.
3752 (dd_c): New macro.
3753 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
3754 (my-distcheck): Use more-modern GCC flags.
3755 (signatures, %.asc): Remove.
3756 (rel-files, announcement): Remove signatures.
3757 Restore old updating code, even though we don't use it, so
3758 that we're the same as coreutils.
3759 (alpha, beta, major): Depend on news-date-check.
3760 Make the upload commands.
3761
3762 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
3763 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
3764 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
3765 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
3766 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
3767 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
3768 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
3769 * tests/sets.at: Likewise.
3770
3771 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
3772 we comment out the Autoconf version number.
3773 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
3774 it's error-prone and "make maintainer-distcheck" rejects it.
3775
3776 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
3777 Indent calls to "error" to pacify "make maintainer-distcheck",
3778 when the calls are not intended to be translated.
3779 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
3780
3781 * src/Makefile.am (DEFS): Use +=, to pacify
3782 "make maintainer-distcheck".
3783 (bison_SOURCES): Add scan-skel.h.
3784 (sc_tight_scope): New rule, from coreutils.
3785
3786 * src/files.c (src_extension, header_extension):
3787 Now static, not extern.
3788 * src/getargs.c (short_options): Likewise.
3789 * src/muscle_tab.c (muscle_table): Likewise.
3790 * src/parse-gram.y (current_class, current_type, current_prec):
3791 Likewise.
3792 * src/reader.c (grammar_end, previous_rule_end): Likewise.
3793 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
3794 * src/main.c (main): Cast bindtextdomain and textdomain calls to
3795 void, to avoid warning when NLS is disabled.
3796 * src/output.c: Include scan-skel.h.
3797 (scan_skel): Remove decl, since scan-skel.h does this.
3798 (output_skeleton):
3799 Indent calls to "error" to pacify "make maintainer-distcheck".
3800 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
3801 * src/reader.h (gram_end, gram_lineno): New decls to pacify
3802 "make maintainer-distcheck".
3803 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
3804 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
3805 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
3806 (skel_lex_destroy, scan_skel): Move these decls to...
3807 * src/scan-skel.h: New file.
3808 * src/uniqstr.c (uniqstr_assert):
3809 Indent calls to "error" to pacify "make maintainer-distcheck".
3810
3811 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
3812 not @VAR@.
3813
3814 * tests/torture.at: Revamp to avoid misuse of atoi that
3815 "make maintainer-distcheck" complained about.
3816
3817 * examples/extexi (message): Don't print a message more than once,
3818 and omit line-number decoration that makes Emacs compile think
3819 that informative messages are worth worrying about.
3820
3821 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
3822
3823 * configure.ac: Update version number.
3824
3825 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
3826 accidentally.
3827 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
3828 autogenerated by the maintainer.
3829 * examples/calc++/.cvsignore: Add *.yy.
3830
3831 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
3832 * lib/bitset_stats.c (bitset_stats_init): Likewise.
3833 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3834
3835 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
3836
3837 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
3838 from maintainer-distcheck about casting the argument of 'free'.
3839
3840 * NEWS: Mention recent yytname changes.
3841 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
3842
3843 * bootstrap: For translations that have not yet been upgraded to
3844 the new runtime-po domain, prime the pump by extracting the
3845 relevant strings from the obsolete translations. This code can be
3846 removed once the bison-runtime domain has been translated by each
3847 team.
3848
3849 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
3850 now that token names are already quoted.
3851
3852 Fix problem reported by Anthony Heading.
3853 * data/glr.c (YYTOKEN_TABLE): New macro.
3854 (yytname): Define if YYTOKEN_TABLE.
3855 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
3856 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
3857 (YYERROR_VERBOSE): Define the same way the other skeletons do.
3858 * src/output.c (prepare_symbols): Output token_table_flag.
3859
3860 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
3861
3862 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
3863 again if the first call fails.
3864
3865 * data/glr.c (yytnamerr): New function.
3866 (yyreportSyntaxError): Use it to dequote most string literals.
3867 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
3868 with other skeletons. All uses changed.
3869 (yytnameerr_): New function.
3870 (yyreport_syntax_error): Use it to dequote most string literals.
3871 * data/yacc.c (yytnamerr): New function.
3872 (yyerrlab): Use it to decode most string literals.
3873 * doc/bison.texinfo (Decl Summary, Calling Convention):
3874 Clarify quoting convention of yytname.
3875 * src/output.c (prepare_symbols): Quote all names. This undoes
3876 the 2005-04-17 change, which is now accomplished (mostly) via
3877 changes in the parsers as described above.
3878 * tests/regression.at (Token definitions, Web2c Actions):
3879 Undo most 2005-04-17 change here, too.
3880
3881 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
3882
3883 Fix more problems reported by twlevo@xs4all.nl.
3884 * tests/cxx-type.at: Don't pipe output of ./types through sed to
3885 remove trailing spaces. This loses the exit status of ./types,
3886 and isn't needed since ./types shouldn't be emitting trailing
3887 spaces.
3888 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
3889 as the stack isn't valid in that case.
3890
3891 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3892 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3893 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3894 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
3895 is used.
3896 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
3897 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
3898 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
3899 Likewise.
3900
3901 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
3902 overly-picky compilers that reject 'char *foo = "bar";'.
3903
3904 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
3905 to FILE * parameter, not to stderr. This fixes a typo introduced
3906 in the 2005-07-12 change.
3907
3908 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
3909 warnings from GCC 4.
3910
3911 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
3912 (yyglrShiftDefer, yysplitStack):
3913 Remove unused parameters b4_pure_formals. All uses changed.
3914 (yyglrShift): Remove unused parameters b4_user_formals.
3915 All uses changed.
3916 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
3917
3918 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
3919
3920 Destructor cleanups and regularization among the three skeletons.
3921 * NEWS: Document the behavior changes.
3922 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
3923 stack before failing, as the cleanup code will do it for us now.
3924 * data/lalr1.cc (yyerrlab): Likewise.
3925 * data/glr.c (yyparse): Pop everything off the stack before
3926 freeing it, so that destructors get called properly.
3927 * data/lalr1.cc (yyreturn): Likewise.
3928 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
3929 This is more consistent.
3930 * doc/bison.texinfo (Destructor Decl): Mention more reasons
3931 why destructors might be called. 1.875 -> 2.1.
3932 (Destructor Decl, Decl Summary, Table of Symbols):
3933 Some English-language cleanups for %destructor.
3934 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
3935 Add output line for destructor of start symbol.
3936 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
3937 because of that same extra output line.
3938
3939 * NEWS: Document minor wording changes in diagnostics of
3940 Bison-generated parsers.
3941 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
3942 Remove unused formals. All uses changed.
3943 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
3944 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
3945 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
3946 Rename yyoverflowab to yyexhaustedlab.
3947 When memory exhaustion occurs during syntax-error reporting,
3948 report it separately rather than in a single diagnostic; this
3949 eases translation.
3950 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
3951 (Memory Exhausted): Renamed from Parser Stack Overflow.
3952 Revamp wording slightly to prefer "memory exhaustion".
3953 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
3954
3955 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
3956
3957 Add i18n support to the GLR skeleton. Partially fix the C++
3958 skeleton; a C++ expert needs to finish this. Remove debugging
3959 msgids; there's little point to having them translated, since they
3960 can be understood only by someone who can read the
3961 (English-language) source code.
3962
3963 Generate runtime-po/bison-runtime.pot automatically, so that we
3964 don't have to worry about garbage getting in that file. We'll
3965 make sure after the next official release that old msgids don't
3966 get lost. See
3967 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
3968
3969 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
3970 Now auto-generated.
3971 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
3972 Fix typos in explanations of the runtime file.
3973 * bootstrap: Change gettext keyword from YYI18N to YY_.
3974 Use standard Makefile.in.in in runtime-po, since we'll arrange
3975 for backward-compatible bison-runtime.po files in a different way.
3976 * data/glr.c (YY_): New macro, from yacc.c.
3977 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
3978 Translate messages intended for users.
3979 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
3980 the wording in the other skeletons. We don't know that the memory
3981 is virtual.
3982 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
3983 Use same method that yacc.c uses.
3984 Don't translate debugging messages.
3985 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
3986 it doesn't work (yet), and requires C++ expertise to fix.
3987 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
3988 Move defn to a more logical place, to be consistent with other
3989 skeletons.
3990 Don't translate debugging messages.
3991 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
3992 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
3993 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
3994 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
3995
3996 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
3997 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
3998 void, not int.
3999 * tests/glr-regression.at (Badly Collapsed GLR States):
4000 Likewise.
4001 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4002 yylex should return 0 at EOF rather than aborting.
4003
4004 Improve tests for stack overflow in GLR parser.
4005 Problem reported by twlevo@xs4all.nl.
4006 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
4007 All uses removed.
4008 (yyStackOverflow): Just longjmp, but with value 2 so that caller
4009 can handle the problem.
4010 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
4011 (yyparse): New local variable yyresult to record the result.
4012 Use result of setjmp to set it, rather than storing itinto
4013 struct.
4014 (yyDone): Remove label.
4015 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
4016 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
4017 if YYABORT is used).
4018 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
4019 yyparse status; put status > 1 into diagnostic.
4020 Check that status==2 works.
4021 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
4022 Use exit status 3 for failure to open (which shouldn't happen).
4023
4024 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
4025
4026 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
4027 1 on syntax error; just let yyparse do its thing.
4028 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
4029 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
4030 (Exploding the Stack Size with Alloca):
4031 (Exploding the Stack Size with Malloc):
4032 Expect exit status 2, not 1, since the parser is supposed to blow
4033 its stack. Problem reported by twlevo@xs4all.nl.
4034
4035 * data/glr.c (yyparse): Don't assume that the initial calls
4036 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
4037 Print a stack-overflow message and fail instead.
4038 Initialize the line-number information before creating the stack,
4039 so that the stack-overflow message can report line zero safely.
4040
4041 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
4042
4043 Fix problems reported by twlevo@xs4all.nl.
4044 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
4045 (yyuserMerge): Provide a default case if b4_mergers is empty.
4046 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
4047 * tests/glr-regression.at
4048 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4049 Add casts to pacify C++ compilers.
4050 * tests/glr-regression.at (Improper merging of GLR delayed action
4051 sets): Declare yylex before using it.
4052 * tests/Makefile.am (maintainer-check-g++): Fix a stray
4053 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
4054 test for valgrind; valgrind is independent of g++.
4055 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
4056 for compatibility with POSIX 1003.1-2001 (if running coreutils).
4057 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
4058 Use a destructor, so that we can expand the stack. Change
4059 YYSTYPE to char * so that we can free it. Cast result of malloc.
4060
4061 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4062
4063 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
4064 a valgrind failure. Problem reported by twlevo@xs4all.nl.
4065
4066 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
4067
4068 * PACKAGING: New file, suggested by Bruno Haible and taken from
4069 similar wording in gettext's PACKAGING file.
4070 * NEWS: Mention PACKAGING.
4071 * Makefile.am (EXTRA_DIST): Add PACKAGING.
4072
4073 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
4074
4075 * NEWS: Document recent i18n improvements.
4076 * bootstrap: Get runtime translations into runtime-po.
4077 Create runtime-po files automatically, if possible.
4078 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
4079 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
4080 does not infringe on the user's name space.
4081 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
4082 * doc/bison.texinfo (Internationalization): Revamp the English
4083 and Texinfo syntax a bit, to try to make it clearer.
4084 (Bison Options, Option Cross Key): Mention --print-localedir.
4085 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
4086 YYENABLE_NLS. Quote a bit more.
4087 * runtime-po/.cvsignore: New file.
4088 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
4089 * runtime-po/Rules-quot: Remove; now created by bootstrap.
4090 * runtime-po/quot.sed: Likewise.
4091 * runtime-po/boldquot.sed: Likewise.
4092 * runtime-po/en@quot.header: Likewise.
4093 * runtime-po/en@boldquot.header: Likewise.
4094 * runtime-po/insert-header.sin: Likewise.
4095 * runtime-po/remove-potcdate.sin: Likewise.
4096 * runtime-po/Makevars: Likewise.
4097 * runtime-po/LINGUAS: Likewise.
4098 * runtime-po/de.po: Likewise; we will rely on the translation project
4099 to maintain this, so "bootstrap" should get it.
4100 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
4101 its value.
4102 * src/main.c (main): Bind the bison-runtime domain, too.
4103
4104 2005-07-12 Bruno Haible <bruno@clisp.org>
4105
4106 * data/yacc.c: Include <libintl.h> when NLS is enabled.
4107 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
4108 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
4109 * runtime-po: New directory.
4110 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
4111 $(DOMAIN).pot-update rule, so that old messages are never dropped.
4112 * runtime-po/Rules-quot: New file, copied from po/.
4113 * runtime-po/quot.sed: Likewise.
4114 * runtime-po/boldquot.sed: Likewise.
4115 * runtime-po/en@quot.header: Likewise.
4116 * runtime-po/en@boldquot.header: Likewise.
4117 * runtime-po/insert-header.sin: Likewise.
4118 * runtime-po/remove-potcdate.sin: Likewise.
4119 * runtime-po/Makevars: New file.
4120 * runtime-po/POTFILES.in: New file.
4121 * runtime-po/LINGUAS: New file.
4122 * runtime-po/bison-runtime.pot: New file.
4123 * runtime-po/de.po: New file.
4124 * m4/bison.m4: New file.
4125 * Makefile.am (SUBDIRS): Add runtime-po.
4126 (aclocaldir, aclocal_DATA): New variables.
4127 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
4128 Define aclocaldir.
4129 * src/getargs.c (usage): Document --print-localedir option.
4130 (PRINT_LOCALEDIR_OPTION): New enum item.
4131 (long_options): Add --print-localedir option.
4132 (getargs): Handle --print-localedir option.
4133 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
4134 (Internationalization): New section.
4135
4136 2005-07-12 Akim Demaille <akim@epita.fr>
4137
4138 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
4139 for consistency with the rest of the code.
4140 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
4141 Add separators.
4142
4143 2005-07-12 Akim Demaille <akim@epita.fr>
4144
4145 * src/parse-gram.y: Use %printer instead of YYPRINT.
4146
4147 2005-07-12 Akim Demaille <akim@epita.fr>
4148
4149 * src/symtab.h, src/symtab.c (symbol_print): New.
4150 * src/symlist.h, src/symlist.c (symbol_list_print): New.
4151 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
4152
4153 2005-07-12 Akim Demaille <akim@epita.fr>
4154
4155 * data/glr.c (b4_syncline): Fix (swap) the definitions of
4156 b4_at_dollar and b4_dollar_dollar.
4157
4158 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
4159
4160 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
4161 and Pennello's paper.
4162
4163 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
4164
4165 * data/yacc.c (yyparse): Undo previous patch. Instead,
4166 set yylsp[0] and yyvsp[0] only if the initial action
4167 sets yylloc and yylval, respectively.
4168
4169 * data/yacc.c (yyparse): In the initial action, set
4170 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
4171 This avoids the use of undefined variables if the initial
4172 action does not set yylloc and/or yylval.
4173
4174 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
4175
4176 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
4177 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
4178 Remove from CVS. These files are automatically generated.
4179 * examples/extexi: Clarify that this file is now part of Bison,
4180 not GNU M4, and that it works with any POSIX-compatible Awk.
4181 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
4182 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
4183 so that we also get calc++-parser.yy. Geneate it.
4184 Use $(AWK), not gawk, since any conforming Awk will do.
4185 Put comment before action, since older 'make' can't handle comment
4186 in action.
4187 $(BUILT_SOURCES): List all built sources, not just some of them.
4188 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
4189 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
4190 $($(calc_sources_generated)): Remove unnecessary test for existence
4191 of target. (This had a shell syntax error anyway; a stray "x".)
4192 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
4193 calc++-parser.yy.
4194 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
4195
4196 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
4197 implied by the other modules.
4198
4199 2005-07-06 Akim Demaille <akim@epita.fr>
4200
4201 Bind examples/calc++ to the package.
4202 * examples/calc++/Makefile: Remove, replaced by...
4203 * examples/calc++/Makefile.am: ... this new file.
4204 * examples/calc++/test: Remove input.
4205 * examples/calc++/compile: Remove.
4206 * examples/Makefile.am: New.
4207 * configure.ac, Makefile.am: Adjust.
4208 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
4209
4210 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
4211
4212 * data/glr.c (yyFail): Drastically simplify; since the format argument
4213 never had any % directives, we can simply pass it to yyerror.
4214 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
4215 be modified later, as that is the usual style in glr.c.
4216 Problems reported by Paul Hilfinger.
4217
4218 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
4219 and size overflow errors.
4220 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
4221 in case the user prolog sets feature-test macros like _GNU_SOURCE.
4222 (YYSIZEMAX): New macro.
4223 (yystpcpy): New function, taken from yacc.c.
4224 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
4225 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
4226 so that we don't have to maintain their signatures.
4227 (yyFail): Check for buffer overflow, by using vsnprintf rather
4228 than vsprintf. Allocate a bigger buffer if possible.
4229 Report an error if buffer allocation fails.
4230 (yyStackOverflow): New function.
4231 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
4232 the initialization was successful. It might fail if storage was
4233 exhausted.
4234 (yyexpandGLRStack): Add more checks for storage allocation failure.
4235 Use yyStackOverflow to report failures.
4236 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
4237 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
4238 Don't assume stack number fits in int.
4239 (yysplitStack): Check for storage allocation failure.
4240 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
4241 can print diagnostics on storage allocation failure. All callers
4242 changed.
4243 (yyresolveValue): Use yybool for boolean.
4244 (yyreportSyntaxError): Check for size-calculation overflow.
4245 This code is taken from yacc.c.
4246 (yyparse): Check for storage allocation errors when allocating
4247 the initial stack.
4248
4249 2005-07-05 Akim Demaille <akim@epita.fr>
4250
4251 Extract calc++ from the documentation.
4252 * doc/bison.texinfo (Calc++): Add the extraction marks.
4253 * examples/extexi: New, from the aborted GNU Programming 2E.
4254 Separate the different paragraph of a file with empty lines.
4255 * examples/Makefile: Use it to extract the whole calc++ example.
4256
4257 2005-06-24 Akim Demaille <akim@epita.fr>
4258
4259 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
4260 class typedefs.
4261
4262 2005-06-22 Akim Demaille <akim@epita.fr>
4263
4264 * doc/bison.texinfo (C++ Language Interface): First stab.
4265 (C++ Parsers): Remove.
4266
4267 2005-06-22 Akim Demaille <akim@epita.fr>
4268
4269 * data/lalr1.cc (yylex_): Honor %lex-param.
4270
4271 2005-06-22 Akim Demaille <akim@epita.fr>
4272
4273 Start a set of simple examples.
4274 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
4275 * examples/calc++/calc++-driver.hh,
4276 * examples/calc++/calc++-parser.yy,
4277 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
4278 * examples/calc++/compile, examples/calc++/test: New.
4279
4280 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
4281
4282 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
4283 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
4284 which stems from the 2005-05-27 patch.
4285
4286 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4287
4288 * data/glr.c: Modify treatment of unused parameters to permit use
4289 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
4290
4291 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
4292
4293 Fix infringement on user name space reported by Janos Zoltan Szabo.
4294 * data/yacc.c (yyparse): strlen -> yystrlen.
4295
4296 2005-05-30 Akim Demaille <akim@epita.fr>
4297
4298 * data/lalr1.cc (_): New.
4299 Translate the various messages.
4300
4301 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
4302
4303 Fix infringement on user name space reported by Bruno Haible.
4304 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
4305 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
4306 the user's name space.
4307 (alloca): Include <stdlib.h> to get it, if it's not built in.
4308 (YYMALLOC, YYFREE): Define only if needed.
4309 (malloc, free): Declare, but only if needed, as this infringes on
4310 the user name space.
4311
4312 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
4313
4314 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
4315 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
4316 with %d format.
4317 * lib/ebitset.c (min, max): Undef before defining.
4318 * lib/vbitset.c (min, max): Likewise.
4319 * lib/subpipe.c (create_subpipe): Save local variables in case
4320 vfork clobbers them.
4321
4322 2005-05-24 Bruno Haible <bruno@clisp.org>
4323
4324 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
4325 error message syntax used by gcc-4.0.
4326
4327 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
4328
4329 * README: Mention m4 1.4.3. Remove obsolete advice about
4330 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
4331
4332 * bootstrap: Remove workaround for problem I encountered with
4333 gettext 0.14.1; it seems to be fixed now.
4334
4335 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
4336
4337 * NEWS: Version 2.0a.
4338
4339 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
4340 the previous change.
4341
4342 Various maintainer cleanups.
4343 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
4344 conftest*, for benefit of CVS commands run at the same time as
4345 "configure". Add build-aux, since "bootstrap" now creates it and
4346 its subfiles.
4347 * Makefile.cfg (move_if_change): Remove.
4348 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
4349 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
4350 (po_repo, do-po-update, po-update, wget_files, get-targets):
4351 (config.guess-url_prefix, config.sub-url_prefix):
4352 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
4353 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
4354 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
4355 Remove.
4356 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
4357 this is now the recommended name.
4358 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
4359 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
4360 ylwrap. These files now go into build-aux.
4361 * config/move-if-change: Remove.
4362 * config/prev-version.txt: Bump from 1.75 to 2.0.
4363
4364 * bootstrap: Add stdio-safer, unistd-safer modules.
4365 Remove m4/glibc2.m4 (introduced by latest gnulib, but
4366 we don't need it).
4367 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
4368 fopen-safer.c, stdio-safer.h, unistd-safer.h.
4369 * lib/subpipe.c: Include "unistd-safer.h".
4370 (create_subpipe): Make sure all the newly-created
4371 file descriptors are > 2, so that diagnostics don't
4372 get sent down them (which might cause Bison to hang, in theory).
4373 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
4374 * src/files.c (xfopen): Use fopen_safer, not fopen.
4375
4376 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
4377 yesterday's yacc.c fix.
4378
4379 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
4380
4381 * data/glr.c, data/lalr1.cc: Update copyright date.
4382
4383 Fix a destructor bug reported by Wolfgang Spraul in
4384 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
4385 * data/yacc.c (yyabortlab): Don't call destructor, and
4386 don't set yychar to EMPTY.
4387 (yyoverflowlab): Don't call destructor.
4388 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
4389 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
4390 since we no longer output the message "discarding lookahead token
4391 end of input ()".
4392
4393 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4394
4395 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
4396 fix a small glitch in debugging output.
4397 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
4398 after YY_SYMBOL_PRINT where needed.
4399
4400 (struct yyGLRState): Add some comments.
4401 (struct yySemanticOption): Add some comments.
4402 (union yyGLRStackItem): Add comment.
4403
4404 (yymergeOptionSets): Correct this to properly perform the union,
4405 avoiding infinite reported by Michael Rosien.
4406 Update comment.
4407
4408 * tests/glr-regression.at: Add test for GLR merging error reported
4409 by M. Rosien.
4410
4411 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
4412
4413 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
4414 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
4415 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
4416 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
4417 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
4418 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
4419 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
4420 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
4421 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
4422 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
4423 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
4424 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
4425 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
4426 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
4427 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
4428 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
4429 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
4430 src/derives.h, src/files.c, src/files.h, src/getargs.c,
4431 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
4432 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
4433 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
4434 src/output.h, src/parse-gram.c, src/parse-gram.h,
4435 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
4436 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
4437 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
4438 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
4439 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
4440 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
4441 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
4442 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
4443 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
4444 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
4445 tests/reduce.at, tests/regression.at, tests/sets.at,
4446 tests/synclines.at, tests/testsuite.at, tests/torture.at:
4447 Update FSF postal mail address.
4448
4449 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
4450
4451 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
4452 Problem reported by Ralf Menzel.
4453
4454 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
4455
4456 * tests/actions.at: Test that stack overflow invokes destructors.
4457 From Marcus Holland-Moritz.
4458 * data/yacc.c (yyerrlab): Move the code that destroys the stack
4459 from here....
4460 (yyreturn): to here. That way, destructors are called properly
4461 even if the stack overflows, or the user calls YYACCEPT or
4462 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
4463 (yyoverflowlab): Destroy the lookahead.
4464
4465 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
4466
4467 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
4468
4469 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
4470
4471 * NEWS: Bison-generated C parsers no longer quote literal strings
4472 associated with tokens.
4473 * src/output.c (prepare_symbols): Don't escape strings,
4474 since users don't want to see C escapes.
4475 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
4476 in diagnostics.
4477 * tests/input.at (Torturing the Scanner): Likewise.
4478 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
4479
4480 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
4481
4482 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
4483 the data size is known to be too small and we can't increase it.
4484 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
4485
4486 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
4487
4488 * src/parse-gram.y: Include quotearg.h.
4489 (string_as_id): Quote $1 before using it as a key, since the
4490 lexer no longer quotes it for us.
4491 (string_content): Don't strip quotes, since lexer no longer
4492 quotes it for us.
4493 * src/scan-gram.l: Include quotearg.h.
4494 ("\""): Omit quote.
4495 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
4496 a key, since the rest of the lexer doesn't quote it.
4497 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
4498 * tests/regression.at (Token definitions): Check for backslashes
4499 in token strings.
4500
4501 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
4502 (YYSIZE_T): Define to unsigned long int when using an older compiler.
4503 (yyparse): Revamp code to generate long syntax error message, to
4504 make it easier to translate, and to avoid problems with arithmetic
4505 overflow. Change "virtual memory" to "memory" in diagnostic, since
4506 we don't know whether the memory is virtual.
4507
4508 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
4509
4510 * NEWS: Bison-generated C parsers now use the _ macro to
4511 translate strings.
4512 * data/yacc.c (_) [!defined _]: New macro.
4513 All English strings wrapped inside this macro.
4514 * doc/bison.texinfo (Bison Parser): Document _.
4515 * po/POTFILES.in: Include src/parse-gram.c, since it now
4516 includes translateable strings that parse-gram.y doesn't.
4517
4518 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
4519
4520 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
4521 reverting the 2004-10-11 change to this function.
4522 (symbol_check_alias_consistency): Don't call symbol_type_set
4523 if the type name is already correct.
4524 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
4525
4526 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
4527
4528 * tests/regression.at (Token definitions): Don't use a token named
4529 c, as that generates a "#define c ..." that runs afoul of buggy
4530 stdlib.h that uses the identifier c as a member of struct
4531 drand48_data. Problem reported by Horst Wente.
4532
4533 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
4534
4535 * bootstrap: Change translation URL from
4536 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
4537 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
4538 redirection glitches. Problem reported by twlevo@xs4all.nl.
4539
4540 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
4541
4542 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
4543 after operands; POSIX says this isn't portable for the c99 command.
4544
4545 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
4546
4547 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
4548 immediately if a data overrun has occurred; this may help us track
4549 down what may be a spurious failure on MacOS.
4550
4551 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
4552
4553 Respond to problems reported by twlevo@xs4all.nl.
4554
4555 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
4556
4557 * src/vcg.h: Comment fix.
4558 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
4559 (G_CMAX): Change to -1 instead of INT_MAX.
4560
4561 * data/yacc.c (yyparse): Omit spaces before #line.
4562
4563 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
4564
4565 * src/tables.c (state_number_to_vector_number): Put it inside an
4566 "#if 0", since it's not currently used. Problem reported by
4567 Roland McGrath.
4568
4569 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
4570
4571 * src/output.c (escaped_output): Renamed from
4572 escaped_file_name_output, since we now use it for symbol tags as
4573 well. All uses changed.
4574 (symbol_destructors_output, symbol_printers_output):
4575 Escape symbol tags too.
4576 Problem reported by Matyas Forstner in
4577 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
4578
4579 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
4580 not needed.
4581 * src/output.c (user_actions_output, token_definitions_output,
4582 symbol_destructors_output, symbol_printers_output): Likewise.
4583 * src/reader.c (prologue_augment): Likewise.
4584 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
4585
4586 * src/vcg.c (output_edge): Don't quote linestyle arg.
4587 Problem reported by twlevo@xs4all.nl.
4588
4589 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
4590
4591 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
4592 example, reported by Derek M Jones. Also, make the example even
4593 more outrageous, to better illustrate how bad the problem is.
4594
4595 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
4596
4597 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
4598 putsym. Typo reported by Sebastian Piping.
4599
4600 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
4601
4602 * doc/bison.texinfo (Language and Grammar): some -> same
4603 (Epilogue): int he -> in the
4604 Typos reported by Sebastian Piping via Justin Pence.
4605
4606 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
4607
4608 * tests/glr-regression.at (Improper handling of embedded actions
4609 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
4610 embedded actions and $-N in GLR parsers", work around an Autoconf bug
4611 with dollar signs in test names.
4612 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
4613 for a similar reason.
4614
4615 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
4616
4617 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
4618 wants to redefine G_VIEW.
4619
4620 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
4621
4622 * src/vcg.c (get_view_str): Remove case for normal_view.
4623 Problem reported by twlevo@xs4all.nl.
4624
4625 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
4626
4627 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
4628 Problem reported by twlevo@xs4all.nl.
4629
4630 * doc/bison.texinfo: Change @dircategory from "GNU programming
4631 tools" to "Software development". Requested by Richard Stallman
4632 via Karl Berry.
4633
4634 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
4635
4636 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
4637 Problem reported by twlevo@xs4all.nl.
4638
4639 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
4640
4641 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
4642 keyword; it's not needed with modern compilers, and it doesn't
4643 affect correctness with older compilers. Suggested by
4644 twlevo@xs4all.nl.
4645
4646 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
4647
4648 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
4649 gcc -Wswitch-default.
4650 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
4651 * data/yacc.c (yyparse): Likewise.
4652
4653 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
4654
4655 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
4656 already. Let config.h define any nonstandard values.
4657
4658 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
4659
4660 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
4661 for the benefit of slower hosts. Problem reported by
4662 Nelson H. F. Beebe.
4663
4664 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
4665
4666 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
4667 being defined and not used.
4668 * data/lalr1.cc (yyparse): Likewise.
4669 Use "if (false)" rather than "if (0)".
4670
4671 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
4672
4673 * TODO: Mention that we should allow NUL bytes in tokens.
4674
4675 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
4676
4677 * src/scan-skel.l (<<EOF>>): Don't close standard output.
4678 Problem reported by Hans Aberg.
4679
4680 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
4681
4682 * src/getargs.c (version): Happy new year; update overall
4683 program copyright date from 2004 to 2005.
4684
4685 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
4686 Problem reported by Hans Aberg.
4687 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
4688 (Output file names.): Add a test for the case when standard output
4689 is closed.
4690
4691 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
4692
4693 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
4694 to fix an oversight in the Bison 2.0 manual.
4695
4696 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
4697
4698 * NEWS: Version 2.0. Reformat the existing news items since
4699 1.875, so that related items are grouped together.
4700 * configure.ac (AC_INIT): Bump version to 2.0.
4701 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
4702
4703 * tests/torture.at (Exploding the Stack Size with Alloca): Set
4704 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
4705 otherwise, we're not testing alloca. Unfortunately there's no
4706 simple way to consult HAVE_ALLOCA here.
4707
4708 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
4709 for yymsg, too.
4710
4711 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
4712 hand. This avoids a warning about comparing int to size_t when
4713 GCC warnings are enabled.
4714
4715 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
4716
4717 * NEWS: Bison-generated parsers no longer default to using the
4718 alloca function (when available) to extend the parser stack, due
4719 to widespread problems in unchecked stack-overflow detection.
4720 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
4721 responsibility to set it to a positive value. This lets the user
4722 specify a value that is not a preprocessor constant.
4723 * data/yacc.c (YYMAXDEPTH): Likewise.
4724 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
4725 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
4726 to be a compile-time constant. However, explain the constraints on it.
4727 Also, explain the constraints on YYINITDEPTH.
4728 (Table of Symbols): Explain that alloca is no longer the default.
4729 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
4730 to 1.
4731
4732 * doc/bison.texinfo (Location Default Action): Mention that n must
4733 be zero when k is zero. Suggested by Frank Heckenbach.
4734
4735 2004-12-22 Akim Demaille <akim@epita.fr>
4736
4737 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
4738 (parser::state_type, parser::semantic_type, parser::location_type):
4739 Private, not public.
4740 (parser::parse): Return ints, not bool.
4741 Returning a bool introduces a problem: 0 corresponds to false, and
4742 it seems weird to return false on success. Returning true changes
4743 the conventions for yyparse.
4744 Alternatively we could return void and send an exception.
4745 There is no clear consensus (yet?).
4746 (state_stack, semantic_stack, location_stack): Rename as...
4747 (state_stack_type, semantic_stack_type, location_stack_type): these.
4748 Private, not public.
4749 * tests/c++.at: New.
4750 * tests/testsuite.at, tests/Makefile.am: Adjust.
4751
4752 2004-12-21 Akim Demaille <akim@epita.fr>
4753
4754 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
4755
4756 2004-12-21 Akim Demaille <akim@epita.fr>
4757
4758 Don't impose std::string for filenames.
4759
4760 * data/lalr1.cc (b4_filename_type): New.
4761 (position::filename): Use it.
4762 (parser.hh): Move the inclusion of stack.hh and location.hh below
4763 the user code, so that needed headers for the filename type can be
4764 included first.
4765 Forward declare them before the user code.
4766 * tests/Makefile.am (check-local, installcheck-local): Pass
4767 TESTSUITEFLAGS to the TESTSUITE.
4768
4769 2004-12-20 Akim Demaille <akim@epita.fr>
4770
4771 Use more STL like names: my_class instead of MyClass.
4772
4773 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
4774 (SemanticStack, SemanticType, StateStack, StateType)
4775 (TokenNumberType, Stack, Slice, Traits, Parser::location)
4776 (Parser::value): Rename as...
4777 (location_stack, location_type, rhs_number_type, semantic_stack)
4778 (semantic_type, state_stack, state_type, token_number_type, stack)
4779 (slice, traits, parser::yylloc, parser::yylval): these.
4780
4781 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
4782
4783 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
4784
4785 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
4786 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
4787
4788 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
4789
4790 Remove uses of 'short int' and 'unsigned short int'. This raises
4791 some arbitrary limits. It uses more memory but nowadays that's
4792 not much of an issue.
4793
4794 This change does not affect the generated parsers; that's a different
4795 task, as some users will want to conserve memory there.
4796
4797 Ideally we should use size_t to represent all object counts, and
4798 something like ptrdiff_t to represent signed differences of object
4799 counts; but that will require more code-cleanup than I have the
4800 time to do right now.
4801
4802 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
4803 Use size_t, not int or short int, to count objects.
4804 * src/closure.c (nritemset, closure): Likewise.
4805 * src/closure.h (nritemset, closure): Likewise.
4806 * src/nullable.c (nullable_compute): Likewise.
4807 * src/print.c (print_core): Likewise.
4808 * src/print_graph.c (print_core): Likewise.
4809 * src/state.c (state_compare, state_hash): Likewise.
4810 * src/state.h (struct state): Likewise.
4811 * src/tables.c (default_goto, goto_actions): Likewise.
4812
4813 * src/gram.h (rule_number, rule): Use int, not short int.
4814 * src/output.c (prepare_rules): Likewise.
4815 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
4816 errs, reductions): Likewise.
4817 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
4818 Likewise.
4819 * src/tables.c (vector_number, tally, action_number,
4820 ACTION_NUMBER_MINIMUM): Likewise.
4821 * src/output.c (muscle_insert_short_int_table): Remove.
4822
4823 2004-12-17 Akim Demaille <akim@epita.fr>
4824
4825 * data/lalr1.cc: Extensive Doxygenation.
4826 (error_): Rename as...
4827 (error): this, since it is visible to the user.
4828 Adjust callers.
4829 (Parser::message): Now an automatic variable from...
4830 (Parser::yyreport_syntax_error_): here.
4831 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
4832 Parser::error.
4833 * tests/input.at: Escape $.
4834
4835 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
4836
4837 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
4838 Parenthesize rhs to avoid obscure problems with mistakes like
4839 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
4840 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4841 b4_rhs_location): Likewise.
4842 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4843 b4_rhs_location): Likewise.
4844
4845 2004-12-16 Akim Demaille <akim@epita.fr>
4846
4847 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
4848 yacc.c: be sure to stay within yycheck_.
4849 * tests/actions.at: Re-enable C++ tests.
4850
4851 2004-12-16 Akim Demaille <akim@epita.fr>
4852
4853 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
4854 real.
4855
4856 2004-12-16 Akim Demaille <akim@epita.fr>
4857
4858 Use #define to handle the %name-prefix.
4859
4860 * data/glr.c, data/yacc.c: Comment changes.
4861 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
4862 so that one can refer to yylex in the parser file, and have it
4863 renamed, as is the case with other skeletons.
4864
4865 2004-12-16 Akim Demaille <akim@epita.fr>
4866
4867 Move lalr1.cc internals into yy*.
4868
4869 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
4870 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
4871 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
4872 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
4873 (empty_, final_, terror_, errcode_, ntokens_)
4874 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
4875 (looka_, ilooka_, error_range_, nerrs_):
4876 Rename as...
4877 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
4878 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
4879 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
4880 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
4881 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
4882 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
4883 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
4884 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
4885 these.
4886
4887 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
4888
4889 Fix some problems reported by twlevo at xs4all.
4890 * src/symtab.c (symbol_new): Report an error if the input grammar
4891 contains too many symbols. This is better than calling abort() later.
4892 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
4893 (struct node, struct graph):
4894 Rename member expand to stretch. All uses changed.
4895 (struct graph): Remove member layoutalgorithm. All uses removed.
4896 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
4897 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
4898 All uses changed.
4899 (N_STRETCH): Rename from N_EXPAND. All uses changed.
4900
4901 2004-12-15 Akim Demaille <akim@epita.fr>
4902
4903 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
4904 Add more Doxygen comments.
4905 (symprint_, stack_print_, reduce_print_, destruct_, pop)
4906 (report_syntax_error_, translate_): Rename as...
4907 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
4908 (yypop_, yyreport_syntax_error_, yytranslate_): this.
4909
4910 2004-12-15 Akim Demaille <akim@epita.fr>
4911
4912 * data/lalr1.cc (lex_): Rename as...
4913 (yylex_): this.
4914 Move the trace here.
4915 Take the %name-prefix into account.
4916 Reported by Alexandre Duret-Lutz.
4917
4918 2004-12-15 Akim Demaille <akim@epita.fr>
4919
4920 Simplify the C++ parser constructor.
4921
4922 * data/lalr1.cc (debug_): Rename as...
4923 (yydebug_): so that the parser's internals are always in the yy*
4924 pseudo namespace.
4925 Adjust uses.
4926 (b4_parse_param_decl): Remove the leading comma as it is now only
4927 called as unique argument list.
4928 (Parser::Parser): Remove the constructor accepting a location and
4929 an initial debugging level.
4930 Remove from the other ctor the argument for the debugging level.
4931 (debug_level_type, debug_level, set_debug_level): New.
4932
4933 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
4934 constructor calls.
4935
4936 2004-12-15 Akim Demaille <akim@epita.fr>
4937
4938 Remove b4_root related material: failure experiment
4939 (which goal was to allow to derive from a class).
4940
4941 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
4942 definitions and uses.
4943
4944 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
4945
4946 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
4947 not 2, since it's not portable to subtract 1 from the start of an
4948 array. The new item 0 is never set or used. All uses changed.
4949
4950 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
4951 the default definition of YYLLOC_DEFAULT. Problem reported
4952 by Frank Heckenbach.
4953
4954 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
4955
4956 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
4957 the normal case and one for the error case. Just use the
4958 first one uniformly. Problem reported by Frank Heckenbach.
4959 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
4960 use exactly the same macro in both places.
4961 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
4962 so that the normal-case YYRHSLOC works for the error case too.
4963 All uses changed.
4964 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
4965 (YYLLOC_DEFAULT): Use the same macro as glr.c.
4966 * doc/bison.texinfo (Location Default Action): Don't claim that
4967 we have an array of locations. Use the same macro for both glr
4968 and lalr parsers. Mention YYRHSLOC. Mention what happens when
4969 the index is 0.
4970
4971 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4972
4973 * HACKING: Update email addresses to send announcements to.
4974
4975 * configure.ac (AC_INIT): Bump version to 1.875f.
4976
4977 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4978
4979 * NEWS: Version 1.875e.
4980 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
4981
4982 * src/scan-skel.l: Include "complain.h", for "fatal".
4983
4984 * src/relation.h (relation_print, relation_digraph):
4985 Relation sizes are of type relation_node, not size_t (this is
4986 merely a doc fix, since the two types are equivalent).
4987 (relation_transpose): Relation sizes are of type relation_node,
4988 not int.
4989 * src/relation.c: Likewise.
4990 (top, infinity): Now of type relation_node, not int.
4991 (traverse, relation_transpose): Use relation_node, not int.
4992
4993 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
4994 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
4995 (yyparse): Remove unused local introduced in 2004-10-25 patch.
4996
4997 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
4998 specifying whether the test should be skipped. Use it tp
4999 specify that the [%defines %skeleton "lalr1.cc"] tests currently
5000 fail on some hosts, and should be skipped.
5001
5002 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
5003
5004 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
5005 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
5006 unless otherwise specified below.
5007
5008 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
5009 to allocate kernel_base, kernel_items, kernel_size, since
5010 they needn't be initialized to 0.
5011 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
5012 * src/closure.c (new_closure): Likewise, for itemset.
5013 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
5014 * src/lalr.c (set_goto_map): Likewise, for temp_map.
5015 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
5016 (build_relations): Likewise for edge, states1, includes.
5017 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
5018 * src/reader.c (packgram): Likewise, for ritem, rules.
5019 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
5020 * src/relation.c (relation_digraph): Likewise for VERTICES.
5021 (relation_transpose): Likewise for new_R, end_R.
5022 * src/symtab.c (symbols_token_translations_init): Likewise for
5023 token_translations.
5024 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
5025 (token_actions): Likewise for yydefact, actrow, conflrow,
5026 conflict_list.
5027 (save_column): Likewise for froms[symno], tos[symno].
5028 (goto_actions): Likewise for state_count.
5029 (pack_table): Likewise for base, pos, check.
5030 (tables_generate): Likewise for width.
5031
5032 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
5033 for initial core. Just have a separate core, so we needn't worry
5034 about whether kernel_size and kernel_base are initialized.
5035
5036 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
5037 kernel_size, kernel_items): Remove unnecessary initialization.
5038 * src/conflicts.c (conflicts): Likewise.
5039 * src/derives.c (derives): Likewise.
5040 * src/muscle_tablc (muscle_insert): Likewise.
5041 * src/relation.c (relation_digraph): Likewise.
5042 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
5043 conflrow, conflict_table, conflict_list, table, check):
5044 Likewise.
5045
5046 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
5047 This is because all callers pass unsigned int.
5048 * src/closure.h (new_closure): Likewise.
5049
5050 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
5051 (build_relations): Initialize includes[i] in all cases.
5052 * src/reader.c (packgram): Always initialize rules[ruleno].prec
5053 and rules[ruleno].precsym. Initialize members in order.
5054 * src/relation.c (relation_transpose): Always initialize new_R[i]
5055 and end_R[i].
5056 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
5057
5058 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
5059 conflict_list[0] was always 0, but now it isn't initialized.
5060
5061 * src/table.c (table_grow): When conflict_table grew, the grown
5062 area wasn't cleared. Fix this.
5063
5064 * lib/.cvsignore: Add strdup.c, strdup.h.
5065 * m4/.cvsignore: Add strdup.m4.
5066
5067 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
5068
5069 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
5070 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
5071 GOTO_NUMBER_MAXIMUM, since we occasionally compute
5072 ngotos + 1 without checking for overflow.
5073 (build_relations): Use END_NODE, not -1, to denote end of edges.
5074 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
5075 build_relations): Use goto_number, not int, for goto numbers.
5076 * src/tables.c (save_column, default_goto): Likewise.
5077
5078 2004-11-23 Akim Demaille <akim@epita.fr>
5079
5080 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
5081 of #defining from yystype.
5082 Don't typedef yystype, C++ does not need it.
5083 This lets it possible to forward declare it as union.
5084
5085 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
5086
5087 * bootstrap (gnulib_modules): Add extensions.
5088 Problem reported by Jim Meyering.
5089
5090 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
5091
5092 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
5093 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
5094 src/system.h, src/tables.c: XFREE -> free, to accommodate
5095 recent change to gnulib xalloc.h.
5096 Problem reported by Jim Meyering.
5097
5098 2004-11-17 Akim Demaille <akim@epita.fr>
5099
5100 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
5101
5102 2004-11-17 Akim Demaille <akim@epita.fr>,
5103 Alexandre Duret-Lutz <adl@gnu.org>
5104
5105 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
5106 changes.
5107 (YYCDEBUG): Adjust.
5108 Use it instead of cdebug_.
5109 (Parser::debug_stream, Parser::set_debug_stream): New.
5110 (Parser::symprint_): Define cdebug_ for temporary backward
5111 compatibility.
5112 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
5113 debug_stream ().
5114
5115 2004-11-17 Akim Demaille <akim@epita.fr>
5116
5117 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
5118 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
5119 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
5120 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
5121
5122 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
5123
5124 * data/glr.c (yyloc_default): Remove; not used.
5125 Problem reported by Frank Heckenbach.
5126
5127 2004-10-25 Akim Demaille <akim@epita.fr>
5128
5129 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
5130 Introduce another definition to address simple location arrays.
5131 (yyGLRStack): New member: yyerror_range.
5132 (yyrecoverSyntaxError, yyparse): Update it.
5133 (yyrecoverSyntaxError): Use it when shifting the error token to
5134 have an accurate range, equivalent to the one computed by both
5135 yacc.c and lalr1.cc.
5136 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
5137 that column numbers start at column 0, as per GNU Coding
5138 Standards, the others tests, and the doc.
5139 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
5140 Adjust to the above change (first column is 0).
5141 And adjust the location of the "<error>", now covering the whole
5142 line.
5143
5144 2004-10-22 Akim Demaille <akim@epita.fr>
5145 and Paul Eggert <eggert@cs.ucla.edu>
5146
5147 Remove some arbitrary limits on goto numbers and relations.
5148 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
5149 initial values, since they're never used.
5150 (set_goto_map): ngotos is now unsigned, so test for overflow
5151 by seeing whether it wraps around to zero.
5152 * src/lalr.h (goto_number): Now size_t, not short int.
5153 (GOTO_NUMBER_MAXIMUM): Remove.
5154 * src/relation.c (relation_print, traverse, relation_transpose):
5155 Check for END_NODE rather than looking at sign.
5156 * src/relation.h (END_NODE): New macro.
5157 (relation_node): Now size_t, not short int.
5158
5159 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
5160
5161 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
5162 keyword, not an identifier. Problem reported by Baron Schwartz in
5163 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
5164
5165 2004-10-11 Akim Demaille <akim@epita.fr>
5166
5167 * src/symtab.c (symbol_check_alias_consistency): Also check
5168 type names, destructors, and printers.
5169 Reported by Alexandre Duret-Lutz.
5170 Recode the handling of associativity and precedence in terms
5171 of symbol_precedence_set.
5172 Accept no redeclaration at all, not even equal to the previous
5173 value.
5174 (redeclaration): New.
5175 Use it to factor redeclaration complaints.
5176 (symbol_make_alias): Don't set the type of the alias, let
5177 symbol_check_alias_consistency do it as for other features.
5178 * src/symtab.h (symbol): Add new member prec_location, and
5179 type_location.
5180 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
5181 * tests/input.at (Incompatible Aliases): New.
5182
5183 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
5184
5185 .cvsignore fixes to accommodate gnulib changes,
5186 and the practice of naming build directories "_build".
5187 * .cvsignore: Add "_*". Sort.
5188 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
5189 * m4/.cvsignore: Add "*_gl.m4".
5190
5191 2004-10-06 Akim Demaille <akim@epita.fr>
5192
5193 * src/parse-gram.y (add_param): Fix the truncation of trailing
5194 spaces.
5195
5196 2004-10-05 Akim Demaille <akim@epita.fr>
5197
5198 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
5199 whether the reducion was empty or not. This leaves room to
5200 improve the use of YYLLOC_DEFAULT in such a case.
5201 lalr1.cc is still experimental, so changing this is acceptable.
5202 And finally, there are probably not many users who changed the
5203 handling of locations in GLR, so changing is admissible too.
5204
5205 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
5206 empty reduction, set @$ to an empty location ending the previously
5207 stacked symbol.
5208 Adjust uses to make sure the code is triggered on empty
5209 reductions.
5210 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
5211 expected output: empty reductions have empty locations.
5212
5213 2004-09-29 Akim Demaille <akim@epita.fr>
5214
5215 * data/lalr1.cc: Move towards a more standard C++ coding style
5216 for templates: Class < T > -> Class<T>.
5217
5218 2004-09-29 Akim Demaille <akim@epita.fr>
5219
5220 * data/lalr1.cc: Reinstall the former ctor, for sake of
5221 compatibility, but warn it will be removed.
5222 Move towards a more standard C++ coding style (i.e., type *var ->
5223 type* var).
5224
5225 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
5226
5227 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
5228 since it's less likely to work if NULs are involved in the future.
5229
5230 2004-09-27 Akim Demaille <akim@epita.fr>
5231
5232 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
5233
5234 2004-09-27 Akim Demaille <akim@epita.fr>
5235
5236 * data/lalr1.cc (b4_parse_param_decl_1): New.
5237 (b4_parse_param_decl): Use it to have different names between attribute
5238 and argument names.
5239 (b4_cc_constructor_call): Likewise.
5240
5241 2004-09-24 Akim Demaille <akim@epita.fr>
5242
5243 * src/parse-gram.y (add_param): Strip the leading and trailing
5244 blanks from a formal argument declaration.
5245 (YY_LOCATION_PRINT): New.
5246
5247 2004-09-24 Akim Demaille <akim@epita.fr>
5248
5249 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
5250 after the location.
5251
5252 2004-09-24 Akim Demaille <akim@epita.fr>
5253
5254 * doc/bison.texinfo (Table of Symbols): Sort.
5255
5256 2004-09-21 Akim Demaille <akim@epita.fr>
5257
5258 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
5259 the useless parentheses.
5260 Suggested by Paul Eggert.
5261
5262 2004-09-20 Akim Demaille <akim@epita.fr>
5263
5264 Let the initial-action act on the look-ahead, and use it for the
5265 "initial push" (corresponding to an hypothetical beginning-of-file).
5266 And let lalr1.cc honor %initial-action.
5267
5268 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
5269 example.
5270 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
5271 (Parser::Parser): Remove the ctor that used to initialize it.
5272 (Parser::parse): Like in the other skeletons, issue the "starting
5273 parse" message before any action.
5274 Honor %initial-action.
5275 Initialize the stacks with the lookahead.
5276 * data/yacc.c: Let $$ and @$ in %initial-action designate the
5277 look-ahead.
5278 Push them in the stacks.
5279 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
5280
5281 2004-09-20 Akim Demaille <akim@epita.fr>
5282
5283 * doc/bison.texinfo (Initial Action Decl): New.
5284
5285 2004-09-20 Akim Demaille <akim@epita.fr>
5286
5287 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
5288 clearer criterion to define it.
5289 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
5290 When reducing on an empty RHS, use the latest stacked location as
5291 location.
5292 yylloc is not always available.
5293 * data/glr.c: Likewise.
5294 Also, honor initial-actions.
5295
5296 2004-09-20 Akim Demaille <akim@epita.fr>
5297
5298 * data/yacc.c (YY_LOCATION_PRINT): New.
5299 Define when we know YYLTYPE's structure, i.e., when the default
5300 YYLLOC_DEFAULT is used.
5301 * data/c.m4 (b4_yysymprint_generate): Use it.
5302 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
5303 value of the result.
5304 (error_start_): Replace with...
5305 (error_range_): this location array.
5306 This allows to replace code relying on the implementation of
5307 locations by portable code.
5308 * data/yacc.c (yylerrsp): Replace with...
5309 (yyerror_range): this.
5310 Every time a token is popped, update yyerror_range[0], to have an
5311 accurate location for the error token.
5312 * data/glr.c (YY_LOCATION_PRINT): New.
5313 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
5314 deference a pointer.
5315 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
5316 report the location in %printers.
5317
5318 * src/scan-skel.l: Instead of abort, report error messages to ease
5319 understanding skeleton scanning failures.
5320
5321 2004-09-16 Akim Demaille <akim@epita.fr>
5322
5323 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
5324 (iterator, const_iterator): these, to be more in the C++ spirit.
5325 Also, return reverse iterators so that when displaying the stack
5326 we display its bottom first.
5327 (Parser::stack_print_, Parser::reduce_print_): Match the messages
5328 from yacc.c.
5329 We should probably use vector here though.
5330
5331 2004-09-16 Akim Demaille <akim@epita.fr>
5332
5333 Have more complete shift traces.
5334
5335 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
5336 to report Shifts instead of ad hoc YYDPRINTF invocations,
5337 including for the error token.
5338 * data/lalr1.cc (symprint_): Output the location.
5339 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
5340 output the location within the %printer.
5341 Activate GLR tests, at least to make sure they compile properly.
5342 They still don't pass though.
5343 * tests/calc.at: Adjust expect verbose output, since now "Entering
5344 state..." is on a different line than the "Shifting" message.
5345
5346 2004-09-08 Akim Demaille <akim@epita.fr>
5347
5348 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
5349 Bison directive from the Bison file to the invocation of this
5350 macro, so that these directives are passed to
5351 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
5352 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
5353 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
5354 the extra Bison directives instead of the whole series.
5355 Change the grammar so that there are recoverable errors, and
5356 unrecoverable errors. Now we can have the parser give up before
5357 consuming the whole input. As a result we now can observe that
5358 the lookahead is freed when needed.
5359 Change the parser source to parse argv[1] instead of a hard coded
5360 string.
5361 Simplify yylex, and give a value and location to EOF.
5362 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
5363 passed directives already coded in the file.
5364 Add some tests to check the location of "error".
5365 For some tests, the C++ parser is correct, and not yacc.c.
5366 For other tests, they provide different, but unsatisfying, values,
5367 so keep the C++ value so that at least one parser is "correct"
5368 according to the test suite.
5369 (Actions after errors): Remove, this is subsumed by the
5370 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
5371
5372 2004-09-06 Akim Demaille <akim@epita.fr>
5373
5374 * data/lalr1.cc: Adjust the indentation of the labels.
5375 (Parser::pop): New.
5376 Use it.
5377
5378 2004-09-06 Akim Demaille <akim@epita.fr>
5379
5380 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
5381 argument, an informative message.
5382 Call YY_SYMBOL_PRINT.
5383 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
5384 * data/lalr1.cc (destruct_): Likewise.
5385 In addition, no longer depend on b4_yysymprint_generate and
5386 b4_yydestruct_generate to generate these functions, do it "by
5387 hand".
5388
5389 2004-09-03 Akim Demaille <akim@epita.fr>
5390
5391 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
5392 invoked, yydestruct the lookahead.
5393 * tests/calc.at (Calculator $1): Update the expected lengths of
5394 traces: there is an added line for the discarded lookahead.
5395 * doc/bison.texinfo (Destructor Decl): Some rewording.
5396 Define "discarded" symbols.
5397
5398 2004-09-02 Akim Demaille <akim@epita.fr>
5399
5400 * data/lalr1.cc (translate_, destruct_): No reason to be static.
5401
5402 2004-09-02 Akim Demaille <akim@epita.fr>
5403
5404 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
5405 (YYDSYMPRINTF): Rename as...
5406 (YY_SYMBOL_PRINT): this.
5407 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
5408 two.
5409 Use it instead of direct symprint_ calls.
5410 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
5411 one.
5412
5413 2004-09-02 Akim Demaille <akim@epita.fr>
5414
5415 * data/lalr1.cc (b4_yysymprint_generate): New.
5416 (symprint_): New member function, defined when YYDEBUG.
5417 Use it consistently instead of token/nterm debugging output by
5418 hand.
5419 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
5420 %printer calls to use cdebug_ when using lalr1.cc.
5421
5422 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
5423
5424 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
5425 with #ifdef YYDEBUG.
5426
5427 2004-08-26 Akim Demaille <akim@epita.fr>
5428
5429 * doc/bison.texinfo (Implementing Loops): Rename as...
5430 (Implementing Gotos/Loops): this.
5431
5432 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
5433
5434 Adjust to latest gnulib.
5435 * bootstrap (gnulib_modules): Add xalloc-die.
5436 Set LC_ALL=C so that file names sort consistently.
5437 Prefer the gnulib copies of gettext.m4, glibc21.m4,
5438 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
5439 uintmax_t.m4, ulonglong.m4.
5440 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
5441 po.m4 since we are now using _gl.m4 instead.
5442
5443 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
5444
5445 * src/scan-action.l: Remove. Scanning of semantic actions is
5446 handled in scan-gram.l.
5447
5448 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
5449
5450 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
5451
5452 * src/location.h (struct): The file member is a uniqstr.
5453 (equal_boundaries): Use UNIQSTR_EQ for comparison.
5454
5455 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
5456
5457 Fix bug with non-%union parsers that have printers or destructors,
5458 which led to a Bison core dump. Reported by Peter Fales in
5459 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
5460
5461 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
5462 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
5463 not to our own type.
5464 * src/output.c (symbol_destructors_output, symbol_printers_output):
5465 Don't assume %union.
5466 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
5467 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
5468 UNION-FLAG. All callers changed.
5469 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
5470 Use type char, not unsigned int, when declaring an array of char;
5471 this lets us remove a cast.
5472 (Printers and Destructors): Add non-%union test cases.
5473
5474 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5475
5476 * doc/bison.texinfo: Minor editorial changes, mostly to the new
5477 GLR writeups. E.g., avoid frenchspacing and the future tense,
5478 change "lookahead" to "look-ahead", and change "wrt" to "with
5479 respect to".
5480
5481 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5482
5483 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
5484 New sections, split off from the GLR Parsers section. Put the new
5485 Simple GLR Parser near the start of the GLR section, for clarity.
5486 Rewrite connective text.
5487
5488 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
5489
5490 * doc/bison.texinfo (Simple GLR Parsers): New section.
5491
5492 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5493
5494 * NEWS, TODO, doc/bison.texinfo:
5495 Use "look-ahead" instead of "lookahead", to be consistent.
5496 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
5497 while we're fixing "look-ahead".
5498 * src/conflicts.c (shift_set): Renamed from shiftset.
5499 (look_ahead_set): Renamed from lookaheadset.
5500 * src/print.c: Likewise.
5501 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
5502 name for "lookahead".
5503 (report_types, usage): Likewise.
5504 * src/getargs.h (report_look_ahead_tokens): Renamed from
5505 report_lookaheads.
5506 * src/lalr.c (compute_look_ahead_tokens): Renamed from
5507 compute_lookaheads.
5508 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
5509 (look_ahead_tokens_print): Renamed from lookaheads_print.
5510 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
5511 state_rule_lookaheads_print.
5512 * src/state.h: Likewise.
5513 (reductions.look_ahead_tokens): Renamed from lookaheads.
5514 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
5515 AT_DATA_LOOKAHEADS_GRAMMAR.
5516
5517 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
5518
5519 * README: Update location of patched M4 distribution.
5520
5521 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
5522
5523 Don't assume the C++ compiler takes the same arguments as the C compiler
5524 (trivial change).
5525 * configure.ac (O0CXXFLAGS): New var.
5526 * tests/atlocal.in (CXXFLAGS): Use it.
5527
5528 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
5529
5530 Fix some "make check" problems with C++ reported by
5531 Albert Chin-A-Young for Tru64 C++ in this thread:
5532 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
5533
5534 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
5535 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5536 Output to a .cc file for C++, not to a .c file.
5537 * tests/calc.at (AT_CHECK_CALC): Likewise.
5538 * tests/regression.at (AT_CHECK_DANCER): Likewise.
5539 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
5540
5541 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
5542
5543 * tests/calc.at, tests/actions.at: Workaround for SGI
5544 C++ compiler. (trivial change)
5545
5546 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
5547
5548 Spent a few hours checking out which prerequisite versions the
5549 current sources actually require. I went all the way back to
5550 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
5551 a seemingly endless set of combinations of versions more recent
5552 than that. The bottom line is that the current sources require
5553 fairly recent versions of the build tools, and it'll be some work
5554 to change this.
5555 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
5556 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
5557 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
5558 Add comments explaining why those particular versions are
5559 currently needed.
5560
5561 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
5562 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
5563 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
5564
5565 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
5566 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
5567
5568 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
5569
5570 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
5571 0.11.5. Suggested by Bruno Haible.
5572 * bootstrap: Remove gettext version checking.
5573
5574 * doc/bison.texinfo (Decl Summary): Also mention that %union
5575 can depend on prerequisite types. Problem reported by Tim
5576 Van Holder.
5577
5578 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
5579
5580 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
5581 * README-alpha: Don't tell people not to package this.
5582
5583 * bootstrap: Don't assume $(...) works; use `...` instead.
5584 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
5585 gettext better.
5586
5587 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
5588 put into the -d output file, and mention what to do if YYSTYPE is
5589 defined as a macro.
5590
5591 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
5592
5593 Undo change made earlier today: it caused autopoint to not bring
5594 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
5595 autopoint's.
5596
5597 * bootstrap: Check that gettext version matches what's in
5598 configure.ac. Warn users to ignore robots.txt ERROR 404.
5599 * bootstrap: Undo today's earlier change (logged below).
5600 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
5601
5602 The gettext version checking is causing more trouble than it's
5603 curing; remove it. Problem reported by Paul Hilfinger.
5604
5605 * bootstrap: Issue a warning that one can expect a message
5606 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
5607 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
5608
5609 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
5610
5611 Ensure that the C++ compiler used for testing actually works on a
5612 simple test program; if not, skip the C++-related tests. Problem
5613 reported by Vin Shelton in:
5614 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
5615
5616 * m4/cxx.m4: New file.
5617 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
5618 * tests/atlocal.in (BISON_CXX_WORKS): Add.
5619 * tests/local.at (AT_COMPILE_CXX): Use it.
5620
5621 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5622
5623 * data/glr.c (yylloc): Output this macro even if locations are not
5624 being generated, as the GLR parser needs it even in that case.
5625 Problem reported by Troy A. Johnson
5626 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
5627
5628 * configure.ac (AC_INIT): Update to 1.875e.
5629
5630 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5631
5632 * NEWS: Version 1.875d.
5633 * configure.ac (AC_INIT): Likewise.
5634 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
5635
5636 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
5637 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
5638 lalr1.cc runs afoul of the first, and the last two are no longer
5639 supported by GCC 3.4.0.
5640 * README: Mention GNU m4 1.4 or later; mention m4 patches.
5641 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
5642
5643 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
5644
5645 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
5646 unsigned int, for compatibility with latest gnulib hash module.
5647 * src/state.c (state_hash, state_hasher): Likewise.
5648 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
5649 * src/uniqstr.c (hash_uniqstr): Likewise.
5650
5651 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
5652
5653 * NEWS: Unescaped newlines are no longer allowed in char & strings.
5654
5655 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
5656 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
5657 character and string literals.
5658 (unexpected_end): New function.
5659 (unexpected_eof): Use it.
5660 (unexpected_newline): New function.
5661 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
5662 actions.
5663
5664 * NEWS: Document %expect-rr.
5665
5666 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
5667 Fix typo by replacing $1 with $option.
5668 Remove more 'intl'-related files.
5669 Don't DEFUN AM_INTL_SUBDIR twice.
5670
5671 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
5672 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
5673 strtoul.c.
5674 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
5675 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
5676 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
5677 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
5678 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
5679 * src/.cvsignore: Add *.output.
5680
5681 * src/parse-gram.y: Put copyright notice inside %{ %} so it
5682 gets copied to the output file.
5683
5684 2004-04-28 Paul Eggert <eggert@twinsun.com>
5685
5686 Get files from the gnulib and po repositories, instead of relying
5687 on them being in our CVS. Upgrade to latest versions of gnulib
5688 and Automake.
5689
5690 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
5691 * bootstrap: Bootstrap from gnulib and po repositories.
5692 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
5693 * README-cvs: Document these changes. Remove version numbers from
5694 mentions of build tools, since they change so often. Mention Flex.
5695
5696 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
5697 (gl_USE_SYSTEM_EXTENSIONS): Add.
5698 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
5699 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
5700 does this for us.
5701 (AC_ISC_POSIX): Remove; we no longer support this
5702 ancient OS, as it gets in the way of latest Autoconf & gnulib.
5703 (AC_HEADER_STDC): Remove: we now assume C89 or better.
5704 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
5705 Do not check for C89 headers, except for locale.h which is used
5706 by the Yacc library and must port to K&R hosts.
5707 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
5708 Do not check for C89 functions, except for setlocale which is
5709 used by the Yacc library.
5710 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
5711 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
5712 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
5713 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
5714 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
5715 AM_GNU_GETTEXT): Remove; now done by:
5716 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
5717 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
5718 for us.
5719
5720 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
5721 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
5722 Define to empty, as gnulib.mk will do the rest for us.
5723 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
5724 for us.
5725 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
5726 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
5727
5728 * src/files.c: Include gnulib's xstrndup.h.
5729
5730 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
5731 (REALLOC): Use xnrealloc, for likewise.
5732 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
5733 (strnlen, memrchr): Remove decls; functions no longer used.
5734 Include <stpcpy.h>.
5735
5736 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
5737 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
5738 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
5739 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
5740 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
5741 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
5742 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
5743 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
5744 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
5745 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
5746 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
5747 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5748 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
5749 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
5750 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
5751 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
5752 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
5753 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
5754 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
5755 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
5756 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
5757 Remove, as these files are now generated automatically
5758 by bootstrap or automake.
5759
5760 * po/ChangeLog: Remove: all but one entry was a duplicate
5761 of this file, and I moved that 2000-11-02 entry here.
5762
5763 * config/.cvsignore: Add Makefile, depcomp, install-sh.
5764 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
5765 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
5766 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
5767 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
5768 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
5769 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
5770 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
5771 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
5772 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
5773 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
5774 xstrndup.h.
5775 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
5776 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
5777 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
5778 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
5779 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
5780 * src/.cvsignore: Remove *_.c.
5781
5782
5783 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
5784 support it. (The latest stable gzip doesn't.)
5785
5786 2004-04-27 Paul Eggert <eggert@twinsun.com>
5787
5788 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
5789 case, as stos_ is now used by destructors due to the 2004-02-09
5790 change.
5791
5792 Remove more K&R C support.
5793 * lib/libiberty.y (PARAMS): Remove. All uses removed.
5794 * lib/subpipe.c (errno): Remove decl.
5795 Include <stdlib.h> unconditionally.
5796 (EXIT_FAILURE): Remove macro.
5797 * src/complain.c (vfprintf, strerror): Remove.
5798 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
5799 unconditionally.
5800 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
5801 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
5802 (strchr, strspn, memchr): Remove decls.
5803 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
5804 unconditionally. Do not declare perror.
5805 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
5806 unconditionally.
5807
5808 * src/complain.c (_): Remove useless defn, as system.h defines this.
5809
5810 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
5811 with latest obstack.h.
5812 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
5813 to procedure types, as obstack.h now does that for us.
5814 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
5815
5816 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
5817 so that this include file can stand alone.
5818 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
5819 does this now. Include subpipe.h first after config.h, to
5820 test whether it can stand alone.
5821
5822 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
5823 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
5824 unused declaration.
5825
5826 * tests/synclines.at (%union synch line): Put a dummy member in
5827 the union, because empty unions aren't allowed in C. Caught
5828 by GCC 3.4.0.
5829
5830 2004-04-13 Jim Meyering <jim@meyering.net>
5831
5832 * src/conflicts.c (conflicts_print): Correct format string typo:
5833 use `%%' to produce literal `%'. (trivial change)
5834
5835 2004-03-30 Paul Eggert <eggert@twinsun.com>
5836
5837 * src/getargs.c (version): Update copyright year to 2004.
5838
5839 * data/c.m4 (b4_int_type): Use 'short int' rather than
5840 'short', and similarly for 'long', 'unsigned', etc.
5841 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
5842 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
5843 yy_yypstack, yydumpstack): Likewise.
5844 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
5845 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
5846 Likewise.
5847 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
5848 yy_stack_print, yyparse): Likewise.
5849 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
5850 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
5851 * lib/bitset.c (bitset_print): Likewise.
5852 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
5853 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
5854 * lib/bitsetv.c (bitsetv_dump): Likewise.
5855 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
5856 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
5857 Likewise.
5858 * src/LR0.c (allocate_itemsets): Likewise.
5859 * src/gram.h (rule_number, rule): Likewise.
5860 * src/lalr.h (goto_number): Likewise.
5861 * src/nullable.c (nullable_compute): Likewise.
5862 * src/output.c (prepare_rules): Likewise.
5863 * src/relation.c (relation_print, relation_digraph): Likewise.
5864 * src/relation.h (relation_node): Likewise.
5865 * src/state.h (state_number, transitions, errs, reductions,
5866 struct state): Likewise.
5867 * src/symtab.h (symbol_number, struct symbol): Likewise.
5868 * src/tables.c (vector_number, tally, action_number,
5869 default_goto, goto_actions): Likewise.
5870 * tests/existing.at (GNU Cim Grammar): Likewise.
5871 * tests/regression.at (Web2c Actions): Likewise.
5872
5873 * src/output.c (muscle_insert_short_int_table): Renamed from
5874 muscle_insert_short_table. All uses changed.
5875
5876 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5877
5878 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
5879 (declaration): Replace expected_conflicts with expected_sr_conflicts.
5880 Add %expect-rr rule.
5881
5882 * src/scan-gram.l: Recognize %expect-rr.
5883
5884 * src/conflicts.h (expected_sr_conflicts): Rename from
5885 expected_conflicts.
5886 (expected_rr_conflicts): Declare.
5887
5888 * src/conflicts.c (expected_sr_conflicts): Rename from
5889 expected_conflicts.
5890 (expected_rr_conflicts): Define.
5891 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
5892 for GLR parsers.
5893 Use expected_sr_conflicts in place of expected_conflicts.
5894 Warn if expected_rr_conflicts used in non-GLR parser.
5895
5896 * doc/bison.texinfo: Add documentation for %expect-rr.
5897
5898 2004-03-08 Paul Eggert <eggert@gnu.org>
5899
5900 Add support for hex token numbers. Suggested by Odd Arild Olsen in
5901 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
5902
5903 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
5904 in lalr1.cc.
5905 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
5906 * src/scan-gram.l (scan_integer): New function.
5907 ({int}): Use it.
5908 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
5909 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
5910 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
5911 Say "long int", not "long", for uniformity with GNU style.
5912
5913 2004-02-25 Paul Eggert <eggert@twinsun.com>
5914
5915 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
5916 compilers. This fixes a problem with Intel's C++ compiler being
5917 chatty, reported by Guido Trentalancia in
5918 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
5919
5920 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
5921
5922 Support %destructor and merge error locations in lalr1.cc.
5923
5924 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
5925 (Parser::stos_): Define unconditionally.
5926 (Parser::destruct_): New method. Generate its body with
5927 b4_yydestruct_generate.
5928 (Parser::error_start_): New attribute.
5929 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
5930 token which are discarded.
5931 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
5932 error_start_ when erroneous token are discarded.
5933 (Parser::parse) <yyerrlab1>: Compute the location of the error
5934 token so that it covers all the discarded tokens.
5935 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
5936 it can be called with `%skeleton "lalr1.cc"', and do that.
5937
5938 2004-02-02 Paul Eggert <eggert@twinsun.com>
5939
5940 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
5941 $(top_srcdir)/lib and ../lib. This fixes a bug reported
5942 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
5943 There's no need to mention top_builddir since Automake does that
5944 for us.
5945 (INCLUDES): Remove, as Automake says it's obsolescent.
5946 Contents migrated into AM_CPPFLAGS as described above.
5947 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
5948
5949 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5950
5951 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
5952 (yyreportSyntaxError): Handle case where lookahead token is
5953 YYEMPTY.
5954
5955 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5956
5957 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
5958 resulting parsers are compilable with C++.
5959
5960 2003-12-23 Paul Eggert <eggert@twinsun.com>
5961
5962 * config/depcomp, config/install-sh: Sync with Automake 1.8.
5963 * src/output.c (output_skeleton): Rename local var.
5964 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
5965 Bison tokens, as this runs afoul of the 2003-10-07 change that
5966 disallowed NUL bytes in character constants or string literals.
5967
5968 * tests/local.at: Require Autoconf 2.59's Autotest.
5969 * tests/testsuite.at: Don't include local.at, since we now assume
5970 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
5971 including it.
5972 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
5973 multiple inclusion warnings.
5974
5975 2003-12-02 Akim Demaille <akim@epita.fr>
5976
5977 * doc/bison.texinfo (How Can I Reset the Parser): More about start
5978 conditions.
5979 From Bruno Haible.
5980
5981 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
5982
5983 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
5984
5985 2003-10-07 Paul Eggert <eggert@twinsun.com>
5986
5987 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
5988 if testsuite doesn't exist.
5989
5990 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
5991 literals, unfortunately.
5992 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
5993 Complain about NUL bytes in character constants or string literals.
5994
5995 2003-10-05 Paul Eggert <eggert@twinsun.com>
5996
5997 * NEWS: Don't document %no-default-prec, as it's still
5998 too experimental.
5999 * doc/bison.texinfo: Document %no-default-prec only if
6000 the defaultprec flag is set. Normally it's not.
6001
6002 2003-10-04 Paul Eggert <eggert@twinsun.com>
6003
6004 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
6005 non-modifiable lvalue, instead of a modifiable one.
6006 * doc/bison.texinfo (Actions): Document that $$ can
6007 be assigned to. Do not claim that $$ and $N are
6008 array element references: user code should not rely on this.
6009
6010 2003-10-01 Paul Eggert <eggert@twinsun.com>
6011
6012 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
6013 (grammar_declaration): Use it.
6014 * src/scan-gram.l: New token %no-default-prec.
6015 * tests/conflicts.at: Revamp tests to use %no-default-prec.
6016 * NEWS, doc/bison.texinfo: Document the above.
6017
6018 2003-10-01 Akim Demaille <akim@epita.fr>
6019
6020 VCG no longer supports long_straight_phase.
6021
6022 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
6023 * src/print_graph.c (print_graph): Adjust.
6024
6025 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
6026 and Paul Eggert <eggert@twinsun.com>
6027
6028 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
6029 Table of Symbols): Document %default-prec.
6030 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
6031 (grammar_declaration): Set default_prec on %default-prec.
6032 * src/scan-gram.l (%default-prec): New token.
6033 * src/reader.h (default_prec): New flag.
6034 * src/reader.c: Likewise.
6035 (packgram): Handle it.
6036 * tests/conflicts.at (%default-prec without %prec,
6037 %default-prec with %prec, %default-prec 1): New tests.
6038
6039 2003-09-30 Paul Eggert <eggert@twinsun.com>
6040
6041 * tests/testsuite.at: Include local.at, not input.at, fixing
6042 a typo in the 2003-08-25 patch.
6043
6044 2003-08-27 Akim Demaille <akim@epita.fr>
6045
6046 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
6047 GCC warnings.
6048
6049 2003-08-26 Akim Demaille <akim@epita.fr>
6050
6051 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
6052 "<\#" to avoid magic from Gnus when posting parts of this script.
6053
6054 2003-08-26 Akim Demaille <akim@epita.fr>
6055
6056 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
6057 (Parser::parse): here.
6058 Adjust: nerrs and errstatus is now replaced by...
6059 (Parser::nerrs_, Parser::errstatus_): New.
6060
6061 2003-08-25 Akim Demaille <akim@epita.fr>
6062
6063 * config/announce-gen, Makefile.cfg: New.
6064 * Makefile.am: Adjust.
6065 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
6066 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
6067
6068 2003-08-25 Akim Demaille <akim@epita.fr>
6069
6070 When reducing initial empty rules, Bison parser read an initial
6071 location that is not defined. This results in garbage, and that
6072 affects Bison's own parser. Therefore we need (i) to extend Bison
6073 to support a means to initialize this location, and (ii) to use
6074 this CVS Bison to fix CVS Bison's parser.
6075
6076 * src/reader.h, reader.c (epilogue_augment): Remove, replace
6077 with...
6078 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
6079 * src/parse-gram.y: Adjust.
6080 (%initial-action): New.
6081 (%error-verbose): Since we require CVS Bison, there is no reason
6082 not to use it.
6083 * src/scan-gram.l: Adjust.
6084 * src/Makefile.am (YACC): New, to make sure we use our own parser.
6085 * data/yacc.c (yyparse): Use b4_initial_action.
6086
6087 2003-08-25 Akim Demaille <akim@epita.fr>
6088
6089 * doc/bison.texinfo: Don't promote stdout for error messages.
6090
6091 2003-08-25 Akim Demaille <akim@epita.fr>
6092
6093 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
6094 From Alexandre Duret-Lutz.
6095
6096 2003-08-25 Akim Demaille <akim@epita.fr>
6097
6098 Version 1.875c.
6099
6100 2003-08-25 Akim Demaille <akim@epita.fr>
6101
6102 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
6103 Use them.
6104
6105 2003-08-25 Akim Demaille <akim@epita.fr>
6106
6107 * data/lalr1.cc (Parser::reduce_print_): New.
6108 Use it.
6109
6110 2003-08-25 Akim Demaille <akim@epita.fr>
6111
6112 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
6113 error recovery loops. This patch is based on
6114 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
6115 Also, augment the similarity between lalr1.cc and yacc.c.
6116 Note: the locations of error recovery rules are not correct yet.
6117
6118 * data/lalr1.cc: Comment changes to augment the similarity between
6119 lalr1.cc and yacc.c.
6120 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
6121 (yyerrlab1): Remove, but where it used to be (now the bottom part of
6122 yyerrlab), when hitting EOF, pop the whole stack here instead of
6123 merely falling thru the default error handling mechanism.
6124 (yyerrorlab): New label, with the old contents of YYERROR,
6125 plus the following change: pop the stack of rhs corresponding
6126 to the production that invoked YYERROR. That is how Yacc
6127 behaves (required by POSIX).
6128 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
6129 fail.
6130
6131 2003-08-25 Akim Demaille <akim@epita.fr>
6132
6133 Tune local.at so that people can "autom4te -l autotest calc.at -o
6134 calc" for instance, to extract a sub test suite.
6135
6136 * tests/testsuite.at: Move the initialization, Autotest version
6137 requirement, and AT_TESTED invocation into...
6138 * tests/local.at: here.
6139 * tests/testsuite.at: Include it for compatibility with Autoconf
6140 2.57.
6141 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
6142 be ignore.
6143
6144 2003-08-04 Paul Eggert <eggert@twinsun.com>
6145
6146 Rework code slightly to avoid gcc -Wtraditional warnings.
6147 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
6148 The returned value is now stored in *YY0. All callers changed.
6149 * src/output.c (merge_output): Adjust to the above change.
6150
6151 2003-07-26 Paul Eggert <eggert@twinsun.com>
6152
6153 * data/glr.c (YYASSERT): New macro.
6154 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
6155 yyresolveStates, yyprocessOneStack):
6156 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
6157 Derived from a suggestion by Frank Heckenbach.
6158
6159 2003-07-25 Paul Eggert <eggert@twinsun.com>
6160
6161 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
6162 for portability to K&R C (after ansi2knr, presumably). See
6163 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
6164 by Frank Heckenbach, though I have omitted the structure-initialization
6165 part of his glr-knr.diff patch since I recall that the Portable
6166 C Compiler didn't require that change.
6167
6168 Let the user specify how to allocate and free memory.
6169 Derived from a suggestion by Frank Heckenbach in
6170 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
6171 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
6172 All uses of free, malloc, realloc changed to use these macros,
6173 and unnecessary casts removed.
6174 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
6175
6176 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
6177
6178 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
6179 use s.empty() rather than s == "" to test for empty string; see
6180 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
6181 (trivial change)
6182
6183 2003-06-25 Akim Demaille <akim@epita.fr>
6184
6185 * config/depcomp, config/install-sh: Update from masters.
6186
6187 2003-06-20 Paul Eggert <eggert@twinsun.com>
6188
6189 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
6190 and return properly parenthesized result.
6191 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
6192 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
6193 Remove unnecessary parentheses from uses.
6194 * doc/bison.texinfo (Location Default Action): Describe the
6195 conventions for parentheses.
6196
6197 2003-06-19 Paul Eggert <eggert@twinsun.com>
6198
6199 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
6200 yyreportTree): Do not assume that size_t is the same width as int,
6201 when printing sizes. Print sizes using an unsigned format.
6202 Problem reported by Frank Heckenbach in
6203 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
6204
6205 Port to Forte Developer 7 C compiler.
6206 * data/glr.c (struct YYLTYPE): If locations are not being used,
6207 declare a single dummy member, as empty structs do not conform
6208 to the C standard.
6209 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
6210 the Forte Developer 7 C compiler complains that end-of-loop
6211 code is not reached.
6212
6213 2003-06-17 Paul Eggert <eggert@twinsun.com>
6214
6215 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
6216 avoid warnings from picky compilers about redefinition of PARAMS.
6217
6218 2003-06-17 Paul Eggert <eggert@twinsun.com>
6219
6220 Version 1.875b.
6221
6222 * NEWS: Document 1.875b.
6223
6224 * lib/bbitset.h: Do not include config.h; that's the includer's job.
6225 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
6226 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
6227 Don't use 'index' in comments, as it's a builtin fn on some hosts.
6228 * lib/bitset_stats.c: Include gettext.h unconditionally, as
6229 per recent gettext manual's suggestion.
6230 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
6231 Use prototypes, not old-style definitions.
6232 * lib/lbitset.c (lbitset_unused_clear): Likewise.
6233 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
6234 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
6235 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
6236 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
6237 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
6238 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
6239 vbitset_or_and_cmp, vbitset_copy): Likewise.
6240
6241 * lib/libiberty.h: Do not include config.h; that's the includer's job.
6242 Do not include <stdlib.h>.
6243 (PARAMS): Define unconditionally for C89.
6244 (ATTRIBUTE_NORETURN): Remove.
6245 (ATTRIBUTE_UNUSED): Define unconditionally.
6246
6247 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
6248 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
6249 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
6250 * lib/vbitset.c, lib/vbitset.h: New files.
6251 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6252 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
6253 from libbitset.
6254
6255 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
6256 `How Can I Reset @code{yyparse}', since texinfo does not allow
6257 arbitrary @ in node names.
6258
6259 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
6260 shouldn't be needed according to the gettext 0.12.1 documentation
6261 but which seem to be needed anyway: codeset.m4 glibc21.m4
6262 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
6263 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
6264 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
6265
6266 * lib/.cvsignore: Add stdbool.h.
6267 * m4/.cvsignore: Add nls.m4, po.m4.
6268
6269 Upgrade to CVS gnulib.
6270 * stdbool_.h: File renamed from stdbool.h.in.
6271 * configure.ac (AM_STDBOOL_H): Invoke this instead of
6272 AC_HEADER_STDBOOL.
6273 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
6274 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
6275 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
6276 (MOSTLYCLEANFILES): New var.
6277 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
6278 (stdbool.h): New rule.
6279 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
6280 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
6281 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
6282 m4/quote.m4: Upgrade to today's gnulib.
6283
6284 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
6285 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
6286 the tests right now.
6287 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
6288 yyerror are declared before use; C99 requires this.
6289
6290 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6291
6292 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
6293 first.
6294 (yyrecoverSyntaxError): Correct the logic for setting and testing
6295 yyerrState.
6296 Correct comment on handling EOF.
6297 Allow states with only a default reduction, rather than failing
6298 (I can't quite reconstruct why these were not allowed before).
6299
6300 Fixes to avoid problem that $-N rules in GLR parsers can cause
6301 buffer overruns, corrupting state.
6302
6303 * src/output.c (prepare_rules): Output max_left_semantic_context
6304 definition.
6305 * src/reader.h (max_left_semantic_context): New variable declaration.
6306 * src/scan-gram.l (max_left_semantic_context): Define.
6307 (handle_action_dollar): Update max_left_semantic_context.
6308 * data/glr.c (YYMAXLEFT): New definition.
6309 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
6310 (yyresolveAction): Ditto.
6311
6312 Fixes to problems with location handling in GLR parsers reported by
6313 Frank Heckenbach (2003/06/05).
6314
6315 * data/glr.c (YYLTYPE): Make trivial if locations not used.
6316 (YYRHSLOC): Add parentheses, and define only if locations used.
6317 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
6318 locations not used.
6319 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
6320 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
6321
6322 * tests/cxx-type.at: Exercise location information; update tests
6323 to differentiate output with and without locations.
6324 Remove forward declarations of yylex and yyerror---caused errors
6325 because default YYLTYPE not yet defined.
6326 Change semantic actions to compute strings, rather than printing
6327 them directly (to test proper passing of semantics values). Change
6328 output to prefix notation and update test data and expected results.
6329 (yylex): Track locations.
6330 (stmtMerge): Return value rather than printing, and include arguments
6331 in value.
6332
6333 2003-06-03 Paul Eggert <eggert@twinsun.com>
6334
6335 Avoid warnings generated by GCC 2.95.4 when Bison is
6336 configured with --enable-gcc-warnings.
6337 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
6338 yy::]b4_parser_class_name[::translate_,
6339 yy::Stack::operator[] (unsigned),
6340 yy::Stack::operator[] (unsigned) const,
6341 yy::Slice::operator[] (unsigned),
6342 yy::Slice::operator[] (unsigned) const):
6343 Rename local vars to avoid warnings.
6344 * tests/glr-regression.at (Improper handling of embedded actions
6345 and $-N in GLR parsers): Remove unused local variable from yylex.
6346 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
6347 (void) as arg when not pure, since we now assume C89 when building
6348 Bison. Pacify GCC by using parameter.
6349
6350 2003-06-02 Paul Eggert <eggert@twinsun.com>
6351
6352 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
6353 yy::Location::lines, yy::Location::columns): Rename arguments
6354 to avoid shadowing; this removes a warning generated by GCC 3.3.
6355
6356 2003-06-01 Paul Eggert <eggert@twinsun.com>
6357
6358 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
6359 to g++, as GCC 3.3 complains if you do it.
6360 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
6361 everything that WARNING_CFLAGS has, except omit warnings
6362 not suitable for C++.
6363 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
6364 * tests/atlocal.in (CXXFLAGS): New var.
6365 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
6366
6367 Fix a GLR parser bug I reported in February; see
6368 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
6369 The problem was that GLR parsers did not conform to the C standard,
6370 because actions like { $1 = $2 + $3; } expanded to expressions
6371 that invoked YYFILL in separate subexpressions, and YYFILL assigned
6372 to a local variable. The C standard says that expressions
6373 like (var = f ()) + (var = f ()) have undefined behavior.
6374 Another problem was that GCC sometimes issues warnings that
6375 yyfill and its parameters are unused.
6376
6377 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
6378 as possibly unused.
6379 (yyfill): New function.
6380 (YYFILL): Use it.
6381 (yyuserAction): Change type of yynormal to bool, so that it matches
6382 the new yyfill signature. Mark it as possibly unused.
6383
6384
6385 Follow up on a bug I reported in February, where a Bison-generated
6386 parser can loop. Provide a test case and a fix for yacc.c. I
6387 don't have a fix for lalr1.cc or for glr.c, unfortunately.
6388 The original bug report is in:
6389 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
6390
6391 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
6392 macro's size was becoming unwieldy.
6393 (yyerrlab): Do not discard an empty lookahead symbol, as this
6394 might destroy garbage.
6395 (yyerrorlab): New label, with the old contents of YYERROR,
6396 plus the following change: pop the stack of rhs corresponding
6397 to the production that invoked YYERROR. That is how Yacc
6398 behaves, and POSIX requires this behavior.
6399 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
6400 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
6401 Define 'alarm' to do nothing if unistd.h is not available.
6402 Add a new rule "exp: '-' error;" to test the above change to
6403 data/yacc.c. Use 'alarm' to abort any test taking longer than
6404 10 seconds, as it's probably looping.
6405 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
6406 Also, the new yacc.c generates two fewer diagnostics for an
6407 existing test.
6408
6409 2003-05-24 Paul Eggert <eggert@twinsun.com>
6410
6411 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
6412 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
6413 This fixes a problem reported by John Bowman when the Compaq/HP
6414 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
6415 -ansi -Wall -gall).
6416 * data/yacc.c (union yyalloc): Likewise.
6417 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
6418
6419 Switch from 'int' to 'bool' where that makes sense.
6420
6421 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
6422 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
6423 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
6424 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
6425 Return or accept bool, not int. All callers changed.
6426 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
6427 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
6428 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
6429 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
6430 bitset_or_and_cmp_): Likewise.
6431 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
6432 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
6433 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
6434 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
6435 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
6436 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
6437 bitset_stats_or_and_cmp): Likewise.
6438 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
6439 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
6440 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
6441 ebitset_xor_cmp): Likewise.
6442 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
6443 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
6444 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
6445 lbitset_xor_cmp): Likewise.
6446 * lib/bbitset.h: Include <stdbool.h>.
6447 (struct bitset_vtable): The following members now return bool, not
6448 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
6449 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
6450 or_and_cmp).
6451 * src/conflicts.c (count_rr_conflicts): Likewise.
6452 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
6453 All uses changed.
6454 * lib/ebitset.c (ebitset_obstack_init): Likewise.
6455 * lib/lbitset.c (lbitset_obstack_init): Likewise.
6456 * src/getargs.c (debug_flag, defines_flag, locations_flag,
6457 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6458 graph_flag): Likewise.
6459 * src/getargs.h (debug_flag, defines_flag, locations_flag,
6460 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6461 graph_flag): Likewise.
6462 * src/output.c (error_verbose): Likewise.
6463 * src/output.h (error_verbose): Likewise.
6464 * src/reader.c (start_flag, typed): Likewise.
6465 * src/reader.h (typed): Likewise.
6466 * src/getargs.c (LOCATIONS_OPTION): New constant.
6467 (long_options, getargs): Use it.
6468 * src/lalr.c (build_relations): Use bool, not int.
6469 * src/nullable.c (nullable_compute): Likewise.
6470 * src/print.c (print_reductions): Likewise.
6471 * src/tables.c (action_row, pack_vector): Likewise.
6472 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
6473 * src/output.c (prepare): Use it.
6474 * src/output.c (token_definitions_output,
6475 symbol_destructors_output, symbol_destructors_output): Use string,
6476 not boolean integer, to keep track of whether to output separator.
6477 * src/print_graph.c (print_core): Likewise.
6478 * src/state.c (state_rule_lookaheads_print): Likewise.
6479
6480 * config/install-sh: Sync from automake 1.7.5.
6481
6482 2003-05-14 Paul Eggert <eggert@twinsun.com>
6483
6484 * src/parse-gram.y (rules_or_grammar_declaration): Require a
6485 semicolon after a grammar declaration, in the interest of possible
6486 future changes to the Bison input language.
6487 Do not allow a stray semicolon at the start of the grammar.
6488 (rhses.1): Allow one or more semicolons after any rule, including
6489 just before "|" as required by POSIX.
6490 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
6491 grammar.
6492
6493 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
6494
6495 %parse-param support for lalr1.cc.
6496
6497 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
6498 b4_cc_constructor_calls, b4_cc_constructor_call,
6499 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
6500 definitions.
6501 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
6502 parse-param arguments.
6503 (yy::b4_parser_class_name): Declare instance variables to
6504 hold parse-param arguments.
6505 * tests/calc.at: s/value/semantic_value/ because value clashes
6506 with a member of yy::b4_parser_class_name. Adjust C++ code
6507 to handle %parse-param. Enable %parse-param test in C++.
6508
6509 2003-05-12 Paul Eggert <eggert@twinsun.com>
6510
6511 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
6512 English a bit. Fix fclose typo. Change "const char" to "char
6513 const", and use ANSI C rather than K&R for "main". Suggest
6514 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
6515 and suggest yy_switch_to_buffer.
6516
6517 2003-05-05 Paul Eggert <eggert@twinsun.com>
6518
6519 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
6520 C89. This avoids a diagnostic on compilers that define __STDC__
6521 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
6522 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
6523
6524 2003-05-03 Paul Eggert <eggert@twinsun.com>
6525
6526 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
6527 Do not overrun array bounds.
6528 This should fix a bug reported today by Olatunji Oluwabukunmi in
6529 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
6530
6531 2003-04-29 Akim Demaille <akim@epita.fr>
6532
6533 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
6534 * src/getargs.c, src/getargs.h: here, as bool, not int.
6535 (nondeterministic_parser): New.
6536 * src/parse-gram.y, src/scan-gram.l: Support
6537 %nondeterministic-parser.
6538 * src/output.c (prepare): Use nondeterministic_parser instead
6539 of glr_parser where appropriate.
6540 * src/tables.c (conflict_row, action_row, save_row)
6541 (token_actions, token_actions, pack_vector): Ditto.
6542
6543 2003-04-29 Akim Demaille <akim@epita.fr>
6544
6545 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
6546
6547 2003-04-29 Akim Demaille <akim@epita.fr>
6548
6549 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
6550 with %pure-parser and %locations to exercise the patch from Yakov
6551 Markovitch below.
6552
6553 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
6554
6555 * data/yacc.c: (b4_lex_param): Corrected for the case where
6556 %lex-param is provided and %pure-parser isn't.
6557
6558 2003-04-27 Paul Eggert <eggert@twinsun.com>
6559
6560 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
6561 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
6562 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
6563 if it is not defined.
6564 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
6565
6566 2003-04-26 Paul Eggert <eggert@twinsun.com>
6567
6568 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
6569 Declare to be of type suitable for the ninf value itself, not of
6570 type suitable for the corresponding table, since the latter might
6571 be unsigned but the ninf value might be negative. This fixes a
6572 bug reported by Alexandre Duret-Lutz in
6573 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
6574
6575 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
6576 invokes it. We shouldn't invoke it twice because it will attempt
6577 to put error.o in the archive twice. This fixes a glitch reported
6578 by Martin Mokrejs in
6579 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
6580
6581 2003-04-21 Paul Eggert <eggert@twinsun.com>
6582
6583 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
6584 to gnulib.
6585
6586 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
6587
6588 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
6589 Fix obvious typo that results in uncompilable GLR parsers
6590 when both %pure-parser and %locations are used. (trivial change)
6591
6592 2003-04-17 Paul Eggert <eggert@twinsun.com>
6593
6594 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
6595 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
6596 Do not insert the expected token via unput, as this runs afoul
6597 of a POSIX-compatibility bug in flex 2.5.31.
6598 All uses changed to BEGIN the parent state,
6599 since we no longer insert the expected token via unput.
6600 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
6601 that is no longer emitted after the above change.
6602
6603 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
6604 the first one. This change is from Paul Hilfinger, and it fixes
6605 regression reported by Werner Lemberg in
6606 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
6607
6608 (resolve_sr_conflict): Don't invoke state_errs_set
6609 unless one or more tokens have been explicitly made errors.
6610 Otherwise, the above change causes Bison to abort.
6611
6612 * tests/existing.at (GNU pic Grammar): New test case, taken from
6613 Lemberg's email.
6614
6615 2003-03-31 Akim Demaille <akim@epita.fr>
6616
6617 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
6618
6619 2003-03-31 Akim Demaille <akim@epita.fr>
6620
6621 * src/output.c (prepare_symbols): Avoid trailing spaces in the
6622 output.
6623
6624 2003-03-31 Akim Demaille <akim@epita.fr>
6625
6626 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
6627 From Paul Hilfinger.
6628
6629 2003-03-29 Akim Demaille <akim@epita.fr>
6630
6631 * m4/error.m4: Do not put under dynamic conditions some code which
6632 expansion is under static control.
6633
6634 2003-03-29 Akim Demaille <akim@epita.fr>
6635
6636 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
6637
6638 2003-03-29 Akim Demaille <akim@epita.fr>
6639
6640 * doc/bison.texinfo (Strings are Destroyed): New.
6641
6642 2003-03-13 Paul Eggert <eggert@twinsun.com>
6643
6644 * .cvsignore: Add configure.lineno.
6645 * src/.cvsignore: Add yacc.
6646 * tests/.cvsignore: Add testsuite.log.
6647 * doc/fdl.texi: Sync with latest FSF version.
6648
6649 2003-03-12 Paul Eggert <eggert@twinsun.com>
6650
6651 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
6652 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
6653 cursor, instead of leaving it undefined. This fixes a bug
6654 reported by Tim Van Holder in
6655 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
6656 * tests/input.at (Torturing the Scanner): Test the scanner on
6657 an empty input file, which was Tim Van Holder's test case.
6658
6659 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
6660 <sys/resource.h> can be included, include sys/time.h and
6661 sys/times.h first, if available. This works around the SunOS
6662 4.1.4 porting bug reported by Bruce Becker in
6663 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
6664
6665 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
6666 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
6667 AC_HEADER_SYS_WAIT.
6668
6669 Merge changes from gnulib. This was prompted because the CVS
6670 snapshot didn't build on Solaris 7 due to strnlen problems.
6671
6672 These changes need to be merged back into gnulib:
6673 * lib/hash.c: Include <stdbool.h> unconditionally.
6674 * m4/onceonly.m4 (m4_quote): New macro.
6675 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
6676 Quote AC_FOREACH variable-expansions properly.
6677 The 2003-01-03 obstack.h change also needs merging.
6678 {end of changes requiring merging}
6679
6680 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6681 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
6682 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
6683 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
6684 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
6685 New files, imported from gnulib.
6686 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
6687 above.
6688
6689 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
6690 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
6691 gnulib sources.
6692
6693 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
6694 Add.
6695 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
6696 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
6697 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
6698 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
6699 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
6700 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
6701 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
6702 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
6703 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
6704 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
6705 (jm_PREREQ_ARGMATCH): Remove.
6706 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
6707 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
6708
6709 * src/system.h: Include <stdbool.h> unconditionally.
6710
6711 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
6712 assuming at least C89 in the bitset code for some time now.
6713
6714 2003-03-03 Akim Demaille <akim@epita.fr>
6715
6716 * ro.po: New.
6717
6718 2003-03-02 Akim Demaille <akim@epita.fr>
6719
6720 * doc/bison.texinfo (Table of Symbols): Reactivate the
6721 documentation for %lex-param, and %parse-param.
6722
6723 2003-03-02 Akim Demaille <akim@epita.fr>
6724
6725 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
6726 generate verbose error messages.
6727 Use the number of tokens as an upper bound in yytname, as it
6728 cannot be a non terminal.
6729
6730 2003-03-02 Akim Demaille <akim@epita.fr>
6731
6732 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
6733 message.
6734
6735 2003-03-02 Akim Demaille <akim@epita.fr>
6736
6737 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
6738 Use them to exercise yycheck overrun.
6739 Based on Andrew Suffield's grammar.
6740
6741 2003-03-02 Akim Demaille <akim@epita.fr>
6742
6743 Create tests/local.at for Bison generic testing macros.
6744
6745 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
6746 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
6747 This new file.
6748 * tests/calc.at (AT_CHECK_CALC): Adjust.
6749 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
6750 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
6751 * tests/local.at: here.
6752 (AT_COMPILE_CXX): Tags the tests using it as c++.
6753 Ignore the test if CXX is not functional.
6754
6755 2003-03-01 Paul Eggert <eggert@twinsun.com>
6756
6757 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
6758 not loc->end, since loc->end might contain garbage and this leads
6759 to undefined behavior on some platforms.
6760 (id_loc, token_start): Use (IF_LINTed) initial values that do not
6761 depend on *loc, so that the reader doesn't give the the false
6762 impression that *loc is initialized.
6763 (<INITIAL>"%%"): Do not bother setting code_start, since its value
6764 does not survive the return.
6765
6766 2003-03-01 Akim Demaille <akim@epita.fr>
6767
6768 * src/scan-gram.l (code_start): Always initialize it when entering
6769 into yylex, as SC_EPILOGUE is activated *before* the corresponding
6770 yylex invocation. An alternative would be making it static, but
6771 then it starts with the second %%'s beginning, instead of its end.
6772
6773 2003-02-28 Paul Eggert <eggert@twinsun.com>
6774
6775 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
6776 around a UnixWare 7.1.1 porting bug reported by John Hughes in
6777 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
6778
6779 2003-02-26 Paul Eggert <eggert@twinsun.com>
6780
6781 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
6782 Remove Sequent/Pyramid discussion (nobody uses them any more).
6783 Merge VMS and MS-DOS discussion; these ports may well be dead
6784 but let's keep mentioning them for now. Put <> around email
6785 addresses. Add copyright notice.
6786
6787 2003-02-24 Paul Eggert <eggert@twinsun.com>
6788
6789 * data/glr.c (yy_reduce_print): yylineno -> yylno,
6790 to avoid collision with flex use of yylineno.
6791 Problem reported by Bruce Lilly in
6792 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
6793 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6794 * data/yacc.c (yy_reduce_print): Likewise.
6795
6796 * config/depcomp: Sync with Automake 1.7.3.
6797
6798 2003-02-21 Akim Demaille <akim@epita.fr>
6799
6800 * data/lalr1.cc: Use temporary variables instead of casts to
6801 change integer types.
6802 Suggested by Paul Eggert.
6803
6804 2003-02-21 Akim Demaille <akim@epita.fr>
6805
6806 * doc/bison.texinfo: Use "location" consistently to refer to @n,
6807 to avoid confusions with lalr1.cc's notion of Position.
6808 Suggested by Paul Eggert.
6809
6810 2003-02-20 Akim Demaille <akim@epita.fr>
6811
6812 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
6813 before initial_columns.
6814 (location.hh): Use consistent variable names when defining the
6815 operator<<.
6816 Use "last" so that we subtract from Positions, not from unsigned.
6817
6818 2003-02-20 Akim Demaille <akim@epita.fr>
6819
6820 * data/lalr1.cc (position.hh): New subfile, including the extended
6821 and Doxygen'ed documentation of class Position.
6822 (location.hh): Use it.
6823 Document a` la Doxygen.
6824 With the help of Benoit Perrot.
6825
6826 2003-02-20 Akim Demaille <akim@epita.fr>
6827
6828 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
6829 AT_YACC_IF.
6830 Redefine AT_YYERROR_SEES_LOC_IF using it.
6831 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
6832 not defined.
6833 Don't use the location in yy::Parser::error_ and
6834 yy::Parser::print_ when not %locations.
6835 Activate more lalr1.cc tests.
6836
6837 2003-02-19 Akim Demaille <akim@epita.fr>
6838
6839 * data/lalr1.cc: When displaying a line number, be sure to make it
6840 an int.
6841
6842 2003-02-19 Akim Demaille <akim@epita.fr>
6843
6844 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
6845 Remove, useless.
6846 (YYABORT, YYACCEPT, YYERROR): New.
6847 * tests/calc.at: Renable the lalr1.cc test.
6848
6849 2003-02-19 Akim Demaille <akim@epita.fr>
6850
6851 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
6852 error recovery, mixing with/without pops and discarding of the
6853 lookahead.
6854 Exercise YYERROR.
6855 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
6856
6857 2003-02-17 Paul Eggert <eggert@twinsun.com>
6858
6859 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
6860 * tests/testsuite.at (AT_COMPILE): Use them.
6861 This fixes the testsuite problem reported by Robert Lentz in
6862 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
6863
6864 2003-02-12 Paul Eggert <eggert@twinsun.com>
6865
6866 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
6867 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
6868 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
6869 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
6870 Check for malloc failure, for consistency with yacc.c.
6871 (yytname_size): Remove, for consistency with yacc.c.
6872
6873 The bug still remains in data/lalr1.cc, as I didn't have time
6874 to fix it there.
6875
6876 2003-02-06 Akim Demaille <akim@epita.fr>
6877
6878 * configure.ac (GXX): Rename as...
6879 (CXX): this, to keep the original Autoconf semantics.
6880 Require 2.57.
6881 * data/lalr1.cc: Fix b4_copyright invocations.
6882 If YYDEBUG is not defined, don't depend upon name_ being defined.
6883 (location.hh): Include string and iostream.
6884 (Position::filename): New member.
6885 (Position::Position ()): New.
6886 (operator<< (Position)): New.
6887 (operator- (Position, int)): New.
6888 (Location::first, Location::last): Rename as...
6889 (Location::begin, Location::end): these, to mock the conventional
6890 iterator names.
6891 (operator<< (Location)): New.
6892 * tests/atlocal.in (CXX): New.
6893 * tests/testsuite.at (AT_COMPILE_CXX): New.
6894 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
6895 locations in a more synthetic way.
6896 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
6897 lalr1.cc is used.
6898 Adjust the C locations to match those from Emacs: first column is
6899 column 0.
6900 Change all the expected results.
6901 Conform to the GCS: simplify the locations when applicable.
6902 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
6903 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
6904 these CPP macros with the m4 macros new defined by...
6905 (AT_CHECK_PUSHDEFS): this, i.e.:
6906 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
6907 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
6908 New macros.
6909 (AT_CHECK_POPDEFS): Undefine them.
6910 (AT_CHECK_CALC_LALR1_CC): New.
6911 Use it for the first lalr1.cc test.
6912
6913 2003-02-04 Akim Demaille <akim@epita.fr>
6914
6915 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
6916 Location as is defined.
6917
6918 2003-02-04 Akim Demaille <akim@epita.fr>
6919
6920 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
6921 name_ being defined.
6922
6923 2003-02-03 Paul Eggert <eggert@twinsun.com>
6924
6925 * src/gram.h (start_symbol): Remove unused decl.
6926
6927 Use more-consistent naming conventions for local vars.
6928
6929 * src/derives.c (derives_compute): Change type of local var from
6930 int to rule_number.
6931 * src/gram.c (grammar_rules_partial_print): Likewise.
6932 * src/print.c (print_core): Likewise.
6933 * src/reduce.c (reduce_grammar_tables): Likewise.
6934
6935 * src/gram.c (grammar_dump): Change name of item_number *
6936 local var from r to rp.
6937 * src/nullable.c (nullable_compute): Likewise.
6938
6939 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
6940
6941 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
6942 for symbol or symbol_number var.
6943 * src/reader.c (grammar_start_symbol_set): Likewise.
6944 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
6945 Likewise.
6946 * src/state.c (transitions_to): Likewise.
6947 * src/state.h: Likewise.
6948 * src/tables.c (symbol_number_to_vector_number): Likewise.
6949
6950 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
6951 char * var.
6952
6953 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
6954 var.
6955
6956 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
6957 var.
6958
6959 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
6960 Use str, not s, for char * var. Use ch, not c, for character var.
6961 Use size for size var.
6962
6963 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
6964 char * var.
6965 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
6966 uniqstr var.
6967 * src/uniqstr.h: Likewise.
6968
6969 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6970 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6971 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
6972 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
6973 param to have same name as that of enum, so that we don't use
6974 "s" to stand for a non-state.
6975
6976 2003-02-02 Akim Demaille <akim@epita.fr>
6977
6978 * src/scan-skel.l: Scan more than one inert character per yylex
6979 invocation.
6980
6981 2003-02-01 Paul Eggert <eggert@twinsun.com>
6982
6983 Version 1.875a.
6984
6985 * po/LINGUAS: Add ms.
6986
6987 2003-01-30 Akim Demaille <akim@epita.fr>
6988
6989 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
6990
6991 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6992
6993 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
6994 of $1.
6995
6996 Changes in response to error report by S. Eken: GLR mode does not
6997 handle negative $ indices or $ indices in embedded rules correctly.
6998 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
6999
7000 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
7001 (b4_rhs_location): Ditto.
7002 (yyfill): New function to copy from stack tree into array
7003 incrementally.
7004 (yyuserAction): Modify to allow incremental move of semantic values
7005 to rhs array when in GLR mode.
7006 Define YYFILL to use in user-defined actions to fill semantic array
7007 as needed.
7008 Remove dummy use of yystack, as there is now a guaranteed use.
7009 (yydoAction): Modify to allow incremental move of semantic values
7010 to rhs array when in GLR mode.
7011 (yyresolveAction): Ditto.
7012 (yyglrShiftDefer): Update comment.
7013 (yyresolveStates): Use X == NULL for pointers, not !X.
7014 (yyglrReduce): Ditto.
7015 (yydoAction): Ditto
7016
7017 * tests/glr-regr1.at: Rename to ...
7018 * tests/glr-regression.at: Add new regression test for the problems
7019 described above (adapted from S. Eken).
7020 Update copyright notice.
7021 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
7022 * tests/Makefile.am: Ditto.
7023
7024 2003-01-28 Paul Eggert <eggert@twinsun.com>
7025
7026 * data/lalr1.cc: Do not use @output_header_name@ unless
7027 b4_defines_flag is set. This fixes two bugs reported by
7028 Tim Van Holder in
7029 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
7030 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
7031
7032 2003-01-21 Paul Eggert <eggert@twinsun.com>
7033
7034 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
7035 we don't need to worry about yyerrlab1 being reported as an
7036 "unused label" by non-GCC C compilers. The downside is that if
7037 locations are used then a couple of statements are duplicated each
7038 time YYERROR is invoked, but the upside is that the warnings
7039 should vanish.
7040 (yyerrlab1): Move code to YERROR.
7041 (yyerrlab2): Remove. Change uses back to yyerrlab1.
7042 This reverts some of the 2002-12-27 change.
7043
7044 2003-01-17 Paul Eggert <eggert@twinsun.com>
7045
7046 * src/output.c (symbol_printers_output): Fix typo that led
7047 to core dump. Problem reported by Antonio Rus in
7048 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
7049
7050 2003-01-13 Akim Demaille <akim@epita.fr>,
7051 Quoc Peyrot <chojin@lrde.epita.fr>,
7052 Robert Anisko <anisko_r@lrde.epita.fr>
7053
7054 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
7055 when the stacks contain one element, as the loop would otherwise
7056 free the last state, and then use the top state (the one we just
7057 popped). This means that the initial elements will not be freed
7058 explicitly, as is the case in yacc.c; it is not a problem, as
7059 these elements have fake values.
7060
7061 2003-01-11 Paul Eggert <eggert@twinsun.com>
7062
7063 * NEWS: %expect-violations are now just warnings, reverting
7064 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
7065 bootstrapping problem reported by Matthias Klose; see
7066 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
7067 * src/conflicts.c (conflicts_print): Likewise.
7068 * tests/conflicts.at (%expect not enough, %expect too much,
7069 %expect with reduce conflicts): Likewise.
7070 * doc/bison.texinfo (Expect Decl): Document this. Also mention
7071 that the warning is enabled if the number of conflicts changes
7072 (not necessarily increases).
7073
7074 * src/getargs.c (version): Update copyright year.
7075
7076 2003-01-09 Akim Demaille <akim@epita.fr>
7077
7078 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
7079
7080 2003-01-08 Paul Eggert <eggert@twinsun.com>
7081
7082 * Makefile.maint (WGETFLAGS):
7083 New macro, containing "-C off" to disable proxy caches.
7084 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
7085 (rel-check): Use $(WGET) instead of wget.
7086
7087 2003-01-06 Paul Eggert <eggert@twinsun.com>
7088
7089 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
7090 the GLR paper of Scott, Johnstone and Hussain.
7091
7092 2003-01-04 Paul Eggert <eggert@twinsun.com>
7093
7094 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
7095 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
7096 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
7097 (EXTRA_LIBRARIES): New var, for liby.a.
7098 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
7099 (EXTRA_SCRIPTS): New var, for yacc.
7100
7101 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
7102 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
7103 Problem reported by Nelson H. F. Beebe.
7104
7105 2003-01-03 Paul Eggert <eggert@twinsun.com>
7106
7107 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
7108 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
7109 when compiling Bison 1.875's `bitset bset = obstack_alloc
7110 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
7111
7112 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
7113 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
7114 grow to a huge size with typical invocation.
7115
7116 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
7117 Use the pattern recommended by Autoconf 2.57, except also protect
7118 against double-definition.
7119 * src/system.h: Likewise.
7120 Portability issues reported by Nelson H. F. Beebe.
7121
7122 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
7123 All uses changed. Provide a definition in both C and C++.
7124 (yytrue, yyfalse): Define even if defined (__cplusplus).
7125
7126 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
7127 Reported by Nelson H. F. Beebe.
7128
7129 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
7130
7131 2003-01-02 Paul Eggert <eggert@twinsun.com>
7132
7133 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
7134 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
7135 Bug reported by Nelson H. F. Beebe.
7136
7137 2003-01-01 Paul Eggert <eggert@twinsun.com>
7138
7139 * Version 1.875.
7140
7141 2002-12-30 Paul Eggert <eggert@twinsun.com>
7142
7143 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
7144 Moved here from...
7145 (<INITIAL>","): Here. This causes stray "," to be treated
7146 more uniformly.
7147
7148 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
7149 last brace in braced code when not in Yacc mode, for compatibility
7150 with Bison 1.35. This resurrects the 2001-12-15 patch to
7151 src/reader.c.
7152
7153 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
7154 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
7155
7156 2002-12-28 Paul Eggert <eggert@twinsun.com>
7157
7158 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
7159 that of SYM's type. This fixes Debian bug 168069, reported by
7160 Thomas Olsson.
7161
7162 2002-12-28 Paul Eggert <eggert@twinsun.com>
7163
7164 Version 1.75f.
7165
7166 Switch back to the Yacc style of conflict reports, undoing some
7167 of the 2002-07-30 change.
7168 * doc/bison.texinfo (Understanding): Use Yacc style for
7169 conflict reports. Also, use new way of locating rules.
7170 * src/conflicts.c (conflict_report):
7171 Renamed from conflict_report_yacc, removing the old
7172 'conflict_report'. Translate the entire conflict report at once,
7173 so that we don't assume that "," has the same interpretation in
7174 all languages.
7175 (conflicts_output): Use Yacc-style conflict report for each state,
7176 instead of our more-complicated style.
7177 (conflicts_print): Use Yacc-style conflict report, except print
7178 the input file name when not emulating Yacc.
7179 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
7180 Conflicted Reduction, %expect not enough, %expect too much,
7181 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
7182 * tests/existing.at (GNU Cim Grammar): Likewise.
7183 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
7184
7185 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
7186 fatal): Don't invoke fflush; it's not needed and it might even be
7187 harmful for stdout, as stdout might not be open.
7188 * src/reduce.c (reduce_print): Likewise.
7189
7190 2002-12-27 Paul Eggert <eggert@twinsun.com>
7191
7192 Fix a bug where error locations were not being recorded correctly.
7193 This problem was originally reported by Paul Hilfinger in
7194 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
7195
7196 * data/yacc.c (yyparse): New local var yylerrsp, to record the
7197 top of the location stack's error locations.
7198 (yyerrlab): Set it. When discarding a token, push its location
7199 onto yylerrsp so that we don't lose track of the error's end.
7200 (yyerrlab1): Now is only the target of YYERROR, so that we can
7201 properly record the location of the action that failed. For GCC
7202 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
7203 GCC warning about yyerrlab1 being unused if YYERROR is unused.
7204 (yyerrlab2): New label, which yyerrlab now falls through to.
7205 Compute the error's location by applying YYLLOC_DEFAULT to
7206 the locations of all the symbols that went into the error.
7207 * doc/bison.texinfo (Location Default Action): Mention that
7208 YYLLOC_DEFAULT is also invoked for syntax errors.
7209 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7210 Error locations include the locations of all the tokens that were
7211 discarded, not just the last token.
7212
7213 2002-12-26 Paul Eggert <eggert@twinsun.com>
7214
7215 * src/files.c: Include quote.h.
7216 (compute_output_file_names): Warn if we detect conflicting
7217 outputs to the same file. This should catch the misunderstanding
7218 exemplified by Debian Bug 165349, reported by Bruce Stephens..
7219
7220 * src/conflicts.c (conflicts_print): If the user specifies
7221 "%expect N", report an error if there are any reduce/reduce
7222 conflicts. This is what the manual says should happen.
7223 This fixes Debian bug 130890, reported by Anthony DeRobertis.
7224 * tests/conflicts.at (%expect with reduce conflicts): New test.
7225
7226 Don't use m4_include on relative file names, as it doesn't work as
7227 desired if there happens to be a file with that name under ".".
7228
7229 * m4sugar/version.m4: Remove; it was included but it wasn't used.
7230 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
7231 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
7232 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
7233 * src/output.c (output_skeleton): Use full path names when
7234 specifying a file to include; don't rely on include path, as
7235 it's unreliable when the working file contains a file with
7236 that name.
7237
7238 2002-12-25 Paul Eggert <eggert@twinsun.com>
7239
7240 Remove obsolete references to bison.simple and bison.hairy.
7241 Problem mentioned by Aubin Mahe in
7242 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
7243 * data/glr.c: Comment fix.
7244 * doc/bison.1: Remove references. Also, mention "yacc".
7245
7246 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
7247 with -g option.
7248
7249 * src/parse-gram.y (declaration): Use enum "report_states" rather
7250 than its numeric value 1.
7251
7252 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
7253 opening a new one. This fixes Debian bug 165349, reported by
7254 Bruce Stephens.
7255
7256 2002-12-24 Paul Eggert <eggert@twinsun.com>
7257
7258 Version 1.75e.
7259
7260 * Makefile.maint (cvs-update): Don't assume that the shell
7261 supports $(...), as Solaris sh doesn't.
7262
7263 * src/parse-gram.y (lloc_default): Remove test for empty
7264 nonterminals at the end, since it didn't change the result.
7265
7266 2002-12-24 Paul Eggert <eggert@twinsun.com>
7267
7268 If the user does not define YYSTYPE as a macro, Bison now declares it
7269 using typedef instead of defining it as a macro. POSIX requires this.
7270 For consistency, YYLTYPE is also declared instead of defined.
7271
7272 %union directives can now have a tag before the `{', e.g., the
7273 directive `%union foo {...}' now generates the C code
7274 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
7275 The default union tag is `YYSTYPE', for compatibility with Solaris 9
7276 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
7277 instead of `yyltype'.
7278
7279 `yystype' and `yyltype' are now obsolescent macros instead of being
7280 typedefs or tags; they are no longer documented and will be
7281 withdrawn in a future release.
7282
7283 * data/glr.c (b4_location_type): Remove.
7284 (YYSTYPE): Renamed from yystype.
7285 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
7286 (struct YYLTYPE): Renamed from struct yyltype.
7287 (YYLTYPE): Renamed from yyltype.
7288 (yyltype, yystype): New (and obsolescent) macros,
7289 for backward compatibility.
7290 * data/yacc.c: Likewise.
7291
7292 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
7293 does not specify a union tag. This is for compatibility with
7294 Solaris 9 yacc.
7295
7296 * src/parse-gram.y (add_param): 2nd arg is now char * not char
7297 const *, since it is now modified by stripping surrounding { }.
7298 (current_braced_code): Remove.
7299 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
7300 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
7301 trailing " {...}". Now of type <chars>.
7302 (grammar_declaration): Adjust to bundled tokens.
7303 (code_content): Remove; stripping is now done by add_param.
7304 (print_token_value): Print contents of bundled tokens.
7305 (token_name): New function.
7306
7307 * src/reader.h (braced_code, current_braced_code): Remove.
7308 (token_name): New decl.
7309
7310 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
7311 token_type, not braced_code code_kind. All uses changed.
7312 (SC_PRE_CODE): New state, for scanning after a keyword that
7313 has (or usually has) an immediately-following braced code.
7314 (token_type): New local var, to keep track of which token type
7315 to return when scanning braced code.
7316 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
7317 <INITIAL>"%parse-param", <INITIAL>"%printer",
7318 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
7319 instead of returning a token type immediately.
7320 (<INITIAL>"{"): Set token type.
7321 (<SC_BRACED_CODE>"}"): Use it.
7322 (handle_action_dollar, handle_action_at): Now returns bool
7323 indicating success. Fail if ! current_rule; this prevents a core dump.
7324 (handle_symbol_code_dollar, handle_symbol_code_at):
7325 Remove; merge body into caller.
7326 (handle_dollar, handle_at): Complain in invalid contexts.
7327
7328 * NEWS, doc/bison.texinfo: Document the above.
7329 * NEWS: Fix years and program names in copyright notice.
7330
7331 2002-12-17 Paul Eggert <eggert@twinsun.com>
7332
7333 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
7334 Reporting, Table of Symbols): Omit mentions of %lex-param and
7335 %parse-param from the documentation for now.
7336
7337 2002-12-15 Paul Eggert <eggert@twinsun.com>
7338
7339 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
7340 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
7341 lookahead symbol, and which sets yychar in parser actions) and it
7342 disagreed with the Bison documentation. Bug
7343 reported by Andrew Walrond.
7344
7345 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
7346 as the caller now does that.
7347 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
7348 (YYEMPTY): Parenthesize right hand side, since others use it.
7349 (yyparse): Don't assume that our generated code is the only code
7350 that sets yychar.
7351
7352 2002-12-13 Paul Eggert <eggert@twinsun.com>
7353
7354 Version 1.75d.
7355
7356 POSIX requires a "yacc" command.
7357 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
7358 (MOSTLYCLEANFILES): Add yacc.
7359 (yacc): New rule.
7360 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
7361 as an alias for bison y.
7362
7363 * po/LINGUAS: Add da.
7364
7365 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
7366 problem with latest <getopt.h>.
7367 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
7368
7369 * doc/fdl.texi: Upgrade to 1.2.
7370 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
7371 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
7372 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
7373 gnulib.
7374 * config/install-sh: Sync with autotools.
7375
7376 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
7377 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
7378 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
7379 locations are requested.
7380 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
7381 locations are requested.
7382
7383 2002-12-12 Paul Eggert <eggert@twinsun.com>
7384
7385 Remove unportable casts and storage allocation tricks.
7386 While we're at it, remove almost all casts, since they
7387 usually aren't needed and are a sign of trouble.
7388
7389 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
7390
7391 * src/derives.c (derives_compute): Do not subtract NTOKENS from
7392 the pointer DSET returned by malloc; this isn't portable.
7393 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
7394 Similarly for DERIVES.
7395 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
7396 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
7397 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
7398
7399 * src/derives.c (derives_compute): Do not bother invoking
7400 int_of_rule_number, since rule numbers are integers.
7401
7402 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
7403 rather than XMALLOC (char, N).
7404
7405 * src/files.c (filename_split): Rewrite to avoid cast.
7406
7407 * src/gram.h (symbol_number_as_item_number,
7408 item_number_as_symbol_number, rule_number_as_item_number,
7409 item_number_as_rule_number):
7410 Now inline functions rather than macros, to avoid casts.
7411 * src/state.h (state_number_as_int): Likewise.
7412 * src/tables.c (state_number_to_vector_number,
7413 symbol_number_to_vector_number): Likewise.
7414
7415 * src/gram.h (int_of_rule_number): Remove; no longer used.
7416
7417 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
7418 since the resulting storage is always stored into.
7419
7420 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
7421 where it's needed.
7422
7423 * src/muscle_tab.c (muscle_m4_output):
7424 Now inline. Return bool, not int.
7425 * src/state.c (state_compare): Likewise.
7426 * src/symtab.c (symbol_check_defined,
7427 symbol_check_alias_consistency, symbol_pack, symbol_translation,
7428 hash_compare_symbol, hash_symbol):
7429 Likewise.
7430 * src/uniqstr.c (uniqstr_print): Likewise.
7431 * src/muscle_tab.c (muscle_m4_output_processor):
7432 New function, to avoid casts.
7433 * src/state.c (state_comparator, stage_hasher): Likewise.
7434 * src/symtab.c (symbol_check_defined_processor,
7435 symbol_check_alias_consistency_processor, symbol_pack_processor,
7436 symbol_translation_processor, hash_symbol_comparator,
7437 hash_symbol_hasher): Likewise.
7438 * src/uniqstr.c (uniqstr_print_processor): Likewise.
7439 * src/muscle_tab.c (muscles_m4_output):
7440 Use new functions instead of casting old functions unportably.
7441 * src/state.c (state_hash_new): Likewise.
7442 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
7443 symbols_token_translations_init):
7444 Likewise.
7445 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
7446
7447 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
7448 var instead of casting to long, to avoid casts.
7449 (prepare_states): Use MALLOC rather than alloca, so that we don't
7450 have to worry about alloca.
7451 * src/state.c (state_hash_lookup): Likewise.
7452
7453 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
7454 local var instead of casting to unsigned char, to avoid casts.
7455
7456 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
7457 STATE_ALLOC): Remove.
7458 (transitions_new, errs_new, reductions_new, state_new): Use malloc
7459 rather than calloc, and use offsetof to avoid allocating slightly
7460 too much storage.
7461 (state_new): Initialize all members.
7462
7463 * src/state.c (state_hash): Use unsigned accumulator, not signed.
7464
7465 * src/symtab.c (symbol_free): Remove; unused.
7466 (symbol_get): Remove cast in lhs of assignment.
7467 (symbols_do): Now static. Accept generic arguments, not
7468 hashing-related ones.
7469
7470 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
7471 (symbol_processor): Remove.
7472 (symbols_do): Remove decl; now static.
7473
7474 * src/system.h (alloca): Remove; decl no longer needed.
7475 (<stddef.h>): Include, for offsetof.
7476 (<inttypes.>, <stdint.h>): Include if available.
7477 (uintptr_t): New type, if system lacks it.
7478 (CALLOC, MALLOC, REALLOC): New macros.
7479 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
7480 new macros.
7481
7482 * src/tables.c (table_size): Now int, to pacify GCC.
7483 (table_grow, table_ninf_remap): Use signed table size.
7484 (save_row): Don't bother initializing locals when not needed.
7485 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
7486 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
7487
7488 * src/vcg.h: Correct misspellings.
7489
7490 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
7491
7492
7493 * src/getargs.c (getargs): Don't assume EOF == -1.
7494
7495 2002-12-09 Paul Eggert <eggert@twinsun.com>
7496
7497 Change identifier spellings to avoid collisions with names
7498 that are reserved by POSIX.
7499
7500 Don't use names ending in _t, since POSIX reserves them.
7501 For consistency, remove _e and _s endings -- they're weren't
7502 needed to remove ambiguity. All uses changed.
7503 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
7504 turn was just renamed from struniq_t.
7505 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
7506 which in turn was just renamed from struniq_processor_t.
7507 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
7508 in turn was renamed from hash_compare_struniq_t.
7509 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
7510 (state_list): Renamed from state_list_t.
7511 * src/assoc.h (assoc): Renamed from assoc_t.
7512 * src/conflicts.c (enum conflict_resolution): Renamed from
7513 enum conflict_resolution_e.
7514 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
7515 (rule_list): Renamed from rule_list_t.
7516 * src/getargs.h (enum trace): Renamed from enum trace_e.
7517 (enum report): Renamed from enum report_e.
7518 * src/gram.h (item_number): Renamed from item_number_t.
7519 (rule_number): Renamed from rule_number_t.
7520 (struct rule_s): Remove the "rule_s" part; not used.
7521 (rule): Renamed from rule_t.
7522 (rule_filter): Renamed from rule_filter_t.
7523 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
7524 (goto_list): Renamed from goto_list_t.
7525 * src/lalr.h (goto_number): Renamed from goto_number_t.
7526 * src/location.h (location): Renamed from location_t.
7527 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
7528 and moved here from:
7529 * src/muscle_tab.h (muscle_entry_t): here.
7530 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
7531 (rule_list): Renamed from rule_list_t.
7532 * src/print_graph.c (static_graph): Renamed from graph.
7533 * src/reader.h (braced_code): Renamed from braced_code_t.
7534 Remove brace_code_e tag.
7535 * src/relation.h (relation_node): Renamed from relation_node_t.
7536 (relation_nodes): Renamed from relation_nodes_t.
7537 (relation): Renamed from relation_t.
7538 * src/state.h (state_number): Renamed from state_number_t.
7539 (struct state): Renamed from struct state_s.
7540 (state): Renamed from state_t.
7541 (transitions): Renamed from transitions_t. Unused (and
7542 misspelled) transtion_s tag removed.
7543 (errs): Renamed from errs_t. Unused errs_s tag removed.
7544 (reductions): Renamed from reductions_t. Unused tag
7545 reductions_s removed.
7546 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
7547 (struct symbol_list): Renamed from struct symbol_list_s.
7548 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
7549 (struct symbol): Renamed from struct symbol_s.
7550 (symbol): Renamed from symbol_t.
7551 * src/tables.c (vector_number): Renamed from vector_number_t.
7552 (action_number): Renamed from action_t.
7553 * src/tables.h (base_number): Renamed from base_t.
7554 * src/vcg.h (enum color): Renamed from enum color_e.
7555 (enum textmode): Renamed from enum textmode_e.
7556 (enum shape): Renamed from enum shape_e.
7557 (struct colorentry): Renamed from struct colorentry_s.
7558 (struct classname): Renamed from struct classname_s.
7559 (struct infoname): Renamed from struct infoname_s.
7560 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
7561 (enum decision): Renamed from enum decision_e.
7562 (enum orientation): Renamed from enum orientation_e.
7563 (enum alignment): Renamed from enum alignment_e.
7564 (enum arrow_mode): Renamed from enum arrow_mode_e.
7565 (enum crossing_type): Renamed from enum crossing_type_e.
7566 (enum view): Renamed from enum view_e.
7567 (struct node): Renamed from struct node_s.
7568 (node): Renamed from node_t.
7569 (enum linestyle): Renamed from enum linestyle_e.
7570 (enum arrowstyle): Renamed from enum arrowstyle_e.
7571 (struct edge): Renamed from struct edge.
7572 (edge): Renamed from edge_t.
7573 (struct graph): Renamed from struct graph_s.
7574 (graph): Renamed from graph_t.
7575 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
7576 Rename value_t -> value.
7577 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
7578 value_t_as_yystype -> value_as_yystype.
7579
7580 Don't include <errno.h> in the mainstream code, since it
7581 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
7582 * lib/get-errno.c, lib/get-errno.h: New files.
7583 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
7584 get-errno.c.
7585 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
7586 * src/output.c (output_skeleton): Likewise.
7587 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
7588 instead of errno.
7589 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
7590 Likewise.
7591 (handle_action_dollar, handle_action_at): Likewise.
7592 * src/system.h: Do not include <errno.h>.
7593 (TAB_EXT): Renamed from EXT_TAB.
7594 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
7595
7596 Avoid str[a-z]*, since <string.h> reserves that name space.
7597 Change all instances of "struniq" in names to "uniqstr", and
7598 likewise for "STRUNIQ" and "UNIQSTR".
7599 * src/uniqstr.c: Renamed from src/struniq.c.
7600 * src/uniqstr.h: Renamed from src/struniq.h.
7601 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
7602 * src/files.c (strsuffix): Remove; unused.
7603 (concat2): Renamed from stringappend. Now static.
7604 * src/files.h (strsuffix, stringappend): Remove; unused.
7605 * src/parse-gram.y (<chars>): Renamed from <string>.
7606 (<uniqstr>): Renamed from <struniq>.
7607 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
7608 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
7609 (struct graph_s.expand): Renamed from struct graph_s.stretch.
7610 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
7611 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
7612 (N_EXPAND): Renamed from N_STRETCH.
7613
7614 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
7615 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
7616 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
7617 Remove; unused.
7618 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
7619 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
7620 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
7621 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
7622 (BASE_MAXIMUM): Renamed from BASE_MAX.
7623 (BASE_MINIMUM): Renamed from BASE_MIN.
7624 (ACTION_MAX): Remove; unused.
7625 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
7626 Unnecessary casts removed from above defines.
7627
7628
7629 Fix misspelling in names.
7630 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
7631 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
7632 G_NODE_ALIGNEMENT.
7633
7634
7635 * lib/timevar.c (timevar_report): Renamed from time_report,
7636 for consistency with other names.
7637 * lib/timevar.h (timevar_report): New decl.
7638 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
7639
7640
7641 Sort include-file uses.
7642
7643 Reorder all include files under src to be in the order "system.h".
7644 then the ../lib include files in angle brackets (alphabetized),
7645 then the . include files in double-quotes (alphabetized). Fix
7646 dependency breakages encountered in this process, as follows:
7647 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
7648 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
7649 * src/state.h: Include "symtab.h".
7650
7651 2002-12-08 Paul Eggert <eggert@twinsun.com>
7652
7653 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
7654 since this causes problems when __file__ contains character
7655 sequences like "@" that are treated specially by src/scan-skel.l.
7656 Instead, just use the file's basename. This fixes the bug
7657 reported by Martin Mokrejs in
7658 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
7659
7660 2002-12-06 Paul Eggert <eggert@twinsun.com>
7661
7662 Add support for rules that do not have trailing semicolons, as
7663 POSIX requires. Improve the quality of locations in Bison
7664 diagnostics.
7665
7666 * src/location.c: Include <quotearg.h>.
7667 (empty_location): Now const.
7668 (location_print): New function. Follow the recommendation of the
7669 GNU Coding Standards for locations that span file boundaries.
7670 * src/location.h: Do not include <quotearg.h>; no longer needed.
7671 (boundary): New type.
7672 (location_t): Use it. This allows locations to span file boundaries.
7673 All member uses changed: file -> start.file or end.file (as needed),
7674 first_line -> start.line, first_column -> start.column,
7675 last_line -> end.line, last_column -> end.column.
7676 (equal_boundaries): New function.
7677 (LOCATION_RESET, LOCATION_STEP): Remove.
7678 (LOCATION_PRINT): Remove. All callers changed to use location_print.
7679 (empty_location): Now const.
7680 (location_print): New decl.
7681 * src/parse-gram.y (lloc_default): New function, which handles
7682 empty locations more accurately.
7683 (YYLLOC_DEFAULT): Use it.
7684 (%token COLON): Remove.
7685 (%token ID_COLON): New token.
7686 (rules): Use it.
7687 (declarations, rules): Remove trailing semicolon.
7688 (declaration, rules_or_grammar_declaration):
7689 Allow empty (";") declaration.
7690 (symbol_def): Remove empty actions; no longer needed.
7691 (rules_or_grammar_declaration): Remove trailing semicolon.
7692 (semi_colon.opt): Remove.
7693 * src/reader.h: Include location.h.
7694 (scanner_cursor): New decl.
7695 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
7696 rolling our own.
7697 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
7698 of *loc.
7699 (STEP): Remove. No longer needed, now that adjust_location does
7700 the work. All uses removed.
7701 (scanner_cursor): New var.
7702 (adjust_location): Renamed from extend_location. It now sets
7703 *loc and adjusts the scanner cursor. All uses changed.
7704 Don't bother testing for CR.
7705 (handle_syncline): Remove location arg; now updates scanner cursor.
7706 All callers changed.
7707 (unexpected_end_of_file): Now accepts start boundary of token or
7708 comment, not location. All callers changed. Update scanner cursor,
7709 not the location.
7710 (SC_AFTER_IDENTIFIER): New state.
7711 (context_state): Renamed from c_context. All uses changed.
7712 (id_loc, code_start, token_start): New local vars.
7713 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
7714 processing of Yacc white space and equivalents here.
7715 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
7716 instead of returning ID immediately, since we need to search for
7717 a subsequent colon.
7718 (<INITIAL>"'", "\""): Save token_start.
7719 (<INITIAL>"%{", "{", "%%"): Save code_start.
7720 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
7721 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
7722 BEGIN context_state at end, not INITIAL.
7723 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
7724 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
7725 Return correct token start.
7726 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
7727 the start of a character, string or multiline comment is found.
7728 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
7729 Reduction): Adjust reported locations to match the more-precise
7730 results now expected.
7731 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
7732 * tests/reduce.at (Useless Rules, Reduced Automaton,
7733 Underivable Rules): Likewise.
7734 * tests/regression.at (Invalid inputs): No longer `expecting ";"
7735 or "|"' now that so many other tokens are allowed by the new grammar.
7736
7737 * src/complain.h (current_file): Remove duplicate decl;
7738 current_file is now owned by files.h.
7739 * src/complain.c, src/scan-gram.l: Include files.h.
7740
7741 2002-12-06 Paul Eggert <eggert@twinsun.com>
7742
7743 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
7744 promotes to int; it might be unsigned int.
7745 * data/yacc.c (yy_reduce_print): Likewise.
7746
7747 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
7748 be #defined in the prologue, not in the Bison declarations.
7749 This fixes Debian Bug 102878, reported by Shaul Karl.
7750
7751 2002-12-02 Paul Eggert <eggert@twinsun.com>
7752
7753 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
7754 * lib/strtoul.c: New file, from gnulib.
7755 This fixes a porting bug reported by Peter Klein in
7756 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
7757
7758 2002-11-30 Paul Eggert <eggert@twinsun.com>
7759
7760 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
7761 and put only a forward declaration in the prologue. This is for
7762 consistency with the other scanner helper functions.
7763
7764 Type clashes now generate warnings, not errors, since it
7765 appears that POSIX may allow some grammars with type clashes.
7766 * src/reader.c (grammar_current_rule_check): Warn about
7767 type clashes instead of complaining.
7768 * tests/input.at (Type Clashes): Expect warnings, not complaints.
7769
7770 Add Yacc library, since POSIX requires it.
7771 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
7772 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
7773 * lib/main.c, lib/yyerror.c: New files.
7774
7775 gram_error can be static; it need not be extern.
7776 * src/reader.h (gram_error): Remove decl.
7777 * src/parse-gram.y (gram_error): Now static. Add static decl.
7778 (print_token_value): Omit parameter names from forward decl,
7779 for consistency.
7780
7781 2002-11-29 Paul Eggert <eggert@twinsun.com>
7782
7783 * doc/bison.texinfo: Emphasize that yylex and yyerror must
7784 be declared before being used. E.g., one should typically
7785 declare them in the prologue. Use GNU coding style in examples.
7786 Put "const" consistently after the type it modifies. Mention
7787 that C99 supports "inline". Mention that yyerror traditionally
7788 returns "int".
7789
7790 %parse-param and %lex-param now take just one argument, the
7791 declaration; the argument name is deduced from the declaration.
7792
7793 * doc/bison.texinfo (Parser Function, Pure Calling, Error
7794 Reporting, Table of Symbols): Document this.
7795 * src/parse-gram.y (add_param): New function.
7796 (COMMA): Remove.
7797 (declaration): Implement new rule for %parse-param and %lex-param.
7798 * src/scan-gram.l: "," now elicits a warning, rather than being
7799 a token; this is more compatible with byacc.
7800 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
7801
7802 2002-11-27 Paul Eggert <eggert@twinsun.com>
7803
7804 Rename identifiers to avoid real and potential collisions.
7805
7806 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
7807 to avoid collision with lex macro described by Bruce Lilly in
7808 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
7809 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
7810 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
7811 * src/parse-gram.y (print_token_value): Renamed from yyprint.
7812 All uses changed.
7813 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
7814 The name "yycontrol" violates the name space rules, and this stuff
7815 wasn't being used anyway.
7816 (input): Remove action; this stuff wasn't being used.
7817 (gram_error): Rename local variable yylloc -> loc.
7818 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
7819 (YY_DECL): Don't use "yy" at start of local variables.
7820 All uses changed, e.g., yylloc -> loc.
7821 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
7822 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
7823 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
7824 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
7825
7826 * src/parse-gram.y (gram_error): loc is now const *.
7827 * src/reader.h (gram_error): Likewise.
7828
7829 2002-11-24 Paul Eggert <eggert@twinsun.com>
7830
7831 Version 1.75c.
7832
7833 * tests/actions.at (Actions after errors): Use an output format
7834 more similar to that of the Printers and Destructors test.
7835 Test the position of the ';' token too.
7836 (Printers and Destructors): Likewise.
7837 (Printers and Destructors: %glr-parser): Remove for now, to avoid
7838 unnecessarily alarming people when the test fails.
7839
7840 * data/yacc.c (yyerrlab1): Move this label down, so that the
7841 parser does not discard the lookahead token if the user code
7842 invokes YYERROR. This change is required for POSIX conformance.
7843
7844 * lib/error.c: Sync with gnulib.
7845
7846 2002-11-22 Paul Eggert <eggert@twinsun.com>
7847
7848 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
7849 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
7850 * lib/xmalloc.c: Likewise.
7851
7852 2002-11-20 Paul Eggert <eggert@twinsun.com>
7853
7854 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
7855
7856 2002-11-20 Paul Eggert <eggert@twinsun.com>
7857
7858 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
7859 should use `if (! x) abort ();' rather than `assert (x);', and
7860 anyway it's one less thing to worry about configuring.
7861
7862 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
7863 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
7864 and replace all instances of assert with abort.
7865 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7866 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
7867
7868 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
7869 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
7870 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
7871 hash_find_entry, hash_rehash, hash_insert): Likewise.
7872 * src/conflicts.c (resolve_sr_conflict): Likewise.
7873 * src/lalr.c (set_goto_map, map_goto): Likewise.
7874 * src/nullable.c (nullable_compute): Likewise.
7875 * src/output.c (prepare_rules, token_definitions_output): Likewise.
7876 * src/reader.c (packgram, reader): Likewise.
7877 * src/state.c (state_new, state_free, state_transitions_set,
7878 state_reduction_find): Likewise.
7879 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
7880 symbol_pack): Likewise.
7881 * src/tables.c (conflict_row, pack_vector): Likewise.
7882 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7883 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7884 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
7885 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
7886
7887 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
7888 (ARGMATCH_CONSTRAINT): New macro.
7889 (ARGMATCH_ASSERT): Use it.
7890
7891 * src/system.h (verify): New macro.
7892 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
7893 rather than assert.
7894 * src/tables.c (tables_generate): Likewise.
7895
7896 * src/struniq.c (struniq_assert): Now returns void, and aborts
7897 if the assertion is false.
7898 (struniq_assert_p): Remove.
7899 * src/struniq.h: Likewise.
7900
7901 2002-11-18 Paul Eggert <eggert@twinsun.com>
7902
7903 * data/glr.c (yygetLRActions): Replace `yyindex' with
7904 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
7905 This fixes the regression with Sun ONE Studio 7 cc that I reported in
7906 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
7907
7908 2002-11-18 Akim Demaille <akim@epita.fr>
7909
7910 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
7911 space.
7912 From Tim Van Holder.
7913
7914 2002-11-17 Paul Eggert <eggert@twinsun.com>
7915
7916 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
7917 to "SyntaxError" for consistency with my 2002-11-15 change.
7918
7919 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
7920 not define to {}, since this breaks the common use of `YYDPRINTF
7921 ((...));' if a single statement is desired (e.g. before `else').
7922 Work around GCC warnings by surrounding corresponding calls with
7923 {} if needed.
7924 (yyhasResolvedValue): Remove unused function.
7925 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
7926 loop body.
7927 (yyreportSyntaxError): Renamed from yyreportParseError.
7928 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
7929 All uses changed.
7930 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
7931 extern when possible. Remove unused initializations.
7932
7933 2002-11-16 Akim Demaille <akim@epita.fr>
7934
7935 Augment the similarity between GLR and LALR traces.
7936
7937 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
7938 (YY_REDUCE_PRINT): New.
7939 (yyparse): Use them.
7940 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
7941 YYDPRINT here.
7942 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
7943 state reached after the reduction/recovery, since...
7944 (yyparse, yyprocessOneStack): Report the state we are entering in.
7945
7946 2002-11-16 Akim Demaille <akim@epita.fr>
7947
7948 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
7949 Add support for --trace=skeleton.
7950 * src/scan-skel.l: %option debug.
7951 Scan strings of non-@ or \n instead of character by character.
7952 (scan_skel): Handle trace_skeleton.
7953 (QPUTS): New.
7954 (@output_parser_name@, @output_header_name@): ``Restore'' their
7955 support (used to be M4 macros).
7956 * data/yacc.c: Quote larger chunks, a la glr.c.
7957 * data/lalr1.cc: Likewise.
7958 The header guards are no longer available, so use some other
7959 string than `YYLSP_NEEDED'.
7960
7961 2002-11-16 Akim Demaille <akim@epita.fr>
7962
7963 Make the ``Printers and Destructors'' test more verbose, taking
7964 `yacc.c''s behavior as (possibly wrong) reference.
7965
7966 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
7967 instead of fprint on stdout.
7968 Set and report the last_line of the symbols.
7969 Consistently display values and locations.
7970
7971 2002-11-16 Paul Eggert <eggert@twinsun.com>
7972
7973 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
7974
7975 2002-11-15 Paul Eggert <eggert@twinsun.com>
7976
7977 * tests/actions.at (Actions after errors): New test case.
7978
7979 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
7980 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
7981 tests/action.at, tests/calc.at, tests/conflicts.at,
7982 tests/cxx-type.at, tests/regression.at:
7983 "parse error" -> "syntax error" for POSIX compatibility.
7984 "parsing stack overflow..." -> "parser stack overflow" so
7985 that code matches Bison documentation.
7986
7987 2002-11-15 Akim Demaille <akim@epita.fr>
7988
7989 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
7990 take two BRACED_CODE, not two string_content.
7991 Free the scanner's obstack when we are done.
7992 (code_content): New.
7993 * tests/calc.at: Adjust.
7994 * doc/bison.texinfo: Adjust.
7995 Also, make sure to include the `,' for these declarations.
7996
7997 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
7998
7999 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
8000 definition; avoids potential autoreconf problems.
8001
8002 2002-11-15 Akim Demaille <akim@epita.fr>
8003
8004 Always check the value returned by yyparse.
8005
8006 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
8007 returned by yyparse.
8008 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
8009 Adjust calls.
8010 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
8011 returned by yyparse.
8012
8013 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8014
8015 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
8016 on input.at test.
8017
8018 2002-11-14 Paul Eggert <eggert@twinsun.com>
8019
8020 * src/output.c (output_skeleton): Call xfopen instead of
8021 duplicating xfopen's body.
8022
8023 Fix bugs reported by Nelson H. F. Beebe in
8024 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
8025
8026 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
8027 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
8028 Group compiler. Instead, use "$CC -E bar.c". Include the .h
8029 file twice in the grammar, as an extra check.
8030
8031 * tests/input.at (Torturing the Scanner): Surround the
8032 backslash-newline tests with "#if 0", to make it less likely that
8033 we'll run into compiler bugs. Bring back solitary \ inside
8034 comment, but add a closing comment to work around HP C bug. Don't
8035 test backslash-newline in C character constant.
8036
8037 2002-11-14 Akim Demaille <akim@epita.fr>
8038
8039 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
8040 status of the compiler.
8041 Calling `exit 1' is no longer needed.
8042 Reported by Nelson H. F. Beebe.
8043
8044 2002-11-14 Akim Demaille <akim@epita.fr>
8045
8046 * tests/atlocal.in (CPPFLAGS): We have config.h.
8047 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
8048 New.
8049 * tests/actions.at, tests/calc.at, tests/conflicts.at,
8050 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
8051 * tests/regression.at, tests/torture.at: Use them for all the
8052 grammars that are to be compiled.
8053 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
8054 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
8055 * doc/bison.texinfo (GLR Parsers): Document `inline'.
8056
8057 2002-11-14 Akim Demaille <akim@epita.fr>
8058
8059 * doc/bison.texinfo: Various formatting changes (alignments in
8060 samples, additional @group/@end group, GCS in samples.
8061 Use @deffn instead of simple @table to define the directives,
8062 macros, variables etc.
8063
8064 2002-11-13 Paul Eggert <eggert@twinsun.com>
8065
8066 Fix some bugs reported by Albert Chin-A-Young in
8067 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
8068
8069 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8070 -o c"; the HP C compiler chatters during compilation.
8071 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
8072 * tests/headers.at (export YYLTYPE): Likewise.
8073
8074 * tests/input.at (Torturing the Scanner): Remove lines containing
8075 solitary backslashes, as they tickle a bug in the HP C compiler.
8076
8077 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
8078 comments, since they're not portable. Use GNU coding style.
8079
8080 2002-11-13 Akim Demaille <akim@epita.fr>
8081
8082 * data/yacc.c: Leave bigger chunks of quoted text.
8083 (YYDSYMPRINTF): New.
8084 Use it to report symbol activities.
8085 * data/glr.c (YYDSYMPRINTF): New.
8086 Use it.
8087
8088 2002-11-12 Paul Eggert <eggert@twinsun.com>
8089
8090 Version 1.75b.
8091
8092 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
8093 (yyglrReduce): Return yyok, not 0.
8094 This should avoid the enumerated-type warnings reported
8095 by Nelson H. F. Beebe in
8096 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
8097
8098 * lib/bbitset.h (BITSET_INLINE): Remove.
8099 * lib/bitset.h [! BITSET_INLINE]: Remove.
8100 (bitset_set, bitset_reset, bitset_test): Rename local vars
8101 to avoid shadowing warnings by GCC.
8102
8103 * data/glr.c (inline): Remove #define. It's the user's
8104 responsibility to #define it away, just like 'const'.
8105 This fixes one of the bugs reported by Nelson H. F. Beebe in
8106 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
8107
8108 * Makefile.maint (po-check): Scan .l and .y files instead of the
8109 .c and the .h files that they generate. This fixes the bug
8110 reported by Tim Van Holder in:
8111 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
8112 Look for N_ as well as for _. Try to avoid matching #define for
8113 N_ and _.
8114 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
8115 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
8116 * src/scan-gram.l: Revamp regular expressions so that " and '
8117 do not confuse xgettext.
8118
8119 * src/struniq.h (struniq_new): Do not declare the return type
8120 to be 'const'; this violates the C standard.
8121 * src/struniq.c (struniq_new): Likewise.
8122
8123 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
8124
8125 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
8126 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
8127 linker.
8128
8129 2002-11-12 Akim Demaille <akim@epita.fr>
8130
8131 * Makefile.maint: Sync with Autoconf:
8132 (local_updates): New.
8133
8134 2002-11-12 Akim Demaille <akim@epita.fr>
8135
8136 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
8137
8138 2002-11-12 Akim Demaille <akim@epita.fr>
8139
8140 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
8141 locations.
8142
8143 2002-11-12 Akim Demaille <akim@epita.fr>
8144
8145 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
8146 not yyvalue.
8147
8148 2002-11-12 Akim Demaille <akim@epita.fr>
8149
8150 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
8151 Use it to test the GLR parser.
8152
8153 2002-11-12 Akim Demaille <akim@epita.fr>
8154
8155 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
8156 defines it.
8157 * data/glr.c (yystos): New.
8158 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
8159 (YYDSYMPRINT): New.
8160 (yyval): Don't define it, it is handled via M4.
8161 (yyrecoverParseError): Free verbosely the discarded symbols.
8162 * data/yacc.c (yysymprint): Remove, rather...
8163 (b4_yysymprint_generate): invoke.
8164 * data/c.m4 (b4_yysymprint_generate): New.
8165 Accept pointers as arguments, as opposed to the version from
8166 yacc.c.
8167 (b4_yydestruct_generate): Likewise.
8168 * tests/cations.at (Printers and Destructors): Use Bison directives
8169 instead of CPP macros.
8170 Don't rely on internal details.
8171
8172 2002-11-12 Akim Demaille <akim@epita.fr>
8173
8174 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
8175 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
8176 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
8177 it against YYEMPTY and so forth), work on yytoken (i.e., set
8178 it to YYEMPTY etc.).
8179 (yydestruct): Replace with a b4_yydestruct_generate invocation.
8180 (b4_symbol_actions): Remove.
8181 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
8182 for 0, end-of-input.
8183
8184 2002-11-12 Akim Demaille <akim@epita.fr>
8185
8186 * doc/bison.texinfo (Destructor Decl): New.
8187
8188 2002-11-12 Akim Demaille <akim@epita.fr>
8189
8190 * src/tables.c (tables_generate): Use free for pointers that
8191 cannot be NULL, not XFREE.
8192 (pack_vector): Use assert, not fatal, for bound violations.
8193 * src/state.c (state_new): Likewise.
8194 * src/reader.c (reader): Likewise.
8195 * src/lalr.c (set_goto_map): Likewise.
8196 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
8197 the file name.
8198
8199 2002-11-12 Akim Demaille <akim@epita.fr>
8200
8201 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
8202 Restore.
8203 * src/scan-gram.l (last_string): Is global to the file, not to
8204 yylex.
8205 * src/parse-gram.y (input): Don't append the epilogue here,
8206 (epilogue.opt): do it here, and free the scanner's obstack.
8207 * src/reader.c (epilogue_set): Rename as...
8208 (epilogue_augment): this.
8209 * data/c.m4 (b4_epilogue): Defaults to empty.
8210
8211 2002-11-12 Akim Demaille <akim@epita.fr>
8212
8213 * src/getargs.c (long_options): Remove duplicates.
8214 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
8215 Remove.
8216 * doc/bison.rnh: Remove.
8217 * doc/bison.texinfo (VMS Invocation): Remove.
8218
8219 2002-11-12 Akim Demaille <akim@epita.fr>
8220
8221 * src/struniq.h, src/struniq.c (struniq_t): Is const.
8222 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
8223
8224 Use struniq for symbols.
8225
8226 * src/symtab.h (symbol_t): The tag member is a struniq.
8227 (symbol_type_set): Adjust.
8228 * src/symtab.c (symbol_new): Takes a struniq.
8229 (symbol_free): Don't free the tag member.
8230 (hash_compare_symbol_t, hash_symbol_t): Rename as...
8231 (hash_compare_symbol, hash_symbol): these.
8232 Use the fact that tags as struniqs.
8233 (symbol_get): Use struniq_new.
8234 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
8235 Returns a strniq.
8236 * src/reader.h (merger_list, grammar_currentmerge_set): The name
8237 and type members are struniqs.
8238 * src/reader.c (get_merge_function)
8239 (grammar_current_rule_merge_set): Adjust.
8240 (TYPE, current_type): Are struniq.
8241
8242 Use struniq for file names.
8243
8244 * src/files.h, src/files.c (infile): Split into...
8245 (grammar_file, current_file): these.
8246 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
8247 * src/reduce.c (reduce_print): Likewise.
8248 * src/getargs.c (getargs): Likewise.
8249 * src/complain.h, src/complain.c: Likewise.
8250 * src/main.c (main): Call struniqs_new early enough to use it for
8251 file names.
8252 Don't free the input file name.
8253
8254 2002-11-12 Akim Demaille <akim@epita.fr>
8255
8256 * src/symtab.c (symbol_free): Remove dead deactivated code:
8257 type_name are properly removed.
8258 Don't use XFREE to free items that cannot be NULL.
8259 * src/struniq.h, src/struniq.c: New.
8260 * src/main.c (main): Initialize/free struniqs.
8261 * src/parse-gram.y (%union): Add astruniq member.
8262 (yyprint): Adjust.
8263 * src/scan-gram.l (<{tag}>): Return a struniq.
8264 Free the obstack bit that used to store it.
8265 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
8266
8267 2002-11-11 Paul Eggert <eggert@twinsun.com>
8268
8269 Revamp to fix many (but not all) of the C- and M4-related quoting
8270 problems. Among other things, this fixes the Bison bug reported
8271 by Jan Hubicka when processing the Bash grammar; see:
8272 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
8273
8274 Use new @ escapes consistently. Represent brackets with @{ and @}
8275 rather than @<:@ and @:>@, since this works a bit better with dumb
8276 editors like vi. Represent @ with @@, since @ is now consistently
8277 an escape. Use @oline@ and @ofile@ rather than __oline__ and
8278 __ofile__, to avoid unexpected expansions. Similarly, use @output
8279 rather than #output.
8280
8281 * data/c.m4 (b4_copyright): Omit file name from comment, since
8282 the file name could contain "*/".
8283 (b4_synclines_flag): Don't quote the 2nd argument; it should already
8284 be quoted. All uses changed.
8285
8286 * data/glr.c: Use new @ escapes consistently.
8287 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
8288 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
8289 Remove, since they couldn't handle arbitrary characters in file
8290 names.
8291 * data/lalr1.cc: Likewise.
8292 * data/yacc.c: Likewise.
8293
8294 * src/files.c (output_infix): Remove; all uses removed.
8295 * src/files.h: Likewise.
8296
8297 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
8298 mishandled funny characters in file names, and anyway it isn't
8299 needed any more.
8300 * data/yacc.c: Likewise.
8301 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
8302
8303 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
8304 * data/yacc.c: Likewise.
8305
8306 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
8307 strings now.
8308 (muscle_init): Quote filename as a C string.
8309 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
8310 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
8311 * src/output.c (escaped_file_name_output): New function.
8312 (prepare_symbols): Quote tokens for M4.
8313 (prepare): Don't insert output_infix, output_prefix,
8314 output_parser_name, output_header_name; this is now down by scan-skel.
8315 Insert skeleton as a C string.
8316
8317 * src/output.c (user_actions_output, symbol_destructors_output,
8318 symbol_printers_output): Quote filenames for C and M4.
8319 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8320
8321 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
8322 escapes other than \\ and \'; this simplifies the code.
8323 (<SC_STRING>): Likewise, for \\ and \".
8324 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
8325 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
8326 Use new escapes @{ and @} for [ and ].
8327
8328 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
8329 them with auto vars.
8330 Switch to new escape scheme, where @ is the escape character uniformly.
8331 Abort if a stray escape character is found. Avoid unbounded input
8332 buffer when parsing non-escaped text.
8333
8334 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
8335 __oline__, #output, $@, and @{ do not have unintended meanings.
8336
8337 2002-11-09 Paul Eggert <eggert@twinsun.com>
8338
8339 Fix the test failure due to GCC warnings described in
8340 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
8341 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
8342 evaluate to 0 if it's impossible for NINF to be in the respective
8343 table.
8344 (yygetLRActions, yyrecoverParseError): Use them.
8345
8346 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
8347 counted in the token inserted at end of file. Now takes
8348 location_t *, not location_t, so that the location can be
8349 adjusted. All uses changed.
8350
8351 * tests/regression.at (Invalid inputs): Adjust wording in
8352 diagnostic to match the new behavior.
8353
8354 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
8355 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
8356 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
8357 abort ();'. This reduces the runtime of the "Many lookaheads"
8358 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
8359 GCC 3.2.
8360
8361 2002-11-07 Paul Eggert <eggert@twinsun.com>
8362
8363 * src/parse-gram.y (CHARACTER): Remove unused token.
8364 All uses removed.
8365
8366 * src/scan-gram.l: Remove stack option. We no longer use the
8367 stack, since the stack was never deeper than 1; instead, use the
8368 new auto var c_context to record the stacked value.
8369
8370 Remove nounput option. At an unexpected end of file, we now unput
8371 the minimal input necessary to end cleanly; this simplifies the
8372 code.
8373
8374 Avoid unbounded token sizes where this is easy.
8375
8376 (unexpected_end_of_file): New function.
8377 Use it to systematize the error message on unexpected EOF.
8378 (last-string): Now auto, not static.
8379 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
8380 (scanner_last_string_free): Remove; not used.
8381 (percent_percent_count): Move decl to just before use.
8382 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
8383 not the (never otherwised-used) CHARACTER.
8384
8385 2002-11-07 Akim Demaille <akim@epita.fr>
8386
8387 Let yyerror always receive the msg as last argument, so that
8388 yyerror can be variadic.
8389
8390 * data/yacc.c (b4_yyerror_args): New.
8391 Use it when calling yyerror.
8392 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
8393 Use it when calling yyerror.
8394 * doc/bison.texinfo (Error Reporting): Adjust.
8395 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
8396 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
8397
8398 2002-11-06 Akim Demaille <akim@epita.fr>
8399
8400 #line should have quoted strings.
8401 Ideally, this should be done by m4_quotearg.
8402
8403 * src/scan-skel.l: Include quotearg.h.
8404 Quote __ofile__.
8405 * src/output.c (symbol_printers_output)
8406 (symbol_destructors_output): Quote the file name.
8407
8408 2002-11-06 Akim Demaille <akim@epita.fr>
8409
8410 * tests/regression.at (Invalid inputs): Adjust to the recent
8411 messages.
8412
8413 2002-11-06 Akim Demaille <akim@epita.fr>
8414
8415 Restore --no-lines.
8416 Reported by Jim Kent.
8417
8418 * data/c.m4 (b4_syncline): New.
8419 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
8420 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
8421 * src/output.c (user_actions_output): Likewise.
8422 (prepare): Define 'b4_synclines_flag'.
8423 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
8424
8425 2002-11-06 Akim Demaille <akim@epita.fr>
8426
8427 * src/main.c (main): Free `infile'.
8428 * src/scan-gram.l (handle_syncline): New.
8429 Recognize `#line'.
8430 * src/output.c (user_actions_output, symbol_destructors_output)
8431 (symbol_printers_output): Use the location's file name, not
8432 infile.
8433 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8434
8435 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8436
8437 * src/tables.c (matching_state): Don't allow states to match if
8438 either has GLR conflict entries.
8439
8440 2002-11-05 Paul Eggert <eggert@twinsun.com>
8441
8442 * src/scan-gram.l: Use more accurate diagnostics, e.g.
8443 "integer out of range" rather than "invalid value".
8444 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
8445 accordingly.
8446
8447 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
8448 Also, remove one static variable in the scanner.
8449
8450 * src/scan-gram.l (braces_level): Now auto, not static.
8451 Initialize to zero if the compiler is being picky.
8452 (INITIAL): Clear braces_level instead of incrementing it.
8453 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
8454 as POSIX 1003.1-2001 requires.
8455 * src/system.h (IF_LINT): New macro, taken from coreutils.
8456 * configure.ac: Define "lint" if --enable-gcc-warnings.
8457
8458 2002-11-05 Akim Demaille <akim@epita.fr>
8459
8460 * src/scan-gram.l: When it starts with `%', complain about the
8461 whole directive, not just that `invalid character: %'.
8462
8463 2002-11-04 Akim Demaille <akim@epita.fr>
8464
8465 * Makefile.maint: Update from Autoconf.
8466 (update, cvs-update, po-update, do-po-update): New.
8467
8468 2002-11-04 Akim Demaille <akim@epita.fr>
8469
8470 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
8471 and yyerror.
8472 Have yyerror `use' its arguments.
8473 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
8474 returns true when location & yacc & pure & parse-param.
8475 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
8476
8477 2002-11-04 Akim Demaille <akim@epita.fr>
8478
8479 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
8480 clashes.
8481 * src/scan-gram.l: Use [\'] instead of ['] to pacify
8482 font-lock-mode.
8483 Use complain_at.
8484 Use quote, not quote_n since LOCATION_PRINT no longer uses the
8485 slot 0.
8486
8487 2002-11-03 Paul Eggert <eggert@twinsun.com>
8488
8489 * src/reader.c (get_merge_function, grammar_current_rule_check):
8490 Use consistent diagnostics for reporting type name clashes.
8491 Quote the types with <>, for consistency with Yacc.
8492 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
8493
8494 2002-11-03 Akim Demaille <akim@epita.fr>
8495
8496 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
8497 New.
8498 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
8499 (b4_parse_param): Remove.
8500 Use b4_identification.
8501 Propagate b4_pure_args where needed to pass them to yyerror.
8502 * data/glr.m4 (b4_parse_param): Remove.
8503 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
8504 (b4_lpure_formals): New.
8505 Use b4_identification.
8506 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
8507 b4_user_formals and b4_user_args.
8508 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
8509 (yyreportAmbiguity): When using a pure parser, also need
8510 the location, and the parse-params.
8511 Adjust callers.
8512 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
8513 When using a pure parser, also need the parse-params.
8514 Adjust callers.
8515 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
8516 (%pure-parser + %parse-param) LALR and GLR parsers.
8517 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
8518 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
8519 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
8520 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
8521 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
8522 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
8523 * doc/bison.texinfo: Untabify the whole file.
8524 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
8525 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
8526 (Error Reporting): Adjust to these new directives.
8527 Document %error-verbose, deprecate YYERROR_VERBOSE.
8528
8529 2002-11-03 Akim Demaille <akim@epita.fr>
8530
8531 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
8532 AT_CHECK_CALC_GLR invocations to use % directives, instead of
8533 command line options.
8534 * tests/cxx-type.at: Formatting changes.
8535
8536 2002-11-03 Paul Eggert <eggert@twinsun.com>
8537
8538 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
8539 to count columns correctly, and to check for invalid inputs.
8540
8541 Use mbsnwidth to count columns correctly. Account for tabs, too.
8542 Include mbswidth.h.
8543 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
8544 (extend_location): New function.
8545 (YY_LINES): Remove.
8546
8547 Handle CRLF in C code rather than in Lex code.
8548 (YY_INPUT): New macro.
8549 (no_cr_read): New function.
8550
8551 Scan UCNs, even though we don't fully handle them yet.
8552 (convert_ucn_to_byte): New function.
8553
8554 Handle backslash-newline correctly in C code.
8555 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
8556 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
8557 all uses changed.
8558 (tag, splice): New EREs. Do not allow NUL or newline in tags.
8559 Use {splice} wherever C allows backslash-newline.
8560 YY_STEP after space, newline, vertical-tab.
8561 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
8562
8563 (letter, id): Don't assume ASCII; e.g., spell out a-z.
8564
8565 ({int}, handle_action_dollar, handle_action_at): Check for integer
8566 overflow.
8567
8568 (YY_STEP): Omit trailing semicolon, so that it's more like C.
8569
8570 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
8571 as well as \000. Check for UCHAR_MAX, not 255.
8572 Allow \x with an arbitrary positive number of digits, as in C.
8573 Check for overflow here.
8574 Allow \? and UCNs, for compatibility with C.
8575
8576 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
8577 with quote slot used by complain_at.
8578
8579 * tests/input.at: Add tests for backslash-newline, m4 quotes
8580 in symbols, long literals, and funny escapes in strings.
8581
8582 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
8583 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
8584 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
8585 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
8586 * m4/mbswidth.m4: New file, from GNU coreutils.
8587
8588 * doc/bison.texinfo (Grammar Outline): Document // comments.
8589 (Symbols): Document that trigraphs have no special meaning in Bison,
8590 nor is backslash-newline allowed.
8591 (Actions): Document that trigraphs have no special meaning.
8592
8593 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
8594 no longer used.
8595
8596 2002-11-02 Paul Eggert <eggert@twinsun.com>
8597
8598 * src/reader.c: Don't include quote.h; not needed.
8599 (get_merge_function): Reword warning to be consistent with
8600 type clash diagnostic in grammar_current_rule_check.
8601
8602 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
8603 bug in trigraph handling.
8604
8605 * src/output.c (prepare_symbols): When printing token names,
8606 escape "[" as "@<:@" and likewise for "]".
8607
8608 * src/system.h (errno): Remove declaration, as we are now
8609 assuming C89 or better, and C89 guarantees errno.
8610
8611 2002-10-30 Paul Eggert <eggert@twinsun.com>
8612
8613 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
8614 Check for close failures.
8615 * src/files.h (xfclose): Return void, not int, since it always
8616 returned zero.
8617 * src/files.c (xfclose): Likewise. Report I/O error if ferror
8618 indicates one.
8619 * src/output.c (output_skeleton): Use xfclose rather than fclose
8620 and ferror. xfclose now checks ferror.
8621
8622 * data/glr.c (YYLEFTMOST_STATE): Remove.
8623 (yyreportTree): Use a stack-based leftmost state. This avoids
8624 our continuing battles with bogus warnings about initializers.
8625
8626 2002-10-30 Akim Demaille <akim@epita.fr>
8627
8628 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
8629 #if.
8630
8631 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8632
8633 * tests/glr-regr1.at: New test for reported regressions.
8634 * tests/testsuite.at: Add glr-regr1.at test.
8635 * tests/Makefile.am: Add glr-regr1.at test.
8636
8637 2002-10-24 Paul Eggert <eggert@twinsun.com>
8638
8639 Version 1.75a.
8640
8641 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
8642 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
8643 we use malloc. Don't assume 'A' through 'Z' are contiguous.
8644 Don't assume strdup exists; POSIX says its an XSI extension.
8645 Check for buffer overflow on input.
8646
8647 2002-10-24 Akim Demaille <akim@epita.fr>
8648
8649 * src/output.c (output_skeleton): Don't disable M4sugar comments
8650 too soon: it results in comments being expanded.
8651 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
8652 first output.
8653
8654 2002-10-24 Akim Demaille <akim@epita.fr>
8655
8656 * data/yacc.c (m4_int_type): New.
8657 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
8658 char' as only yacc.c wants K&R portability.
8659 * data/glr.c (yysigned_char): Remove.
8660 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
8661 Reported by Quoc Peyrot.
8662
8663 2002-10-23 Paul Eggert <eggert@twinsun.com>
8664
8665 * src/main.c (main): With --trace=time, report times even if a
8666 non-fatal error occurs. Formerly, the times were reported in some
8667 such cases but not in others.
8668 * src/reader.c (reader): Just return if a complaint has been issued,
8669 instead of exiting, so that 'main' can report times.
8670
8671 2002-10-22 Akim Demaille <akim@epita.fr>
8672
8673 * src/system.h: Include sys/types.
8674 Reported by Bert Deknuydt.
8675
8676 2002-10-23 Paul Eggert <eggert@twinsun.com>
8677
8678 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
8679 Suggested by Art Haas.
8680
8681 2002-10-22 Paul Eggert <eggert@twinsun.com>
8682
8683 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
8684 decl; not needed any more.
8685 * src/main.c (main): Use return to exit, undoing yesterday's change.
8686 The last OS that we could find where this wouldn't work is
8687 SunOS 3.5, and that's too old to worry about now.
8688
8689 * data/glr.c (struct yyltype): Define members even when not
8690 doing locations. This is more consistent with yacc.c, and it
8691 works around the following bug reports:
8692 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
8693 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
8694
8695 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
8696 @acronym consistently. Standardize on "Yacc" instead of "YACC",
8697 "Algol" instead of "ALGOL". Give a bit more history about BNF.
8698
8699 2002-10-22 Akim Demaille <akim@epita.fr>
8700
8701 * data/README: New.
8702
8703 2002-10-21 Paul Eggert <eggert@twinsun.com>
8704
8705 Be consistent about 'bool'; the old code used an enum in one
8706 module and an int in another, and this violates the C standard.
8707 * m4/stdbool.m4: New file, from coreutils 4.5.3.
8708 * configure.ac (AC_HEADER_STDBOOL): Add.
8709 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
8710 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
8711 * src/symtab.c (hash_compare_symbol_t): Likewise.
8712 * src/system.h (bool, false, true): Use a definition consistent
8713 with ../lib/hash.c. All uses changed.
8714
8715 * src/complain.c (warning_issued): Renamed from warn_message_count,
8716 so that we needn't worry about integer overflow (!).
8717 Now of type bool. All uses changed.
8718 (complaint_issued): Renamed from complain_message_count; likewise.
8719
8720 * src/main.c (main): Use exit to exit with failure.
8721
8722 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
8723 rather than 1 and 0.
8724 * src/main.c (main): Likewise.
8725 * src/getargs.c (getargs): Likewise.
8726 * src/reader.c (reader): Likewise.
8727
8728 * src/getarg.c (getargs): Remove duplicate code for
8729 "Try `bison --help'".
8730
8731 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
8732 What was that "2" for?
8733
8734 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
8735 * src/getargs.c (usage): Likewise.
8736
8737 * src/getargs.c (getargs): When there are too few operands, report
8738 the last one. When there are too many, report the first extra
8739 one. This is how diffutils does it.
8740
8741 2002-10-20 Paul Eggert <eggert@twinsun.com>
8742
8743 Remove K&R vestiges.
8744 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
8745 * src/complain.c (VA_START): Remove. Assume prototypes.
8746 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
8747 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
8748 fatal): Assume prototypes.
8749 * src/complain.h: Assume prototypes.
8750 * src/system.h (PARAMS): Remove.
8751 Include <limits.h> unconditionally, since it's guaranteeed even
8752 for a freestanding C89 compiler.
8753 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
8754 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8755
8756 2002-10-20 Akim Demaille <akim@epita.fr>
8757
8758 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
8759 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
8760 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
8761 (yyresolveStates, yyresolveAction, yyresolveStack)
8762 (yyprocessOneStack): Use them.
8763 (yy_reduce_print): New.
8764 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
8765
8766 2002-10-20 Akim Demaille <akim@epita.fr>
8767
8768 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
8769 arguments and output `void'.
8770 (b4_c_function): Rename as...
8771 (b4_c_function_def): this.
8772 (b4_c_function_decl, b4_c_ansi_function_def)
8773 (b4_c_ansi_function_decl): New.
8774 Change the interpretation of the arguments: before `int, foo', now
8775 `int foo, foo'.
8776 * data/yacc.c (yyparse): Prototype and define thanks to these.
8777 Adjust b4_c_function_def uses.
8778 * data/glr.c (yyparse): Likewise, but ANSI only.
8779
8780 2002-10-20 Akim Demaille <akim@epita.fr>
8781
8782 * src/output.c (prepare): Move the definition of `tokens_number',
8783 `nterms_number', `undef_token_number', `user_token_number_max'
8784 to...
8785 (prepare_tokens): Here.
8786 (prepare_tokens): Rename as...
8787 (prepare_symbols): this.
8788 (prepare): Move the definition of `rules_number' to...
8789 (prepare_rules): here.
8790 (prepare): Move the definition of `last', `final_state_number',
8791 `states_number' to...
8792 (prepare_states): here.
8793 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
8794
8795 2002-10-20 Akim Demaille <akim@epita.fr>
8796
8797 * src/tables.h, src/tables.c, src/output.c: Comment changes.
8798
8799 2002-10-20 Akim Demaille <akim@epita.fr>
8800
8801 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
8802 * data/c.m4: here.
8803
8804 2002-10-20 Akim Demaille <akim@epita.fr>
8805
8806 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
8807 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
8808 `pair'.
8809 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
8810 `name' to...
8811 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
8812 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
8813 These.
8814
8815 2002-10-19 Paul Eggert <eggert@twinsun.com>
8816
8817 Do not create a temporary file, as that involves security and
8818 cleanup headaches. Instead, use a pair of pipes.
8819 Derived from a suggestion by Florian Krohm.
8820 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
8821 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
8822 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
8823 (BISON_PREREQ_SUBPIPE): Add.
8824 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
8825 Add subpipe.h, subpipe.c.
8826 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
8827 * po/POTFILES.in: Add lib/subpipe.c.
8828 * src/output.c: Include "subpipe.h".
8829 (m4_invoke): Remove decl.
8830 (scan_skel): New decl.
8831 (output_skeleton): Use pipe rather than temporary file for m4 input.
8832 Check that m4sugar.m4 is readable, to avoid deadlock.
8833 Check for pipe I/O error.
8834 * src/scan-skel.l (readpipe): Remove decl.
8835 (scan_skel): New function, to be used in place of m4_invoke.
8836 Read from stream rather than file.
8837
8838 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
8839 float, as this generates a warning on Solaris 8 + GCC 3.2 with
8840 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
8841 this generates a more-accurate value anyway.
8842
8843 * lib/timevar.c (timervar_accumulate): Rename locals to
8844 avoid confusion with similarly-named more-global.
8845 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
8846
8847 * src/output.c (prepare): Use xstrdup to convert char const *
8848 to char *, to avoid GCC warning.
8849
8850 2002-10-19 Akim Demaille <akim@epita.fr>
8851
8852 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
8853 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
8854 Use them to have `calc.y' ready for %pure-parser.
8855 * data/yacc.c (YYLEX): Pass a yylex return type to
8856 b4_c_function_call.
8857
8858 2002-10-19 Akim Demaille <akim@epita.fr>
8859
8860 Prototype support of %lex-param and %parse-param.
8861
8862 * src/parse-gram.y: Add the definition of the %lex-param and
8863 %parse-param tokens, plus their rules.
8864 Drop the `_' version of %glr-parser.
8865 Add the "," token.
8866 * src/scan-gram.l (INITIAL): Scan them.
8867 * src/muscle_tab.c: Comment changes.
8868 (muscle_insert, muscle_find): Rename `pair' as `probe'.
8869 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
8870 (muscle_entry_s): The `value' member is no longer const.
8871 Adjust all dependencies.
8872 * src/muscle_tab.c (muscle_init): Adjust: use
8873 MUSCLE_INSERT_STRING.
8874 Initialize the obstack earlier.
8875 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
8876 (muscle_pair_list_grow): New.
8877 * data/c.m4 (b4_c_function_call, b4_c_args): New.
8878 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
8879 * tests/calc.at: Use %locations, not --locations.
8880 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
8881
8882 2002-10-19 Akim Demaille <akim@epita.fr>
8883
8884 * src/getargs.c (usage): Take status as argument and exit
8885 accordingly.
8886 Report the traditional `Try ... --help' message when status != 0.
8887 (usage, version): Don't take a FILE * as arg, it is pointless.
8888 (getargs): When there is an incorrect number of arguments, make it
8889 an error, and report it GNUlically thanks to `usage ()'.
8890
8891 2002-10-18 Paul Eggert <eggert@twinsun.com>
8892
8893 * data/glr.c (yyreportParseError): Don't assume that sprintf
8894 yields the length of the printed string, as this is not true
8895 on SunOS 4.1.4. Reported by Peter Klein.
8896
8897 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
8898 * tests/conflicts.at (%nonassoc and eof): Likewise.
8899 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
8900
8901 2002-10-17 Akim Demaille <akim@epita.fr>
8902
8903 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
8904 * src/getargs.c (trace_types, trace_args): Adjust.
8905 * src/reader.c (grammar_current_rule_prec_set)
8906 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
8907 Standardize error messages.
8908 And s/@prec/%prec/!
8909 (reader): Use trace_flag to enable scanner/parser debugging,
8910 instead of an adhoc scheme.
8911 * src/scan-gram.l: Remove trailing debugging code.
8912
8913 2002-10-16 Paul Eggert <eggert@twinsun.com>
8914
8915 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
8916 MUSCLE_TAB_H.
8917
8918 * NEWS: Officially drop support for building Bison with K&R C,
8919 since it didn't work anyway and it's not worth worrying about.
8920 * Makefile.maint (wget_files): Remove ansi2knr.c.
8921 (ansi2knr.c-url_prefix): Remove.
8922 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
8923 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8924 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8925
8926 2002-10-15 Paul Eggert <eggert@twinsun.com>
8927
8928 Stop using the "enum_" trick for K&R-style function definitions;
8929 it confused me, and I was the author! Instead, assume that people
8930 who want to use K&R C compilers (when using these modules in GCC,
8931 perhaps?) will run ansi2knr.
8932
8933 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
8934 All uses of "enum_" changed to "enum ".
8935 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8936 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8937
8938 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
8939 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
8940 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
8941 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
8942 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
8943 abitset_not, abitset_ones, abitset_or, abitset_or_and,
8944 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
8945 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
8946 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
8947 Use function prototypes; this removes the need for declaring
8948 static functions simply to provide their prototypes.
8949 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
8950 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
8951 bitset_count_, bitset_create, bitset_dump, bitset_first,
8952 bitset_free, bitset_init, bitset_last, bitset_next,
8953 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
8954 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
8955 bitset_print, bitset_release_memory, bitset_toggle_,
8956 bitset_type_choose, bitset_type_get, bitset_type_name_get,
8957 debug_bitset): Likewise.
8958 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
8959 * lib/bitset_stats.c (bitset_log_histogram_print,
8960 bitset_percent_histogram_print, bitset_stats_and,
8961 bitset_stats_and_cmp, bitset_stats_and_or,
8962 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
8963 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
8964 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
8965 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
8966 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
8967 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
8968 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
8969 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
8970 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
8971 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
8972 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
8973 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
8974 bitset_stats_zero): Likewise.
8975 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8976 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8977 bitsetv_dump, debug_bitsetv): Likewise.
8978 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
8979 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
8980 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
8981 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
8982 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
8983 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
8984 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
8985 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
8986 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
8987 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
8988 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
8989 Likewise.
8990 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
8991 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
8992 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
8993 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
8994 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
8995 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
8996 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
8997 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
8998 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
8999 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
9000 lbitset_xor_cmp, lbitset_zero): Likewise.
9001
9002 2002-10-14 Akim Demaille <akim@epita.fr>
9003
9004 Version 1.75.
9005
9006 2002-10-14 Akim Demaille <akim@epita.fr>
9007
9008 * tests/Makefile.am (maintainer-check-posix): New.
9009
9010 2002-10-14 Akim Demaille <akim@epita.fr>
9011
9012 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
9013 member.
9014
9015 2002-10-14 Akim Demaille <akim@epita.fr>
9016
9017 * src/tables.c (table_ninf_remap): base -> tab.
9018 Reported by Matt Rosing.
9019
9020 2002-10-14 Paul Eggert <eggert@twinsun.com>
9021
9022 * tests/action.at, tests/calc.at, tests/conflicts.at,
9023 tests/cxx-type.at, tests/headers.at, tests/input.at,
9024 tests/regression.at, tests/synclines.at, tests/torture.at:
9025 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
9026 so that the tests still work even if POSIXLY_CORRECT is set.
9027 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
9028
9029 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
9030 for portability to K&R hosts. Fix typo: signed char is guaranteed
9031 only to 127, not to 128.
9032 * data/glr.c (yysigned_char): New type.
9033 * data/yacc.c (yysigned_char): Likewise.
9034 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
9035
9036 2002-10-13 Paul Eggert <eggert@twinsun.com>
9037
9038 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
9039 true due to limited range of data type" warning from GCC.
9040
9041 * data/c.m4 (b4_token_defines): Protect against double-inclusion
9042 by wrapping enum yytokentype's definition inside #ifndef
9043 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
9044
9045 2002-10-13 Akim Demaille <akim@epita.fr>
9046
9047 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
9048 Un yy- yyrhs to avoid the name clash with the global YYRHS.
9049
9050 2002-10-13 Akim Demaille <akim@epita.fr>
9051
9052 * Makefile.maint: Update from Autoconf 2.54.
9053 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
9054
9055 2002-10-13 Akim Demaille <akim@epita.fr>
9056
9057 * src/print.c (print_state): Separate the list of solved conflicts
9058 from the other items.
9059 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
9060
9061 2002-10-13 Akim Demaille <akim@epita.fr>
9062
9063 Let nondeterministic skeletons be usable with deterministic
9064 tables.
9065
9066 With the patch, GAWK compiled by GCC without -O2 passes its test
9067 suite using a GLR parser driven by LALR tables. It fails with -O2
9068 because `struct stat' gives two different answers on my machine:
9069 88 (definition of an auto var) and later 96 (memset on this var).
9070 Hence the stack is badly corrumpted. The headers inclusion is to
9071 blame: if I move the awk.h inclusion before GLR's system header
9072 inclusion, the two struct stat have the same size.
9073
9074 * src/tables.c (pack_table): Always create conflict_table.
9075 (token_actions): Always create conflict_list.
9076 * data/glr.c (YYFLAG): Remove, unused.
9077
9078 2002-10-13 Akim Demaille <akim@epita.fr>
9079
9080 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
9081 (O0FLAGS): New.
9082 (VALGRIND, GXX): New.
9083 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
9084 * tests/bison.in: Run $PREBISON a pre-command.
9085 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
9086 (maintainer-check-g++): New.
9087 * Makefile.am (maintainer-check): New.
9088
9089 2002-10-13 Akim Demaille <akim@epita.fr>
9090
9091 * data/glr.c: Formatting changes.
9092 Tweak some trace messages to match yacc.c's.
9093
9094 2002-10-13 Akim Demaille <akim@epita.fr>
9095
9096 GLR parsers sometimes raise parse errors instead of performing the
9097 default reduction.
9098 Reported by Charles-Henry de Boysson.
9099
9100 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
9101 check the length of the traces when %glr.
9102 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
9103 GLR's traces.
9104 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
9105 Test GLR parsers.
9106 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
9107 (yyltype): Remove the yy prefix from the member names.
9108 (yytable): Complete its comment.
9109 (yygetLRActions): Map error action number from YYTABLE from
9110 YYTABLE_NINF to 0.
9111 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
9112 (which was a bug: it should have been YYTABEL_NINF, and yet it was
9113 not satisfying as we could compare an YYACTION computed from
9114 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
9115 only value for error actions.
9116 (yyreportParseError): In verbose parse error messages, don't issue
9117 `error' in the list of expected tokens.
9118 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
9119 next action to perform to match glr.c's decoding.
9120 (yytable): Complete its comment.
9121
9122 2002-10-13 Paul Eggert <eggert@twinsun.com>
9123
9124 Fix problem reported by Henrik Grubbstroem in
9125 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
9126 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
9127 because the Bison parser reads the second action before reducing
9128 the first one.
9129 * src/scan-gram.l (rule_length): New static var.
9130 Use it to keep track of the rule length in the scanner, since
9131 we can't expect the parser to be in lock-step sync with the scanner.
9132 (handle_action_dollar, handle_action_at): Use this var.
9133 * tests/actions.at (Exotic Dollars): Test for the problem.
9134
9135 2002-10-12 Paul Eggert <eggert@twinsun.com>
9136
9137 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
9138 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
9139 Include <sys/time.h> when checking for clock_t and struct tms.
9140 Use same include order as source.
9141 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
9142 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
9143
9144 * lib/timevar.c: Update copyright date and clarify comments.
9145 (get_time) [IN_GCC]: Keep the GCC version for reference.
9146
9147 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
9148 GCC version as of today, then merge Bison's changes.
9149 Change "GCC" to "Bison" in copyright notice. timevar.def's
9150 author is Akim, so change that too.
9151
9152 * src/reader.c (grammar_current_rule_check):
9153 Don't worry about the default action if $$ is untyped.
9154 Prevents bogus warnings reported by Jim Gifford in
9155 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
9156
9157 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
9158 * data/glr.c, data/lalr1.cc, data/yacc.c:
9159 Output token definitions before the first part of user declarations.
9160 Fixes compatibility problem reported by Jim Gifford for kbd in
9161 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
9162
9163 2002-10-11 Paul Eggert <eggert@twinsun.com>
9164
9165 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
9166 (yyparse): here. This undoes some of the 2002-07-25 change.
9167 Compatibility problem reported by Ralf S. Engelschall with
9168 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
9169
9170 2002-10-11 Akim Demaille <akim@epita.fr>
9171
9172 * tests/regression.at Characters Escapes): New.
9173 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
9174 characters.
9175 Reported by Jan Nieuwenhuizen.
9176
9177 2002-10-11 Akim Demaille <akim@epita.fr>
9178
9179 * po/id.po: New.
9180
9181 2002-10-10 Paul Eggert <eggert@twinsun.com>
9182
9183 Portability fixes for bitsets; this also avoids several GCC
9184 warnings.
9185
9186 * lib/abitset.c: Include <stddef.h>, for offsetof.
9187 * lib/lbitset.c: Likewise.
9188
9189 * lib/abitset.c (abitset_bytes): Return a size that is aligned
9190 properly for vectors of objects. Do not assume that adding a
9191 header size to a multiple of a word size yields a value that is
9192 properly aligned for the whole union.
9193 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9194
9195 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
9196 unique names for structures.
9197 * lib/ebitset.c (ebitset_bytes): Likewise.
9198 * lib/lbitset.c (lbitset_bytes): Likewise.
9199
9200 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
9201 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
9202 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
9203 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
9204 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
9205 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
9206 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
9207 to improve the type-checking that GCC can do.
9208 * lib/bitset.c (bitset_op4_cmp): Likewise.
9209 * lib/bitset_stats.c (bitset_stats_count,
9210 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
9211 bitset_stats_copy, bitset_stats_disjoint_p,
9212 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
9213 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
9214 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
9215 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
9216 bitset_stats_and_or_cmp, bitset_stats_andn_or,
9217 bitset_stats_andn_or_cmp, bitset_stats_or_and,
9218 bitset_stats_or_and_cmp): Likewise.
9219 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
9220 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
9221 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
9222 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
9223
9224 * lib/abitset.h: Include bitset.h, not bbitset.h.
9225 * lib/ebitset.h: Likewise.
9226 * lib/lbitset.h: Likewise.
9227
9228 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
9229 All instances of parameters of type enum bitset_opts are now of
9230 type enum_bitset_opts, to conform to the C Standard, and similarly
9231 for enum_bitset_type.
9232 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
9233 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
9234
9235 Do not use "struct bitset_struct" to mean different things in
9236 different modules. Not only is this confusing, it violates
9237 the C Standard, which requires that structure types in different
9238 modules must be compatible if one is to be passed to the other.
9239 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
9240 All instances of "struct bitset_struct *" replaced with "bitset".
9241 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
9242 (union bitset_union, struct abitset_struct, struct ebitset_struct,
9243 struct lbitset_struct, struct bitset_stats_struct): New types.
9244 All uses of struct bitset_struct changed to union bitset_union,
9245 etc.
9246 * lib/abitset.c (struct abitset_struct, abitset,
9247 struct bitset_struct): Remove.
9248 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
9249 struct bitset_struct): Remove.
9250 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
9251 bitset_struct): Remove.
9252 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
9253 Likewise.
9254
9255 Do not call a function of type T using a call that assumes the
9256 function is of a different type U. Standard C requires that a
9257 function must be called with a type that is compatible with its
9258 definition.
9259 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9260 New decls.
9261 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
9262 New functions.
9263 * lib/ebitset.c (PFV): Remove.
9264 * lib/lbitset.c (PFV): Likewise.
9265 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
9266 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
9267 decls.
9268 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
9269 (ebitset_vtable): Use them.
9270 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
9271 lbitset_xor): New functions.
9272 (lbitset_vtable): Use them.
9273
9274 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
9275 Declare.
9276
9277 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
9278 GCC warning.
9279 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
9280 Use offsetof, for simplicity.
9281
9282 2002-10-06 Paul Eggert <eggert@twinsun.com>
9283
9284 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
9285 the same width as int. This reapplies a hunk of the 2002-08-12 patch
9286 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
9287 which was inadvertently undone by the 2002-09-30 patch.
9288 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
9289 the same width as int.
9290
9291 2002-10-04 Paul Eggert <eggert@twinsun.com>
9292
9293 Version 1.50.
9294
9295 * configure.ac (AC_INIT), NEWS: Increment version number.
9296
9297 * doc/bison.texinfo: Minor spelling, grammar, and white space
9298 fixes.
9299 (Symbols): Mention that any negative value returned from yylex
9300 signifies end-of-input. Warn about negative chars. Mention
9301 the portable Standard C character set.
9302
9303 The GNU coding standard says CFLAGS and YFLAGS are reserved
9304 for the installer to set.
9305 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
9306 * src/Makefile.am (AM_CFLAGS): Likewise.
9307 (AM_YFLAGS): Renamed from YFLAGS.
9308
9309 Fix some MAX and MIN problems.
9310 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
9311 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
9312 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
9313 * src/reader.c (reader): Use it.
9314
9315 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
9316 POSIX 1003.1-2001 has removed fgrep.
9317
9318 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9319
9320 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
9321 interpreted as signed.
9322 * lib/ebitset.c (ebitset_list): Fix bug.
9323
9324 2002-10-01 Paul Eggert <eggert@twinsun.com>
9325
9326 More fixes for 64-bit hosts and large bitsets.
9327
9328 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
9329 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
9330 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
9331 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
9332 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
9333 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
9334 bitset_count_): Likewise.
9335 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
9336 bitset_first, bitset_last): Likewise.
9337 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
9338 bitset_stats_list_reverse, bitset_stats_size,
9339 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
9340 Likewise.
9341 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9342 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9343 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9344 bitsetv_reflexive_transitive_closure): Likewise.
9345 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
9346 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
9347 Likewise.
9348 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
9349 Likewise.
9350
9351 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
9352 Use size_t, not unsigned int, to count bytes.
9353 * lib/abitset.h (abitset_bytes): Likewise.
9354 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
9355 Likewise.
9356 * lib/bitset.h (bitset_bytes): Likewise.
9357 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
9358 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
9359 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9360 * lib/ebitset.c (ebitset_bytes): Likewise.
9361 * lib/ebitset.h (ebitset_bytes): Likewise.
9362 * lib/lbitset.c (lbitset_bytes): Likewise.
9363 * lib/lbitset.h (lbitset_bytes): Likewise.
9364
9365 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
9366 abitset_subset_p, abitset_disjoint_p, abitset_and,
9367 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
9368 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
9369 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
9370 abitset_or_and, abitset_or_and_cmp):
9371 Use bitset_windex instead of unsigned int.
9372 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9373 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
9374 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
9375 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
9376 Likewise.
9377 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
9378
9379 * lib/bitset.c (bitset_print):
9380 Use proper printf formats for widths of integer types.
9381 * lib/bitset_stats.c (bitset_percent_histogram_print,
9382 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
9383 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9384 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9385 * lib/lbitset.c (lbitset_bytes): Likewise.
9386
9387 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
9388 BITSET_SIZE_MAX): New macros.
9389 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
9390 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
9391 to BITSET_WINDEX_MAX.
9392
9393 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
9394 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
9395 since we now return the bitset_bindex type (not int).
9396
9397 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
9398 when computing sizes.
9399 * lib/ebitset.c (ebitset_elts_grow): Likewise.
9400
9401 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
9402 and avoid cast to unsigned.
9403
9404 2002-09-30 Akim Demaille <akim@epita.fr>
9405
9406 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9407 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
9408 Updates from Michael Hayes.
9409
9410 2002-09-30 Art Haas <ahaas@neosoft.com>
9411
9412 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
9413 invocations.
9414 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
9415 defined.
9416
9417 2002-09-27 Akim Demaille <akim@epita.fr>
9418
9419 Version 1.49c.
9420
9421 2002-09-27 Akim Demaille <akim@epita.fr>
9422
9423 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
9424 (Because of AC_LIBSOURCE).
9425
9426 2002-09-27 Akim Demaille <akim@epita.fr>
9427
9428 Playing with Autoscan.
9429
9430 * configure.ac: Remove the old LIBOBJ tweaks.
9431 (AC_REPLACE_FUNCS): Add strrchr and strtol.
9432 * lib/strrchr.c: New.
9433 * lib/strtol.c: New, from the Coreutils 4.5.1.
9434
9435 2002-09-27 Akim Demaille <akim@epita.fr>
9436
9437 Playing with Autoscan.
9438
9439 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
9440 * lib/Makefile.am (libbison_a_SOURCES): No longer include
9441 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
9442 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
9443 Coreutils 4.5.1.
9444
9445 2002-09-24 Akim Demaille <akim@epita.fr>
9446
9447 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
9448 (Frequently Asked Questions, Parser Stack Overflow): New.
9449
9450 2002-09-13 Akim Demaille <akim@epita.fr>
9451
9452 Playing with autoscan.
9453
9454 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
9455 * src/files.c (skeleton_find): Remove, unused.
9456 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
9457 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
9458
9459 2002-09-13 Akim Demaille <akim@epita.fr>
9460
9461 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
9462 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
9463
9464 2002-09-13 Akim Demaille <akim@epita.fr>
9465
9466 * configure.ac: Require 2.54.
9467 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
9468 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
9469 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
9470 Remove, provided by Autoconf macros.
9471
9472 2002-09-12 Akim Demaille <akim@epita.fr>
9473
9474 * m4/prereq.m4: Update, from Coreutils 4.5.1.
9475
9476 2002-09-12 Akim Demaille <akim@epita.fr>
9477
9478 * m4/prereq.m4: Update, from Fileutils 4.1.5.
9479 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
9480 Reported by Martin Mokrejs.
9481
9482 2002-09-10 Akim Demaille <akim@epita.fr>
9483
9484 * src/parse-gram.y: Associate a human readable string to each
9485 token type.
9486 * tests/regression.at (Invalid inputs): Adjust.
9487
9488 2002-09-10 Gary V. Vaughan <gary@gnu.org>
9489
9490 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
9491 with an Autoconf-2.5x style configure.ac.
9492
9493 2002-09-06 Paul Eggert <eggert@twinsun.com>
9494
9495 * doc/bison.texinfo (Conditions): Make explicit that the GPL
9496 exception applies only to yacc.c. This is a modification of a
9497 patch originally suggested by Akim Demaille.
9498
9499 2002-09-06 Akim Demaille <akim@epita.fr>
9500
9501 * data/c.m4 (b4_copyright): Move the GPL exception comment from
9502 here to...
9503 * data/yacc.c: here.
9504
9505 * data/lalr1.cc (struct yyltype): Don't define it, since we use
9506 LocationType.
9507 (b4_ltype): Default to yy::Location from location.hh.
9508
9509 2002-09-04 Jim Meyering <jim@meyering.net>
9510
9511 * data/yacc.c: Guard the declaration of yytoknum also with
9512 `#ifdef YYPRINT', so it is declared only when used.
9513
9514 2002-09-04 Akim Demaille <akim@epita.fr>
9515
9516 * configure.in: Rename as...
9517 * configure.ac: this.
9518 Bump to 1.49c.
9519
9520 2002-09-04 Akim Demaille <akim@epita.fr>
9521
9522 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
9523 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
9524 translate maintainer only messages.
9525
9526 2002-08-12 Paul Eggert <eggert@twinsun.com>
9527
9528 Version 1.49b.
9529
9530 * Makefile.am (SUBDIRS): Remove intl.
9531 (DISTCLEANFILES): Remove.
9532 * NEWS: Mention that GNU M4 is now required. Clarify what is
9533 meant by "larger grammars". Mention the pt_BR translation.
9534 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
9535 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
9536 Bump version from 0.11.2 to 0.11.5.
9537 (BISON_PREREQ_STAGE): Remove.
9538 (AM_GNU_GETTEXT): Use external gettext.
9539 (AC_OUTPUT): Remove intl/Makefile.
9540
9541 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
9542
9543 * data/glr.c: Include string.h, for strlen.
9544 (yyreportParseError): Use size_t for yysize.
9545 (yy_yypstack): No longer nested inside yypstates, as nested
9546 functions are not portable. Do not assume size_t is the
9547 same width as int.
9548 (yypstates): Do not assume that ptrdiff_t is the same width
9549 as int, and similarly for yyposn and YYINDEX.
9550
9551 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
9552
9553 * lib/Makefile.am (INCLUDES): Do not include from the intl
9554 directory, which has been removed.
9555 * src/Makefile.am (INCLUDES): Likewise.
9556
9557 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
9558 (bitsets_sources, additional_bitsets_sources, timevars_sources):
9559 New vars.
9560
9561 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
9562 * tests/Makefile.am (EXTRA_DIST): Likewise.
9563
9564 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
9565 Do not assume that bitset_windex is the same width as unsigned.
9566
9567 * lib/abitset.c (abitset_unused_clear): Do not assume that
9568 bitset_word is the same width as int.
9569 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
9570 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
9571 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
9572 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
9573 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
9574
9575 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
9576 portability to one's complement hosts!).
9577 * lib/ebitset.c (ebitset_op1): Likewise.
9578 * lib/lbitset.c (lbitset_op1): Likewise.
9579
9580 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
9581 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9582 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
9583 Sync with fileutils.
9584 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
9585 lib/gettext.h: Sync with diffutils.
9586
9587 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
9588 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
9589
9590 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
9591 PROTOTYPES to check for prototypes, and "defined __STDC__" to
9592 check for void *.
9593
9594 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
9595 size_t; the old version tried to do this but casted improperly.
9596 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
9597 (bitset_test): Now returns int, not unsigned long.
9598
9599 * lib/bitset_stats.c: Include "gettext.h".
9600 (_): New macro.
9601 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
9602 name locals "index", as it generates unnecessary warnings on some
9603 hosts that have an "index" function.
9604
9605 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
9606 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
9607 they need translation.
9608 * src/LR0.c (state_list_append, new_itemsets, get_state,
9609 append_states, generate_states): Likewise.
9610 * src/assoc.c (assoc_to_string): Likewise.
9611 * src/closure.c (print_closure, set_firsts, closure): Likewise.
9612 * src/gram.c (grammar_dump): Likewise.
9613 * src/injections.c (injections_compute): Likewise.
9614 * src/lalr.c (lookaheads_print): Likewise.
9615 * src/relation.c (relation_transpose): Likewise.
9616 * src/scan-gram.l: Likewise.
9617 * src/tables.c (table_grow, pack_vector): Likewise.
9618
9619 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
9620 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
9621 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
9622 * m4/mbstate_t.m4: Sync with fileutils.
9623 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
9624
9625 * po/LINGUAS: Add pt_BR.
9626 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
9627 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
9628 lib/timevar.c.
9629 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
9630 manual recommends.
9631 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
9632
9633 * src/complain.c (strerror_r): Remove decl; not needed.
9634 (strerror): Use same pattern as ../lib/error.c.
9635
9636 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
9637
9638 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
9639
9640 * src/main.c (main): Cast result of bindtextdomain and textdomain
9641 to void, to avoid a GCC warning when --disable-nls is in effect.
9642
9643 * src/scan-gram.l: Use strings rather than escapes when possible,
9644 to minimize the number of warnings from xgettext.
9645 (handle_action_dollar, handle_action_at): Don't use isdigit,
9646 as it mishandles negative chars and it may not work as expected
9647 outside the C locale.
9648
9649 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
9650 this is a GCC extension and is not portable to other compilers.
9651
9652 * src/system.h (alloca): Use same pattern as ../lib/error.c.
9653 Do not include <ctype.h>; no longer needed.
9654 Do not include <malloc.h>; no longer needed (and generates
9655 warnings on OpenBSD 3.0).
9656
9657 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
9658 it's not portable.
9659
9660 * tests/regression.at: Do not use 'cc -c input.c -o input';
9661 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
9662
9663 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
9664 exit status as failure, not just exit status 1. Sun C exits
9665 with status 2 sometimes.
9666
9667 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
9668 Use it for the two large tests.
9669
9670 2002-08-02 Akim Demaille <akim@epita.fr>
9671
9672 * src/conflicts.c (conflicts_output): Don't output rules never
9673 reduced here, since anyway that computation doesn't work.
9674 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
9675 (rule_useless_p, rule_never_reduced_p): New.
9676 (grammar_rules_partial_print): Use a filter instead of a range.
9677 Display the title only if needed.
9678 (grammar_rules_print): Adjust.
9679 (grammar_rules_never_reduced_report): New.
9680 * src/tables.c (action_row): Move the computation of rules never
9681 reduced to...
9682 (token_actions): here.
9683 * src/main.c (main): Make the parser before making the report, so
9684 that rules never reduced are computed.
9685 Call grammar_rules_never_reduced_report.
9686 * src/print.c (print_results): Report rules never reduced.
9687 * tests/conflicts.at, tests/reduce.at: Adjust.
9688
9689 2002-08-01 Akim Demaille <akim@epita.fr>
9690
9691 Instead of attaching lookaheads and duplicating the rules being
9692 reduced by a state, attach the lookaheads to the reductions.
9693
9694 * src/state.h (state_t): Remove the `lookaheads',
9695 `lookaheads_rule' member.
9696 (reductions_t): Add a `lookaheads' member.
9697 Use a regular array for the `rules'.
9698 * src/state.c (reductions_new): Initialize the lookaheads member
9699 to 0.
9700 (state_rule_lookaheads_print): Adjust.
9701 * src/state.h, src/state.c (state_reductions_find): New.
9702 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
9703 (count_rr_conflicts): Adjust.
9704 * src/lalr.c (LArule): Remove.
9705 (add_lookback_edge): Adjust.
9706 (state_lookaheads_count): New.
9707 (states_lookaheads_initialize): Merge into...
9708 (initialize_LA): this.
9709 (lalr_free): Adjust.
9710 * src/main.c (main): Don't free nullable and derives too early: it
9711 is used by --verbose.
9712 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
9713
9714 2002-08-01 Akim Demaille <akim@epita.fr>
9715
9716 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
9717 `rule_number_t**'.
9718 (set_derives, free_derives): Rename as...
9719 (derives_compute, derives_free): this.
9720 Adjust all dependencies.
9721 * src/nullable.c (set_nullable, free_nullable): Rename as...
9722 (nullable_compute, nullable_free): these.
9723 (rule_list_t): Store rule_t *, not rule_number_t.
9724 * src/state.c (state_rule_lookaheads_print): Directly compare rule
9725 pointers, instead of their numbers.
9726 * src/main.c (main): Call nullable_free, and derives_free earlier,
9727 as they were lo longer used.
9728
9729 2002-08-01 Akim Demaille <akim@epita.fr>
9730
9731 * lib/timevar.c (get_time): Include children time.
9732 * src/lalr.h (LA, LArule): Don't export them: used with the
9733 state_t.
9734 * src/lalr.c (LA, LArule): Static.
9735 * src/lalr.h, src/lalr.c (lalr_free): New.
9736 * src/main.c (main): Call it.
9737 * src/tables.c (pack_vector): Check whether loc is >= to the
9738 table_size, not >.
9739 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
9740 (tables_generate): do it, since that's also it which allocates
9741 them.
9742 Don't free LA and LArule, main does.
9743
9744 2002-07-31 Akim Demaille <akim@epita.fr>
9745
9746 Separate parser tables computation and output.
9747
9748 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
9749 (conflict_list, conflict_list_cnt, table, check, table_ninf)
9750 (yydefgoto, yydefact, high): Move to...
9751 * src/tables.h, src/tables.c: here.
9752 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9753 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9754 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
9755 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
9756 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
9757 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
9758 (action_row, save_row, token_actions, save_column, default_goto)
9759 (goto_actions, sort_actions, matching_state, pack_vector)
9760 (table_ninf_remap, pack_table, prepare_actions): Move to...
9761 * src/tables.c: here.
9762 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
9763 * src/output.c (token_actions, output_base, output_conflicts)
9764 (output_check): Merge into...
9765 (prepare_actions): this.
9766 (actions_output): Rename as...
9767 (user_actions_output): this.
9768 * src/main.c (main): Call tables_generate and tables_free.
9769
9770 2002-07-31 Akim Demaille <akim@epita.fr>
9771
9772 Steal GCC's --time-report support.
9773
9774 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
9775 stolen/adjusted from GCC.
9776 * m4/stage.m4: Remove time related checks.
9777 * m4/timevar.m4: New.
9778 * configure.in: Adjust.
9779 * src/system.h: Adjust to using timevar.h.
9780 * src/getargs.h, src/getargs.c: Support trace_time for
9781 --trace=time.
9782 * src/main.c (stage): Remove.
9783 (main): Replace `stage' invocations with timevar calls.
9784 * src/output.c: Insert pertinent timevar calls.
9785
9786 2002-07-31 Akim Demaille <akim@epita.fr>
9787
9788 Let --trace have arguments.
9789
9790 * src/getargs.h (enum trace_e): New.
9791 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
9792 (long_options, short_options): --trace/-T takes an optional
9793 argument.
9794 Change all the uses of trace_flag to reflect the new flags.
9795 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
9796
9797 Strengthen `stage' portability.
9798
9799 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
9800 * configure.in: Use it.
9801 Don't check for malloc.h and sys/times.h.
9802 * src/system.h: Include them when appropriate.
9803 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
9804 times and struct tms are available.
9805
9806 2002-07-30 Akim Demaille <akim@epita.fr>
9807
9808 In verbose parse error message, don't report `error' as an
9809 expected token.
9810 * tests/actions.at (Printers and Destructors): Adjust.
9811 * tests/calc.at (Calculator $1): Adjust.
9812 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
9813 error message, do not report the parser accepts the error token in
9814 that state.
9815
9816 2002-07-30 Akim Demaille <akim@epita.fr>
9817
9818 Normalize conflict related messages.
9819
9820 * src/complain.h, src/complain.c (warn, complain): New.
9821 * src/conflicts.c (conflicts_print): Use them.
9822 (conflict_report_yacc): New, extracted from...
9823 (conflicts_print): here.
9824 * tests/conflicts.at, tests/existing.at: Adjust.
9825
9826 2002-07-30 Akim Demaille <akim@epita.fr>
9827
9828 Report rules which are never reduced by the parser: those hidden
9829 by conflicts.
9830
9831 * src/LR0.c (save_reductions): Don't make the final state too
9832 different: save its reduction (accept) instead of having a state
9833 without any action (no shift or goto, no reduce).
9834 Note: the final state is now a ``regular'' state, i.e., the
9835 parsers now contain `reduce 0' as default reduction.
9836 Nevertheless, since they decide to `accept' when yystate =
9837 final_state, they still will not reduce rule 0.
9838 * src/print.c (print_actions, print_reduction): Adjust.
9839 * src/output.c (action_row): Track reduced rules.
9840 (token_actions): Report rules never reduced.
9841 * tests/conflicts.at, tests/regression.at: Adjust.
9842
9843 2002-07-30 Akim Demaille <akim@epita.fr>
9844
9845 `stage' was accidently included in a previous patch.
9846 Initiate its autoconfiscation.
9847
9848 * configure.in: Look for malloc.h and sys/times.h.
9849 * src/main.c (stage): Adjust.
9850 Report only when trace_flag.
9851
9852 2002-07-29 Akim Demaille <akim@epita.fr>
9853
9854 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
9855 state_number_t.
9856 (errs_t): symbol_t*, not symbol_number_t.
9857 (reductions_t): rule_t*, not rule_number_t.
9858 (FOR_EACH_SHIFT): New.
9859 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
9860 * src/print.c, src/print_graph.c: Adjust.
9861
9862 2002-07-29 Akim Demaille <akim@epita.fr>
9863
9864 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
9865
9866 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
9867 (endtoken, accept): these.
9868 * src/reader.c (reader): Set endtoken's default tag to "$end".
9869 Set undeftoken's tag to "$undefined" instead of "$undefined.".
9870 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
9871 Adjust.
9872
9873 2002-07-29 Akim Demaille <akim@epita.fr>
9874
9875 * src/reduce.c (reduce_grammar): When the language is empty,
9876 complain about the start symbol, not the axiom.
9877 Use its location.
9878 * tests/reduce.at (Empty Language): New.
9879
9880 2002-07-26 Akim Demaille <akim@epita.fr>
9881
9882 * src/reader.h, src/reader.c (gram_error): ... can't get
9883 yycontrol without making too strong assumptions on the parser
9884 itself.
9885 * src/output.c (prepare_tokens): Use the real 0th value of
9886 token_translations instead of `0'.
9887 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
9888 visible here.
9889 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
9890 for the time being: %locations ought to provide it to yyerror.
9891
9892 2002-07-25 Akim Demaille <akim@epita.fr>
9893
9894 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
9895 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
9896 * tests/regression.at (Web2c Actions): Adjust.
9897
9898 2002-07-25 Akim Demaille <akim@epita.fr>
9899
9900 Stop storing rules from 1 to nrules + 1.
9901
9902 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
9903 * src/nullable.c, src/output.c, src/print.c, src/reader.c
9904 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
9905 Iterate from 0 to nrules.
9906 Use rule_number_as_item_number and item_number_as_rule_number.
9907 Adjust to `derive' now containing possibly 0.
9908 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
9909 Handle the `- 1' part in rule numbers from/to item numbers.
9910 * src/conflicts.c (log_resolution): Fix the message which reversed
9911 shift and reduce.
9912 * src/output.c (action_row): Initialize default_rule to -1.
9913 (token_actions): Adjust.
9914 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
9915 expected output.
9916 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
9917
9918 2002-07-25 Akim Demaille <akim@epita.fr>
9919
9920 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
9921 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
9922 (b4_c_knr_arg_decl): New.
9923 * data/yacc.c: Use it to define yysymprint, yydestruct, and
9924 yyreport_parse_error.
9925
9926 2002-07-25 Akim Demaille <akim@epita.fr>
9927
9928 * data/yacc.c (yyreport_parse_error): New, extracted from...
9929 (yyparse): here.
9930 (yydestruct, yysymprint): Move above yyparse.
9931 Be K&R compliant.
9932
9933 2002-07-25 Akim Demaille <akim@epita.fr>
9934
9935 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
9936 replace...
9937 (b4_sint_type, b4_uint_type): these.
9938 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
9939 * tests/regression.at (Web2c Actions): Adjust.
9940
9941 2002-07-25 Akim Demaille <akim@epita.fr>
9942
9943 * src/gram.h (TIEM_NUMBER_MAX): New.
9944 (item_number_of_rule_number, rule_number_of_item_number): Rename
9945 as...
9946 (rule_number_as_item_number, item_number_as_rule_number): these.
9947 Adjust dependencies.
9948 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9949 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9950 (symbol_number_to_vector_number): New.
9951 (order): Of vector_number_t* type.
9952 (base_t, BASE_MAX, BASE_MIN): New.
9953 (froms, tos, width, pos, check): Of base_t type.
9954 (action_number_t, ACTION_MIN, ACTION_MAX): New.
9955 (actrow): Of action_number_t type.
9956 (conflrow): Of unsigned int type.
9957 (table_ninf, base_ninf): New.
9958 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
9959 (muscle_insert_int_table, muscle_insert_base_table)
9960 (muscle_insert_rule_number_table): New.
9961 (prepare_tokens): Output `toknum' as int_table.
9962 (action_row): Returns a rule_number_t.
9963 Use ACTION_MIN, not SHRT_MIN.
9964 (token_actions): yydefact is rule_number_t*.
9965 (table_ninf_remap): New.
9966 (pack_table): Use it for `base' and `table'.
9967 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
9968 replaced with...
9969 (YYPACT_NINF, YYTABLE_NINF): these.
9970 (yypact, yytable): Compute their types instead of hard-coded
9971 `short'.
9972 * tests/regression.at (Web2c Actions): Adjust.
9973
9974 2002-07-19 Akim Demaille <akim@epita.fr>
9975
9976 * src/scan-gram.l (id): Can start with an underscore.
9977
9978 2002-07-16 Akim Demaille <akim@epita.fr>
9979
9980 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
9981 Adjust all former `associativity' dependencies.
9982 * src/symtab.c (symbol_new): Default associativity is `undef', not
9983 `right'.
9984 (symbol_check_alias_consistence): Adjust.
9985
9986 2002-07-09 Akim Demaille <akim@epita.fr>
9987
9988 * doc/bison.texinfo: Properly set the ``header'' part.
9989 Use @dircategory ``GNU programming tools'' as per Texinfo's
9990 documentation.
9991 Use @copying.
9992
9993 2002-07-09 Akim Demaille <akim@epita.fr>
9994
9995 * lib/quotearg.h: Protect against multiple inclusions.
9996 * src/location.h (location_t): Add a `file' member.
9997 (LOCATION_RESET, LOCATION_PRINT): Adjust.
9998 * src/complain.c (warn_at, complain_at, fatal_at): Drop
9999 `error_one_per_line' support.
10000
10001 2002-07-09 Akim Demaille <akim@epita.fr>
10002
10003 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
10004 * src/reader.c (lineno): Remove.
10005 Adjust all dependencies.
10006 (get_merge_function): Take a location and use complain_at.
10007 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
10008 * tests/regression.at (Invalid inputs, Mixing %token styles):
10009 Adjust.
10010
10011 2002-07-09 Akim Demaille <akim@epita.fr>
10012
10013 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
10014 recovery rule, and forbid extensions when --yacc.
10015 (gram_error): Use complain_at.
10016 * src/reader.c (reader): Exit if there were parse errors.
10017
10018 2002-07-09 Akim Demaille <akim@epita.fr>
10019
10020 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
10021 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
10022 Reported by R Blake <blakers@mac.com>.
10023
10024 2002-07-09 Akim Demaille <akim@epita.fr>
10025
10026 * data/yacc.c: Output the copyright notive in the header.
10027
10028 2002-07-03 Akim Demaille <akim@epita.fr>
10029
10030 * src/output.c (froms, tos): Are state_number_t.
10031 (save_column): sp, sp1, and sp2 are state_number_t.
10032 (prepare): Rename `final' as `final_state_number', `nnts' as
10033 `nterms_number', `nrules' as `rules_number', `nstates' as
10034 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
10035 unused.
10036 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
10037 * data/lalr1.cc (nsym_): Remove, unused.
10038
10039 2002-07-03 Akim Demaille <akim@epita.fr>
10040
10041 * src/lalr.h, src/lalr.c (goto_number_t): New.
10042 * src/lalr.c (goto_list_t): New.
10043 Propagate them.
10044 * src/nullable.c (rule_list_t): New.
10045 Propagate.
10046 * src/types.h: Remove.
10047
10048 2002-07-03 Akim Demaille <akim@epita.fr>
10049
10050 * src/closure.c (print_fderives): Use rule_rhs_print.
10051 * src/derives.c (print_derives): Use rule_rhs_print.
10052 (rule_list_t): New, replaces `shorts'.
10053 (set_derives): Add comments.
10054 * tests/sets.at (Nullable, Firsts): Adjust.
10055
10056 2002-07-03 Akim Demaille <akim@epita.fr>
10057
10058 * src/output.c (prepare_actions): Free `tally' and `width'.
10059 (prepare_actions): Allocate and free `order'.
10060 * src/symtab.c (symbols_free): Free `symbols'.
10061 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
10062 * src/output.c (m4_invoke): Move to...
10063 * src/scan-skel.l: here.
10064 (<<EOF>>): Close yyout, and free its name.
10065
10066 2002-07-03 Akim Demaille <akim@epita.fr>
10067
10068 Fix some memory leaks, and fix a bug: state 0 was examined twice.
10069
10070 * src/LR0.c (new_state): Merge into...
10071 (state_list_append): this.
10072 (new_states): Merge into...
10073 (generate_states): here.
10074 (set_states): Don't ensure a proper `errs' state member here, do it...
10075 * src/conflicts.c (conflicts_solve): here.
10076 * src/state.h, src/state.c: Comment changes.
10077 (state_t): Rename member `shifts' as `transitions'.
10078 Adjust all dependencies.
10079 (errs_new): For consistency, also take the values as argument.
10080 (errs_dup): Remove.
10081 (state_errs_set): New.
10082 (state_reductions_set, state_transitions_set): Assert that no
10083 previous value was assigned.
10084 (state_free): New.
10085 (states_free): Use it.
10086 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
10087 temporary storage: use `errs' and `nerrs' as elsewhere.
10088 (set_conflicts): Allocate and free this `errs'.
10089
10090 2002-07-02 Akim Demaille <akim@epita.fr>
10091
10092 * lib/libiberty.h: New.
10093 * lib: Update the bitset implementation from upstream.
10094 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
10095 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
10096 * src/main.c: Adjust bitset stats calls.
10097
10098 2002-07-01 Paul Eggert <eggert@twinsun.com>
10099
10100 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
10101 char, so that negative chars don't collide with $.
10102
10103 2002-06-30 Akim Demaille <akim@epita.fr>
10104
10105 Have the GLR tests be `warning' checked, and fix the warnings.
10106
10107 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
10108 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
10109 (yyremoveDeletes): `yyi' and `yyj' are size_t.
10110 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
10111 (yyaddDeferredAction): static.
10112 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
10113 (yyreportParseError): yyprefix is const.
10114 yytokenp is used only when verbose.
10115 (yy__GNUC__): Replace with __GNUC__.
10116 (yypdumpstack): yyi is size_t.
10117 (yypreference): Un-yy local variables and arguments, to avoid
10118 clashes with `yyr1'. Anyway, we are not in the user name space.
10119 (yytname_size): be an int, as is compared with ints.
10120 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
10121 Use them.
10122 * tests/cxx-gram.at: Use quotation to protect $1.
10123 Use AT_COMPILE to enable warnings hunts.
10124 Prototype yylex and yyerror.
10125 `Use' argc.
10126 Include `string.h', not `strings.h'.
10127 Produce and prototype stmtMerge only when used.
10128 yylex takes a location.
10129
10130 2002-06-30 Akim Demaille <akim@epita.fr>
10131
10132 We spend a lot of time in quotearg, in particular when --verbose.
10133
10134 * src/symtab.c (symbol_get): Store a quoted version of the key.
10135 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
10136 Adjust all callers.
10137
10138 2002-06-30 Akim Demaille <akim@epita.fr>
10139
10140 * src/state.h (reductions_t): Rename member `nreds' as num.
10141 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
10142 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
10143
10144 2002-06-30 Akim Demaille <akim@epita.fr>
10145
10146 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
10147 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
10148 (shifts_to): Rename as...
10149 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
10150 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
10151 (TRANSITION_IS_DISABLED, transitions_to): these.
10152
10153 2002-06-30 Akim Demaille <akim@epita.fr>
10154
10155 * src/print.c (print_shifts, print_gotos): Merge into...
10156 (print_transitions): this.
10157 (print_transitions, print_errs, print_reductions): Align the
10158 lookaheads columns.
10159 (print_core, print_transitions, print_errs, print_state,
10160 print_grammar): Output empty lines separator before, not after.
10161 (state_default_rule_compute): Rename as...
10162 (state_default_rule): this.
10163 * tests/conflicts.at (Defaulted Conflicted Reduction),
10164 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
10165 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
10166
10167 2002-06-30 Akim Demaille <akim@epita.fr>
10168
10169 Display items as we display rules.
10170
10171 * src/gram.h, src/gram.c (rule_lhs_print): New.
10172 * src/gram.c (grammar_rules_partial_print): Use it.
10173 * src/print.c (print_core): Likewise.
10174 * tests/conflicts.at (Defaulted Conflicted Reduction),
10175 (Unresolved SR Conflicts): Adjust.
10176 (Unresolved SR Conflicts): Adjust and rename as...
10177 (Resolved SR Conflicts): this, as was meant.
10178 * tests/regression.at (Web2c Report): Adjust.
10179
10180 2002-06-30 Akim Demaille <akim@epita.fr>
10181
10182 * src/print.c (state_default_rule_compute): New, extracted from...
10183 (print_reductions): here.
10184 Pessimize, but clarify the code.
10185 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
10186
10187 2002-06-30 Akim Demaille <akim@epita.fr>
10188
10189 * src/output.c (action_row): Let default_rule be always a rule
10190 number.
10191
10192 2002-06-30 Akim Demaille <akim@epita.fr>
10193
10194 * src/closure.c (print_firsts, print_fderives, closure):
10195 Use BITSET_EXECUTE.
10196 * src/lalr.c (lookaheads_print): Likewise.
10197 * src/state.c (state_rule_lookaheads_print): Likewise.
10198 * src/print_graph.c (print_core): Likewise.
10199 * src/print.c (print_reductions): Likewise.
10200 * src/output.c (action_row): Likewise.
10201 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
10202
10203 2002-06-30 Akim Demaille <akim@epita.fr>
10204
10205 * src/print_graph.c: Use report_flag.
10206
10207 2002-06-30 Akim Demaille <akim@epita.fr>
10208
10209 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
10210 to...
10211 * src/relation.h, src/relation.c (traverse, relation_digraph)
10212 (relation_print, relation_transpose): New.
10213
10214 2002-06-30 Akim Demaille <akim@epita.fr>
10215
10216 * src/state.h, src/state.c (shifts_to): New.
10217 * src/lalr.c (build_relations): Use it.
10218
10219 2002-06-30 Akim Demaille <akim@epita.fr>
10220
10221 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
10222 (item_number_of_rule_number, rule_number_of_item_number): New.
10223 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
10224 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
10225 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
10226 Propagate their use.
10227 Much remains to be done, in particular wrt `shorts' from types.h.
10228
10229 2002-06-30 Akim Demaille <akim@epita.fr>
10230
10231 * src/symtab.c (symbol_new): Initialize the `printer' member.
10232
10233 2002-06-30 Akim Demaille <akim@epita.fr>
10234
10235 * src/LR0.c (save_reductions): Remove, replaced by...
10236 * src/state.h, src/state.c (state_reductions_set): New.
10237 (reductions, errs): Rename as...
10238 (reductions_t, errs_t): these.
10239 Adjust all dependencies.
10240
10241 2002-06-30 Akim Demaille <akim@epita.fr>
10242
10243 * src/LR0.c (state_list_t, state_list_append): New.
10244 (first_state, last_state): Now symbol_list_t.
10245 (this_state): Remove.
10246 (new_itemsets, append_states, save_reductions): Take a state_t as
10247 argument.
10248 (set_states, generate_states): Adjust.
10249 (save_shifts): Remove, replaced by...
10250 * src/state.h, src/state.c (state_shifts_set): New.
10251 (shifts): Rename as...
10252 (shifts_t): this.
10253 Adjust all dependencies.
10254 * src/state.h (state_t): Remove the `next' member.
10255
10256 2002-06-30 Akim Demaille <akim@epita.fr>
10257
10258 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
10259 escaped in slot 0.
10260
10261 2002-06-30 Akim Demaille <akim@epita.fr>
10262
10263 Use hash.h for the state hash table.
10264
10265 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
10266 (allocate_storage): Use state_hash_new.
10267 (free_storage): Use state_hash_free.
10268 (new_state, get_state): Adjust.
10269 * src/lalr.h, src/lalr.c (states): Move to...
10270 * src/states.h (state_t): Remove the `link' member, no longer
10271 used.
10272 * src/states.h, src/states.c: here.
10273 (state_hash_new, state_hash_free, state_hash_lookup)
10274 (state_hash_insert, states_free): New.
10275 * src/states.c (state_table, state_compare, state_hash): New.
10276 * src/output.c (output_actions): Do not free states now, since we
10277 still need to know the final_state number in `prepare', called
10278 afterwards. Do it...
10279 * src/main.c (main): here: call states_free after `output'.
10280
10281 2002-06-30 Akim Demaille <akim@epita.fr>
10282
10283 * src/state.h, src/state.c (state_new): New, extracted from...
10284 * src/LR0.c (new_state): here.
10285 * src/state.h (STATE_ALLOC): Move to...
10286 * src/state.c: here.
10287 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
10288 * src/state.h, src/state.c: here.
10289
10290 2002-06-30 Akim Demaille <akim@epita.fr>
10291
10292 * src/reader.c (gensym): Rename as...
10293 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
10294 (getsym): Rename as...
10295 (symbol_get): this.
10296
10297 2002-06-30 Akim Demaille <akim@epita.fr>
10298
10299 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
10300 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
10301 * src/output.c, src/print.c, src/print_graph.c: Propagate.
10302 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
10303
10304 2002-06-30 Akim Demaille <akim@epita.fr>
10305
10306 Make the test suite pass with warnings checked.
10307
10308 * tests/actions.at (Printers and Destructors): Improve.
10309 Avoid unsigned vs. signed issues.
10310 * tests/calc.at: Don't exercise the scanner here, do it...
10311 * tests/input.at (Torturing the Scanner): here.
10312
10313 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10314
10315 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
10316 reorganize first lines parallel to yacc.c.
10317
10318 2002-06-28 Akim Demaille <akim@epita.fr>
10319
10320 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
10321 (b4_token_enum, b4_token_defines): New, factored from...
10322 * data/lalr1.cc, data/yacc.c, glr.c: here.
10323
10324 2002-06-28 Akim Demaille <akim@epita.fr>
10325
10326 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
10327 unused variables.
10328 * src/output.c (merger_output): static.
10329
10330 2002-06-28 Akim Demaille <akim@epita.fr>
10331
10332 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
10333 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
10334 pacify GCC.
10335 * src/output.c (save_row): Initialize all the variables to pacify GCC.
10336
10337 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10338
10339 Accumulated changelog for new GLR parsing features.
10340
10341 * src/conflicts.c (count_total_conflicts): Change name to
10342 conflicts_total_count.
10343 * src/conflicts.h: Ditto.
10344 * src/output.c (token_actions): Use the new name.
10345 (output_conflicts): Change conflp => conflict_list_heads, and
10346 confl => conflict_list for better readability.
10347 * data/glr.c: Use the new names.
10348 * NEWS: Add self to GLR announcement.
10349
10350 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
10351
10352 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
10353 Akim Demaille.
10354
10355 * data/bison.glr: Change name to glr.c
10356 * data/glr.c: Renamed from bison.glr.
10357 * data/Makefile.am: Add glr.c
10358
10359 * src/getargs.c:
10360
10361 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
10362 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
10363
10364 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10365
10366 * data/bison.glr: Be sure to restore the
10367 current #line when returning to the skeleton contents after having
10368 exposed the input file's #line.
10369
10370 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10371
10372 * data/bison.glr: Bring up to date with changes to bison.simple.
10373
10374 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10375
10376 * data/bison.glr: Correct definitions that use b4_prefix.
10377 Various reformatting.
10378 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
10379 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
10380 yytokenp argument; now part of stack.
10381 (yychar): Define to behave as documented.
10382 (yyclearin): Ditto.
10383
10384 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10385
10386 * src/reader.h: Add declaration for free_merger_functions.
10387
10388 * src/reader.c (merge_functions): New variable.
10389 (get_merge_function): New function.
10390 (free_merger_functions): New function.
10391 (readgram): Check for %prec that is not followed by a symbol.
10392 Handle %dprec and %merge declarations.
10393 (packgram): Initialize dprec and merger fields in rules array.
10394
10395 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
10396 conflict_list_cnt, conflict_list_free): New variables.
10397 (table_grow): Also grow conflict_table.
10398 (prepare_rules): Output dprec and merger tables.
10399 (conflict_row): New function.
10400 (action_row): Output conflict lists for GLR parser. Don't use
10401 default reduction in conflicted states for GLR parser so that there
10402 are spaces for the conflict lists.
10403 (save_row): Also save conflict information.
10404 (token_actions): Allocate conflict list.
10405 (merger_output): New function.
10406 (pack_vector): Pack conflict table, too.
10407 (output_conflicts): New function to output yyconflp and yyconfl.
10408 (output_check): Allocate conflict_tos.
10409 (output_actions): Output conflict tables, also.
10410 (output_skeleton): Output b4_mergers definition.
10411 (prepare): Output b4_max_rhs_length definition.
10412 Use 'bison.glr' as default skeleton for GLR parsers.
10413
10414 * src/gram.c (glr_parser): New flag.
10415 (grammar_free): Call free_merger_functions.
10416
10417 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
10418 all pairs of conflicting reductions, rather than just all tokens
10419 causing conflicts. Needed to size conflict tables.
10420 (conflicts_output): Modify call to count_rr_conflicts for new
10421 interface.
10422 (conflicts_print): Ditto.
10423 (count_total_conflicts): New function.
10424
10425 * src/reader.h (merger_list): New type.
10426 (merge_functions): New variable.
10427
10428 * src/lex.h (tok_dprec, tok_merge): New token types.
10429
10430 * src/gram.h (rule_s): Add dprec and merger fields.
10431 (glr_parser): New flag.
10432
10433 * src/conflicts.h (count_total_conflicts): New function.
10434
10435 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
10436
10437 * doc/bison.texinfo (Generalized LR Parsing): New section.
10438 (GLR Parsers): New section.
10439 (Language and Grammar): Mention GLR parsing.
10440 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
10441 Correct typo ("tge" -> "the").
10442
10443 * data/bison.glr: New skeleton for GLR parsing.
10444
10445 * tests/cxx-gram.at: New tests for GLR parsing.
10446
10447 * tests/testsuite.at: Include cxx-gram.at.
10448
10449 * tests/Makefile.am: Add cxx-gram.at.
10450
10451 * src/parse-gram.y:
10452
10453 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
10454
10455 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
10456
10457 2002-06-27 Akim Demaille <akim@epita.fr>
10458
10459 * src/options.h, src/options.c: Remove.
10460 * src/getargs.c (short_options, long_options): New.
10461
10462 2002-06-27 Akim Demaille <akim@epita.fr>
10463
10464 * data/bison.simple, data/bison.c++: Rename as...
10465 * data/yacc.c, data/lalr1.cc: these.
10466 * doc/bison.texinfo (Environment Variables): Remove.
10467
10468 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
10469
10470 * src/getargs.c (report_argmatch): Initialize strtok().
10471
10472 2002-06-20 Akim Demaille <akim@epita.fr>
10473
10474 * data/bison.simple (b4_symbol_actions): New, replaces...
10475 (b4_symbol_destructor, b4_symbol_printer): these.
10476 (yysymprint): Be sure to call YYPRINT only for tokens, and using
10477 user token numbers.
10478
10479 2002-06-20 Akim Demaille <akim@epita.fr>
10480
10481 * data/bison.simple (yydestructor): Rename as...
10482 (yydestruct): this.
10483
10484 2002-06-20 Akim Demaille <akim@epita.fr>
10485
10486 * src/symtab.h, src/symtab.c (symbol_type_set)
10487 (symbol_destructor_set, symbol_precedence_set): The location is
10488 the last argument.
10489 Adjust all callers.
10490
10491 2002-06-20 Akim Demaille <akim@epita.fr>
10492
10493 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
10494 internals.
10495 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
10496 Takes a location.
10497 * src/symtab.h, src/symtab.c (symbol_class_set)
10498 (symbol_user_token_number_set): Likewise.
10499 Adjust all callers.
10500 Promote complain_at.
10501 * tests/input.at (Type Clashes): Adjust.
10502
10503 2002-06-20 Akim Demaille <akim@epita.fr>
10504
10505 * data/bison.simple (YYLEX): Fix the declaration when
10506 %pure-parser.
10507
10508 2002-06-20 Akim Demaille <akim@epita.fr>
10509
10510 * data/bison.simple (yysymprint): Don't print the token number,
10511 just its name.
10512 * tests/actions.at (Destructors): Rename as...
10513 (Printers and Destructors): this.
10514 Also exercise %printer.
10515
10516 2002-06-20 Akim Demaille <akim@epita.fr>
10517
10518 * data/bison.simple (YYDSYMPRINT): New.
10519 Use it to remove many of the #if YYDEBUG/if (yydebug).
10520
10521 2002-06-20 Akim Demaille <akim@epita.fr>
10522
10523 * src/symtab.h, src/symtab.c (symbol_t): printer and
10524 printer_location are new members.
10525 (symbol_printer_set): New.
10526 * src/parse-gram.y (PERCENT_PRINTER): New token.
10527 Handle its associated rule.
10528 * src/scan-gram.l: Adjust.
10529 (handle_destructor_at, handle_destructor_dollar): Rename as...
10530 (handle_symbol_code_at, handle_symbol_code_dollar): these.
10531 * src/output.c (symbol_printers_output): New.
10532 (output_skeleton): Call it.
10533 * data/bison.simple (yysymprint): New. Cannot be named yyprint
10534 since there are already many grammar files with a user `yyprint'.
10535 Replace the calls to YYPRINT to calls to yysymprint.
10536 * tests/calc.at: Adjust.
10537 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
10538 taking advantage of parser very internal details (stack size!).
10539
10540 2002-06-20 Akim Demaille <akim@epita.fr>
10541
10542 * src/scan-gram.l: Complete the scanner with the missing patterns
10543 to pacify Flex.
10544 Use `quote' and `symbol_tag_get' where appropriate.
10545
10546 2002-06-19 Akim Demaille <akim@epita.fr>
10547
10548 * tests/actions.at (Destructors): Augment to test locations.
10549 * data/bison.simple (yydestructor): Pass it the current location
10550 if locations are enabled.
10551 Prototype only when __STDC__ or C++.
10552 Change the argument names to move into the yy name space: there is
10553 user code here.
10554
10555 2002-06-19 Akim Demaille <akim@epita.fr>
10556
10557 * data/bison.simple (b4_pure_if): New.
10558 Use it instead of #ifdef YYPURE.
10559
10560 2002-06-19 Akim Demaille <akim@epita.fr>
10561
10562 * data/bison.simple (b4_location_if): New.
10563 Use it instead of #ifdef YYLSP_NEEDED.
10564
10565 2002-06-19 Akim Demaille <akim@epita.fr>
10566
10567 Prepare @$ in %destructor, but currently don't bind it in the
10568 skeleton, as %location use is not cleaned up yet.
10569
10570 * src/scan-gram.l (handle_dollar, handle_destructor_at)
10571 (handle_action_at): New.
10572 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
10573 a braced_code_t and a location as additional arguments.
10574 (handle_destructor_dollar): Instead of requiring `b4_eval', just
10575 unquote one when outputting `b4_dollar_dollar'.
10576 Adjust callers.
10577 * data/bison.simple (b4_eval): Remove.
10578 (b4_symbol_destructor): Adjust.
10579 * tests/input.at (Invalid @n): Adjust.
10580
10581 2002-06-19 Zack Weinberg <zack@codesourcery.com>
10582
10583 * doc/bison.texinfo: Document ability to have multiple
10584 prologue sections.
10585
10586 2002-06-18 Akim Demaille <akim@epita.fr>
10587
10588 * src/files.c (compute_base_names): When computing the output file
10589 names from the input file name, strip the directory part.
10590
10591 2002-06-18 Akim Demaille <akim@epita.fr>
10592
10593 * data/bison.simple.new: Comment changes.
10594 Reported by Andreas Schwab.
10595
10596 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
10597
10598 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
10599 there are no `label `yyoverflowlab' defined but not used' warnings
10600 when yyoverflow is defined.
10601
10602 2002-06-18 Akim Demaille <akim@epita.fr>
10603
10604 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
10605 new member.
10606 (symbol_destructor_set): Adjust.
10607 * src/output.c (symbol_destructors_output): Output the destructor
10608 locations.
10609 Output the symbol name.
10610 * data/bison.simple (b4_symbol_destructor): Adjust.
10611
10612 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
10613 and Akim Demaille <akim@epita.fr>
10614
10615 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
10616 what's left on the stack when the error recovery hits EOF.
10617 * tests/actions.at (Destructors): Complete to exercise this case.
10618
10619 2002-06-17 Akim Demaille <akim@epita.fr>
10620
10621 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
10622 arguments is really empty, not only equal to `[]'.
10623 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
10624 member.
10625 (symbol_destructor_set): New.
10626 * src/output.c (symbol_destructors_output): New.
10627 * src/reader.h (brace_code_t, current_braced_code): New.
10628 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
10629 (handle_dollar): Rename as...
10630 (handle_action_dollar): this.
10631 (handle_destructor_dollar): New.
10632 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
10633 (grammar_declaration): Use it.
10634 * data/bison.simple (yystos): Is always defined.
10635 (yydestructor): New.
10636 * tests/actions.at (Destructors): New.
10637 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
10638
10639 2002-06-17 Akim Demaille <akim@epita.fr>
10640
10641 * src/symlist.h, src/symlist.c (symbol_list_length): New.
10642 * src/scan-gram.l (handle_dollar, handle_at): Compute the
10643 rule_length only when needed.
10644 * src/output.c (actions_output, token_definitions_output): Output
10645 the full M4 block.
10646 * src/symtab.c: Don't access directly to the symbol tag, use
10647 symbol_tag_get.
10648 * src/parse-gram.y: Use symbol_list_free.
10649
10650 2002-06-17 Akim Demaille <akim@epita.fr>
10651
10652 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
10653 (symbol_list_prepend, get_type_name): Move to...
10654 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
10655 (symbol_list_prepend, symbol_list_n_type_name_get): here.
10656 Adjust all callers.
10657 (symbol_list_free): New.
10658 * src/scan-gram.l (handle_dollar): Takes a location.
10659 * tests/input.at (Invalid $n): Adjust.
10660
10661 2002-06-17 Akim Demaille <akim@epita.fr>
10662
10663 * src/reader.h, src/reader.c (symbol_list_new): Export it.
10664 (symbol_list_prepend): New.
10665 * src/parse-gram.y (%union): `list' is a new member.
10666 (symbols.1): New, replaces...
10667 (terms_to_prec.1, nterms_to_type.1): these.
10668 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
10669 Take a location as additional argument.
10670 Adjust all callers.
10671
10672 2002-06-15 Akim Demaille <akim@epita.fr>
10673
10674 * src/parse-gram.y: Move %token in the declaration section so that
10675 we don't depend upon CVS Bison.
10676
10677 2002-06-15 Akim Demaille <akim@epita.fr>
10678
10679 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
10680 * src/print.c (print_core): Use it.
10681
10682 2002-06-15 Akim Demaille <akim@epita.fr>
10683
10684 * src/conflicts.c (log_resolution): Accept the rule involved in
10685 the sr conflicts instead of the lookahead number that points to
10686 that rule.
10687 (flush_reduce): Accept the current lookahead vector as argument,
10688 instead of the index in LA.
10689 (resolve_sr_conflict): Accept the current number of lookahead
10690 bitset to consider for the STATE, instead of the index in LA.
10691 (set_conflicts): Adjust.
10692 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
10693
10694 2002-06-15 Akim Demaille <akim@epita.fr>
10695
10696 * src/state.h (state_t): Replace the `lookaheadsp' member, a
10697 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
10698 Adjust all dependencies.
10699 * src/lalr.c (initialize_lookaheads): Split into...
10700 (states_lookaheads_count, states_lookaheads_initialize): these.
10701 (lalr): Adjust.
10702
10703 2002-06-15 Akim Demaille <akim@epita.fr>
10704
10705 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
10706 out of...
10707 (grammar_rules_print): here.
10708 * src/reduce.c (reduce_output): Use it.
10709 * tests/reduce.at (Useless Rules, Reduced Automaton)
10710 (Underivable Rules): Adjust.
10711
10712 2002-06-15 Akim Demaille <akim@epita.fr>
10713
10714 Copy BYacc's nice way to report the grammar.
10715
10716 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
10717 New.
10718 Don't print the rules' location, it is confusing and useless.
10719 (rule_print): Use grammar_rhs_print.
10720 * src/print.c (print_grammar): Use grammar_rules_print.
10721
10722 2002-06-15 Akim Demaille <akim@epita.fr>
10723
10724 Complete and rationalize `useless thing' warnings.
10725
10726 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
10727 (symbol_tag_print): New.
10728 Use them everywhere in place of accessing directly the tag member.
10729 * src/gram.h, src/gram.c (rule_print): New.
10730 Use it where a rule used to be printed `by hand'.
10731 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
10732 (reduce_grammar_tables): Report the useless rules.
10733 (reduce_print): Useless things are a warning, not an error.
10734 Report it as such.
10735 * tests/reduce.at (Useless Nonterminals, Useless Rules):
10736 (Reduced Automaton, Underivable Rules): Adjust.
10737 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
10738 * tests/conflicts.at (Unresolved SR Conflicts)
10739 (Solved SR Conflicts): Adjust.
10740
10741 2002-06-15 Akim Demaille <akim@epita.fr>
10742
10743 Let symbols have a location.
10744
10745 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
10746 (getsym): Adjust.
10747 Adjust all callers.
10748 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
10749 Use location_t, not int.
10750 * src/symtab.c (symbol_check_defined): Take advantage of the
10751 location.
10752 * tests/regression.at (Invalid inputs): Adjust.
10753
10754 2002-06-15 Akim Demaille <akim@epita.fr>
10755
10756 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
10757 (input): Don't try to initialize yylloc here, do it in the
10758 scanner.
10759 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
10760 * src/gram.h (rule_t): Change line and action_line into location
10761 and action_location, of location_t type.
10762 Adjust all dependencies.
10763 * src/location.h, src/location.c (empty_location): New.
10764 * src/reader.h, src/reader.c (grammar_start_symbol_set)
10765 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
10766 (grammar_current_rule_symbol_append)
10767 (grammar_current_rule_action_append): Expect a location as argument.
10768 * src/reader.c (grammar_midrule_action): Adjust to attach an
10769 action's location as dummy symbol location.
10770 * src/symtab.h, src/symtab.c (startsymbol_location): New.
10771 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
10772 the line numbers.
10773
10774 2002-06-14 Akim Demaille <akim@epita.fr>
10775
10776 Grammar declarations may be found in the grammar section.
10777
10778 * src/parse-gram.y (rules_or_grammar_declaration): New.
10779 (declarations): Each declaration may end with a semicolon, not
10780 just...
10781 (grammar_declaration): `"%union"'.
10782 (grammar): Branch to rules_or_grammar_declaration.
10783
10784 2002-06-14 Akim Demaille <akim@epita.fr>
10785
10786 * src/main.c (main): Invoke scanner_free.
10787
10788 2002-06-14 Akim Demaille <akim@epita.fr>
10789
10790 * src/output.c (m4_invoke): Extracted from...
10791 (output_skeleton): here.
10792 Free tempfile.
10793
10794 2002-06-14 Akim Demaille <akim@epita.fr>
10795
10796 * src/parse-gram.y (directives, directive, gram)
10797 (grammar_directives, precedence_directives, precedence_directive):
10798 Rename as...
10799 (declarations, declaration, grammar, grammar_declaration)
10800 (precedence_declaration, precedence_declarator): these.
10801 (symbol_declaration): New.
10802
10803 2002-06-14 Akim Demaille <akim@epita.fr>
10804
10805 * src/files.c (action_obstack): Remove, unused.
10806 (output_obstack): Remove it, and all its dependencies, as it is no
10807 longer needed.
10808 * src/reader.c (epilogue_set): Build the epilogue in the
10809 muscle_obstack.
10810 * src/output.h, src/output.c (muscle_obstack): Move to...
10811 * src/muscle_tab.h, src/muscle_tab.h: here.
10812 (muscle_init): Initialize muscle_obstack.
10813 (muscle_free): New.
10814 * src/main.c (main): Call it.
10815
10816 2002-06-14 Akim Demaille <akim@epita.fr>
10817
10818 * src/location.h: New, extracted from...
10819 * src/reader.h: here.
10820 * src/Makefile.am (noinst_HEADERS): Merge into
10821 (bison_SOURCES): this.
10822 Add location.h.
10823 * src/parse-gram.y: Use location_t instead of Bison's.
10824 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
10825 Use location_t instead of ints.
10826
10827 2002-06-14 Akim Demaille <akim@epita.fr>
10828
10829 * data/bison.simple, data/bison.c++: Be sure to restore the
10830 current #line when returning to the skeleton contents after having
10831 exposed the input file's #line.
10832
10833 2002-06-12 Akim Demaille <akim@epita.fr>
10834
10835 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
10836 eager.
10837 * tests/actions.at (Exotic Dollars): New.
10838
10839 2002-06-12 Akim Demaille <akim@epita.fr>
10840
10841 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
10842 ['"/] too eagerly.
10843 * tests/input.at (Torturing the Scanner): New.
10844
10845 2002-06-11 Akim Demaille <akim@epita.fr>
10846
10847 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
10848 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
10849 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
10850 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
10851 * src/reader.c (reader): Use it.
10852
10853 2002-06-11 Akim Demaille <akim@epita.fr>
10854
10855 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
10856 Adjust all callers.
10857 (scanner_last_string_free): New.
10858
10859 2002-06-11 Akim Demaille <akim@epita.fr>
10860
10861 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
10862 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
10863 (last_string, YY_OBS_FREE): New.
10864 Use them when returning an ID.
10865
10866 2002-06-11 Akim Demaille <akim@epita.fr>
10867
10868 Have Bison grammars parsed by a Bison grammar.
10869
10870 * src/reader.c, src/reader.h (prologue_augment): New.
10871 * src/reader.c (copy_definition): Remove.
10872
10873 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
10874 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
10875 (grammar_current_rule_prec_set, grammar_current_rule_check)
10876 (grammar_current_rule_symbol_append)
10877 (grammar_current_rule_action_append): Export.
10878 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
10879 (symbol_list_action_append): Remove.
10880 Hook the routines from reader.
10881 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
10882 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
10883
10884 * src/reader.c (read_declarations): Remove, unused.
10885
10886 * src/parse-gram.y: Handle the epilogue.
10887 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
10888 (grammar_start_symbol_set): this.
10889 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
10890 * src/reader.c (readgram): Remove, unused.
10891 (reader): Adjust to insert eoftoken and axiom where appropriate.
10892
10893 * src/reader.c (copy_dollar): Replace with...
10894 * src/scan-gram.h (handle_dollar): this.
10895 * src/parse-gram.y: Remove `%thong'.
10896
10897 * src/reader.c (copy_at): Replace with...
10898 * src/scan-gram.h (handle_at): this.
10899
10900 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
10901 New.
10902
10903 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
10904 time being.
10905
10906 * src/reader.h, src/reader.c (grammar_rule_end): New.
10907
10908 * src/parse.y (current_type, current_class): New.
10909 Implement `%nterm', `%token' support.
10910 Merge `%term' into `%token'.
10911 (string_as_id): New.
10912 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
10913 type name.
10914
10915 * src/parse-gram.y: Be sure to handle properly the beginning of
10916 rules.
10917
10918 * src/parse-gram.y: Handle %type.
10919 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
10920
10921 * src/parse-gram.y: More directives support.
10922 * src/options.c: No longer handle source directives.
10923
10924 * src/parse-gram.y: Fix %output.
10925
10926 * src/parse-gram.y: Handle %union.
10927 Use the prologue locations.
10928 * src/reader.c (parse_union_decl): Remove.
10929
10930 * src/reader.h, src/reader.c (epilogue_set): New.
10931 * src/parse-gram.y: Use it.
10932
10933 * data/bison.simple, data/bison.c++: b4_stype is now either not
10934 defined, then default to int, or to the contents of %union,
10935 without `union' itself.
10936 Adjust.
10937 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
10938
10939 * src/output.c (actions_output): Don't output braces, as they are
10940 already handled by the scanner.
10941
10942 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
10943 characters to themselves.
10944
10945 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
10946 that the epilogue has a proper #line.
10947
10948 * src/parse-gram.y: Handle precedence/associativity.
10949
10950 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
10951 a terminal.
10952 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
10953 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
10954 at all to define terminals that cannot be emitted.
10955
10956 * src/scan-gram.l: Escape M4 characters.
10957
10958 * src/scan-gram.l: Working properly with escapes in user
10959 strings/characters.
10960
10961 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
10962 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
10963 grammar.
10964 Use more modest sizes, as for the time being the parser does not
10965 release memory, and therefore the process swallows a huge amount
10966 of memory.
10967
10968 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
10969 stricter %token grammar.
10970
10971 * src/symtab.h (associativity): Add `undef_assoc'.
10972 (symbol_precedence_set): Do nothing when passed an undef_assoc.
10973 * src/symtab.c (symbol_check_alias_consistence): Adjust.
10974
10975 * tests/regression.at (Invalid %directive): Remove, as it is now
10976 meaningless.
10977 (Invalid inputs): Adjust to the new error messages.
10978 (Token definitions): The new grammar doesn't allow too many
10979 eccentricities.
10980
10981 * src/lex.h, src/lex.c: Remove.
10982 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
10983 (copy_character, copy_string2, copy_string, copy_identifier)
10984 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
10985 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
10986 (parse_action): Remove.
10987 * po/POTFILES.in: Adjust.
10988
10989 2002-06-11 Akim Demaille <akim@epita.fr>
10990
10991 * src/reader.c (parse_action): Don't store directly into the
10992 rule's action member: return the action as a string.
10993 Don't require `rule_length' as an argument: compute it.
10994 (grammar_current_rule_symbol_append)
10995 (grammar_current_rule_action_append): New, eved out from
10996 (readgram): here.
10997 Remove `action_flag', `rulelength', unused now.
10998
10999 2002-06-11 Akim Demaille <akim@epita.fr>
11000
11001 * src/reader.c (grammar_current_rule_prec_set).
11002 (grammar_current_rule_check): New, eved out from...
11003 (readgram): here.
11004 Remove `xaction', `first_rhs': useless.
11005 * tests/input.at (Type clashes): New.
11006 * tests/existing.at (GNU Cim Grammar): Adjust.
11007
11008 2002-06-11 Akim Demaille <akim@epita.fr>
11009
11010 * src/reader.c (grammar_midrule_action): New, Eved out from
11011 (readgram): here.
11012
11013 2002-06-11 Akim Demaille <akim@epita.fr>
11014
11015 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
11016 New.
11017 (readgram): Use them as replacement of inlined code, crule and
11018 crule1.
11019
11020 2002-06-11 Akim Demaille <akim@epita.fr>
11021
11022 * src/reader.c (grammar_end, grammar_symbol_append): New.
11023 (readgram): Use them.
11024 Make the use of `p' as local as possible.
11025
11026 2002-06-10 Akim Demaille <akim@epita.fr>
11027
11028 GCJ's parser requires the tokens to be defined before the prologue.
11029
11030 * data/bison.simple: Output the token definition before the user's
11031 prologue.
11032 * tests/regression.at (Braces parsing, Duplicate string)
11033 (Mixing %token styles): Check the output from bison.
11034 (Early token definitions): New.
11035
11036 2002-06-10 Akim Demaille <akim@epita.fr>
11037
11038 * src/symtab.c (symbol_user_token_number_set): Don't complain when
11039 assigning twice the same user number to a token, so that we can
11040 use it in...
11041 * src/lex.c (lex): here.
11042 Also use `symbol_class_set' instead of hand written code.
11043 * src/reader.c (parse_assoc_decl): Likewise.
11044
11045 2002-06-10 Akim Demaille <akim@epita.fr>
11046
11047 * src/symtab.c, src/symtab.c (symbol_class_set)
11048 (symbol_user_token_number_set): New.
11049 * src/reader.c (parse_token_decl): Use them.
11050 Use a switch instead of ifs.
11051 Use a single argument.
11052
11053 2002-06-10 Akim Demaille <akim@epita.fr>
11054
11055 Remove `%thong' support as it is undocumented, unused, duplicates
11056 `%token's job, and creates useless e-mail traffic with people who
11057 want to know what it is, why it is undocumented, unused, and
11058 duplicates `%token's job.
11059
11060 * src/reader.c (parse_thong_decl): Remove.
11061 * src/options.c (option_table): Remove "thong".
11062 * src/lex.h (tok_thong): Remove.
11063
11064 2002-06-10 Akim Demaille <akim@epita.fr>
11065
11066 * src/symtab.c, src/symtab.c (symbol_type_set)
11067 (symbol_precedence_set): New.
11068 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
11069 (value_components_used): Remove, unused.
11070
11071 2002-06-09 Akim Demaille <akim@epita.fr>
11072
11073 Move symbols handling code out of the reader.
11074
11075 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
11076 (axiom): Move to...
11077 * src/symtab.h, src/symtab.c: here.
11078
11079 * src/gram.c (start_symbol): Remove: use startsymbol->number.
11080 * src/reader.c (startval): Rename as...
11081 * src/symtab.h, src/symtab.c (startsymbol): this.
11082 * src/reader.c: Adjust.
11083
11084 * src/reader.c (symbol_check_defined, symbol_make_alias)
11085 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11086 (token_translations_init)
11087 Move to...
11088 * src/symtab.c: here.
11089 * src/reader.c (packsymbols): Move to...
11090 * src/symtab.h, src/symtab.c (symbols_pack): here.
11091 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
11092 argument.
11093
11094 2002-06-03 Akim Demaille <akim@epita.fr>
11095
11096 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
11097 then statements.
11098
11099 2002-06-03 Akim Demaille <akim@epita.fr>
11100
11101 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
11102 structs with non literals.
11103 * src/scan-skel.l: never-interactive.
11104 * src/conflicts.c (enum conflict_resolution_e): No trailing
11105 comma.
11106 * src/getargs.c (usage): Split long literal strings.
11107 Reported by Hans Aberg.
11108
11109 2002-05-28 Akim Demaille <akim@epita.fr>
11110
11111 * data/bison.c++: Use C++ ostreams.
11112 (cdebug_): New member.
11113
11114 2002-05-28 Akim Demaille <akim@epita.fr>
11115
11116 * src/output.c (output_skeleton): Be sure to allocate enough room
11117 for `/' _and_ for `\0' in full_skeleton.
11118
11119 2002-05-28 Akim Demaille <akim@epita.fr>
11120
11121 * data/bison.c++: Catch up with bison.simple:
11122 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11123 and Paul Eggert <eggert@twinsun.com>: `error' handing.
11124 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
11125 and popping traces.
11126
11127 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11128
11129 * src/output.c (output_skeleton): Put an explicit path in front of
11130 the skeleton file name, rather than relying on the -I directory,
11131 to partially alleviate effects of having a skeleton file lying around
11132 in the current directory.
11133
11134 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11135
11136 * src/conflicts.c (log_resolution): Correct typo:
11137 obstack_printf should be obstack_fgrow1.
11138
11139 2002-05-26 Akim Demaille <akim@epita.fr>
11140
11141 * src/state.h (state_t): `solved_conflicts' is a new member.
11142 * src/LR0.c (new_state): Set it to 0.
11143 * src/conflicts.h, src/conflicts.c (print_conflicts)
11144 (free_conflicts, solve_conflicts): Rename as...
11145 (conflicts_print, conflicts_free, conflicts_solve): these.
11146 Adjust callers.
11147 * src/conflicts.c (enum conflict_resolution_e)
11148 (solved_conflicts_obstack): New, used by...
11149 (log_resolution): this.
11150 Adjust to attach the conflict resolution to each state.
11151 Complete the description with the precedence/associativity
11152 information.
11153 (resolve_sr_conflict): Adjust.
11154 * src/print.c (print_state): Output its solved_conflicts.
11155 * tests/conflicts.at (Unresolved SR Conflicts)
11156 (Solved SR Conflicts): Exercise --report=all.
11157
11158 2002-05-26 Akim Demaille <akim@epita.fr>
11159
11160 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11161 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11162 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
11163 (token_number_t, item_number_as_token_number)
11164 (token_number_as_item_number, muscle_insert_token_number_table):
11165 Rename as...
11166 (symbol_number_t, item_number_as_symbol_number)
11167 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
11168 these, since it is more appropriate.
11169
11170 2002-05-26 Akim Demaille <akim@epita.fr>
11171
11172 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
11173 `Error:' lines.
11174 * data/bison.simple (yystos) [YYDEBUG]: New.
11175 (yyparse) [YYDEBUG]: Display the symbols which are popped during
11176 error recovery.
11177 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
11178
11179 2002-05-25 Akim Demaille <akim@epita.fr>
11180
11181 * doc/bison.texinfo (Debugging): Split into...
11182 (Tracing): this new section, its former contents, and...
11183 (Understanding): this new section.
11184 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
11185 by...
11186 (report_flag): this.
11187 Adjust all dependencies.
11188 (report_args, report_types, report_argmatch): New.
11189 (usage, getargs): Report/support -r, --report.
11190 * src/options.h
11191 (struct option_table_struct): Rename as..,
11192 (struct option_table_s): this.
11193 Rename the `set_flag' member to `flag' to match with getopt_long's
11194 struct.
11195 * src/options.c (option_table): Split verbose into an entry for
11196 %verbose, and another for --verbose.
11197 Support --report/-r, so remove -r from the obsolete --raw.
11198 * src/print.c: Attach full item sets and lookaheads reports to
11199 report_flag instead of trace_flag.
11200 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
11201
11202 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11203 and Paul Eggert <eggert@twinsun.com>
11204
11205 * data/bison.simple (yyparse): Correct error handling to conform to
11206 POSIX and yacc. Specifically, after syntax error is discovered,
11207 do not reduce further before shifting the error token.
11208 Clean up the code a bit by removing the labels yyerrdefault,
11209 yyerrhandle, yyerrpop.
11210 * NEWS: Document the above.
11211
11212 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11213
11214 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
11215 type; it isn't always big enough, since it doesn't necessarily
11216 include non-terminals.
11217 (yytranslate): Expand definition of yy_token_number_type, so that
11218 the latter can be removed.
11219 (yy_token_number_type): Remove, only one use.
11220 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
11221 don't use TokenNumberType as element type.
11222
11223 * tests/regression.at: Modify expected output to agree with change
11224 to yyr1 and yytranslate.
11225
11226 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
11227
11228 * src/reader.c (parse_action): Use copy_character instead of
11229 obstack_1grow.
11230
11231 2002-05-13 Akim Demaille <akim@epita.fr>
11232
11233 * tests/regression.at (Token definitions): Prototype yylex and
11234 yyerror.
11235
11236 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11237
11238 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
11239 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
11240 32-bit arithmetic.
11241 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
11242
11243 2002-05-07 Akim Demaille <akim@epita.fr>
11244
11245 * tests/synclines.at: Be sure to prototype yylex and yyerror to
11246 avoid GCC warnings.
11247
11248 2002-05-07 Akim Demaille <akim@epita.fr>
11249
11250 Kill GCC warnings.
11251
11252 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
11253 over the RHS of each rule.
11254 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
11255 * src/state.h (state_t): Member `nitems' is unsigned short.
11256 * src/LR0.c (get_state): Adjust.
11257 * src/reader.c (packgram): Likewise.
11258 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
11259 `Type'.
11260 (muscle_insert_int_table): Remove, unused.
11261 (prepare_rules): Remove `max'.
11262
11263 2002-05-06 Akim Demaille <akim@epita.fr>
11264
11265 * src/closure.c (print_firsts): Display of the symbol tags.
11266 (bitmatrix_print): Move to...
11267 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
11268 here.
11269 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
11270
11271 2002-05-06 Akim Demaille <akim@epita.fr>
11272
11273 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
11274 hash_do_for_each.
11275
11276 2002-05-06 Akim Demaille <akim@epita.fr>
11277
11278 * src/LR0.c (new_state, get_state): Instead of using the global
11279 `kernel_size' and `kernel_base', have two new arguments:
11280 `core_size' and `core'.
11281 Adjust callers.
11282
11283 2002-05-06 Akim Demaille <akim@epita.fr>
11284
11285 * src/reader.c (packgram): No longer end `ritem' with a 0
11286 sentinel: it is not used.
11287
11288 2002-05-05 Akim Demaille <akim@epita.fr>
11289
11290 New experimental feature: display the lookaheads in the report and
11291 graph.
11292
11293 * src/print (print_core): When --trace-flag, display the rules
11294 lookaheads.
11295 * src/print_graph.c (print_core): Likewise.
11296 Swap the arguments.
11297 Adjust caller.
11298
11299 2002-05-05 Akim Demaille <akim@epita.fr>
11300
11301 * tests/torture.at (Many lookaheads): New test.
11302
11303 2002-05-05 Akim Demaille <akim@epita.fr>
11304
11305 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
11306 (GENERATE_MUSCLE_INSERT_TABLE): this.
11307 (output_int_table, output_unsigned_int_table, output_short_table)
11308 (output_token_number_table, output_item_number_table): Replace with...
11309 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
11310 (muscle_insert_short_table, muscle_insert_token_number_table)
11311 (muscle_insert_item_number_table): these.
11312 Adjust all callers.
11313 (prepare_tokens): Don't free `translations', since...
11314 * src/reader.h, src/reader.c (grammar_free): do it.
11315 Move to...
11316 * src/gram.h, src/gram.c (grammar_free): here.
11317 * data/bison.simple, data/bison.c++: b4_token_number_max is now
11318 b4_translate_max.
11319
11320 2002-05-05 Akim Demaille <akim@epita.fr>
11321
11322 * src/output.c (output_unsigned_int_table): New.
11323 (prepare_rules): `i' is unsigned.
11324 `prhs', `rline', `r2' are unsigned int.
11325 Rename muscle `rhs_number_max' as `rhs_max'.
11326 Output muscles `prhs_max', `rline_max', and `r2_max'.
11327 Free rline and r1.
11328 * data/bison.simple, data/bison.c++: Adjust to use these muscles
11329 to compute types instead of constant types.
11330 * tests/regression.at (Web2c Actions): Adjust.
11331
11332 2002-05-04 Akim Demaille <akim@epita.fr>
11333
11334 * src/symtab.h (SALIAS, SUNDEF): Rename as...
11335 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
11336 Adjust dependencies.
11337 * src/output.c (token_definitions_output): Be sure not to output a
11338 `#define 'a'' when fed with `%token 'a' "a"'.
11339 * tests/regression.at (Token definitions): New.
11340
11341 2002-05-03 Paul Eggert <eggert@twinsun.com>
11342
11343 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
11344 for K&R C.
11345
11346 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
11347
11348 * Makefile.am (SUBDIRS): Remove intl.
11349 (EXTRA_DIST): Add config/config.rpath.
11350
11351 2002-05-03 Akim Demaille <akim@epita.fr>
11352
11353 * data/bison.simple (m4_if): Don't output empty enums.
11354 And actually, output valid enum definitions :(.
11355
11356 2002-05-03 Akim Demaille <akim@epita.fr>
11357
11358 * configure.bat: Remove, completely obsolete.
11359 * Makefile.am (EXTRA_DIST): Adjust.
11360 Don't distribute config.rpath...
11361 * config/Makefile.am (EXTRA_DIST): Do it.
11362
11363 2002-05-03 Akim Demaille <akim@epita.fr>
11364
11365 * configure.in (GETTEXT_VERSION): New.
11366 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
11367
11368 2002-05-03 Akim Demaille <akim@epita.fr>
11369
11370 * data/bison.simple (b4_token_enum): New.
11371 (b4_token_defines): Use it to output tokens both as #define and
11372 enums.
11373 Suggested by Paul Eggert.
11374 * src/output.c (token_definitions_output): Don't output spurious
11375 white spaces.
11376
11377 2002-05-03 Akim Demaille <akim@epita.fr>
11378
11379 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11380
11381 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
11382
11383 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
11384 Update the stack class, give a try to deque as the default container.
11385
11386 2002-05-02 Akim Demaille <akim@epita.fr>
11387
11388 * data/bison.simple (yyparse): Do not implement @$ = @1.
11389 (YYLLOC_DEFAULT): Adjust to do it.
11390 * doc/bison.texinfo (Location Default Action): Fix.
11391
11392 2002-05-02 Akim Demaille <akim@epita.fr>
11393
11394 * src/reader.c (parse_braces): Merge into...
11395 (parse_action): this.
11396
11397 2002-05-02 Akim Demaille <akim@epita.fr>
11398
11399 * configure.in (ALL_LINGUAS): Remove.
11400 * po/LINGUAS, hr.po: New.
11401
11402 2002-05-02 Akim Demaille <akim@epita.fr>
11403
11404 Remove the so called hairy (semantic) parsers.
11405
11406 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
11407 * src/gram.h, src/gram.c (semantic_parser): Remove.
11408 (rule_t): Remove the guard and guard_line members.
11409 * src/lex.h (token_t): remove tok_guard.
11410 * src/options.c (option_table): Remove %guard and %semantic_parser
11411 support.
11412 * src/output.c, src/output.h (guards_output): Remove.
11413 (prepare): Adjust.
11414 (token_definitions_output): Don't output the `T'
11415 tokens (???).
11416 (output_skeleton): Don't output the guards.
11417 * src/files.c, src/files.c (attrsfile): Remove.
11418 * src/reader.c (symbol_list): Remove the guard and guard_line
11419 members.
11420 Adjust dependencies.
11421 (parse_guard): Remove.
11422 * data/bison.hairy: Remove.
11423 * doc/bison.texinfo (Environment Variables): Remove occurrences of
11424 BISON_HAIRY.
11425
11426 2002-05-02 Akim Demaille <akim@epita.fr>
11427
11428 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
11429 (parse_guard): Rename the formal argument `stack_offset' as
11430 `rule_length', which is more readable.
11431 Adjust callers.
11432 (copy_at, copy_dollar): Instead of outputting the hard coded
11433 values of $$, $n and so forth, output invocation to b4_lhs_value,
11434 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
11435 Note: this patch partially drops `semantic-parser' support: it
11436 always does `rule_length - n', where semantic parsers ought to
11437 always use `-n'.
11438 * data/bison.simple, data/bison.c++ (b4_lhs_value)
11439 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
11440
11441 2002-05-02 Akim Demaille <akim@epita.fr>
11442
11443 * configure.in (AC_INIT): Bump to 1.49b.
11444 (AM_INIT_AUTOMAKE): Short invocation.
11445
11446 2002-05-02 Akim Demaille <akim@epita.fr>
11447
11448 Version 1.49a.
11449
11450 2002-05-01 Akim Demaille <akim@epita.fr>
11451
11452 * src/skeleton.h: Remove.
11453
11454 2002-05-01 Akim Demaille <akim@epita.fr>
11455
11456 * src/skeleton.h: Fix the #endif.
11457 Reported by Magnus Fromreide.
11458
11459 2002-04-26 Paul Eggert <eggert@twinsun.com>
11460
11461 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
11462 Define if we define YYSTYPE and YYLTYPE, respectively.
11463 (YYCOPY): Fix [] quoting problem in the non-GCC case.
11464
11465 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
11466
11467 * src/scan-skel.l: Postprocess quadrigraphs.
11468
11469 * src/reader.c (copy_character): New function, used to output
11470 single characters while replacing `[' and `]' with quadrigraphs, to
11471 avoid troubles with M4 quotes.
11472 (copy_comment): Output characters with copy_character.
11473 (read_additionnal_code): Likewise.
11474 (copy_string2): Likewise.
11475 (copy_definition): Likewise.
11476
11477 * tests/calc.at: Exercise M4 quoting.
11478
11479 2002-04-25 Akim Demaille <akim@epita.fr>
11480
11481 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
11482 between `!' and the command.
11483 Reported by Paul Eggert.
11484
11485 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
11486
11487 * tests/calc.at: Exercise prologue splitting.
11488
11489 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
11490 `b4_post_prologue' instead of `b4_prologue'.
11491
11492 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
11493 muscles.
11494 (output): Free pre_prologue_obstack and post_prologue_obstack.
11495 * src/files.h, src/files.c (attrs_obstack): Remove.
11496 (pre_prologue_obstack, post_prologue_obstack): New.
11497 * src/reader.c (copy_definition): Add a parameter to specify the
11498 obstack to fill, instead of using attrs_obstack unconditionally.
11499 (read_declarations): Pass pre_prologue_obstack to copy_definition if
11500 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
11501
11502 2002-04-23 Paul Eggert <eggert@twinsun.com>
11503
11504 * data/bison.simple: Remove unnecessary commentary and white
11505 space differences from 1_29-branch.
11506 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
11507
11508 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
11509 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
11510 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
11511 constructors or destructors.
11512
11513 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
11514
11515 2002-04-23 Akim Demaille <akim@epita.fr>
11516
11517 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
11518 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
11519 location with columns.
11520 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
11521 All reported by Paul Eggert.
11522
11523 2002-04-22 Akim Demaille <akim@epita.fr>
11524
11525 * src/reduce.c (dump_grammar): Move to...
11526 * src/gram.h, src/gram.c (grammar_dump): here.
11527 Be sure to separate long item numbers.
11528 Don't read the members of a rule's prec if its nil.
11529
11530 2002-04-22 Akim Demaille <akim@epita.fr>
11531
11532 * src/output.c (table_size, table_grow): New.
11533 (MAXTABLE): Remove, replace uses with table_size.
11534 (pack_vector): Instead of dying when the table is too big, grow it.
11535
11536 2002-04-22 Akim Demaille <akim@epita.fr>
11537
11538 * data/bison.simple (yyr1): Its type is that of a token number.
11539 * data/bison.c++ (r1_): Likewise.
11540 * tests/regression.at (Web2c Actions): Adjust.
11541
11542 2002-04-22 Akim Demaille <akim@epita.fr>
11543
11544 * src/reader.c (token_translations_init): 256 is now the default
11545 value for the error token, i.e., it will be assigned another
11546 number if the user assigned 256 to one of her tokens.
11547 (reader): Don't force 256 to error.
11548 * doc/bison.texinfo (Symbols): Adjust.
11549 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
11550 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
11551 etc. instead of 10, 20, 30 (which was used to `jump' over error
11552 (256) and undefined (2)).
11553
11554 2002-04-22 Akim Demaille <akim@epita.fr>
11555
11556 Propagate more token_number_t.
11557
11558 * src/gram.h (token_number_as_item_number)
11559 (item_number_as_token_number): New.
11560 * src/output.c (GENERATE_OUTPUT_TABLE): New.
11561 Use it to create output_item_number_table and
11562 output_token_number_table.
11563 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11564 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
11565 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
11566 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
11567
11568 2002-04-22 Akim Demaille <akim@epita.fr>
11569
11570 * src/output.h, src/output.c (get_lines_number): Remove.
11571
11572 2002-04-19 Akim Demaille <akim@epita.fr>
11573
11574 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
11575 as Lex/Flex'.
11576 (Debugging): More details about enabling the debugging features.
11577 (Table of Symbols): Describe $$, $n, @$, and @n.
11578 Suggested by Tim Josling.
11579
11580 2002-04-19 Akim Demaille <akim@epita.fr>
11581
11582 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
11583
11584 2002-04-10 Akim Demaille <akim@epita.fr>
11585
11586 * src/system.h: Rely on HAVE_LIMITS_H.
11587 Suggested by Paul Eggert.
11588
11589 2002-04-09 Akim Demaille <akim@epita.fr>
11590
11591 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
11592 full stderr, and strip it according to the bison options, instead
11593 of composing the error message from different bits.
11594 This makes it easier to check for several error messages.
11595 Adjust all the invocations.
11596 Add an invocation exercising the error token.
11597 Add an invocation demonstrating a stupid error message.
11598 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
11599 Adjust the tests.
11600 Error message are for stderr, not stdout.
11601
11602 2002-04-09 Akim Demaille <akim@epita.fr>
11603
11604 * src/gram.h, src/gram.c (error_token_number): Remove, use
11605 errtoken->number.
11606 * src/reader.c (reader): Don't specify the user token number (2)
11607 for $undefined, as it uselessly prevents using it.
11608 * src/gram.h (token_number_t): Move to...
11609 * src/symtab.h: here.
11610 (state_t.number): Is a token_number_t.
11611 * src/print.c, src/reader.c: Use undeftoken->number instead of
11612 hard coded 2.
11613 (Even though this 2 is not the same as above: the number of the
11614 undeftoken remains being 2, it is its user token number which
11615 might not be 2).
11616 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
11617 `user_token_number_max'.
11618 Output `undef_token_number'.
11619 * data/bison.simple, data/bison.c++: Use them.
11620 Be sure to map invalid yylex return values to
11621 `undef_token_number'. This saves us from gratuitous SEGV.
11622
11623 * tests/conflicts.at (Solved SR Conflicts)
11624 (Unresolved SR Conflicts): Adjust.
11625 * tests/regression.at (Web2c Actions): Adjust.
11626
11627 2002-04-08 Akim Demaille <akim@epita.fr>
11628
11629 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
11630 Adding #line.
11631 Remove the duplicate `typedefs'.
11632 (RhsNumberType): Fix the declaration and various other typos.
11633 Use __ofile__.
11634 * data/bison.simple: Use __ofile__.
11635 * src/scan-skel.l: Handle __ofile__.
11636
11637 2002-04-08 Akim Demaille <akim@epita.fr>
11638
11639 * src/gram.h (item_number_t): New, the type of item numbers in
11640 RITEM. Note that it must be able to code symbol numbers as
11641 positive number, and the negation of rule numbers as negative
11642 numbers.
11643 Adjust all dependencies (pretty many).
11644 * src/reduce.c (rule): Remove this `short *' pointer: use
11645 item_number_t.
11646 * src/system.h (MINSHORT, MAXSHORT): Remove.
11647 Include `limits.h'.
11648 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
11649 (shortcpy): Remove.
11650 (MAXTABLE): Move to...
11651 * src/output.c (MAXTABLE): here.
11652 (prepare_rules): Use output_int_table to output rhs.
11653 * data/bison.simple, data/bison.c++: Adjust.
11654 * tests/torture.at (Big triangle): Move the limit from 254 to
11655 500.
11656 * tests/regression.at (Web2c Actions): Ajust.
11657
11658 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
11659 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
11660 passes, but produces negative #line number, once fixed, GCC is
11661 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
11662 C), it passes.
11663 * src/state.h (state_h): Code input lines on ints, not shorts.
11664
11665 2002-04-08 Akim Demaille <akim@epita.fr>
11666
11667 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
11668 and then the grammar.
11669
11670 2002-04-08 Akim Demaille <akim@epita.fr>
11671
11672 * src/system.h: No longer using strndup.
11673
11674 2002-04-07 Akim Demaille <akim@epita.fr>
11675
11676 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
11677 * src/output.c (output_table_data): Return the longest number.
11678 (prepare_tokens): Output `token_number_max').
11679 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
11680 New.
11681 Use them to define yy_token_number_type/TokenNumberType.
11682 Use this type for yytranslate.
11683 * tests/torture.at (Big triangle): Push the limit from 124 to
11684 253.
11685 * tests/regression.at (Web2c Actions): Adjust.
11686
11687 2002-04-07 Akim Demaille <akim@epita.fr>
11688
11689 * tests/torture.at (Big triangle): New.
11690 (GNU AWK Grammar, GNU Cim Grammar): Move to...
11691 * tests/existing.at: here.
11692
11693 2002-04-07 Akim Demaille <akim@epita.fr>
11694
11695 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
11696 nritems.
11697 Adjust dependencies.
11698
11699 2002-04-07 Akim Demaille <akim@epita.fr>
11700
11701 * src/reader.c: Normalize increments to prefix form.
11702
11703 2002-04-07 Akim Demaille <akim@epita.fr>
11704
11705 * src/reader.c, symtab.c: Remove debugging code.
11706
11707 2002-04-07 Akim Demaille <akim@epita.fr>
11708
11709 Rename all the `bucket's as `symbol_t'.
11710
11711 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
11712 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
11713 * src/symtab.c, src/symtab.h (bucket): Rename as...
11714 (symbol_t): this.
11715 (symbol_list_new, bucket_check_defined, bucket_make_alias)
11716 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
11717 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11718 (buckets_new, buckets_free, buckets_do): Rename as...
11719 (symbol_list_new, symbol_check_defined, symbol_make_alias)
11720 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11721 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
11722 (symbols_new, symbols_free, symbols_do): these.
11723
11724 2002-04-07 Akim Demaille <akim@epita.fr>
11725
11726 Use lib/hash for the symbol table.
11727
11728 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
11729 EOF.
11730 * src/lex.c (lex): Set the `number' member of new terminals.
11731 * src/reader.c (bucket_check_defined, bucket_make_alias)
11732 (bucket_check_alias_consistence, bucket_translation): New.
11733 (reader, grammar_free, readgram, token_translations_init)
11734 (packsymbols): Adjust.
11735 (reader): Number the predefined tokens.
11736 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
11737 for predefined tokens.
11738 * src/symtab.h (bucket): Remove all the hash table related
11739 members.
11740 * src/symtab.c (symtab): Replace by...
11741 (bucket_table): this.
11742 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11743 (buckets_new, buckets_do): New.
11744
11745 2002-04-07 Akim Demaille <akim@epita.fr>
11746
11747 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
11748 (start_symbol, max_user_token_number, semantic_parser)
11749 (error_token_number): Initialize.
11750 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
11751 Initialize.
11752 (reader): Don't.
11753 (errtoken, eoftoken, undeftoken, axiom): Extern.
11754
11755 2002-04-07 Akim Demaille <akim@epita.fr>
11756
11757 * src/gram.h (rule_s): prec and precsym are now pointers
11758 to the bucket giving the priority/associativity.
11759 Member `associativity' removed: useless.
11760 * src/reduce.c, src/conflicts.c: Adjust.
11761
11762 2002-04-07 Akim Demaille <akim@epita.fr>
11763
11764 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
11765 Properly escape the symbols' TAG when outputting them.
11766
11767 2002-04-07 Akim Demaille <akim@epita.fr>
11768
11769 * src/lalr.h (LA): Is a bitsetv, not bitset*.
11770
11771 2002-04-07 Akim Demaille <akim@epita.fr>
11772
11773 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
11774 (LArule): this, which is an array to rule_t*.
11775 * src/print.c, src/conflicts.c: Adjust.
11776
11777 2002-04-07 Akim Demaille <akim@epita.fr>
11778
11779 * src/gram.h (rule_t): Rename `number' as `user_number'.
11780 `number' is a new member.
11781 Adjust dependencies.
11782 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
11783
11784 2002-04-07 Akim Demaille <akim@epita.fr>
11785
11786 As a result of the previous patch, it is no longer needed
11787 to reorder ritem itself.
11788
11789 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
11790
11791 2002-04-07 Akim Demaille <akim@epita.fr>
11792
11793 Be sure never to walk through RITEMS, but use only data related to
11794 the rules themselves. RITEMS should be banished.
11795
11796 * src/output.c (output_token_translations): Rename as...
11797 (prepare_tokens): this.
11798 In addition to `translate', prepare the muscles `tname' and
11799 `toknum', which were handled by...
11800 (output_rule_data): this.
11801 Remove, and move the remainder of its outputs into...
11802 (prepare_rules): this new routines, which also merges content from
11803 (output_gram): this.
11804 (prepare_rules): Be sure never to walk through RITEMS.
11805 (output_stos): Rename as...
11806 (prepare_stos): this.
11807 (output): Always invoke prepare_states, after all, just don't use it
11808 in the output if you don't need it.
11809
11810 2002-04-07 Akim Demaille <akim@epita.fr>
11811
11812 * src/LR0.c (new_state): Display `nstates' as the name of the
11813 newly created state.
11814 Adjust to initialize first_state and last_state if needed.
11815 Be sure to distinguish the initial from the final state.
11816 (new_states): Create the itemset of the initial state, and use
11817 new_state.
11818 * src/closure.c (closure): Now that the initial state has its
11819 items properly set, there is no need for a special case when
11820 creating `ruleset'.
11821
11822 As a result, now the rule 0, reducing to $axiom, is visible in the
11823 outputs. Adjust the test suite.
11824
11825 * tests/conflicts.at (Solved SR Conflicts)
11826 (Unresolved SR Conflicts): Adjust.
11827 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
11828 * tests/conflicts.at (S/R in initial): New.
11829
11830 2002-04-07 Akim Demaille <akim@epita.fr>
11831
11832 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
11833 the RHS of the rules.
11834 * src/output.c (output_gram): Likewise.
11835
11836 2002-04-07 Akim Demaille <akim@epita.fr>
11837
11838 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
11839 bucket.
11840 Adjust all dependencies.
11841 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
11842 `number' of the buckets too.
11843 * src/gram.h: Include `symtab.h'.
11844 (associativity): Move to...
11845 * src/symtab.h: here.
11846 No longer include `gram.h'.
11847
11848 2002-04-07 Akim Demaille <akim@epita.fr>
11849
11850 * src/gram.h, src/gram.c (rules_rhs_length): New.
11851 (ritem_longest_rhs): Use it.
11852 * src/gram.h (rule_t): `number' is a new member.
11853 * src/reader.c (packgram): Set it.
11854 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
11855 the end of `rules', and count them out of `nrules'.
11856 (reduce_output, dump_grammar): Adjust.
11857 * src/print.c (print_grammar): It is no longer needed to check for
11858 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
11859 * tests/reduce.at (Reduced Automaton): New test.
11860
11861 2002-04-07 Akim Demaille <akim@epita.fr>
11862
11863 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
11864 lacking `+ 1' to nrules, Bison reported as useless a token if it
11865 was used solely to set the precedence of the last rule...
11866
11867 2002-04-07 Akim Demaille <akim@epita.fr>
11868
11869 * data/bison.c++, data/bison.simple: Don't output the current file
11870 name in #line, to avoid useless diffs between two identical
11871 outputs under different names.
11872
11873 2002-04-07 Akim Demaille <akim@epita.fr>
11874
11875 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
11876 Normalize loops to using `< nrules + 1', not `<= nrules'.
11877
11878 2002-04-07 Akim Demaille <akim@epita.fr>
11879
11880 * TODO: Update.
11881
11882 2002-04-07 Akim Demaille <akim@epita.fr>
11883
11884 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
11885 bucket.value as bucket.number.
11886
11887 2002-04-07 Akim Demaille <akim@epita.fr>
11888
11889 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
11890 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11891 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
11892 RHS, instead of being an index in RITEMS.
11893
11894 2002-04-04 Paul Eggert <eggert@twinsun.com>
11895
11896 * doc/bison.texinfo: Update copyright date.
11897 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
11898 (Symbols): Warn about running Bison in one character set,
11899 but compiling and/or running in an incompatible one.
11900 Warn about character code 256, too.
11901
11902 2002-04-03 Paul Eggert <eggert@twinsun.com>
11903
11904 * src/bison.data (YYSTACK_ALLOC): Depend on whether
11905 YYERROR_VERBOSE is nonzero, not whether it is defined.
11906
11907 Merge changes from bison-1_29-branch.
11908
11909 2002-03-20 Paul Eggert <eggert@twinsun.com>
11910
11911 Merge fixes from Debian bison_1.34-1.diff.
11912
11913 * configure.in (AC_PREREQ): 2.53.
11914
11915 2002-03-20 Akim Demaille <akim@epita.fr>
11916
11917 * src/conflicts.c (log_resolution): Argument `resolution' is const.
11918
11919 2002-03-19 Paul Eggert <eggert@twinsun.com>
11920
11921 * src/bison.simple (YYCOPY): New macro.
11922 (YYSTACK_RELOCATE): Use it.
11923 Remove Type arg; no longer needed. All callers changed.
11924 (yymemcpy): Remove; no longer needed.
11925
11926 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
11927 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
11928
11929 2002-03-19 Akim Demaille <akim@epita.fr>
11930
11931 Test and fix the #line outputs.
11932
11933 * tests/atlocal.at (GCC): New.
11934 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
11935 (Prologue synch line, %union synch line, Postprologue synch line)
11936 (Action synch line, Epilogue synch line): New tests.
11937 * src/reader.c (parse_union_decl): Define the muscle stype_line.
11938 * data/bison.simple, data/bison.c++: Use it.
11939
11940 2002-03-19 Akim Demaille <akim@epita.fr>
11941
11942 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
11943 (Solved SR Conflicts, %expect not enough, %expect right)
11944 (%expect too much): Move to...
11945 * tests/conflicts.at: this new file.
11946
11947 2002-03-19 Akim Demaille <akim@epita.fr>
11948
11949 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11950 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
11951 that we can move to enums for instance.
11952 * src/output.c (token_definitions_output): Output a list of
11953 `token-name, token-number' instead of the #define.
11954 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
11955
11956 2002-03-14 Akim Demaille <akim@epita.fr>
11957
11958 Use Gettext 0.11.1.
11959
11960 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
11961
11962 * data/bison.c++: Make the user able to add members to the generated
11963 parser by subclassing.
11964
11965 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
11966
11967 * src/reader.c (read_additionnal_code): `c' should be an integer, not
11968 a character.
11969 Reported by Nicolas Tisserand and Nicolas Burrus.
11970
11971 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11972
11973 * src/reader.c: Warn about lacking semi-colons, do not complain.
11974
11975 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11976
11977 * data/bison.c++: Remove a debug line.
11978
11979 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11980
11981 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
11982 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
11983 provide a default implementation.
11984
11985 2002-03-04 Akim Demaille <akim@epita.fr>
11986
11987 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
11988 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
11989 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
11990 * tests/semantic.at (Parsing Guards): Similarly.
11991 * src/reader.at (readgram): Complain if the last rule is not ended
11992 with a semi-colon.
11993
11994 2002-03-04 Akim Demaille <akim@epita.fr>
11995
11996 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
11997 * src/closure.c: here.
11998 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
11999 RTC.
12000 * src/warshall.h, src/warshall.c: Remove.
12001 * tests/sets.at (Broken Closure): Adjust.
12002
12003 2002-03-04 Akim Demaille <akim@epita.fr>
12004
12005 * src/output.c (output_skeleton): tempdir is const.
12006 bytes_read is unused.
12007
12008 2002-03-04 Akim Demaille <akim@epita.fr>
12009
12010 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12011 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
12012 Update.
12013 From Michael Hayes.
12014
12015 2002-03-04 Akim Demaille <akim@epita.fr>
12016
12017 * src/closure.c (closure): `r' is unused.
12018
12019 2002-03-04 Akim Demaille <akim@epita.fr>
12020
12021 * tests/sets.at (Broken Closure): Add the ending `;'.
12022 * src/reader.at (readgram): Complain if a rule is not ended with a
12023 semi-colon.
12024
12025 2002-03-04 Akim Demaille <akim@epita.fr>
12026
12027 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
12028 (count_sr_conflicts): Use bitset_count.
12029 * src/reduce.c (inaccessable_symbols): Ditto.
12030 (bits_size): Remove.
12031 * src/warshall.h, src/warshall.c: Convert to bitsetv.
12032
12033 2002-03-04 Akim Demaille <akim@epita.fr>
12034
12035 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
12036 * src/reduce.c: Remove the `bitset_zero's following the
12037 `bitset_create's, as now it is performed by the latter.
12038
12039 2002-03-04 Akim Demaille <akim@epita.fr>
12040
12041 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
12042 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
12043 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
12044 latest sources from Michael.
12045
12046 2002-03-04 Akim Demaille <akim@epita.fr>
12047
12048 * src/output.c (output): Don't free the grammar.
12049 * src/reader.c (grammar_free): New.
12050 * src/main.c (main): Call it and don't free symtab here.
12051
12052 2002-03-04 Akim Demaille <akim@epita.fr>
12053
12054 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
12055 before returning.
12056 Reported by Benoit Perrot.
12057
12058 2002-03-04 Akim Demaille <akim@epita.fr>
12059
12060 Use bitset operations when possible, not loops over bits.
12061
12062 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
12063 bitset_or.
12064 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
12065 * src/reduce.c (useless_nonterminals): Formatting changes.
12066 * src/warshall.c (TC): Use bitset_or.
12067
12068 2002-03-04 Akim Demaille <akim@epita.fr>
12069
12070 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
12071 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
12072 Ditto.
12073
12074 2002-03-04 Akim Demaille <akim@epita.fr>
12075
12076 * src/lalr.c (F): Now a bitset*.
12077 Adjust all dependencies.
12078
12079 2002-03-04 Akim Demaille <akim@epita.fr>
12080
12081 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
12082 Adjust all dependencies.
12083
12084 2002-03-04 Akim Demaille <akim@epita.fr>
12085
12086 * src/L0.c, src/LR0.h (nstates): Be size_t.
12087 Adjust comparisons (signed vs unsigned).
12088 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
12089 bitset*.
12090 Adjust all dependencies.
12091
12092 2002-03-04 Akim Demaille <akim@epita.fr>
12093
12094 * src/closure.c (firsts): Now, also a bitset.
12095 Adjust all dependencies.
12096 (varsetsize): Remove, now unused.
12097 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
12098
12099 2002-03-04 Akim Demaille <akim@epita.fr>
12100
12101 * src/print.c: Convert to use bitset.h, not hand coded iterations
12102 over ints.
12103
12104 2002-03-04 Akim Demaille <akim@epita.fr>
12105
12106 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
12107
12108 2002-03-04 Akim Demaille <akim@epita.fr>
12109
12110 * src/closure.c (ruleset): Be a bitset.
12111 (rulesetsize): Remove.
12112
12113 2002-03-04 Akim Demaille <akim@epita.fr>
12114
12115 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
12116 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
12117 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
12118 * src/closure.c (fderives): Be an array of bitsets.
12119
12120 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
12121
12122 * data/bison.c++: Merge the two generated headers. Insert a copyright
12123 notice in each output file.
12124
12125 2002-02-28 Akim Demaille <akim@epita.fr>
12126
12127 * data/bison.c++: Copy the prologue of bison.simple to fetch
12128 useful M4 definitions, such as b4_header_guard.
12129
12130 2002-02-25 Akim Demaille <akim@epita.fr>
12131
12132 * src/getargs.c (version): Give the name of the authors, and use a
12133 translator friendly scheme for the bgr
12134 copyright notice.
12135
12136 2002-02-25 Akim Demaille <akim@epita.fr>
12137
12138 * src/output.c (header_output): Remove, now handled completely via
12139 M4.
12140
12141 2002-02-25 Akim Demaille <akim@epita.fr>
12142
12143 * m4/m4.m4: New, from CVS Autoconf.
12144 * configure.in: Invoke it.
12145 * src/output.c (output_skeleton): Use its result instead of the
12146 hard coded name.
12147
12148 2002-02-25 Akim Demaille <akim@epita.fr>
12149
12150 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
12151 Fileutils 4.1.5.
12152 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
12153 * src/output.c (output_skeleton): Use mkstemp to create a real
12154 temporary file.
12155 Move the filling of `skeleton' and its muscle to...
12156 (prepare): here.
12157 (output): Move the definition of the prologue muscle to...
12158 (prepare): here.
12159 * src/system.h (DEFAULT_TMPDIR): New.
12160
12161 2002-02-14 Paul Eggert <eggert@twinsun.com>
12162
12163 Remove the support for C++ namespace cleanliness; it was
12164 causing more problems than it was curing, since it didn't work
12165 properly on some nonstandard C++ compilers. This can wait
12166 for a proper C++ parser.
12167
12168 * NEWS: Document this.
12169 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
12170 of C++, as it's treated like C now.
12171 * src/bison.simple (YYSTD): Remove.
12172 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
12173 Treat C++ just like Standard C instead of trying to support
12174 namespace cleanliness.
12175
12176 2002-02-14 Akim Demaille <akim@epita.fr>
12177
12178 * tests/regression.at (else): Adjust to Andreas' change.
12179
12180 2002-02-14 Akim Demaille <akim@epita.fr>
12181
12182 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
12183
12184 2002-02-13 Andreas Schwab <schwab@suse.de>
12185
12186 * src/output.c (output_rule_data): Don't output NULL, it might
12187 not be defined yet.
12188
12189 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
12190
12191 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
12192 (Copyright notice): Update.
12193
12194 2002-02-11 Akim Demaille <akim@epita.fr>
12195
12196 * tests/regression.at (%nonassoc and eof): Don't include
12197 nonportable headers.
12198
12199 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
12200
12201 * data/bison.c++: Correct error recovery. Make the user able to
12202 initialize the starting location.
12203
12204 2002-02-07 Akim Demaille <akim@epita.fr>
12205
12206 * tests/input.at: New.
12207
12208 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12209
12210 * data/bison.c++: Replace some direct m4 expansions by constants. Be
12211 more consistent when naming methods and variables. Put preprocessor
12212 directives around tables only needed for debugging.
12213
12214 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12215
12216 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
12217 C++ parsers.
12218 (yy::b4_name::parse): Use print_.
12219
12220 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12221
12222 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
12223
12224 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
12225
12226 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
12227 C++ parsers.
12228 (yy::b4_name::parse): Build verbose error messages, and use error_.
12229
12230 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
12231
12232 * data/bison.c++: Fix m4 quoting in comments.
12233
12234 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
12235
12236 * data/bison.c++: Adjust the parser code. Fix some muscles that were
12237 not expanded by m4.
12238
12239 2002-02-05 Akim Demaille <akim@epita.fr>
12240
12241 * data/bison.c++: Adjust to the M4 back end.
12242 More is certainly needed.
12243
12244 2002-02-05 Akim Demaille <akim@epita.fr>
12245
12246 Give a try to M4 as a back end.
12247
12248 * lib/readpipe.c: New, from wdiff.
12249 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
12250 BISON_HAIRY.
12251 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
12252 specific values. Now it is m4 that performs the lookup.
12253 * src/parse-skel.y: Remove.
12254 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
12255 * src/output.c (actions_output, guards_output)
12256 (token_definitions_output): No longer keeps track of the output
12257 line number, hence remove the second argument.
12258 (guards_output): Check against the guard member of a rule, not the
12259 action member.
12260 Adjust callers.
12261 (output_skeleton): Don't look for the skeleton location, let m4 do
12262 that.
12263 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
12264 file will be used.
12265 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
12266 (prepare): Given that for the time being changesyntax is not
12267 usable in M4, rename the muscles using `-' to `_'.
12268 Define `defines_flag', `output_parser_name' and `output_header_name'.
12269 * src/output.h (actions_output, guards_output)
12270 (token_definitions_output): Adjust prototypes.
12271 * src/scan-skel.l: Instead of scanning the skeletons, it now
12272 processes the output of m4: `__oline__' and `#output'.
12273 * data/bison.simple: Adjust to be used by M4(sugar).
12274 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
12275 to date.
12276 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
12277 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
12278 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
12279 shamelessly stolen from CVS Autoconf.
12280
12281 2002-02-05 Akim Demaille <akim@epita.fr>
12282
12283 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
12284 * configure.in: Check for the declarations of free and malloc.
12285 * src/muscle_tab.c: Adjust.
12286
12287 2002-02-05 Akim Demaille <akim@epita.fr>
12288
12289 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
12290 which have no values.
12291
12292 2002-02-05 Akim Demaille <akim@epita.fr>
12293
12294 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
12295 * data/: here.
12296
12297 2002-01-29 Paul Eggert <eggert@twinsun.com>
12298
12299 * src/bison.simple (YYSIZE_T): Do not define merely because
12300 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
12301 On some platforms, <alloca.h> does not declare YYSTD (size_t).
12302
12303 2002-01-27 Akim Demaille <akim@epita.fr>
12304
12305 Fix `%nonassoc and eof'.
12306
12307 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
12308 which were not properly copied! Replace
12309 memcpy (res->errs, src->errs, src->nerrs);
12310 with
12311 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
12312 !!!
12313 * tests/regression.at (%nonassoc and eof): Adjust to newest
12314 Autotest: `.' is not in the PATH.
12315
12316 2002-01-27 Akim Demaille <akim@epita.fr>
12317
12318 * tests/sets.at (AT_EXTRACT_SETS): New.
12319 (Nullable): Use it.
12320 (Firsts): New.
12321
12322 2002-01-26 Akim Demaille <akim@epita.fr>
12323
12324 * tests/actions.at, tests/calc.at, tests/headers.at,
12325 * tests/torture.at: Adjust to the newest Autotest which no longer
12326 forces `.' in the PATH.
12327
12328 2002-01-25 Akim Demaille <akim@epita.fr>
12329
12330 * tests/regression.at (%nonassoc and eof): New.
12331 Suggested by Robert Anisko.
12332
12333 2002-01-24 Akim Demaille <akim@epita.fr>
12334
12335 Bison dumps core when trying to complain about broken input files.
12336 Reported by Cris van Pelt.
12337
12338 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
12339 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
12340 into...
12341 (Invalid inputs): Strengthen: exercise parse_percent_token.
12342
12343 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
12344
12345 * src/Makefile.am: Add bison.c++.
12346 * src/bison.c++: New skeleton.
12347
12348 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
12349
12350 * po/it.po: New.
12351
12352 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
12353
12354 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
12355
12356 2002-01-20 Marc Autret <marc@gnu.org>
12357
12358 * src/files.c (compute_output_file_names): Fix
12359
12360 2002-01-20 Marc Autret <marc@gnu.org>
12361
12362 * tests/output.at: New test.
12363 * src/files.c (compute_base_names): Don't map extensions when
12364 the YACC flag is set, use defaults.
12365 Reported by Evgeny Stambulchik.
12366
12367 2002-01-20 Marc Autret <marc@gnu.org>
12368
12369 * src/system.h: Need to define __attribute__ away for non-GCC
12370 compilers as well (i.e., the vendor C compiler).
12371 Suggested by Albert Chin-A-Young.
12372
12373 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
12374
12375 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
12376 canonical definition.
12377 * src/system.h: Use the canonical definition for PARAMS (avoids
12378 a conflict with the macro from lib/hash.h).
12379
12380 2002-01-11 Akim Demaille <akim@epita.fr>
12381
12382 * configure.in: Use AC_FUNC_STRNLEN.
12383 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
12384
12385 2002-01-09 Akim Demaille <akim@epita.fr>
12386
12387 * src/files.c, src/files.h (output_infix): New.
12388 (tab_extension): Remove.
12389 (compute_base_names): Compute the former, drop the latter.
12390 * src/output.c (prepare): Insert the muscles `output-infix', and
12391 `output-suffix'.
12392 * src/parse-skel.y (string, string.1): New.
12393 (section.header): Use it.
12394 (section.yacc): Remove.
12395 (prefix): Remove too.
12396 * src/scan-skel.l: Adjust.
12397 * src/bison.simple, src/bison.hairy: Adjust.
12398
12399 2002-01-09 Akim Demaille <akim@epita.fr>
12400
12401 * configure.in (WERROR_CFLAGS): Compute it.
12402 * src/Makefile.am (CFLAGS): Pass it.
12403 * tests/atlocal.in (CFLAGS): Idem.
12404 * src/files.c: Fix a few warnings.
12405 (get_extension_index): Remove, unused.
12406
12407 2002-01-08 Akim Demaille <akim@epita.fr>
12408
12409 * src/getargs.c (AS_FILE_NAME): New.
12410 (getargs): Use it to convert DOSish file names.
12411 * src/files.c (base_name): Rename as full_base_name to avoid
12412 clashes with `base_name ()'.
12413 (filename_split): New.
12414 (compute_base_names): N-th rewrite, using filename_split.
12415
12416 2002-01-08 Akim Demaille <akim@epita.fr>
12417
12418 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
12419 New, stolen from the Fileutils 4.1.
12420 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
12421 * configure.in: Check for the presence of memrchr, and of its
12422 prototype.
12423
12424 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
12425
12426 * lib/hash.h (__P): Added definition for this macro.
12427 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
12428 BUILT_SOURCES, to ensure they are generated first.
12429 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
12430 %error-verbose to allow bootstrapping with bison 1.30x.
12431
12432 2002-01-06 Akim Demaille <akim@epita.fr>
12433
12434 * src/reader.c (parse_braces): Don't fetch the next char, the
12435 convention is to fetch on entry.
12436 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
12437 'switch' without a following semicolon.
12438 * tests/regression.at (braces parsing): New.
12439
12440 2002-01-06 Akim Demaille <akim@epita.fr>
12441
12442 Bison is dead wrong in its RR conflict reports.
12443
12444 * tests/torture.at (GNU Cim Grammar): New.
12445 * src/conflicts.c (count_rr_conflicts): Fix.
12446
12447 2002-01-06 Akim Demaille <akim@epita.fr>
12448
12449 Creating package.m4 from configure.ac causes too many problems.
12450
12451 * tests/Makefile.am (package.m4): Create it by hand,
12452 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
12453
12454 2002-01-06 Akim Demaille <akim@epita.fr>
12455
12456 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
12457 skeleton.h.
12458
12459 2002-01-04 Paul Eggert <eggert@twinsun.com>
12460
12461 * doc/bison.texinfo (Debugging):
12462 Remove YYSTDERR; it's no longer defined or used.
12463 Also, s/cstdio.h/cstdio/.
12464
12465 2002-01-03 Akim Demaille <akim@epita.fr>
12466
12467 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
12468
12469 2002-01-03 Akim Demaille <akim@epita.fr>
12470
12471 * src/parse-skel.y (process_skeleton): Don't bind the parser's
12472 tracing code to --trace, wait for a better --trace option, with
12473 args.
12474
12475 2002-01-03 Akim Demaille <akim@epita.fr>
12476
12477 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
12478 The ISO C++ standard is extremely clear about it: stderr is
12479 considered a macro, not a regular symbol (see table 94 `Header
12480 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
12481 Therefore std:: does not apply to it. It still does with fprintf.
12482 Also, s/cstdio.h/cstdio/.
12483
12484 2002-01-03 Akim Demaille <akim@epita.fr>
12485
12486 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
12487 for non system headers.
12488
12489 2002-01-02 Akim Demaille <akim@epita.fr>
12490
12491 Equip the skeleton chain with location tracking, runtime trace,
12492 pure parser and scanner.
12493
12494 * src/parse-skel.y: Request a pure parser, locations, and prefix
12495 renaming.
12496 (%union): Having several members with the same type does not help
12497 type mismatches, simplify.
12498 (YYPRINT, yyprint): New.
12499 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
12500 (skel_error): this.
12501 Handle locations.
12502 * src/scan-skel.l: Adjust to these changes.
12503 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
12504 (LOCATION_PRINT, skel_control_t): New.
12505
12506 2001-12-30 Akim Demaille <akim@epita.fr>
12507
12508 * src/parse-skel.y: Get rid of the shift/reduce conflict:
12509 replace `gb' with BLANKS.
12510 * src/scan-skel.l: Adjust.
12511
12512 2001-12-30 Akim Demaille <akim@epita.fr>
12513
12514 * src/system.h: We don't need nor want bcopy.
12515 Throw away MS-DOS crap: we don't need getpid.
12516 * configure.in: We don't need strndup. It was even causing
12517 problems: because Flex includes the headers *before* us,
12518 _GNU_SOURCE is not defined by config.h, and therefore strndup was
12519 not visible.
12520 * lib/xstrndup.c: New.
12521 * src/scan-skel.l: Use it.
12522 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
12523 * src/parse-skel.y: Use %directives instead of #defines.
12524
12525 2001-12-30 Akim Demaille <akim@epita.fr>
12526
12527 * src/skeleton.h: New.
12528 * src/output.c (output_parser, output_master_parser): Remove, dead
12529 code.
12530 * src/output.h (get_lines_number, actions_output, guards_output)
12531 (token_definitions_output): Prototype them.
12532 * src/parse-skel.y: Add the license notice.
12533 Include output.h and skeleton.h.
12534 (process_skeleton): Returns void, and takes a single parameter.
12535 * src/scan-skel.l: Add the license notice.
12536 Include skeleton.h.
12537 Don't use %option yylineno: it seems that then Flex imagines
12538 REJECT has been used, and therefore it won't reallocate its
12539 buffers (which makes no other sense to me than a bug). It results
12540 in warnings for `unused: yy_flex_realloc'.
12541
12542 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
12543
12544 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12545 (MUSCLE_INSERT_PREFIX): ...to there.
12546 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12547 (MUSCLE_INSERT_PREFIX): Move from here...
12548
12549 * src/bison.hairy: Add a section directive. Put braces around muscle
12550 names. This parser skeleton is still broken, but Bison should not
12551 choke on a bad muscle 'syntax'.
12552 * src/bison.simple: Add a section directive. Put braces around muscle
12553 names.
12554
12555 * src/files.h (strsuffix, stringappend): Add declarations.
12556 (tab_extension): Add declaration.
12557 (short_base_name): Add declaration.
12558
12559 * src/files.c (strsuffix, stringappend): No longer static. These
12560 functions are used in the skeleton parser.
12561 (tab_extension): New.
12562 (compute_base_names): Use the computations done in this function
12563 to guess if the generated parsers should have '.tab' in their
12564 names.
12565 (short_base_name): No longer static.
12566
12567 * src/output.c (output_skeleton): New.
12568 (output): Disable call to output_master_parser, and give a try to
12569 a new skeleton handling system.
12570 (guards_output, actions_output): No longer static.
12571 (token_definitions_output, get_lines_number): No longer static.
12572
12573 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
12574
12575 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
12576 parse-skel.y.
12577
12578 * src/parse-skel.y: New file.
12579 * src/scan-skel.l: New file.
12580
12581 2001-12-29 Akim Demaille <akim@epita.fr>
12582
12583 %name-prefix is broken.
12584
12585 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
12586 Adjust all dependencies.
12587 * tests/headers.at (export YYLTYPE): Strengthen this test: use
12588 %name-prefix.
12589
12590 Renaming yylval but not yylloc is not consistent. Now we do.
12591
12592 * src/bison.simple: Prefix yylloc if used.
12593 * doc/bison.texinfo (Decl Summary): Document that.
12594
12595 2001-12-29 Akim Demaille <akim@epita.fr>
12596
12597 * doc/bison.texinfo: Promote `%long-directive' over
12598 `%long_directive'.
12599 Remove all references to fixed-output-files, yacc is enough.
12600
12601 2001-12-29 Akim Demaille <akim@epita.fr>
12602
12603 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
12604 user prologue. These are defaults.
12605 * tests/actions.at (Mid-rule actions): Make sure the user can
12606 define YYDEBUG and YYERROR_VERBOSE.
12607
12608 2001-12-29 Akim Demaille <akim@epita.fr>
12609
12610 * src/output.c (header_output): Don't forget to export YYLTYPE and
12611 yylloc.
12612 * tests/headers.at (export YYLTYPE): New, make sure it does.
12613 * tests/regression.at (%union and --defines, Invalid CPP headers):
12614 Move to...
12615 * tests/headers.at: here.
12616
12617 2001-12-29 Akim Demaille <akim@epita.fr>
12618
12619 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
12620
12621 2001-12-29 Akim Demaille <akim@epita.fr>
12622
12623 * tests/actions.at (Mid-rule actions): Output on a single line
12624 instead of several.
12625
12626 2001-12-29 Akim Demaille <akim@epita.fr>
12627
12628 * doc/bison.texinfo: Formatting changes.
12629
12630 2001-12-29 Akim Demaille <akim@epita.fr>
12631
12632 Don't store the token defs in a muscle, just be ready to output it
12633 on command. Now possible via `symbols'. Fixes a memory leak.
12634
12635 * src/output.c (token_definitions_output): New.
12636 (output_parser, header_output): Use it.
12637 * src/reader.c (symbols_save): Remove.
12638
12639 2001-12-29 Akim Demaille <akim@epita.fr>
12640
12641 * src/bison.simple: Do not provide a default for YYSTYPE and
12642 YYLTYPE before the user's prologue. Otherwise it's hardly... a
12643 default.
12644
12645 2001-12-29 Akim Demaille <akim@epita.fr>
12646
12647 Mid-rule actions are simply... ignored!
12648
12649 * src/reader.c (readgram): Be sure to attach mid-rule actions to
12650 the empty-rule associated to the dummy symbol, not to the host
12651 rule.
12652 * tests/actions.at (Mid-rule actions): New.
12653
12654 2001-12-29 Akim Demaille <akim@epita.fr>
12655
12656 Memory leak.
12657
12658 * src/reader.c (reader): Free grammar.
12659
12660 2001-12-29 Akim Demaille <akim@epita.fr>
12661
12662 Memory leak.
12663
12664 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
12665 since it allocates it for each state, although only one is needed.
12666 (allocate_storage): Do it here.
12667
12668 2001-12-29 Akim Demaille <akim@epita.fr>
12669
12670 * src/options.h, src/options.c (create_long_option_table): Rename
12671 as...
12672 (long_option_table_new): this, with a clearer prototype.
12673 (percent_table): Remove, unused,
12674 * src/getargs.c (getargs): Adjust.
12675
12676 2001-12-29 Akim Demaille <akim@epita.fr>
12677
12678 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
12679 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
12680 as states.
12681
12682 2001-12-29 Akim Demaille <akim@epita.fr>
12683
12684 * src/lalr.c (build_relations): Rename `states' as `states1'.
12685 Sorry, I don't understand exactly what it is, no better name...
12686
12687 2001-12-29 Akim Demaille <akim@epita.fr>
12688
12689 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
12690 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
12691 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
12692 as rules.
12693
12694 2001-12-29 Akim Demaille <akim@epita.fr>
12695
12696 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
12697 ago.
12698
12699 2001-12-29 Akim Demaille <akim@epita.fr>
12700
12701 * src/reader.c, src/reader.h (user_toknums): Remove.
12702 Adjust all users to use symbols[i]->user_token_number.
12703
12704 2001-12-29 Akim Demaille <akim@epita.fr>
12705
12706 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
12707 Adjust all users to use symbols[i]->prec or ->assoc.
12708
12709 2001-12-29 Akim Demaille <akim@epita.fr>
12710
12711 * src/reader.c, src/reader.h (tags): Remove.
12712 Adjust all users to use symbols[i]->tag.
12713
12714 2001-12-29 Akim Demaille <akim@epita.fr>
12715
12716 * src/gram.h, src/gram.c (symbols): New, similar to state_table
12717 and rule_table.
12718 * src/reader.c (packsymbols): Fill this table.
12719 Drop sprec.
12720 * src/conflicts.c (resolve_sr_conflict): Adjust.
12721 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
12722 single table.
12723 Use symbols[i]->tag instead of tags[i].
12724
12725 2001-12-29 Akim Demaille <akim@epita.fr>
12726
12727 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
12728 In addition, put a comment in there, to replace...
12729 * tests/regression.at (%union and C comments): Remove.
12730
12731 2001-12-29 Akim Demaille <akim@epita.fr>
12732
12733 * tests/regression.at (Web2c Actions): Blindly move the actual
12734 output as expected output. The contents *seem* right to me, but I
12735 can't pretend reading perfectly parser tables... Nonetheless, all
12736 the other tests pass correctly, the table look OK, even though the
12737 presence of `$axiom' is to be noted: AFAICS it is useless (but
12738 harmless).
12739
12740 2001-12-29 Akim Demaille <akim@epita.fr>
12741
12742 * src/reader.c (readgram): Don't add the rule 0 if there were no
12743 rules read. In other words, add it _after_ having performed
12744 grammar sanity checks.
12745 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
12746
12747 2001-12-29 Akim Demaille <akim@epita.fr>
12748
12749 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
12750 visible, and some states have now a different number.
12751
12752 2001-12-29 Akim Demaille <akim@epita.fr>
12753
12754 * src/reader.c (readgram): Bind the initial rule's lineno to that
12755 of the first rule.
12756 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
12757 (Solved SR Conflicts): Adjust rule 0's line number.
12758
12759 2001-12-29 Akim Demaille <akim@epita.fr>
12760
12761 Fix the `GAWK Grammar' failure.
12762
12763 * src/LR0.c (final_state): Initialize to -1 so that we do compute
12764 the reductions of the first state which was mistakenly confused
12765 with the final state because precisely final_state was initialized
12766 to 0.
12767 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
12768 now noticed by Bison.
12769 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
12770 have a reduction on $default.
12771
12772 2001-12-29 Akim Demaille <akim@epita.fr>
12773
12774 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
12775 rule line numbers.
12776 * src/closure.c (print_closure): Likewise.
12777 * src/derives.c (print_derives): Likewise.
12778 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
12779 now.
12780
12781 2001-12-29 Akim Demaille <akim@epita.fr>
12782
12783 * src/lalr.c (lookaheads_print): New.
12784 (lalr): Call it when --trace-flag.
12785 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
12786 are dumped.
12787
12788 2001-12-29 Akim Demaille <akim@epita.fr>
12789
12790 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
12791 when walking through ritem, even via rule->rhs.
12792 * src/reduce.c (dump_grammar, useful_production, reduce_output)
12793 (useful_production, useless_nonterminals): Likewise.
12794 (reduce_grammar_tables): Likewise, plus update nritems.
12795 * src/nullable.c (set_nullable): Likewise.
12796 * src/lalr.c (build_relations): Likewise.
12797 * tests/sets.at (Nullable): Adjust.
12798 Fortunately, now, the $axiom is no longer nullable.
12799
12800 2001-12-29 Akim Demaille <akim@epita.fr>
12801
12802 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
12803 the 0-sentinel.
12804 * src/gram.c (ritem_longest_rhs): Likewise.
12805 * src/reduce.c (nonterminals_reduce): Likewise.
12806 * src/print_graph.c (print_graph): Likewise.
12807 * src/output.c (output_rule_data): Likewise.
12808 * src/nullable.c (set_nullable): Likewise.
12809
12810 2001-12-29 Akim Demaille <akim@epita.fr>
12811
12812 * src/output.c: Comment changes.
12813
12814 2001-12-27 Paul Eggert <eggert@twinsun.com>
12815
12816 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
12817 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
12818 Sparc, as they were causing more porting problems than the
12819 (minor) performance improvement was worth.
12820
12821 Also, catch up with 1.31's YYSTD.
12822
12823 2001-12-27 Akim Demaille <akim@epita.fr>
12824
12825 * src/output.c (output_gram): Rely on nritems, not the
12826 0-sentinel. See below.
12827 Use -1 as separator, not 0.
12828 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
12829 Rely on -1 as separator in yyrhs, instead of 0.
12830 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
12831 twice `Now at end of input', therefore there are two lines less to
12832 expect.
12833
12834 2001-12-27 Akim Demaille <akim@epita.fr>
12835
12836 * tests/regression.at (Unresolved SR Conflicts):
12837 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
12838 below.
12839
12840 2001-12-27 Akim Demaille <akim@epita.fr>
12841
12842 * src/LR0.c (new_state): Recognize the final state by the fact it
12843 is reached by eoftoken.
12844 (insert_start_shifting_state, insert_eof_shifting_state)
12845 (insert_accepting_state, augment_automaton): Remove, since now
12846 these states are automatically computed from the initial state.
12847 (generate_states): Adjust.
12848 * src/print.c: When reporting a rule number to the user, substract
12849 1, so that the axiom rule is rule 0, and the first user rule is 1.
12850 * src/reduce.c: Likewise.
12851 * src/print_graph.c (print_core): For the time being, just as for
12852 the report, depend upon --trace-flags to dump the full set of
12853 items.
12854 * src/reader.c (readgram): Once the grammar read, insert the rule
12855 0: `$axiom: START-SYMBOL $'.
12856 * tests/set.at: Adjust: rule 0 is now displayed, and since the
12857 number of the states has changed (the final state is no longer
12858 necessarily the last), catch up.
12859
12860 2001-12-27 Akim Demaille <akim@epita.fr>
12861
12862 Try to make the use of the eoftoken valid. Given that its value
12863 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
12864 is used instead of > 0 where appropriate, (ii), depend upon nritems
12865 instead of the 0-sentinel.
12866
12867 * src/gram.h, src/gram.c (nritems): New.
12868 Expected to be duplication of nitems, but for the time being...
12869 * src/reader.c (packgram): Assert nritems and nitems are equal.
12870 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
12871 * src/closure.c (print_closure, print_fderives): Likewise.
12872 * src/gram.c (ritem_print): Likewise.
12873 * src/print.c (print_core, print_grammar): Likewise.
12874 * src/print_graph.c: Likewise.
12875
12876 2001-12-27 Akim Demaille <akim@epita.fr>
12877
12878 * src/main.c (main): If there are complains after grammar
12879 reductions, then output the report anyway if requested, then die.
12880 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
12881 * src/reader.c (eoftoken): New.
12882 (parse_token_decl): If the token being defined has value `0', it
12883 is the eoftoken.
12884 (packsymbols): No longer hack `tags' to insert `$' by hand.
12885 Be sure to preserve the value of the eoftoken.
12886 (reader): Make sure eoftoken is defined.
12887 Initialize nsyms to 0: now eoftoken is created just like the others.
12888 * src/print.c (print_grammar): Don't special case the eof token.
12889 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
12890 lie anyway, albeit pleasant.
12891 * tests/calc.at: Exercise error messages with eoftoken.
12892 Change the grammar so that empty input is invalid.
12893 Adjust expectations.
12894 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
12895
12896 2001-12-27 Akim Demaille <akim@epita.fr>
12897
12898 * configure.in: Check the protos of strchr ans strspn.
12899 Replace strchr if needed.
12900 * src/system.h: Provide the protos of strchr, strspn and memchr if
12901 missing.
12902 * lib/strchr.c: New.
12903 * src/reader.c (symbols_save): Use strchr.
12904
12905 2001-12-27 Akim Demaille <akim@epita.fr>
12906
12907 * src/print.c, src/print_graph.c (escape): New.
12908 Use it to quote the TAGS outputs.
12909 * src/print_graph.c (print_state): Now errors are in red, and
12910 reductions in green.
12911 Prefer high to wide: output the state number on a line of its own.
12912
12913 2001-12-27 Akim Demaille <akim@epita.fr>
12914
12915 * src/state.h, src/state.c (reductions_new): New.
12916 * src/LR0.c (set_state_table): Let all the states have a
12917 `reductions', even if reduced to 0.
12918 (save_reductions): Adjust.
12919 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
12920 * src/print.c (print_reductions, print_actions): Adjust.
12921 * src/output.c (action_row): Adjust.
12922
12923 2001-12-27 Akim Demaille <akim@epita.fr>
12924
12925 * src/state.h, src/state.c (errs_new, errs_dup): New.
12926 * src/LR0.c (set_state_table): Let all the states have an errs,
12927 even if reduced to 0.
12928 * src/print.c (print_errs, print_reductions): Adjust.
12929 * src/output.c (output_actions, action_row): Adjust.
12930 * src/conflicts.c (resolve_sr_conflict): Adjust.
12931
12932 2001-12-27 Akim Demaille <akim@epita.fr>
12933
12934 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
12935
12936 2001-12-27 Akim Demaille <akim@epita.fr>
12937
12938 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
12939 * src/print.c: here.
12940 (lookaheadset, shiftset): New, used as additional storage by
12941 print_reductions.
12942 (print_results): Adjust.
12943 (print_shifts, print_gotos, print_errs): New, extracted from...
12944 (print_actions): here.
12945 * src/print_graph.c (print_actions): Remove dead code.
12946
12947 2001-12-27 Akim Demaille <akim@epita.fr>
12948
12949 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
12950 `$n' and `@n'.
12951
12952 2001-12-27 Akim Demaille <akim@epita.fr>
12953
12954 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
12955 (build_relations): Adjust.
12956
12957 2001-12-27 Akim Demaille <akim@epita.fr>
12958
12959 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
12960 duplication.
12961
12962 2001-12-27 Akim Demaille <akim@epita.fr>
12963
12964 * src/reader.c (packgram): Catch nitems overflows.
12965
12966 2001-12-27 Akim Demaille <akim@epita.fr>
12967
12968 * src/files.c, src/files.h (guard_obstack): Remove.
12969 * src/output.c (output): Adjust.
12970 * src/reader.c (parse_braces): New, factoring...
12971 (copy_action, copy_guard): these two which are renamed as...
12972 (parse_action, parse_guard): these.
12973 As a voluntary consequence, using braces around guards is now
12974 mandatory.
12975
12976 2001-12-27 Akim Demaille <akim@epita.fr>
12977
12978 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
12979 * src/reader.c (symbol_list): `guard' and `guard_line' are new
12980 members.
12981 (symbol_list_new): Adjust.
12982 (copy_action): action_line is the first line, not the last.
12983 (copy_guard): Just as for actions, store the `action' only, not
12984 the switch/case/break flesh.
12985 Don't parse the user action that might follow the guard, let...
12986 (readgram): do it, i.e., now, there can be an action after a
12987 guard.
12988 In other words the guard is just explicitly optional.
12989 (packgram): Adjust.
12990 * src/output.c (guards_output): New.
12991 (output_parser): Call it when needed.
12992 (output): Also free the guard and attrs obstacks.
12993 * src/files.c, src/files.h (obstack_save): Remove.
12994 (output_files): Remove.
12995 As a result, if one needs the former `.act' file, using an
12996 appropriate skeleton which requires actions and guards is now
12997 required.
12998 * src/main.c (main): Adjust.
12999 * tests/semantic.at: New.
13000 * tests/regression.at: Use `input.y' as input file name.
13001 Avoid 8+3 problems by requiring input.c when the test needs the
13002 parser.
13003
13004 2001-12-27 Akim Demaille <akim@epita.fr>
13005
13006 * src/reader.c (symbol_list_new): Be sure to initialize all the
13007 fields.
13008
13009 2001-12-27 Akim Demaille <akim@epita.fr>
13010
13011 All the hacks using a final pseudo state are now useless.
13012
13013 * src/LR0.c (set_state_table): state_table holds exactly nstates.
13014 * src/lalr.c (nLA): New.
13015 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
13016 instead of lookaheadsp from the pseudo state (nstate + 1).
13017
13018 2001-12-27 Akim Demaille <akim@epita.fr>
13019
13020 * src/output.c (action_row, token_actions): Use a state_t instead
13021 of a integer, and nlookaheads instead of the following state's
13022 lookaheadsp.
13023
13024 2001-12-27 Akim Demaille <akim@epita.fr>
13025
13026 * src/conflicts.c (log_resolution, flush_shift)
13027 (resolve_sr_conflict, set_conflicts, solve_conflicts)
13028 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
13029 (conflicts_print, print_reductions): Use a state_t instead of an
13030 integer when referring to a state.
13031 As much as possible, depend upon nlookaheads, instead of the
13032 `lookaheadsp' member of the following state (since lookaheads of
13033 successive states are successive, the difference between state n + 1
13034 and n served as the number of lookaheads for state n).
13035 * src/lalr.c (add_lookback_edge): Likewise.
13036 * src/print.c (print_core, print_actions, print_state)
13037 (print_results): Likewise.
13038 * src/print_graph.c (print_core, print_actions, print_state)
13039 (print_graph): Likewise.
13040 * src/conflicts.h: Adjust.
13041
13042 2001-12-27 Akim Demaille <akim@epita.fr>
13043
13044 * src/bison.hairy: Formatting/comment changes.
13045 ANSIfy.
13046 Remove `register' indications.
13047 Add plenty of `static'.
13048
13049 2001-12-27 Akim Demaille <akim@epita.fr>
13050
13051 * src/output.c (prepare): Drop the muscle `ntbase' which
13052 duplicates ntokens.
13053 * src/bison.simple: Formatting/comment changes.
13054 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
13055 is an undocumented synonym.
13056
13057 2001-12-22 Akim Demaille <akim@epita.fr>
13058
13059 * src/output.c (output_table_data): Change the prototype to use
13060 `int' for array ranges: some invocations do pass an int, not a
13061 short.
13062 Reported by Wayne Green.
13063
13064 2001-12-22 Akim Demaille <akim@epita.fr>
13065
13066 Some actions of web2c.y are improperly triggered.
13067 Reported by Mike Castle.
13068
13069 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
13070 * tests/regression.at (Web2c): Rename as...
13071 (Web2c Report): this.
13072 (Web2c Actions): New.
13073
13074 2001-12-22 Akim Demaille <akim@epita.fr>
13075
13076 Reductions in web2c.y are improperly reported.
13077 Reported by Mike Castle.
13078
13079 * src/conflicts.c (print_reductions): Fix.
13080 * tests/regression.at (Web2c): New.
13081
13082 2001-12-18 Akim Demaille <akim@epita.fr>
13083
13084 Some host fail on `assert (!"foo")', which expands to
13085 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
13086 Reported by Nelson Beebee.
13087
13088 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
13089 `#define it_succeeded 0' and `assert (it_succeeded)'.
13090
13091 2001-12-17 Marc Autret <autret_m@epita.fr>
13092
13093 * src/bison.simple: Don't hard code the skeleton line and filename.
13094 * src/output.c (output_parser): Rename 'line' as 'output_line'.
13095 New line counter 'skeleton_line' (skeleton-line muscle).
13096
13097 2001-12-17 Paul Eggert <eggert@twinsun.com>
13098
13099 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
13100 YYDEBUG must be defined to a nonzero value.
13101
13102 * src/bison.simple (yytname): Do not assume that the user defines
13103 YYDEBUG to a properly parenthesized expression.
13104
13105 2001-12-17 Akim Demaille <akim@epita.fr>
13106
13107 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
13108 nlookaheads is a new member.
13109 Adjust all users.
13110 * src/lalr.h (nlookaheads): Remove this orphan declaration.
13111 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
13112 state.
13113
13114 2001-12-17 Akim Demaille <akim@epita.fr>
13115
13116 * src/files.h, src/files.c (open_files, close_files): Remove.
13117 * src/main.c (main): Don't open/close files, nor invoke lex_free,
13118 let...
13119 * src/reader.c (reader): Do it.
13120
13121 2001-12-17 Akim Demaille <akim@epita.fr>
13122
13123 * src/conflicts.c (print_reductions): Formatting changes.
13124
13125 2001-12-17 Akim Demaille <akim@epita.fr>
13126
13127 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
13128 (flush_reduce): New.
13129 (resolve_sr_conflict): Adjust.
13130
13131 2001-12-17 Akim Demaille <akim@epita.fr>
13132
13133 * src/output.c (output_obstack): Be static and rename as...
13134 (format_obstack): this, to avoid any confusion with files.c's
13135 output_obstack.
13136 * src/reader.h (muscle_obstack): Move to...
13137 * src/output.h: here, since it's defined in output.c.
13138
13139 2001-12-17 Akim Demaille <akim@epita.fr>
13140
13141 * src/output.c (action_row, save_column, default_goto)
13142 (sort_actions, matching_state, pack_vector): Better variable
13143 locality.
13144
13145 2001-12-17 Akim Demaille <akim@epita.fr>
13146
13147 * src/output.c: Various formatting changes.
13148
13149 2001-12-17 Akim Demaille <akim@epita.fr>
13150
13151 * src/files.c (output_files): Free the output_obstack.
13152 * src/main.c (main): Call print and print_graph conditionally.
13153 * src/print.c (print): Work unconditionally.
13154 * src/print_graph.c (print_graph): Work unconditionally.
13155 * src/conflicts.c (log_resolution): Output only if verbose_flag.
13156
13157 2001-12-16 Marc Autret <autret_m@epita.fr>
13158
13159 * src/output.c (actions_output): Fix. When we use %no-lines,
13160 there is one less line per action.
13161
13162 2001-12-16 Marc Autret <autret_m@epita.fr>
13163
13164 * src/bison.simple: Remove a useless #line directive.
13165 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
13166 * src/output.c (get_lines_number): New.
13167 (output_parser): Adjust, now takes care about the lines of a
13168 output muscles.
13169 Fix line numbering.
13170 (actions_output): Computes the number of lines taken by actions.
13171 (output_master_parser): Insert new skeleton which is the name of
13172 the output parser file name.
13173
13174 2001-12-15 Marc Autret <autret_m@epita.fr>
13175
13176 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
13177
13178 2001-12-15 Marc Autret <autret_m@epita.fr>
13179
13180 * src/output.c (output_gram): Keep track of the hairy one.
13181
13182 2001-12-15 Akim Demaille <akim@epita.fr>
13183
13184 Make `make distcheck' work.
13185
13186 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
13187 system.h which uses libgettext.h.
13188
13189 2001-12-15 Akim Demaille <akim@epita.fr>
13190
13191 * src/nullable.c (set_nullable): Useless rules must be skipped,
13192 otherwise, since we range over their symbols, we might look at a
13193 nonterminal which no longer ``exists'', i.e., it is not counted in
13194 `nvars', hence we overflow our arrays.
13195
13196 2001-12-15 Akim Demaille <akim@epita.fr>
13197
13198 The header can also be produced directly, without any obstack!
13199 Yahoo!
13200
13201 * src/files.c, src/files.h (defines_obstack): Remove.
13202 (compute_header_macro): Global.
13203 (defines_obstack_save): Remove.
13204 * src/reader.c (parse_union_decl): No longer output to
13205 defines_obstack: its content can be found in the `stype' muscle
13206 anyway.
13207 (output_token_translations): Merge into...
13208 (symbols_output): this.
13209 Rename as...
13210 (symbols_save): this.
13211 (reader): Adjust.
13212 * src/output.c (header_output): New.
13213 (output): Call it.
13214
13215 2001-12-15 Akim Demaille <akim@epita.fr>
13216
13217 * src/reader.c (parse_union_decl): Instead of handling two obstack
13218 simultaneously, use one to define the `stype' muscle, and use the
13219 value of the latter to fill defines_obstack.
13220 (copy_comment): Remove.
13221 (copy_comment2): Work for a single obstack.
13222 Rename as...
13223 (copy_comment): this.
13224
13225 2001-12-15 Akim Demaille <akim@epita.fr>
13226
13227 * src/lex.c, src/lex.h (xgetc): No longer static.
13228 * src/reader.c (parse_union_decl): Revamp.
13229
13230 2001-12-15 Akim Demaille <akim@epita.fr>
13231
13232 Still making progress in separating Bison into (i) input, (ii)
13233 process, (iii) output: now we can directly output the parser file
13234 without using table_obstack at all.
13235
13236 * src/files.c, src/files.h (table_obstack): Bye bye.
13237 (parser_file_name): New.
13238 * src/files.c (compute_output_file_names): Compute it.
13239 * src/output.c (actions_output, output_parser)
13240 (output_master_parser): To a file instead of an obstack.
13241
13242 2001-12-15 Akim Demaille <akim@epita.fr>
13243
13244 Attach actions to rules, instead of pre-outputting them to
13245 actions_obstack.
13246
13247 * src/gram.h (rule_t): action and action_line are new members.
13248 * src/reader.c (symbol_list): Likewise.
13249 (copy_action): Save the actions within the rule.
13250 (packgram): Save them in rule_table.
13251 * src/output.c (actions_output): New.
13252 (output_parser): Use it on `%%actions'.
13253 (output_rule_data): Don't free rule_table.
13254 (output): Do it.
13255 (prepare): Don't save the `action' muscle.
13256 * src/bison.simple: s/%%action/%%actions/.
13257
13258 2001-12-15 Akim Demaille <akim@epita.fr>
13259
13260 * src/reader.c (copy_action): When --yacc, don't append a `;'
13261 to the user action: let it fail if lacking.
13262 Suggested by Arnold Robbins and Tom Tromey.
13263
13264 2001-12-14 Akim Demaille <akim@epita.fr>
13265
13266 * src/lex.c (literalchar): Simply return the char you decoded, non
13267 longer mess around with obstacks and int pointers.
13268 Adjust all callers.
13269
13270 2001-12-14 Akim Demaille <akim@epita.fr>
13271
13272 * src/lex.c (literalchar): Don't escape the special characters,
13273 just decode them, and keep them as char (before, eol was output as
13274 the 2 char string `\n' etc.).
13275 * src/output.c (output_rule_data): Use quotearg to output the
13276 token strings.
13277
13278 2001-12-13 Paul Eggert <eggert@twinsun.com>
13279
13280 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
13281 Do not infringe on the global user namespace when using C++.
13282 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
13283 All uses of `fprintf' and `stderr' changed.
13284
13285 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
13286
13287 2001-12-13 Akim Demaille <akim@epita.fr>
13288
13289 The computation of nullable is broken: it doesn't handle empty
13290 RHS's properly.
13291
13292 * tests/torture.at (GNU AWK Grammar): New.
13293 * tests/sets.at (Nullable): New.
13294 * src/nullable.c (set_nullable): Instead of blindly looping over
13295 `ritems', loop over the rules, and then over their rhs's.
13296
13297 Work around Autotest bugs.
13298
13299 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
13300 frame, because Autotest understand lines starting with a `+' as
13301 traces from the shell. Then, they are not processed properly.
13302 Admittedly an Autotest bug, but we don't have time to wait for
13303 Autotest to catch up.
13304 * tests/regression.at (Broken Closure): Adjust to the new table
13305 frames.
13306 Move to...
13307 * tests/sets.at: here.
13308
13309 2001-12-13 Akim Demaille <akim@epita.fr>
13310
13311 * src/closure.c (closure): Use nrules instead of playing tricks
13312 with BITS_PER_WORD.
13313
13314 2001-12-13 Akim Demaille <akim@epita.fr>
13315
13316 * src/print.c (print_actions): Output the handling of `$' as the
13317 traces do: shifting the token EOF. Before EOF was treated as a
13318 nonterminal.
13319 * tests/regression.at: Adjust some tests.
13320 * src/print_graph.c (print_core): Complete the set of items via
13321 closure. The next-to-final and final states are still unsatisfying,
13322 but that's to be addressed elsewhere.
13323 No longer output the rule numbers, but do output the state number.
13324 A single loop for the shifts + gotos is enough, but picked a
13325 distinct color for each.
13326 (print_graph): Initialize and finalize closure.
13327
13328 2001-12-13 Akim Demaille <akim@epita.fr>
13329
13330 * src/reader.c (readgram): Remove dead code, an strip useless
13331 braces.
13332 (get_type): Remove, unused.
13333
13334 2001-12-12 Akim Demaille <akim@epita.fr>
13335
13336 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
13337 on that of lib/error.c.
13338
13339 2001-12-12 Akim Demaille <akim@epita.fr>
13340
13341 Some hosts don't like `/' in includes.
13342
13343 * src/system.h: Include libgettext.h without qualifying the path.
13344 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
13345 $(top_srcdir).
13346
13347 2001-12-11 Marc Autret <autret_m@epita.fr>
13348
13349 * src/output.c (output_parser): Remove useless muscle.
13350
13351 2001-12-11 Marc Autret <autret_m@epita.fr>
13352
13353 * src/bison.simple: Remove #line just before %%epilogue. It
13354 is now handled in ...
13355 * src/reader.c (read_additionnal_code): Add the output of a
13356 #line for the epilogue.
13357
13358 2001-12-10 Marc Autret <autret_m@epita.fr>
13359
13360 * src/reader.c (copy_definition): Re-use CPP-outed code which
13361 replace precedent remove.
13362 * src/bison.simple: Remove #line before %%prologue because
13363 %%input-line is wrong at this time.
13364
13365 2001-12-10 Marc Autret <autret_m@epita.fr>
13366
13367 * src/reader.c (symbols_output): Clean up.
13368 * src/output.c (output_gram, output): Clean up.
13369
13370 2001-12-10 Akim Demaille <akim@epita.fr>
13371
13372 * src/lalr.c (initialize_lookaheads): New. Extracted from...
13373 * src/LR0.c (set_state_table): here.
13374 * src/lalr.c (lalr): Call it.
13375
13376 2001-12-10 Akim Demaille <akim@epita.fr>
13377
13378 * src/state.h (shifts): Remove the `number' member: shifts are
13379 attached to state, hence no longer need to be labelled with a
13380 state number.
13381
13382 2001-12-10 Akim Demaille <akim@epita.fr>
13383
13384 Now that states have a complete set of members, the linked list of
13385 shifts is useless: just fill directly the state's shifts member.
13386
13387 * src/state.h (shifts): Remove the `next' member.
13388 * src/LR0.c (first_state, last_state): Remove.
13389 Adjust the callers.
13390 (augment_automaton): Don't look for the shifts that must be added
13391 a shift on EOF: it is those of the state we looked for! But now,
13392 since shifts are attached, it is no longer needed to looking
13393 merely by its id: its number.
13394
13395 2001-12-10 Akim Demaille <akim@epita.fr>
13396
13397 * src/LR0.c (augment_automaton): Better variable locality.
13398 Remove an impossible branch: if there is a state corresponding to
13399 the start symbol being shifted, then there is shift for the start
13400 symbol from the initial state.
13401
13402 2001-12-10 Akim Demaille <akim@epita.fr>
13403
13404 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
13405 only when appropriate: when insert_start_shifting_state' is not
13406 invoked.
13407 * tests/regression.at (Rule Line Numbers): Adjust.
13408
13409 2001-12-10 Akim Demaille <akim@epita.fr>
13410
13411 * src/LR0.c (augment_automaton): Now that all states have shifts,
13412 merge the two cases addition shifts to the initial state.
13413
13414 2001-12-10 Akim Demaille <akim@epita.fr>
13415
13416 * src/lalr.c (set_state_table): Move to...
13417 * src/LR0.c: here.
13418 * src/lalr.c (lalr): Don't call it...
13419 * src/LR0.c (generate_states): do it.
13420 * src/LR0.h (first_state): Remove, only the table is used.
13421
13422 2001-12-10 Akim Demaille <akim@epita.fr>
13423
13424 * src/LR0.h (first_shift, first_reduction): Remove.
13425 * src/lalr.c: Don't use first_shift: find shifts through the
13426 states.
13427
13428 2001-12-10 Akim Demaille <akim@epita.fr>
13429
13430 * src/LR0.c: Attach shifts to states as soon as they are
13431 computed.
13432 * src/lalr.c (set_state_table): Instead of assigning shifts to
13433 state, just assert that the mapping was properly done.
13434
13435 2001-12-10 Akim Demaille <akim@epita.fr>
13436
13437 * src/LR0.c (insert_start_shift): Rename as...
13438 (insert_start_shifting_state): this.
13439 (insert_eof_shifting_state, insert_accepting_state): New.
13440 (augment_automaton): Adjust.
13441 Better locality of the variables.
13442 When looking if the start_symbol is shifted from the initial
13443 state, using `while (... symbol != start_symbol ...)' sounds
13444 better than `while (... symbol < start_symbol ...)': If fail
13445 to see how the order between symbols could be relevant!
13446
13447 2001-12-10 Akim Demaille <akim@epita.fr>
13448
13449 * src/getargs.h: Don't declare `spec_name_prefix' and
13450 `spec_file_prefix', declared by src/files.h.
13451 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
13452 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
13453 * src/output.c (prepare): Adjust.
13454 * src/reader.c (symbols_output): Likewise.
13455 * src/vmsgetargs.c: Vaguely adjust, but who cares?
13456
13457 2001-12-10 Akim Demaille <akim@epita.fr>
13458
13459 * src/muscle_tab.c (muscle_init): NULL is a better default than
13460 `"0"'.
13461
13462 2001-12-10 Akim Demaille <akim@epita.fr>
13463
13464 * src/reader.c (reader): Calling symbols_output once is enough.
13465
13466 2001-12-10 Akim Demaille <akim@epita.fr>
13467
13468 Now that states have a complete set of members, the linked list of
13469 reductions is useless: just fill directly the state's reductions
13470 member.
13471
13472 * src/state.h (struct reductions): Remove member `number' and
13473 `next'.
13474 * src/LR0.c (first_reduction, last_reduction): Remove.
13475 (save_reductions): Don't link the new reductions, store them in
13476 this_state.
13477 * src/lalr.c (set_state_table): No need to attach reductions to
13478 states, it's already done.
13479 * src/output.c (output_actions): No longer free the shifts, then
13480 the reductions, then the states: free all the states and their
13481 members.
13482
13483 2001-12-10 Akim Demaille <akim@epita.fr>
13484
13485 * src/options.c (OPTN, DRTV, BOTH): New.
13486 (option_table): Use them.
13487
13488 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
13489 the job of system.h.
13490 * src/options.c: Don't include stdio.h and xalloc.h for the same
13491 reasons.
13492
13493 2001-12-10 Akim Demaille <akim@epita.fr>
13494
13495 * src/output.c (output, prepare): Make sure the values of the
13496 muscles `action' and `prologue' are 0-terminated.
13497
13498 2001-12-10 Akim Demaille <akim@epita.fr>
13499
13500 Clean up GCC warnings.
13501
13502 * src/reader.c (copy_action): `buf' is not used.
13503 (parse_skel_decl): Be static.
13504 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
13505 * src/options.h (create_long_option_table): Have a real prototype.
13506 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
13507 (hash_delete_at): Return const void *.
13508 Adjust casts to preserve the const.
13509
13510 2001-12-10 Akim Demaille <akim@epita.fr>
13511
13512 * configure.in: Require 2.52g.
13513 M4 is not needed, but AUTOM4TE is.
13514 * m4/m4.m4: Remove.
13515 * tests/Makefile.am: Adjust.
13516
13517 2001-12-10 Akim Demaille <akim@epita.fr>
13518
13519 One structure for states is enough, even though theoretically
13520 there are LR(0) states and LALR(1) states.
13521
13522 * src/lalr.h (state_t): Remove.
13523 (state_table): Be state_t **, not state_t *.
13524 * src/state.h (core, CORE_ALLOC): Rename as...
13525 (state_t, STATE_ALLOC): this.
13526 Add the LALR(1) members: shifts, reductions, errs.
13527 * src/LR0.c (state_table): Rename as...
13528 (state_hash): this, to avoid name clashes with the global
13529 `state_table'.
13530 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
13531 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
13532
13533 2001-12-10 Akim Demaille <akim@epita.fr>
13534
13535 Bison dumps core on bash.y.
13536 Reported by Pascal Bart.
13537
13538 * src/warshall.c (bitmatrix_print): New.
13539 (TC): Use it.
13540 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
13541 j must be the outer loop.
13542 * tests/regression.at (Broken Closure): New.
13543
13544 2001-12-05 Akim Demaille <akim@epita.fr>
13545
13546 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
13547 its argument.
13548 Reported by Peter Hamorsky.
13549
13550 2001-12-05 Akim Demaille <akim@epita.fr>
13551
13552 * src/conflicts.c (err_table): Remove.
13553 (resolve_sr_conflict): Adjust.
13554 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
13555 Rename as...
13556 (state_t.reductions, state_t.shifts): this.
13557
13558 2001-12-05 Akim Demaille <akim@epita.fr>
13559
13560 * src/reduce.c (reduce_grammar_tables): No longer disable the
13561 removal of useless rules via CPP but via `if (0)', so that the
13562 compiler still check the code is valid.
13563 For instance, it should have noticed `rline' no longer exists: use
13564 the `line' member of rule_t.
13565 * src/gram.c (dummy, rline): Remove, unused.
13566
13567 2001-12-05 Akim Demaille <akim@epita.fr>
13568
13569 * src/output.c (pack_vector): Use assert, not berror.
13570 * src/main.c (berror): Remove, unused.
13571
13572 2001-12-05 Akim Demaille <akim@epita.fr>
13573
13574 New experimental feature: if --verbose --trace output all the
13575 items of a state, not only its kernel.
13576
13577 * src/print.c (print_core): If `trace_flag', then invoke closure
13578 before outputting the items of the state (print_core is no longer
13579 a correct name them).
13580 (print_results): Invoke new_closure/free_closure if needed.
13581
13582 2001-12-05 Akim Demaille <akim@epita.fr>
13583
13584 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
13585 * src/closure.c, src/closure.h (itemsetsize): Rename as...
13586 (nitemset): for consistency with the rest of the project.
13587
13588 2001-12-05 Akim Demaille <akim@epita.fr>
13589
13590 * src/closure.c (print_closure): Improve.
13591 (closure): Use it for printing input and output.
13592
13593 2001-12-05 Akim Demaille <akim@epita.fr>
13594
13595 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
13596 indexed by nonterminals.
13597
13598 2001-12-05 Akim Demaille <akim@epita.fr>
13599
13600 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
13601 what it was!).
13602 * src/warshall.h: Remove accidental duplication of the content.
13603
13604 2001-12-05 Akim Demaille <akim@epita.fr>
13605
13606 * src/closure.c (set_fderives): De-obfuscate.
13607
13608 2001-12-05 Akim Demaille <akim@epita.fr>
13609
13610 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
13611
13612 2001-12-05 Akim Demaille <akim@epita.fr>
13613
13614 * src/closure.c (set_firsts): De-obfuscate.
13615
13616 2001-12-05 Akim Demaille <akim@epita.fr>
13617
13618 * src/output.c (action_row): De-obfuscate
13619 using the good o' techniques: arrays not pointers, variable
13620 locality, BITISSET, RESETBIT etc.
13621
13622 2001-12-05 Akim Demaille <akim@epita.fr>
13623
13624 Pessimize the code to simplify it: from now on, all the states
13625 have a valid SHIFTS, which NSHIFTS is possibly 0.
13626
13627 * src/LR0.c (shifts_new): Be global and move to..
13628 * src/state.c, src/state.h: here.
13629 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
13630 * src/print_graph: Adjust.
13631
13632 2001-12-05 Akim Demaille <akim@epita.fr>
13633
13634 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
13635 * src/conflicts.c: Use it.
13636 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
13637 incorrectly ``simplified''.
13638
13639 2001-12-05 Akim Demaille <akim@epita.fr>
13640
13641 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
13642 using the good o' techniques: arrays not pointers, variable
13643 locality, BITISSET, RESETBIT etc.
13644
13645 2001-12-05 Akim Demaille <akim@epita.fr>
13646
13647 * src/state.h (SHIFT_SYMBOL): New.
13648 * src/conflicts.c: Use it to deobfuscate.
13649
13650 2001-12-05 Akim Demaille <akim@epita.fr>
13651
13652 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
13653 (print_reductions): De-obfuscate using the good o' techniques:
13654 arrays not pointers, variable locality, BITISSET.
13655
13656 2001-12-05 Akim Demaille <akim@epita.fr>
13657
13658 * src/conflicts.c (print_reductions): Arrays, not pointers.
13659 Use BITISSET.
13660
13661 2001-12-05 Akim Demaille <akim@epita.fr>
13662
13663 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13664
13665 2001-12-05 Akim Demaille <akim@epita.fr>
13666
13667 * src/conflicts.c (print_reductions): Improve variable locality.
13668
13669 2001-12-05 Akim Demaille <akim@epita.fr>
13670
13671 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13672
13673 2001-12-05 Akim Demaille <akim@epita.fr>
13674
13675 * src/conflicts.c (print_reductions): Improve variable locality.
13676
13677 2001-12-05 Akim Demaille <akim@epita.fr>
13678
13679 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
13680 * src/lalr.c: Use them.
13681
13682 2001-12-05 Akim Demaille <akim@epita.fr>
13683
13684 * src/LR0.c (augment_automaton): Formatting changes.
13685 Better variable locality.
13686
13687 2001-12-05 Akim Demaille <akim@epita.fr>
13688
13689 * src/lalr.c (matrix_print): New.
13690 (transpose): Use it.
13691 Use arrays instead of pointers.
13692
13693 2001-12-05 Akim Demaille <akim@epita.fr>
13694
13695 * src/lalr.c (maxrhs): Move to...
13696 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
13697 * src/lalr.c (build_relations): Adjust.
13698
13699 2001-12-05 Akim Demaille <akim@epita.fr>
13700
13701 * src/lalr.c (transpose): Free the memory allocated to the
13702 argument, as it is replaced by the results by the unique caller.
13703 (build_relations): Merely invoke transpose: it handles the memory
13704 deallocation.
13705 Improve variable locality.
13706 Avoid variables used as mere abbreviations.
13707 (compute_lookaheads): Use arrays instead of pointers.
13708
13709 2001-12-05 Akim Demaille <akim@epita.fr>
13710
13711 * src/lalr.c (initialize_F): Improve variable locality.
13712 Avoid variables used as mere abbreviations.
13713
13714 2001-12-05 Akim Demaille <akim@epita.fr>
13715
13716 * src/derives.c (print_derives): Display the ruleno.
13717 * src/lalr.c (initialize_F, transpose): Better variable locality
13718 to improve readability.
13719 Avoid variables used as mere abbreviations.
13720
13721 2001-12-05 Akim Demaille <akim@epita.fr>
13722
13723 * src/lalr.c (traverse): Use arrays instead of pointers.
13724
13725 2001-12-05 Akim Demaille <akim@epita.fr>
13726
13727 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
13728 the handling of squeue.
13729 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13730
13731 2001-12-05 Akim Demaille <akim@epita.fr>
13732
13733 Because useless nonterminals are now kept alive (instead of being
13734 `destroyed'), we now sometimes examine them, and store information
13735 related to them. Hence we need to know their number, and adjust
13736 memory allocations.
13737
13738 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
13739 static.
13740 * src/LR0.c (allocate_itemsets): The memory allocated to
13741 `symbol_count' was used for two different purpose: once to count
13742 the number of occurrences of each symbol, and later reassigned to
13743 `shift_symbol', containing the symbol that can be shifted from a
13744 given state.
13745 Deobfuscate, i.e., allocate, use and free `symbol_count' here
13746 only, and...
13747 (new_itemsets): Allocate `shift_symbol' here.
13748 (allocate_itemsets): symbol_count includes useless nonterminals.
13749 Make room for them.
13750 (free_storage): Use `free', not `XFREE', for pointers that cannot
13751 be null.
13752
13753 2001-12-05 Akim Demaille <akim@epita.fr>
13754
13755 * src/nullable.c (set_nullable): Deobfuscate the handling of
13756 ritem.
13757 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13758
13759 2001-12-05 Akim Demaille <akim@epita.fr>
13760
13761 * src/gram.c, src/gram.h (ritem_print): New.
13762 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
13763 (This useless function was defined only to work around VMS linkers
13764 that can't handle compilation units with variables only).
13765 * src/reduce.c (dump_grammar): Use it to trace the construction of
13766 ritem.
13767
13768 2001-12-04 Paul Eggert <eggert@twinsun.com>
13769
13770 * src/bison.simple (union yyalloc): Change member names
13771 to be the same as the stack names.
13772 (yyparse): yyptr is now union yyalloc *, not char *.
13773 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
13774 and may generate better code on some machines.
13775 (yystpcpy): Use prototype if __STDC__ is defined, not just
13776 if __cplusplus is defined.
13777
13778 2001-11-30 Akim Demaille <akim@epita.fr>
13779
13780 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
13781 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
13782 Gettext doesn't compile cleanly, and dies with -Werror.
13783 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
13784 Include WARNING_CFLAGS here.
13785 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
13786 before being defined.
13787
13788 2001-11-27 Paul Eggert <eggert@twinsun.com>
13789
13790 * lib/quotearg.h (quotearg_n, quotearg_n_style):
13791 First arg is int, not unsigned.
13792 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
13793 (SIZE_MAX, UINT_MAX): New macros.
13794 (quotearg_n_options): Abort if N is negative.
13795 Avoid overflow check on hosts where size_t is 64 bits and int
13796 is 32 bits, as overflow is impossible there.
13797 Fix off-by-one typo that caused unnecessary reallocation.
13798
13799 2001-11-29 Paul Eggert <eggert@twinsun.com>
13800
13801 Name space cleanup in generated parser.
13802
13803 * doc/bison.texinfo (Bison Parser): Discuss system headers
13804 and their effect on the user name space.
13805
13806 * src/bison.simple:
13807 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
13808 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
13809 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
13810
13811 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
13812 on user names when possible.
13813
13814 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
13815 Simplify test for whather <alloca.h> exists.
13816
13817 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
13818
13819 (<stdio.h>): Include if YYDEBUG.
13820
13821 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
13822 ! defined (yyoverflow) && ! defined (yymemcpy).
13823
13824 (yymemcpy, yyparse): Rename local variables as needed so that
13825 they all begin with 'yy'.
13826
13827 (yystrlen, yystpcpy): New functions.
13828
13829 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
13830 All uses changed.
13831
13832 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
13833 instead of relying on string.h functions. Use YYSTACK_ALLOC
13834 and YYSTACK_FREE instead of malloc and free.
13835
13836 2001-11-30 Akim Demaille <akim@epita.fr>
13837
13838 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
13839 before their first uses.
13840 (YYBISON, YYPURE): Move to the top of the output.
13841
13842 2001-11-30 Akim Demaille <akim@epita.fr>
13843
13844 * tests/reduce.at (Useless Nonterminals): Fix.
13845
13846 2001-11-30 Akim Demaille <akim@epita.fr>
13847
13848 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
13849 if body instead of `;' to pacify GCC's warnings.
13850
13851 2001-11-30 Akim Demaille <akim@epita.fr>
13852
13853 Instead of mapping the LHS of unused rules to -1, keep the LHS
13854 valid, but flag the rules as invalid.
13855
13856 * src/gram.h (rule_t): `useful' is a new member.
13857 * src/print.c (print_grammar): Adjust.
13858 * src/derives.c (set_derives): Likewise.
13859 * src/reader.c (packgram, reduce_output): Likewise.
13860 * src/reduce.c (reduce_grammar_tables): Likewise.
13861 * tests/reduce.at (Underivable Rules, Useless Rules): New.
13862
13863 2001-11-30 Akim Demaille <akim@epita.fr>
13864
13865 * src/reduce.c (reduce_output): Formatting changes.
13866 * src/print.c (print_results, print_grammar): Likewise.
13867 * tests/regression.at (Rule Line Numbers)
13868 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
13869
13870 2001-11-30 Akim Demaille <akim@epita.fr>
13871
13872 * src/reduce.c (nonterminals_reduce): Instead of throwing away
13873 useless nonterminals, move them at the end of the symbol arrays.
13874 (reduce_output): Adjust.
13875 * tests/reduce.at (Useless Nonterminals): Adjust.
13876
13877 2001-11-30 Akim Demaille <akim@epita.fr>
13878
13879 * src/reduce.c: Various comment/formatting changes.
13880 (nonterminals_reduce): New, extracted from...
13881 (reduce_grammar_tables): here.
13882 (reduce_grammar): Call nonterminals_reduce.
13883
13884 2001-11-29 Paul Eggert <eggert@twinsun.com>
13885
13886 * src/bison.simple (YYSTACK_REALLOC): Remove.
13887 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
13888 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
13889 New macros.
13890 (union yyalloc): New type.
13891 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
13892 an arbitrary restriction on hosts where size_t is wider than int.
13893
13894 (yyparse): Don't dump core if alloca or malloc fails; instead, report
13895 a parser stack overflow. Allocate just one block of memory for all
13896 three stacks, instead of allocating three blocks; this typically is
13897 faster and reduces fragmentation.
13898
13899 Do not limit the number of items in the stack to a value that fits
13900 in 'int', as this is an arbitrary limit on hosts with 64-bit
13901 size_t and 32-bit int.
13902
13903 2001-11-29 Marc Autret <autret_m@epita.fr>
13904
13905 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
13906 of defining YYERROR_VERBOSE.
13907 [AT_DATA]: $4 is now out of C declarations in the prologue.
13908
13909 2001-11-28 Marc Autret <autret_m@epita.fr>
13910
13911 * src/reader.c (parse_dquoted_param): New.
13912 (parse_skel_decl): Use it.
13913 * src/lex.h: Add its prototype.
13914 * src/lex.c (literalchar): Become not static.
13915
13916 2001-11-28 Marc Autret <autret_m@epita.fr>
13917
13918 * src/output.h: And put its extern declaration here.
13919 * src/output.c (error_verbose): Define here.
13920 (prepare): Echo name modification.
13921 * src/getargs.h: Clean its extern declaration.
13922 * src/getargs.c (error_verbose_flag): Remove.
13923 (getargs): Remove case 'e'.
13924 * src/options.c (option_table): 'error-verbose' is now seen as simple
13925 percent option.
13926 Include output.h.
13927
13928 * src/reader.c (read_declarations): Remove case tok_include.
13929 (parse_include_decl): Remove.
13930 * src/lex.h (token_t): Remove tok_include.
13931 * src/options.c (option_table): 'include' is now a simple command line
13932 option.
13933
13934 2001-11-28 Marc Autret <autret_m@epita.fr>
13935
13936 * src/bison.simple: Adjust muscle names.
13937 * src/muscle_tab.c (muscle_init): Also rename the muscles.
13938 * src/output.c (prepare): s/_/-/ for the muscles names.
13939 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
13940
13941 2001-11-28 Marc Autret <autret_m@epita.fr>
13942
13943 * src/bison.simple: Fix debug.
13944 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
13945
13946 2001-11-28 Akim Demaille <akim@epita.fr>
13947
13948 * src/LR0.c (shifts_new): New.
13949 (save_shifts, insert_start_shift, augment_automaton): Use it.
13950
13951 2001-11-28 Akim Demaille <akim@epita.fr>
13952
13953 * src/closure.c (closure): `b' and `ruleno' denote the same value:
13954 keep ruleno only.
13955
13956 2001-11-28 Akim Demaille <akim@epita.fr>
13957
13958 * src/closure.c (closure): Instead of looping over word in array
13959 then bits in words, loop over bits in array.
13960
13961 2001-11-28 Akim Demaille <akim@epita.fr>
13962
13963 * src/closure.c (closure): No longer optimize the special case
13964 where all the bits of `ruleset[r]' are set to 0, to make the code
13965 clearer.
13966
13967 2001-11-28 Akim Demaille <akim@epita.fr>
13968
13969 * src/closure.c (closure): `r' and `c' are new variables, used to
13970 de-obfuscate accesses to RULESET and CORE.
13971
13972 2001-11-28 Akim Demaille <akim@epita.fr>
13973
13974 * src/reduce.c (reduce_print): Use ngettext.
13975 (dump_grammar): Improve the trace accuracy.
13976
13977 2001-11-28 Akim Demaille <akim@epita.fr>
13978
13979 * src/reduce.c (dump_grammar): Don't translate trace messages.
13980
13981 2001-11-28 Akim Demaille <akim@epita.fr>
13982
13983 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
13984 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
13985 as all tags are free'ed afterwards.
13986 From Enrico Scholz.
13987
13988 2001-11-27 Paul Eggert <eggert@twinsun.com>
13989
13990 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
13991 use alloca when we didn't want to, and vice versa.
13992
13993 2001-11-27 Marc Autret <autret_m@epita.fr>
13994
13995 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
13996 initialization.
13997 * src/output.c (prepare): Remove its update.
13998
13999 2001-11-27 Marc Autret <autret_m@epita.fr>
14000
14001 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
14002 Use %error-verbose.
14003
14004 2001-11-27 Marc Autret <autret_m@epita.fr>
14005
14006 * src/bison.simple: Remove YYERROR_VERBOSE using.
14007 Use %%error_verbose.
14008 (yyparse): Likewise.
14009 * src/output.c (prepare): Give its final value.
14010 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
14011 * src/getargs.h: Add its extern declaration.
14012 * src/getargs.c (error_verbose_flag): New int.
14013 (getargs): Update to catch new case.
14014 * src/options.c (option_table): 'error-verbose' is a new option.
14015 (shortopts): Update.
14016
14017 2001-11-27 Akim Demaille <akim@epita.fr>
14018
14019 * src/system.h: Use intl/libgettext.h.
14020 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
14021
14022 2001-11-27 Akim Demaille <akim@epita.fr>
14023
14024 * tests/torture.at (Exploding the Stack Size with Malloc):
14025 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
14026
14027 2001-11-27 Akim Demaille <akim@epita.fr>
14028
14029 * src/files.c: Include error.h.
14030 Reported by Hans Aberg.
14031
14032 2001-11-26 Marc Autret <autret_m@epita.fr>
14033
14034 * src/reader.c (parse_include_decl): New, not yet implemented.
14035 (read_declarations): Add case tok_include.
14036 * src/getargs.h (include): Add its extern definition.
14037 * src/getargs.c (include): New const char *.
14038 (getargs): Add case '-I'.
14039 * src/options.c (option_table): Add include as command line and
14040 percent option.
14041 * src/lex.h (token_t): Add tok_include.
14042
14043 2001-11-26 Akim Demaille <akim@epita.fr>
14044
14045 * src/reader.c (readgram): Make sure rules for mid-rule actions
14046 have a lineno equal to that of their host rule.
14047 Reported by Hans Aberg.
14048 * tests/regression.at (Rule Line Numbers): New.
14049
14050 2001-11-26 Akim Demaille <akim@epita.fr>
14051
14052 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
14053 size_ts.
14054
14055 2001-11-26 Akim Demaille <akim@epita.fr>
14056
14057 * src/complain.c, src/complain.h (error): Remove, provided by
14058 lib/error.[ch].
14059
14060 2001-11-26 Akim Demaille <akim@epita.fr>
14061
14062 * src/reader.c (read_declarations): Don't abort on tok_illegal,
14063 issue an error message.
14064 * tests/regression.at (Invalid %directive): New.
14065 Reported by Hans Aberg.
14066
14067 2001-11-26 Akim Demaille <akim@epita.fr>
14068
14069 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
14070 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
14071
14072 2001-11-26 Akim Demaille <akim@epita.fr>
14073
14074 * src/conflicts.c (conflicts_print): Don't complain at all when
14075 there are no reduce/reduce conflicts, and as many shift/reduce
14076 conflicts as expected.
14077 * tests/regression.at (%expect right): Adjust.
14078
14079 2001-11-23 Akim Demaille <akim@epita.fr>
14080
14081 * lib/alloca.c: Update, from fileutils.
14082
14083 2001-11-23 Akim Demaille <akim@epita.fr>
14084
14085 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
14086
14087 2001-11-23 Akim Demaille <akim@epita.fr>
14088
14089 * src/system.h: Include alloca.h.
14090 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
14091
14092 2001-11-23 Akim Demaille <akim@epita.fr>
14093
14094 * src/print_graph.c (print_actions): Remove `rule', unused.
14095 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
14096 pacify GCC's signed < unsigned warnings.
14097 * src/closure.c (itemsetsize): Likewise.
14098 * src/reader.c (symbol_list_new): Static.
14099
14100 2001-11-23 Akim Demaille <akim@epita.fr>
14101
14102 Attaching lineno to buckets is stupid, since only one copy of each
14103 symbol is kept, only the line of the first occurrence is kept too.
14104
14105 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
14106 * src/reader.c (rline_allocated): Remove, unused.
14107 (symbol_list): Have a `line' member.
14108 (symbol_list_new): New.
14109 (readgram): Use it.
14110 * src/print.c (print_grammar): Output the rule line numbers.
14111 * tests/regression.at (Solved SR Conflicts)
14112 (Unresolved SR Conflicts): Adjust.
14113 Reported by Hans Aberg.
14114
14115 2001-11-22 Marc Autret <autret_m@epita.fr>
14116
14117 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
14118
14119 2001-11-22 Marc Autret <autret_m@epita.fr>
14120
14121 * src/muscle_tab.c (muscle_init): Remove initialization of
14122 skeleton muscle.
14123 * src/output.c (output_master_parser): Do it here.
14124
14125 2001-11-20 Akim Demaille <akim@epita.fr>
14126
14127 * po/sv.po: New.
14128 * configure.in (ALL_LINGUAS): Adjust.
14129 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
14130 longer contains strings to translate.
14131
14132 2001-11-19 Akim Demaille <akim@epita.fr>
14133
14134 * src/conflicts.c (conflicts_print): Add a missing \n.
14135
14136 2001-11-19 Akim Demaille <akim@epita.fr>
14137
14138 * src/nullable.c (nullable_print): New.
14139 (set_nullable): Call it when tracing.
14140 Better locality of variables.
14141
14142 2001-11-19 Akim Demaille <akim@epita.fr>
14143
14144 * src/print.c (print_actions): Better locality of variables.
14145
14146 2001-11-19 Akim Demaille <akim@epita.fr>
14147
14148 * src/derives.c (print_derives): Fix and enrich.
14149 * src/closure.c (print_fderives): Likewise.
14150
14151 2001-11-19 Akim Demaille <akim@epita.fr>
14152
14153 * src/closure.c (itemsetend): Remove, replaced with...
14154 (itemsetsize): new.
14155
14156 2001-11-19 Akim Demaille <akim@epita.fr>
14157
14158 * src/LR0.c (kernel_end): Remove, replaced with...
14159 (kernel_size): new.
14160
14161 2001-11-19 Akim Demaille <akim@epita.fr>
14162
14163 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
14164 to clarify.
14165
14166 2001-11-19 Akim Demaille <akim@epita.fr>
14167
14168 * src/closure.c (closure): Use arrays instead of pointers to clarify.
14169
14170 2001-11-19 Akim Demaille <akim@epita.fr>
14171
14172 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
14173 trace messages.
14174 * src/LR0.c: Likewise.
14175 (allocate_itemsets): Use arrays instead of pointers to clarify.
14176
14177 2001-11-19 Akim Demaille <akim@epita.fr>
14178
14179 * src/getargs.c (statistics_flag): Replace with...
14180 (trace_flag): New.
14181 (longopts): Accept --trace instead of --statistics.
14182 * src/getargs.h, src/options.c: Adjust.
14183 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
14184 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
14185
14186 2001-11-19 Akim Demaille <akim@epita.fr>
14187
14188 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
14189 pointers to clarify the code.
14190 (save_reductions, save_shifts): Factor common parts of alternatives.
14191
14192 2001-11-19 Akim Demaille <akim@epita.fr>
14193
14194 * src/LR0.c (new_state, get_state): Complete TRACE code.
14195 * src/closure.c: Include `reader.h' to get `tags', needed by the
14196 trace code.
14197 Rename the conditional DEBUG as TRACE.
14198 Output consistently TRACEs to stderr, not stdout.
14199 * src/derives.c: Likewise.
14200 * src/reduce.c: (inaccessable_symbols): Using if is better style
14201 than goto.
14202 Use `#if TRACE' instead of `#if 0' for tracing code.
14203
14204 2001-11-19 Akim Demaille <akim@epita.fr>
14205
14206 * src/system.h (LIST_FREE, shortcpy): New.
14207 * src/LR0.c: Use them.
14208 * src/output.c (free_itemsets, free_reductions, free_shifts):
14209 Remove, replaced by LIST_FREE.
14210
14211 2001-11-19 Akim Demaille <akim@epita.fr>
14212
14213 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
14214 (REDUCTIONS_ALLOC): New.
14215 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
14216 allocation.
14217
14218 2001-11-19 Akim Demaille <akim@epita.fr>
14219
14220 * src/LR0.c (new_state): Complete trace code.
14221 * src/nullable.c (set_nullable): Don't translate traces.
14222
14223 2001-11-19 Akim Demaille <akim@epita.fr>
14224
14225 * src/print_graph.c (print_core): Better locality of variables.
14226 * src/print.c (print_core): Likewise.
14227
14228 2001-11-19 Akim Demaille <akim@epita.fr>
14229
14230 * src/vcg.c: You do the output, so you are responsible of the
14231 handling of VCG syntax, in particular: use quotearg.
14232 * src/print_graph.c: Don't.
14233 (print_actions): Don't output the actions as part of the nodes,
14234 since that's the job of the edges.
14235 (print_state): Don't output by hand: fill the node description,
14236 and ask for its output.
14237
14238 2001-11-19 Akim Demaille <akim@epita.fr>
14239
14240 * src/bison.simple (yyparse): When verbosely reporting an error,
14241 no longer put additional quotes around token names.
14242 * tests/calc.at: Adjust.
14243
14244 2001-11-19 Akim Demaille <akim@epita.fr>
14245
14246 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
14247 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
14248 * src/output.c: Adjust.
14249
14250 2001-11-19 Akim Demaille <akim@epita.fr>
14251
14252 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
14253 (rule_t): this.
14254 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
14255
14256 2001-11-19 Akim Demaille <akim@epita.fr>
14257
14258 * src/gram.h (rule_t): New.
14259 (rule_table): New.
14260 (rrhs, rlhs): Remove, part of state_t.
14261 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
14262 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14263 * src/reader.c, src/reduce.c: Adjust.
14264
14265 2001-11-19 Akim Demaille <akim@epita.fr>
14266
14267 * src/reader.c (symbols_output): New, extracted from...
14268 (packsymbols): Here.
14269 (reader): Call it.
14270
14271 2001-11-19 Akim Demaille <akim@epita.fr>
14272
14273 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
14274 (maxrhs): this new function.
14275
14276 2001-11-19 Akim Demaille <akim@epita.fr>
14277
14278 * src/lalr.c (F): New macro to access the variable F.
14279 Adjust.
14280
14281 2001-11-19 Akim Demaille <akim@epita.fr>
14282
14283 * src/lalr.h (LA): New macro to access the variable LA.
14284 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14285 * src/lalr.c: Adjust.
14286
14287 2001-11-19 Akim Demaille <akim@epita.fr>
14288
14289 * src/lalr.c (initialize_LA): Only initialize LA. Let...
14290 (set_state_table): handle the `lookaheads' members.
14291
14292 2001-11-19 Akim Demaille <akim@epita.fr>
14293
14294 * src/lalr.h (lookaheads): Removed array, whose contents is now
14295 a member of...
14296 (state_t): this structure.
14297 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14298 Adjust.
14299
14300 2001-11-19 Akim Demaille <akim@epita.fr>
14301
14302 * src/lalr.h (consistent): Removed array, whose contents is now
14303 a member of...
14304 (state_t): this structure.
14305 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14306 Adjust.
14307
14308 2001-11-19 Akim Demaille <akim@epita.fr>
14309
14310 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
14311 contents are now members of...
14312 (state_t): this structure.
14313 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14314 Adjust.
14315
14316 2001-11-19 Akim Demaille <akim@epita.fr>
14317
14318 * src/lalr.h (state_t): New.
14319 (state_table): Be a state_t * instead of a core **.
14320 (accessing_symbol): Remove, part of state_t.
14321 * src/lalr.c: Adjust.
14322 (set_accessing_symbol): Merge into...
14323 (set_state_table): this.
14324 * src/print_graph.c, src/conflicts.c: Adjust.
14325
14326 2001-11-14 Akim Demaille <akim@epita.fr>
14327
14328 * tests/calc.at, tests/output.at, tests/regression.at,
14329 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
14330 now the tests are run in private dirs, therefore AC_CLEANUP and
14331 family can be simplified to 0-ary.
14332 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
14333 use abs. path to find config.h.
14334 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
14335 stderr, there can be way too much random noise.
14336 Instead pass -Werror to GCC and rely on the exit status.
14337 Reported by Wolfram Wagner.
14338
14339 2001-11-14 Akim Demaille <akim@epita.fr>
14340
14341 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
14342 defined only if yyoverflow is defined, to avoid `warning: unused
14343 variable `yyvs1''.
14344 Reported by The Test Suite.
14345
14346 2001-11-14 Akim Demaille <akim@epita.fr>
14347
14348 * src/print.c: Include reduce.h.
14349 Reported by Hans Aberg.
14350
14351 2001-11-14 Akim Demaille <akim@epita.fr>
14352
14353 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
14354 Revert a previous patch: these are really const.
14355 * src/conflicts.c (conflict_report): Additional useless pair of
14356 braces to pacify GCC's warnings for `if () if () {} else {}'.
14357 * src/lex.c (parse_percent_token): Replace equal_offset with
14358 arg_offset.
14359 arg is const.
14360 Be sure to strdup `arg' when used, since there is no reason for
14361 token_buffer not to change.
14362
14363 2001-11-14 Akim Demaille <akim@epita.fr>
14364
14365 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
14366 definition.
14367 * src/main.c (main): Use them.
14368 Suggested by Hans Aberg.
14369
14370 2001-11-12 Akim Demaille <akim@epita.fr>
14371
14372 * src/system.h (ngettext): Now that we use ngettext, be sure to
14373 provide a default definition when NLS are not used.
14374
14375 2001-11-12 Akim Demaille <akim@epita.fr>
14376
14377 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
14378 Use @kbd to denote user input.
14379 (Language and Grammar): ANSIfy the example.
14380 Adjust its layout for info/notinfo.
14381 (Location Tracking Calc): Output error messages to stderr.
14382 Output locations in a more GNUtically correct way.
14383 Fix a couple of Englishos.
14384 Adjust @group/@end group pairs.
14385
14386 2001-11-12 Akim Demaille <akim@epita.fr>
14387
14388 %expect was not functioning at all.
14389
14390 * src/conflicts.c (expected_conflicts): Set to -1.
14391 (conflict_report): Use ngettext.
14392 (conflicts_print): Check %expect and make its violation an error.
14393 * doc/bison.texinfo (Expect Decl): Adjust.
14394 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
14395 * tests/regression.at (%expect not enough, %expect right)
14396 (%expect too much): New.
14397
14398 2001-11-12 Akim Demaille <akim@epita.fr>
14399
14400 * tests/regression.at (Conflicts): Rename as...
14401 (Unresolved SR Conflicts): this.
14402 (Solved SR Conflicts): New.
14403
14404 2001-11-12 Akim Demaille <akim@epita.fr>
14405
14406 * src/reduce.c (print_results): Rename as...
14407 (reduce_output): This.
14408 Output to OUT, passed as argument, instead of output_obstack.
14409 (dump_grammar): Likewise.
14410 (reduce_free): New.
14411 Also free V1.
14412 (reduce_grammar): No longer call reduce_output, since...
14413 * src/print.c (print_results): do it.
14414 * src/main.c (main): Call reduce_free;
14415
14416 2001-11-12 Akim Demaille <akim@epita.fr>
14417
14418 * src/conflicts.c (print_reductions): Accept OUT as argument.
14419 Output to it, not to output_obstack.
14420 * src/print.c (print_actions): Adjust.
14421
14422 2001-11-12 Akim Demaille <akim@epita.fr>
14423
14424 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
14425 the result instead of using...
14426 (src_total, rrc_total, src_count, rrc_count): Remove.
14427 (any_conflicts): Remove.
14428 (print_conflicts): Split into...
14429 (conflicts_print, conflicts_output): New.
14430 * src/conflicts.h: Adjust.
14431 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
14432 * src/print.c (print_grammar): Issue `\n' between two rules.
14433 * tests/regression.at (Conflicts): New.
14434 Reported by Tom Lane.
14435
14436 2001-11-12 Akim Demaille <akim@epita.fr>
14437
14438 * tests/regression.at (Invalid input): Remove, duplicate with
14439 ``Invalid input: 1''.
14440
14441 2001-11-12 Akim Demaille <akim@epita.fr>
14442
14443 * tests/torture.at (AT_DATA_STACK_TORTURE)
14444 (Exploding the Stack Size with Alloca)
14445 (Exploding the Stack Size with Malloc): New.
14446
14447 2001-11-12 Akim Demaille <akim@epita.fr>
14448
14449 * src/bison.simple (YYSTACK_REALLOC): New.
14450 (yyparse) [!yyoverflow]: Use it and free the old stack.
14451 Reported by Per Allansson.
14452
14453 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
14454
14455 * src/bison.simple: Define type yystype instead of YYSTYPE, and
14456 define CPP macro, which substitute YYSTYPE by yystype.
14457 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
14458 with yyltype/YYLTYPE. This allows inclusion of the generated
14459 header within the parser if the compiler, such as GGC, accepts
14460 multiple equivalent #defines.
14461 From Akim.
14462
14463 2001-11-05 Akim Demaille <akim@epita.fr>
14464
14465 * src/reader.c (symbols_output): New, extracted from...
14466 (packsymbols): here.
14467 (reader): Adjust.
14468
14469 2001-11-05 Akim Demaille <akim@epita.fr>
14470
14471 * src/lex.c (parse_percent_token): s/quotearg/quote/.
14472
14473 2001-11-05 Akim Demaille <akim@epita.fr>
14474
14475 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
14476 pattern.
14477
14478 2001-11-05 Akim Demaille <akim@epita.fr>
14479
14480 * src/options.h (struct option_table_struct): set_flags is void*.
14481 * src/options.c (longopts): Support `--output' and `%output'.
14482 (usage): Adjust.
14483 * src/lex.h (tok_setopt): Remove, replaced with...
14484 (tok_intopt, tok_stropt): these new guys.
14485 * src/lex.c (getopt.h): Not needed.
14486 (token_buffer, unlexed_token_buffer): Not const.
14487 (percent_table): Promote `-' over `_' in directive names.
14488 Active `%name-prefix', `file-prefix', and `output'.
14489 (parse_percent_token): Accept possible arguments to directives.
14490 Promote `-' over `_' in directive names.
14491
14492 2001-11-04 Akim Demaille <akim@epita.fr>
14493
14494 * doc/bison.texinfo (Decl Summary): Split the list into
14495 `directives for grammars' and `directives for bison'.
14496 Sort'em.
14497 Add description of `%name-prefix', `file-prefix', and `output'.
14498 Promote `-' over `_' in directive names.
14499 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
14500 Simplify the description of `--name-prefix'.
14501 Promote `-' over `_' in directive names.
14502 Promote `--output' over `--output-file'.
14503 Fix the description of `--defines'.
14504 * tests/output.at: Exercise %file-prefix and %output.
14505
14506 2001-11-02 Akim Demaille <akim@epita.fr>
14507
14508 * doc/refcard.tex: Update.
14509
14510 2001-11-02 Akim Demaille <akim@epita.fr>
14511
14512 * src/symtab.h (SUNDEF): New.
14513 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
14514 stand for `uninitialized', instead of 0.
14515 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
14516 * src/lex.c (lex): Adjust.
14517
14518 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
14519 Number it 0.
14520 Let yylex return it instead of a plain 0.
14521 Reported by Dick Streefland.
14522
14523 2001-11-02 Akim Demaille <akim@epita.fr>
14524
14525 * tests/regression.at (Mixing %token styles): New test.
14526
14527 2001-11-02 Akim Demaille <akim@epita.fr>
14528
14529 * src/reader.c (parse_thong_decl): Formatting changes.
14530 (token_translations_init): New, extracted from...
14531 (packsymbols): Here.
14532 Adjust.
14533
14534 2001-11-01 Akim Demaille <akim@epita.fr>
14535
14536 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
14537 Check that `9foo.y' produces correct cpp guards.
14538 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
14539 guards.
14540 Reported by Wwp.
14541
14542 2001-11-01 Akim Demaille <akim@epita.fr>
14543
14544 * tests/regression.at (Invalid input: 2): New.
14545 * src/lex.c (unlexed_token_buffer): New.
14546 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
14547 too.
14548 Reported by Wwp.
14549
14550 2001-11-01 Akim Demaille <akim@epita.fr>
14551
14552 * tests/calc.at: Catch up with 1.30.
14553 * configure.in: Bump to 1.49a.
14554 Adjust to newer Autotest.
14555
14556 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
14557
14558 * src/conflicts.c: Move global variables rrc_total and src_total ...
14559 (print_conflicts): here.
14560 * src/output.c (output): Free global variable user_toknums.
14561 * src/lex.c (token_obstack): Become static.
14562
14563 2001-10-18 Akim Demaille <akim@epita.fr>
14564
14565 * tests/atlocal.in (GCC): Add.
14566 * tests/calc.at: s/m4_match/m4_bmatch/.
14567 s/m4_patsubst/m4_bpatsubst/.
14568 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
14569 * configure.in: AC_SUBST(GCC).
14570
14571 2001-10-14 Marc Autret <autret_m@epita.fr>
14572
14573 * src/options.c (create_long_option_table): Fix.
14574
14575 2001-10-10 Akim Demaille <akim@epita.fr>
14576
14577 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
14578
14579 2001-10-04 Akim Demaille <akim@epita.fr>
14580
14581 * src/reader.c (parse_union_decl): Push the caracters in
14582 union_obstack, not attrs_obstack.
14583
14584 2001-10-04 Akim Demaille <akim@epita.fr>
14585
14586 Merge in the branch 1.29.
14587
14588 * src/reader.c (packsymbols): Use a temporary obstack for
14589 `%%tokendef', since output_stack is already used elsewhere.
14590
14591 2001-10-02 Akim Demaille <akim@epita.fr>
14592
14593 Bump 1.29d.
14594
14595 2001-10-02 Akim Demaille <akim@epita.fr>
14596
14597 Version 1.29c.
14598
14599 2001-10-02 Akim Demaille <akim@epita.fr>
14600
14601 * tests/regression.at (Invalid CPP headers): New.
14602 From Alexander Belopolsky.
14603 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
14604
14605 2001-10-02 Akim Demaille <akim@epita.fr>
14606
14607 * tests/regression.at (Invalid input): New.
14608 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
14609 Reported by Shura.
14610
14611 2001-10-02 Akim Demaille <akim@epita.fr>
14612
14613 * tests/calc.at: Now that --debug works, the tests must be adjusted.
14614
14615 2001-10-02 Akim Demaille <akim@epita.fr>
14616
14617 * src/output.c (output_parser): Assert `skeleton'.
14618 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
14619 systems.
14620 From Shura.
14621
14622 2001-10-01 Marc Autret <autret_m@epita.fr>
14623
14624 * src/lex.h: Echo modifications.
14625 * src/lex.c (unlex): Parameter is now token_t.
14626 From Hans Aberg.
14627
14628 2001-10-01 Marc Autret <autret_m@epita.fr>
14629
14630 * src/main.c: Include lex.h.
14631 From Hans Aberg.
14632
14633 2001-09-29 Akim Demaille <akim@epita.fr>
14634
14635 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
14636
14637 2001-09-28 Akim Demaille <akim@epita.fr>
14638
14639 * tests/testsuite.at: Update to newer Autotest.
14640 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
14641
14642 2001-09-27 Akim Demaille <akim@epita.fr>
14643
14644 Position independent wrapper.
14645
14646 * tests/bison: Remove.
14647 * tests/bison.in: New.
14648 * configure.in: Adjust.
14649
14650 2001-09-27 Paul Eggert <eggert@twinsun.com>
14651
14652 Port quotearg fixes from tar 1.13.24.
14653
14654 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
14655 tm to be declared.
14656 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
14657 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
14658
14659 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
14660 * m4/mbrtowc.m4: New file.
14661 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
14662 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
14663
14664 2001-09-27 Akim Demaille <akim@epita.fr>
14665
14666 Bump to 1.29c.
14667
14668 2001-09-27 Akim Demaille <akim@epita.fr>
14669
14670 Version 1.29b.
14671
14672 2001-09-25 Akim Demaille <akim@epita.fr>
14673
14674 * src/system.h: Include `xalloc.h'.
14675 Remove it from the C files.
14676 * src/files.c (output_files): Free the obstacks.
14677 * src/lex.c (init_lex): Rename as...
14678 (lex_init): this.
14679 (lex_free): New.
14680 * src/main.c (main): Use it.
14681
14682 2001-09-24 Marc Autret <autret_m@epita.fr>
14683
14684 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
14685 to output informations in fout (FILE*).
14686 (open_graph, close_graph): Likewise.
14687 (output_graph, output_edge, output_node): Likewise.
14688 * src/vcg.h: Update function prototypes.
14689 * src/print_graph.c (print_graph): Open output graph file.
14690 (print_actions): Adjust.
14691 * src/files.h: Remove extern declaration.
14692 * src/files.c: Remove graph_obstack declaration.
14693 (open_files): Remove graph_obstack initialization.
14694 (output_files): Remove graph_obstack saving.
14695
14696 2001-09-24 Marc Autret <autret_m@epita.fr>
14697
14698 * src/files.c (compute_output_file_names): Fix.
14699
14700 2001-09-24 Marc Autret <autret_m@epita.fr>,
14701 Akim Demaille <akim@epita.fr>
14702
14703 * src/reader.c (reader): Remove call to free_symtab ().
14704 * src/main.c (main): Call it here.
14705 Include symtab.h.
14706 * src/conflicts.c (initialize_conflicts): Rename as...
14707 (solve_conflicts): this.
14708 * src/print.c (print_core, print_actions, print_state)
14709 (print_grammar): Dump to a file instead a `output_obstack'.
14710 (print_results): Dump `output_obstack', and then proceed with the
14711 FILE *.
14712 * src/files.c (compute_output_file_names, close_files): New.
14713 (output_files): Adjust.
14714 * src/main.c (main): Adjust.
14715
14716 2001-09-23 Marc Autret <autret_m@epita.fr>
14717
14718 * src/files.c (compute_header_macro): Computes header macro name
14719 from spec_defines_file when given.
14720
14721 2001-09-23 Marc Autret <autret_m@epita.fr>
14722
14723 * src/files.c (output_files): Add default extensions.
14724
14725 2001-09-22 Akim Demaille <akim@epita.fr>
14726
14727 * src/conflicts.c (finalize_conflicts): Rename as...
14728 (free_conflicts): this.
14729
14730 2001-09-22 Akim Demaille <akim@epita.fr>
14731
14732 * src/gram.c (gram_free): Rename back as...
14733 (dummy): this.
14734 (output_token_translations): Free `token_translations'.
14735 * src/symtab.c (free_symtab): Free the tag field.
14736
14737 2001-09-22 Akim Demaille <akim@epita.fr>
14738
14739 Remove `translations' as it is always set to true.
14740
14741 * src/gram.h: Adjust.
14742 * src/reader.c (packsymbols, parse_token_decl): Adjust
14743 * src/print.c (print_grammar): Adjust.
14744 * src/output.c (output_token_translations): Adjust.
14745 * src/lex.c (lex): Adjust.
14746 * src/gram.c: Be sure the set pointers to NULL.
14747 (dummy): Rename as...
14748 (gram_free): this.
14749
14750 2001-09-22 Akim Demaille <akim@epita.fr>
14751
14752 * configure.in: Invoke AM_LIB_DMALLOC.
14753 * src/system.h: Use dmalloc.
14754 * src/LR0.c: Be sure to have pointers initialized to NULL.
14755 (allocate_itemsets): Allocate kernel_items only if needed.
14756
14757 2001-09-22 Akim Demaille <akim@epita.fr>
14758
14759 * configure.in: Bump to 1.29b.
14760 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
14761 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
14762 need xmalloc.c in calc.y.
14763 From Pascal Bart.
14764
14765 2001-09-21 Akim Demaille <akim@epita.fr>
14766
14767 Version 1.29a.
14768 * Makefile.maint, config/config.guess, config/config.sub,
14769 * config/missing: Update from masters.
14770 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
14771 upon package.m4.
14772 * configure.in (ALL_LINGUAS): Add `tr'.
14773
14774 2001-09-21 Akim Demaille <akim@epita.fr>
14775
14776 * tests/Makefile.am (package.m4): Move to...
14777 ($(srcdir)/$(TESTSUITE)): here.
14778
14779 2001-09-20 Akim Demaille <akim@epita.fr>
14780
14781 * src/complain.c: No longer try to be standalone: use system.h.
14782 Don't assume __STDC__ is defined to 1. Just test if it is defined.
14783 * src/complain.h: Likewise.
14784 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
14785 Remove the unused variable `n'.
14786 From Albert Chin-A-Young.
14787
14788 2001-09-18 Marc Autret <autret_m@epita.fr>
14789
14790 * doc/bison.1: Update.
14791 * doc/bison.texinfo (Bison Options): Update --defines and --graph
14792 descriptions.
14793 (Option Cross Key): Update.
14794 Add --graph.
14795
14796 2001-09-18 Marc Autret <autret_m@epita.fr>
14797
14798 * tests/regression.at: New test (comment in %union).
14799
14800 2001-09-18 Marc Autret <autret_m@epita.fr>
14801
14802 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
14803 do that.
14804 Reported by Keith Browne.
14805
14806 2001-09-18 Marc Autret <autret_m@epita.fr>
14807
14808 * tests/output.at: Add tests for --defines and --graph.
14809
14810 2001-09-18 Marc Autret <autret_m@epita.fr>
14811
14812 * tests/output.at: Removes tests of %{header,src}_extension features.
14813
14814 2001-09-18 Akim Demaille <akim@epita.fr>
14815
14816 * tests/Makefile.am (package.m4): New.
14817 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
14818 (_AT_CHECK_CALC_ERROR): Likewise.
14819 Factor the `, ' part of verbose error messages.
14820
14821 2001-09-18 Marc Autret <autret_m@epita.fr>
14822
14823 * src/getargs.c (longopts): Declare --defines and --graph as options
14824 with optional arguments.
14825 * src/files.h: Add extern declarations.
14826 * src/files.c (spec_graph_file, spec_defines_file): New.
14827 (output_files): Update.
14828 Remove CPP-outed code.
14829
14830 2001-09-18 Marc Autret <autret_m@epita.fr>
14831
14832 Turn off %{source,header}_extension feature.
14833
14834 * src/files.c (compute_exts_from_gf): Update.
14835 (compute_exts_from_src): Update.
14836 (output_files): CPP-out useless code.
14837 * src/files.h: Remove {header,source}_extension extern declarations.
14838 * src/reader.c (parse_dquoted_param): CPP-out.
14839 (parse_header_extension_decl): Remove.
14840 (parse_source_extension_decl): Remove.
14841 (read_declarations): Remove cases tok_{hdrext,srcext}.
14842 * src/lex.c (percent_table): Remove {header,source}_extension entries.
14843 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
14844
14845 2001-09-10 Akim Demaille <akim@epita.fr>
14846
14847 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
14848 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
14849 (AT_CHECK_OUTPUT): this.
14850 Merely check ls' exit status, its output is useless.
14851
14852 2001-09-10 Akim Demaille <akim@epita.fr>
14853
14854 * tests/calc.at: Use m4_match.
14855 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
14856
14857 2001-09-10 Marc Autret <autret_m@epita.fr>,
14858 Akim Demaille <akim@epita.fr>
14859
14860 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
14861 enum color_e.
14862 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
14863 to `normal'.
14864 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
14865 * src/lex.h: Adjust prototype.
14866 (token_t): Add `tok_undef'.
14867 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
14868 (parse_percent_token): Now returns token_t.
14869 Add default statement in switch.
14870 (lex): Separate `c' as an input variable, from the token_t result
14871 part.
14872 (unlexed): Is a token_t.
14873
14874 2001-09-10 Akim Demaille <akim@epita.fr>
14875
14876 * configure.in: Bump to 1.29a.
14877
14878 2001-09-07 Akim Demaille <akim@epita.fr>
14879
14880 Version 1.29.
14881
14882 2001-08-30 Akim Demaille <akim@epita.fr>
14883
14884 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
14885 * m4/atconfig.m4: Remove.
14886 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
14887 * tests/bison: New.
14888 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
14889 m4_if, m4_patsubst, and m4_regexp.
14890 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
14891 `input' file instead of echo.
14892
14893 2001-08-29 Akim Demaille <akim@epita.fr>
14894
14895 Bump to 1.28e.
14896
14897 2001-08-29 Akim Demaille <akim@epita.fr>
14898
14899 Version 1.28d.
14900
14901 2001-08-29 Paul Eggert <eggert@twinsun.com>
14902
14903 * src/bison.simple (yyparse): Don't take the address of an
14904 item before the start of an array, as that doesn't conform to
14905 the C Standard.
14906
14907 2001-08-29 Robert Anisko <anisko_r@epita.fr>
14908
14909 * doc/bison.texinfo (Location Tracking Calc): New node.
14910
14911 2001-08-29 Paul Eggert <eggert@twinsun.com>
14912
14913 * src/output.c (output): Do not define const, as this now
14914 causes more problems than it cures.
14915
14916 2001-08-29 Akim Demaille <akim@epita.fr>
14917
14918 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
14919 the nodes.
14920 Be sure to tag the `detailmenu'.
14921
14922 2001-08-29 Akim Demaille <akim@epita.fr>
14923
14924 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
14925 download in a tmp dir.
14926
14927 2001-08-28 Marc Autret <autret_m@epita.fr>
14928
14929 * config/depcomp: New file.
14930
14931 2001-08-28 Marc Autret <autret_m@epita.fr>
14932
14933 * doc/bison.1 (mandoc): Adjust.
14934 From Juan Manuel Guerrero.
14935
14936 2001-08-28 Marc Autret <autret_m@epita.fr>
14937
14938 * src/print_graph.c (print_state): Fix.
14939
14940 2001-08-27 Marc Autret <autret_m@epita.fr>
14941
14942 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
14943 char * members.
14944 Echo modifications to the functions prototypes.
14945 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
14946
14947 2001-08-27 Marc Autret <autret_m@epita.fr>
14948
14949 * src/vcg.c: Include `xalloc.h'.
14950 (add_colorentry): New.
14951 (add_classname): New.
14952 (add_infoname): New.
14953 * src/vcg.h: Add new prototypes.
14954
14955 2001-08-27 Akim Demaille <akim@epita.fr>
14956
14957 * Makefile.maint: Sync. again with CVS Autoconf.
14958
14959 2001-08-27 Akim Demaille <akim@epita.fr>
14960
14961 * Makefile.maint: Formatting changes.
14962 (po-update, cvs-update, update): New targets.
14963 (AMTAR): Remove.
14964
14965 2001-08-27 Akim Demaille <akim@epita.fr>
14966
14967 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14968 * Makefile.maint: Sync. with CVS Autoconf.
14969
14970 2001-08-27 Marc Autret <autret_m@epita.fr>
14971
14972 * src/vcg.h (struct infoname_s): New.
14973 (struct colorentry_s): New.
14974 (graph_s): New fields {vertical,horizontal}_order in structure.
14975 Add `infoname' field.
14976 Add `colorentry' field;
14977 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
14978 (G_HORIZONTAL_ORDER): New.
14979 (G_INFONAME): New.
14980 (G_COLORENTRY): New.
14981 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
14982 Add output of `infoname'.
14983 Add output of `colorentry'.
14984
14985 2001-08-27 Marc Autret <autret_m@epita.fr>
14986
14987 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
14988 This one shadowed a global parameter.
14989
14990 2001-08-24 Marc Autret <autret_m@epita.fr>
14991
14992 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
14993 instead of `unsigned'.
14994 (print_state): Do not call obstack_object_size () in obstack_grow ()
14995 to avoid macro variables shadowing.
14996
14997 2001-08-23 Marc Autret <autret_m@epita.fr>
14998
14999 * src/lex.c (percent_table): Typo: s/naem/name/.
15000 Add graph option.
15001 Normalize new options declarations.
15002
15003 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
15004
15005 * tests/suite.at: Exercise %header_extension and %source_extension.
15006
15007 2001-08-16 Marc Autret <autret_m@epita.fr>
15008
15009 * src/reader.c (parse_dquoted_param): New.
15010 (parse_header_extension_decl): Use it.
15011 (parse_source_extension_decl): Likewise.
15012
15013 2001-08-16 Marc Autret <autret_m@epita.fr>
15014
15015 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
15016 (get_xxxx_str): Use assert () instead of complain ().
15017 Remove return invokations in default cases.
15018 (get_decision_str): Modify default behaviour. Remove second argument.
15019 Echo modifications on calls.
15020 (output_graph): Fix.
15021
15022 2001-08-16 Marc Autret <autret_m@epita.fr>
15023
15024 * src/getargs.c (usage): Update with ``-g, --graph''.
15025
15026 2001-08-16 Marc Autret <autret_m@epita.fr>
15027
15028 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
15029 (Option Cross Key): Likewise.
15030 * doc/bison.1: Update.
15031
15032 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
15033
15034 * src/output.c (output_master_parser): Don't finish action_obstack.
15035 (output_parser): Don't care about the muscle action, here.
15036 (prepare): Copy the action_obstack in the action muscle.
15037 (output): Free action_obstack.
15038
15039 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
15040
15041 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
15042 will contain `%union' declaration.
15043 (parse_union_decl): Delete #line directive output.
15044 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
15045 informations about %union.
15046 (parse_union_decl): Copy the union_obstack in the muscle stype.
15047 * src/bison.simple: Add new #line directive.
15048 Add typdef %%stype YYSTYPE.
15049
15050 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
15051
15052 * src/bison.simple: Add new `#line' directive.
15053
15054 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
15055
15056 * src/bison.simple: New `#line' directive.
15057 * src/output.c (output_parser): Support new dynamic muscle input_line.
15058
15059 2001-09-22 Marc Autret <autret_m@epita.fr>
15060
15061 * src/output.c (output_master_parser): New.
15062 (output_parser): Be more re-entrant.
15063
15064 2001-09-21 Marc Autret <autret_m@epita.fr>
15065
15066 * src/reader.c (copy_definition, parse_union_decl): Update and use
15067 `linef' muscle.
15068 (copy_action): Likewise.
15069 Use obstack_1grow ().
15070 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
15071
15072 2001-09-21 Marc Autret <autret_m@epita.fr>
15073
15074 * src/options.c (option_table): Adjust.
15075 * src/lex.c (parse_percent_token): Fix.
15076
15077 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
15078
15079 * src/options.c (symtab.h): Include it, need by lex.h.
15080
15081 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
15082
15083 * src/lex.c (parse_percent_token): Change type of variable `tx', which
15084 is now an option_table_struct*.
15085 (option_strcmp): New function option_strcmp.
15086 (parse_percent_token): Call option_strcmp.
15087 * src/getargs.c (xalloc.h, options.h): Include it.
15088 (getargs): Call create_long_option_table.
15089 (getargs): Free longopts at the end of the function.
15090 (shortopts): Move in options.c.
15091 * src/options.c (create_long_option_table): New function. Convert
15092 information from option_table to option structure.
15093 * src/reader.c (options.h): Include it.
15094
15095 * src/Makefile.am: Adjust.
15096 * src/options.c (option_table): Create from longopts and percent_table.
15097 * src/getargs.c (longopts): Delete.
15098 * src/lex.c (struct percent_table_struct): Delete.
15099 (percent_table): Delete.
15100 (options.h): Include it.
15101 * src/options.c: Create.
15102 * src/options.h: Create.
15103 Declare enum opt_access_e.
15104 Define struct option_table_struct.
15105
15106 2001-09-20 Marc Autret <autret_m@epita.fr>
15107
15108 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
15109 sections of Bison.
15110
15111 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
15112
15113 * src/bison.simple: s/%%filename/%%skeleton.
15114 * src/muscle_tab.c (getargs.h): Include it.
15115 (muscle_init): Insert new muscle skeleton.
15116
15117 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
15118
15119 * src/output.c (output_parser): Delete unused variable actions_dumped.
15120
15121 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
15122
15123 * src/output.c (output): Delete call to reader_output_yylsp.
15124 * src/reader.c (reader): Likewise.
15125 * src/reader.h: Delete declaration of reader_output_yylsp.
15126
15127 2001-09-02 Marc Autret <autret_m@epita.fr>
15128
15129 * src/reader.c: Include muscle_tab.h.
15130 (parse_union_decl): Update.
15131 (parse_macro_decl): Rename parse_muscle_decl.
15132 Update to use renamed functions and variable.
15133 (read_declarations, copy_action, read_additionnal_code, : Updated
15134 with correct variables and functions names.
15135 (packsymbols, reader): Likewise.
15136
15137 * src/reader.h (muscle_obstack): Extern declaration update.
15138
15139 * src/output.c: Include muscle_tab.h
15140 In all functions using macro_insert, change by using muscle_insert ().
15141 (macro_obstack): Rename muscle_obstack.
15142 Echo modifications in the whole file.
15143 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
15144 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
15145 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
15146
15147 * src/muscle_tab.h: Update double inclusion macros.
15148 (macro_entry_s): Rename muscle_entry_s.
15149 Update prototypes.
15150
15151 * src/muscle_tab.c: Include muscle_tab.h.
15152 Rename macro_tabble to muscle_table.
15153 (mhash1, mhash2, mcmp): Use muscle_entry.
15154 (macro_init): Rename muscle_init. Update.
15155 (macro_insert): Rename muscle_insert. Update.
15156 (macro_find): Rename muscle_find. Update.
15157
15158 * src/main.c: Include muscle_tab.h.
15159 (main): Call muscle_init ().
15160 * src/Makefile.am (bison_SOURCES): Echo modifications.
15161
15162 2001-09-02 Marc Autret <autret_m@epita.fr>
15163
15164 Now the files macro_tab.[ch] are named muscle_tab.[ch].
15165
15166 * src/muscle_tab.c, src/muscle_tab.h: Add files.
15167
15168 2001-09-02 Marc Autret <autret_m@epita.fr>
15169
15170 * src/macrotab.c, src/macrotab.h: Remove.
15171
15172 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
15173
15174 * src/reader.c (copy_guard): Use muscle to specify the `#line'
15175 filename.
15176
15177 2001-09-01 Marc Autret <autret_m@epita.fr>
15178
15179 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
15180 to an explicit value to activate the feature. We do it here.
15181
15182 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15183
15184 * src/output.c (prepare): Delete the `filename' muscule insertion.
15185 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
15186 (parse_union_decl): Likewise.
15187 * src/macrotab.c (macro_init): Initialize filename by infile.
15188
15189 2001-08-31 Marc Autret <autret_m@epita.fr>
15190
15191 * src/bison.simple (YYLSP_NEEDED): New definition.
15192 * src/output.c (prepare): Add macro insertion of `locations_flag'
15193
15194 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15195
15196 * src/output.c (prepare): Delete insertion of previous muscles,
15197 and insert the `prefix' muscles.
15198 * src/macrotab.c (macro_init): Likewise.
15199 (macro_init): Initialization prefix directive by `yy'.
15200 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
15201 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
15202 yylval, yydebug, yyerror, yynerrs and yyparse.
15203 New directive `#define' to substitute yydebug, ... with option
15204 name_prefix.
15205
15206 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15207
15208 * src/main.c (main): Standardize.
15209 * src/output.c (output_table_data, output_parser): Likewise.
15210 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
15211
15212 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
15213
15214 * src/reader.c (read_additionnal_code): Rename %%user_code to
15215 %%epilogue.
15216 * src/output.c (output): Rename %%declarations to %%prologue.
15217 * src/bison.simple: Echo modifications.
15218
15219 2001-08-31 Marc Autret <autret_m@epita.fr>
15220
15221 * src/reader.c (readgram): CleanUp.
15222 (output_token_defines): Likewise.
15223 (packsymbols): Likewise.
15224 (reader): Likewise.
15225 * src/output.c (output): CPP-out useless code.
15226
15227 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
15228
15229 * src/reader.c (reader): Delete obsolete call to function
15230 output_trailers and output_headers.
15231 * src/output.h: Remove obsolete functions prototypes of output_headers
15232 and output_trailers.
15233
15234 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
15235
15236 * src/main.c: Include macrotab.h.
15237 * src/macrotab.h (macro_entry_s): Constify fields.
15238 Adjust functions prototypes.
15239 * src/macrotab.c (macro_insert): Constify key and value.
15240 (macro_find): Constify key.
15241 (macro_insert): Include 'xalloc.h'
15242 (macro_insert): Use XMALLOC.
15243 (macro_find): Constify return value.
15244 * src/output.c (output_table_data): Rename table to table_data.
15245 (output_parser): Constify macro_key, macro_value.
15246
15247 2001-08-30 Marc Autret <autret_m@epita.fr>
15248
15249 * src/reader.c (parse_skel_decl): New.
15250 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
15251 * src/lex.h (token_t): New token `tok_skel'.
15252 * src/lex.c (percent_table): Add skeleton option entry.
15253 Standardize.
15254
15255 2001-08-29 Marc Autret <autret_m@epita.fr>
15256
15257 * src/bison.simple: Add %%user_code directive at the end.
15258 * src/reader.c (read_additionnal_code): New.
15259 (reader): Use it.
15260 * src/output.c (output_program): Remove.
15261 (output): Update.
15262
15263 2001-08-28 Marc Autret <autret_m@epita.fr>
15264
15265 * src/output.c (output_actions): Clean up.
15266 (output_gram): CPP-out useless code.
15267 * src/reader.c (reader): Clean up, CPP-out useless code.
15268
15269 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
15270
15271 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
15272 directive.
15273 * src/bison.simple: Add `%%definitions'.
15274
15275 2001-08-28 Marc Autret <autret_m@epita.fr>
15276
15277 * config/depcomp: New file.
15278
15279 2001-08-27 Paul Eggert <eggert@twinsun.com>
15280
15281 * src/bison.simple (yyparse): Don't take the address of an
15282 item before the start of an array, as that doesn't conform to
15283 the C Standard.
15284
15285 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
15286
15287 * src/output.c (output): Remove the initialization of the macro
15288 obstack. It was done too late here.
15289
15290 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
15291 completely wrong.
15292 (reader): Initialize the macro obstack here, since we need it to grow
15293 '%define' directives.
15294
15295 * src/reader.h: Declare the macro obstack as extern.
15296
15297 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
15298
15299 * src/output.c (output_parser): Fix. Store single '%' characters in
15300 the output obstack instead of throwing them away.
15301
15302 2001-08-27 Akim Demaille <akim@epita.fr>
15303
15304 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15305
15306 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15307
15308 * lib/Makefile.am: Adjust.
15309
15310 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15311
15312 * src/bison.simple: Update and add '%%' directives.
15313
15314 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15315
15316 * src/reader.c (reader): Remove calls to 'output_headers' and
15317 'output_trailers'. Remove some C output.
15318 (readgram): Disable a piece of code that was writing a default
15319 definition for 'YYSTYPE'.
15320 (reader_output_yylsp): Remove.
15321 (packsymbols): Output token defintions to a macro.
15322 (copy_definition): Disable C output.
15323
15324 * src/reader.c (parse_macro_decl): New function used to parse macro
15325 declarations.
15326 (copy_string2): Put the body of copy_string into this new function.
15327 Add a parameter to let the caller choose whether he wants to copy the
15328 string delimiters or not.
15329 (copy_string): Be a simple call to copy_string2 with the last argument
15330 bound to true.
15331 (read_declarations): Add case for macro definition.
15332 (copy_identifier): New.
15333 (parse_macro_decl): Read macro identifiers using copy_identifier
15334 rather than lex.
15335
15336 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15337
15338 * src/output.c (prepare): Add prefixed names.
15339 (output_parser): Output semantic actions.
15340 (output_parser): Fix bug on '%%line' directives.
15341
15342 * src/output.c (output_headers): Remove. The C code printed by this
15343 function should now be in the skeletons.
15344 (output_trailers): Remove.
15345 (output): Disable call to 'reader_output_yylsp'.
15346 (output_rule_data): Do not output tables to the table obstack.
15347
15348 * src/output.c: Remove some C dedicated output.
15349 Improve the use of macro and output obstacks.
15350 (output_defines): Remove.
15351
15352 * src/output.c (output_token_translations): Associate 'translate'
15353 table with a macro. No output to the table obstack.
15354 (output_gram): Same for 'rhs' and 'prhs'.
15355 (output_stos): Same for 'stos'.
15356 (output_rule_data): Same for 'r1' and 'r2'.
15357 (token_actions): Same for 'defact'.
15358 (goto_actions): Same for 'defgoto'.
15359 (output_base): Same for 'pact' and 'pgoto'.
15360 (output_table): Same for 'table'.
15361 (output_check): Same for 'check'.
15362
15363 * src/output.c (output_table_data): New function.
15364 (output_short_table): Remove.
15365 (output_short_or_char_table): Remove.
15366
15367 * src/output.c (output_parser): Replace most of the skeleton copy code
15368 with something new. Skeletons are now processed character by character
15369 rather than line by line, and Bison looks for '%%' macros. This is the
15370 first step in making Bison's output process (a lot) more flexible.
15371 (output_parser): Use the macro table.
15372
15373 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15374
15375 * src/main.c (main): Initialize the macro table.
15376
15377 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15378
15379 * src/lex.c (percent_table): Add tok_define.
15380 * src/lex.h: Add tok_define.
15381
15382 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15383
15384 * src/macrotab.c: New file.
15385 * src/macrotab.h: New file.
15386 * src/Makefile.am: Update.
15387
15388 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
15389
15390 * lib/hash.c: New file.
15391 * lib/hash.h: New file.
15392 * lib/Makefile.am: Update.
15393
15394 2001-08-15 Akim Demaille <akim@epita.fr>
15395
15396 Version 1.28c.
15397
15398 2001-08-15 Marc Autret <autret_m@epita.fr>
15399
15400 * src/reader.c (readgram): Indent output macro YYSTYPE.
15401 (packsymbols): Likewise.
15402 (output_token_defines): Likewise.
15403 * src/files.c: Standardize.
15404 (compute_header_macro): New.
15405 (defines_obstack_save): New. Use compute_header_macro.
15406 (output_files): Update. Use defines_obstack_save.
15407
15408 2001-08-15 Akim Demaille <akim@epita.fr>
15409
15410 * doc/bison.texinfo (Table of Symbols): Document
15411 YYSTACK_USE_ALLOCA.
15412
15413 2001-08-15 Akim Demaille <akim@epita.fr>
15414
15415 * missing: Update from CVS Automake.
15416 * config/config.guess, config/config.sub, config/texinfo.tex:
15417 Update from gnu.org.
15418
15419 2001-08-15 Akim Demaille <akim@epita.fr>
15420
15421 * Makefile.maint: Sync with CVS Autoconf.
15422
15423 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
15424
15425 * doc/bison.texinfo: Include GNU Free Documentation License from
15426 `fdl.texi'.
15427 * doc/fdl.texi: Add to package.
15428
15429 2001-08-14 Marc Autret <autret_m@epita.fr>
15430
15431 Turn on %{source,header}_extension features.
15432
15433 * src/lex.c (percent_table): Un-CPP out header_extension and
15434 source_extension.
15435 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
15436 (compute_exts_from_src): Remove conditions. It restores priorities
15437 between options.
15438
15439 2001-08-14 Marc Autret <autret_m@epita.fr>
15440
15441 * src/files.c (compute_base_names): Add extensions computing when
15442 `--file-prefix' used.
15443 Standardize function calls.
15444
15445 2001-08-13 Marc Autret <autret_m@epita.fr>
15446
15447 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
15448 defining it (defined but null disables alloca).
15449
15450 2001-08-13 Marc Autret <autret_m@epita.fr>
15451
15452 * src/bison.simple (_yy_memcpy): CPP reformat.
15453
15454 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
15455
15456 * tests/atconfig.in (CPPFLAGS): Fix.
15457
15458 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
15459
15460 * doc/bison.texinfo: Include GNU General Public License from
15461 `gpl.texi'.
15462 * doc/gpl.texi: Add to package.
15463
15464 2001-08-10 Marc Autret <autret_m@epita.fr>
15465
15466 * src/print_graph.h: Fix.
15467 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
15468
15469 2001-08-10 Akim Demaille <akim@epita.fr>
15470
15471 * src/system.h: Provide default declarations for stpcpy, strndup,
15472 and strnlen.
15473
15474 2001-08-10 Robert Anisko <anisko_r@epita.fr>
15475
15476 * doc/bison.texinfo (Locations): Update @$ stuff.
15477
15478 2001-08-09 Robert Anisko <anisko_r@epita.fr>
15479
15480 * src/bison.simple (YYLLOC_DEFAULT): Update.
15481 (yyparse): Adjust.
15482
15483 2001-08-08 Marc Autret <autret_m@epita.fr>
15484
15485 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
15486 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
15487 Reported by Fabrice Bauzac.
15488
15489 2001-08-08 Marc Autret <autret_m@epita.fr>
15490
15491 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
15492 * src/vcg.c (output_node): Fix.
15493 * src/vcg.h: Cleanup.
15494 * src/print_graph.c: Add comments.
15495 (node_output_size): New global variable. Simplify the formatting of
15496 the VCG graph output.
15497 (print_actions): Unused code is now used. It notifies the final state
15498 and no action states in the VCG graph. It also give the reduce actions.
15499 The `shift and goto' edges are red and the `go to state' edges are
15500 blue.
15501 Get the current node name and node_obstack by argument.
15502 (node_obstack): New variable.
15503 (print_state): Manage node_obstack.
15504 (print_core): Use node_obstack given by argument.
15505 A node is not only computed here but in print_actions also.
15506 (print_graph): CPP out useless code instead of commenting it.
15507
15508 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
15509
15510 * tests/atconfig.in (CPPFLAGS): Fix.
15511
15512 2001-08-07 Akim Demaille <akim@epita.fr>
15513
15514 * src/print_graph.c (quote): New.
15515 (print_core): Use it.
15516
15517 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
15518
15519 * src/vcg.c (complain.h): Include it.
15520 Unepitaize `return' invocations.
15521 [NDEBUG] (main): Remove.
15522 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
15523 * src/files.c (open_files): Initialize graph_obstack.
15524 * src/print_graph.c (print_actions): CPP out useless code.
15525 (print_core): Don't output the last `\n' in labels.
15526 Use `quote'.
15527 * src/files.c (output_files): Output the VCG file.
15528 * src/main.c (main): Invoke print_graph ();
15529
15530 2001-08-06 Marc Autret <autret_m@epita.fr>
15531
15532 Automaton VCG graph output.
15533 Using option ``-g'' or long option ``--graph'', you can generate
15534 a gram_filename.vcg file containing a VCG description of the LALR (1)
15535 automaton of your grammar.
15536
15537 * src/main.c: Call to print_graph() function.
15538 * src/getargs.h: Update.
15539 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
15540 (graph_flag): New flag.
15541 (longopts): Update.
15542 (getargs): Add case `g'.
15543 * src/files.c (graph_obstack): New obstack struct.
15544 (open_files): Initialize new obstack.
15545 (output_files): Saves graph_obstack if required.
15546 * src/files.h (graph_obstack): New extern declaration.
15547 * src/Makefile.am: Add new source files.
15548
15549 2001-08-06 Marc Autret <autret_m@epita.fr>
15550
15551 * src/print_graph.c, src/print_graph.h (graph): New.
15552 * src/vcg.h: New file.
15553 * src/vcg.c: New file, VCG graph handling.
15554
15555 2001-08-06 Marc Autret <autret_m@epita.fr>
15556
15557 Add of %source_extension and %header_extension which specify
15558 the source or/and the header output file extension.
15559
15560 * src/files.c (compute_base_names): Remove initialisation of
15561 src_extension and header_extension.
15562 (compute_exts_from_gf): Update.
15563 (compute_exts_from_src): Update.
15564 (output_files): Update.
15565 * src/reader.c (parse_header_extension_decl): New.
15566 (parse_source_extension_decl): New.
15567 (read_declarations): New case statements for the new tokens.
15568 * src/lex.c (percent_table): Add entries for %source_extension
15569 and %header_extension.
15570 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
15571
15572 2001-08-06 Marc Autret <autret_m@epita.fr>
15573
15574 * configure.in: Bump to 1.28c.
15575 * doc/bison.texinfo: Texinfo thingies.
15576
15577 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
15578
15579 * tests/atconfig.in (CPPFLAGS): Add.
15580 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
15581
15582 2001-08-03 Akim Demaille <akim@epita.fr>
15583
15584 Version 1.28b.
15585
15586 2001-08-03 Akim Demaille <akim@epita.fr>
15587
15588 * tests/Makefile.am (check-local): Ship testsuite.
15589 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
15590 Include `string.h'.
15591
15592 2001-08-03 Akim Demaille <akim@epita.fr>
15593
15594 * configure.in: Try using -Wformat when compiling.
15595
15596 2001-08-03 Akim Demaille <akim@epita.fr>
15597
15598 * configure.in: Bump to 1.28b.
15599
15600 2001-08-03 Akim Demaille <akim@epita.fr>
15601
15602 * src/complain.c: Adjust strerror_r portability issues.
15603
15604 2001-08-03 Akim Demaille <akim@epita.fr>
15605
15606 Version 1.28a.
15607
15608 2001-08-03 Akim Demaille <akim@epita.fr>
15609
15610 * src/getargs.c, src/getarg.h (skeleton)): Constify.
15611 * src/lex.c (literalchar): Avoid name clashes on `buf'.
15612 * src/getargs.c: Include complain.h.
15613 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
15614 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
15615
15616 2001-08-03 Akim Demaille <akim@epita.fr>
15617
15618 * src/reader.c (readgram): Display hidden chars in error messages.
15619
15620 2001-08-03 Akim Demaille <akim@epita.fr>
15621
15622 Update to gettext 0.10.39.
15623
15624 2001-08-03 Akim Demaille <akim@epita.fr>
15625
15626 * lib/strspn.c: New.
15627
15628 2001-08-01 Marc Autret <autret_m@epita.fr>
15629
15630 * doc/bison.texinfo: Update.
15631 * doc/bison.1 (mandoc): Update.
15632 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
15633 * src/files.c: Support output files extensions computing.
15634 (src_extension): New static variable.
15635 (header_extension): New static variable.
15636 (tr): New function.
15637 (get_extension_index): New function, gets the index of an extension
15638 filename in a string.
15639 (compute_exts_from_gf): New function, computes extensions from the
15640 grammar file extension.
15641 (compute_exts_from_src): New functions, computes extensions from the
15642 C source file extension, file given by ``-o'' option.
15643 (compute_base_names): Update.
15644 (output_files): Update.
15645
15646 2001-08-01 Robert Anisko <anisko_r@epita.fr>
15647
15648 * doc/bison.texi: Document @$.
15649 (Locations): New section.
15650
15651 2001-07-18 Akim Demaille <akim@epita.fr>
15652
15653 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
15654 * config/prev-version.txt, config/move-if-change: New.
15655 * Makefile.am: Adjust.
15656
15657 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
15658
15659 * src/bison.simple (yyparse): Suppress warning `comparaison
15660 between signed and unsigned'.
15661
15662 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
15663
15664 * src/getargs.h (raw_flag): Remove.
15665 * src/getargs.c: Die on `-r'/`--raw'.
15666 * src/lex.c (parse_percent_token): Die on `%raw'.
15667 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
15668 * tests/calc.at: Suppress test with option `--raw'.
15669
15670 2001-07-14 Akim Demaille <akim@epita.fr>
15671
15672 * config/: New.
15673 * configure.in: Require Autoconf 2.50.
15674 Update to gettext 0.10.38.
15675
15676 2001-03-16 Akim Demaille <akim@epita.fr>
15677
15678 * doc/bison.texinfo: ANSIfy the examples.
15679
15680 2001-03-16 Akim Demaille <akim@epita.fr>
15681
15682 * getargs.c (skeleton): New variable.
15683 (longopts): --skeleton is a new option.
15684 (shortopts, getargs): -S is a new option.
15685 * getargs.h: Declare skeleton.
15686 * output.c (output_parser): Use it.
15687
15688 2001-03-16 Akim Demaille <akim@epita.fr>
15689
15690 * m4/strerror_r.m4: New.
15691 * m4/error.m4: Run AC_FUNC_STRERROR_R.
15692 * lib/error.h, lib/error.c: Update.
15693
15694 2001-03-16 Akim Demaille <akim@epita.fr>
15695
15696 * src/getargs.c (longopts): Clean up.
15697
15698 2001-02-21 Akim Demaille <akim@epita.fr>
15699
15700 * src/reader.c (gensym): `gensym_count' is your own.
15701 Use a static buf to create the symbol name, as token_buffer is no
15702 longer a buffer.
15703
15704 2001-02-08 Akim Demaille <akim@epita.fr>
15705
15706 * src/conflicts.c (conflict_report): Be sure not to append to res
15707 between two calls, which could happen if both first sprintf were
15708 skipped, but not the first cp += strlen.
15709
15710 2001-02-08 Akim Demaille <akim@epita.fr>
15711
15712 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
15713 New, from fileutils 4.0.37.
15714 * configure.in: Require Autoconf 2.49c. I took some time before
15715 making this decision. This is the only way out for portability
15716 issues in Bison, it would mean way too much duplicate effort to
15717 import in Bison features implemented in 2.49c since 2.13.
15718 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
15719
15720 2001-02-02 Akim Demaille <akim@epita.fr>
15721
15722 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
15723 * lib/xalloc.h, lib/xmalloc.c: Update.
15724
15725 2001-01-19 Akim Demaille <akim@epita.fr>
15726
15727 Get rid of the ad hoc handling of token_buffer in the scanner: use
15728 the obstacks.
15729
15730 * src/lex.c (token_obstack): New.
15731 (init_lex): Initialize it. No longer call...
15732 (grow_token_buffer): this. Remove it.
15733 Adjust all the places which used it to use the obstack.
15734
15735 2001-01-19 Akim Demaille <akim@epita.fr>
15736
15737 * src/lex.h: Rename all the tokens:
15738 s/\bENDFILE\b/tok_eof/g;
15739 s/\bIDENTIFIER\b/tok_identifier/g;
15740 etc.
15741 Let them be enums, not #define, to ease debugging.
15742 Adjust all the code.
15743
15744 2001-01-18 Akim Demaille <akim@epita.fr>
15745
15746 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
15747 * src/lex.c (maxtoken, grow_token_buffer): Static.
15748
15749 2001-01-18 Akim Demaille <akim@epita.fr>
15750
15751 Since we now use obstacks, more % directives can be enabled.
15752
15753 * src/lex.c (percent_table): Also accept `%yacc',
15754 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
15755 `%debug'.
15756 Handle the actions for `%semantic_parser' and `%pure_parser' here,
15757 instead of returning a token.
15758 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
15759 * src/reader.c (read_declarations): Adjust.
15760 * src/files.c (open_files): Don't call `compute_base_names', don't
15761 compute `attrsfile' since they depend upon data which might be
15762 *in* the input file now.
15763 (output_files): Do it here.
15764 * src/output.c (output_headers): Document the fact that this patch
15765 introduces a guaranteed SEGV for semantic parsers.
15766 * doc/bison.texinfo: Document them.
15767 * tests/suite.at: Exercise these %options.
15768
15769 2000-12-20 Akim Demaille <akim@epita.fr>
15770
15771 Also handle the output file (--verbose) with obstacks.
15772
15773 * files.c (foutput): Remove.
15774 (output_obstack): New.
15775 Adjust all dependencies.
15776 * src/conflicts.c: Return a string.
15777 * src/system.h (obstack_grow_string): Rename as...
15778 (obstack_sgrow): this. Be ready to work with non literals.
15779 (obstack_fgrow4): New.
15780
15781 2000-12-20 Akim Demaille <akim@epita.fr>
15782
15783 * src/files.c (open_files): Fix the computation of short_base_name
15784 in the case of `-o foo.tab.c'.
15785
15786 2000-12-20 Akim Demaille <akim@epita.fr>
15787
15788 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
15789 (copy_dollar): Now that everything uses obstacks, get rid of the
15790 FILE * parameters.
15791
15792 2000-12-20 Akim Demaille <akim@epita.fr>
15793
15794 * src/files.c (open_files): Actually the `.output' file is based
15795 on the short_base_name, not base_name.
15796 * tests/suite.at (Checking output file names): Adjust.
15797
15798 2000-12-20 Akim Demaille <akim@epita.fr>
15799
15800 * src/bison.s1: Remove, we now use directly...
15801 * src/bison.simple: this.
15802 * src/Makefile.am: Use pkgdata instead of data.
15803
15804 2000-12-20 Akim Demaille <akim@epita.fr>
15805
15806 * src/files.c (guard_obstack): New.
15807 (open_files): Initialize it.
15808 (output_files): Dump it...
15809 * src/files.h: Export it.
15810 * src/reader.c (copy_guard): Use it.
15811
15812 2000-12-19 Akim Demaille <akim@epita.fr>
15813
15814 * src/files.c (outfile, defsfile, actfile): Removed as global
15815 vars.
15816 (open_files): Don't compute them.
15817 (output_files): Adjust.
15818 (base_name, short_base_name): Be global.
15819 Adjust dependencies.
15820
15821 2000-12-19 Akim Demaille <akim@epita.fr>
15822
15823 * src/files.c (strsuffix): New.
15824 (stringappend): Be just like strcat but allocate.
15825 (base_names): Eve out from open_files.
15826 Try to simplify the rather hairy computation of base_name and
15827 short_base_name.
15828 (open_files): Use it.
15829 * tests/suite.at (Checking output file names): New test.
15830
15831 2000-12-19 Akim Demaille <akim@epita.fr>
15832
15833 * src/system.h (obstack_grow_literal_string): Rename as...
15834 (obstack_grow_string): this.
15835 * src/output.c (output_parser): Recognize `%% actions' instead of
15836 `$'.
15837 * src/bison.s1: s/$/%% actions/.
15838 * src/bison.hairy: Likewise.
15839
15840 2000-12-19 Akim Demaille <akim@epita.fr>
15841
15842 * src/output.c (output_parser): Compute the `#line' lines when
15843 there are.
15844 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
15845 Suggested by Hans Aberg.
15846
15847 2000-12-19 Akim Demaille <akim@epita.fr>
15848
15849 Let the handling of the skeleton files be local to the procedures
15850 that use it.
15851
15852 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
15853 longer static.
15854 (fparser, open_extra_files): Remove.
15855 (open_files, output_files): Don't take care of fparser.
15856 * src/files.h: Adjust.
15857 * src/output.c (output_parser): Open and close the file to the
15858 skeleton.
15859 * src/reader.c (read_declarations): When %semantic_parser, open
15860 fguard.
15861
15862 2000-12-19 Akim Demaille <akim@epita.fr>
15863
15864 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
15865 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
15866
15867 2000-12-19 Akim Demaille <akim@epita.fr>
15868
15869 * src/files.c (open_files): Yipee! We no longer need all the code
15870 looking for `/tmp' since we have no tmp file.
15871
15872 2000-12-19 Akim Demaille <akim@epita.fr>
15873
15874 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
15875 New macros.
15876 * src/files.c (open_files): Less dependency on MSDOS etc.
15877
15878 2000-12-14 Akim Demaille <akim@epita.fr>
15879
15880 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
15881 Provide a default definition.
15882 Use it when executing the default @ action.
15883 * src/reader.c (reader_output_yylsp): No longer include
15884 `timestamp' and `text' in the default YYLTYPE.
15885
15886 2000-12-12 Akim Demaille <akim@epita.fr>
15887
15888 * src/reader.c (copy_definition, parse_union_decl, copy_action)
15889 (copy_guard): Quote the file names.
15890 Reported by Laurent Mascherpa.
15891
15892 2000-12-12 Akim Demaille <akim@epita.fr>
15893
15894 * src/output.c (output_headers, output_program, output): Be sure
15895 to escape special characters when outputting filenames.
15896 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
15897 (output_headers): Don't depend on them, Use ACTSTR.
15898
15899 2000-11-17 Akim Demaille <akim@epita.fr>
15900
15901 * lib/obstack.h: Formatting changes.
15902 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
15903 prevents type checking.
15904 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
15905 cast the value to (void *): assigning a `foo *' to a `void *'
15906 variable is valid.
15907 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
15908 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
15909 append characters.
15910
15911 2000-11-17 Akim Demaille <akim@epita.fr>
15912
15913 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
15914 as...
15915 (suite.m4, regression.m4, calc.m4): these.
15916 * tests/atgeneral.m4: Update from CVS Autoconf.
15917
15918 2000-11-17 Akim Demaille <akim@epita.fr>
15919
15920 * tests/regression.m4 (%union and --defines): New test,
15921 demonstrating a current bug in the obstack implementation.
15922
15923 2000-11-17 Akim Demaille <akim@epita.fr>
15924
15925 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
15926 macros.
15927 Use them to declare the variables which are global or local to
15928 `yyparse'.
15929
15930 2000-11-17 Akim Demaille <akim@epita.fr>
15931
15932 * acconfig.h: Remove, no longer used.
15933
15934 2000-11-07 Akim Demaille <akim@epita.fr>
15935
15936 * src: s/Copyright (C)/Copyright/g.
15937
15938 2000-11-07 Akim Demaille <akim@epita.fr>
15939
15940 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
15941 defining.
15942 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
15943
15944 2000-11-07 Akim Demaille <akim@epita.fr>
15945
15946 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
15947 Merge in a single CPP if/else.
15948
15949 2000-11-07 Akim Demaille <akim@epita.fr>
15950
15951 * src/output.c (output): Remove useless variables.
15952 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
15953 argument `data' for consistency with the prototypes.
15954 Qualify it `const'.
15955 (obstack_copy, obstack_copy0): Rename the second argument as
15956 `address' for consistency. Qualify it `const'.
15957 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
15958 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
15959 `const' their input argument (`data' or `address').
15960 Adjust the corresponding macros to include `const' in casts.
15961
15962 2000-11-03 Akim Demaille <akim@epita.fr>
15963
15964 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
15965 s/PFILE1/BISON_HAIRY/.
15966 Adjust dependencies.
15967
15968 2000-11-03 Akim Demaille <akim@epita.fr>
15969
15970 For some reason, this was not applied.
15971
15972 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15973 `unlink': it's no longer used.
15974
15975 2000-11-03 Akim Demaille <akim@epita.fr>
15976
15977 * src/files.c (skeleton_find): New function, eved out of...
15978 (open_files, open_extra_files): here.
15979
15980 2000-11-03 Akim Demaille <akim@epita.fr>
15981
15982 Don't use `atexit'.
15983
15984 * src/files.c (obstack_save): New function.
15985 (done): Rename as...
15986 (output_files): this.
15987 Use `obstack_save'.
15988 * src/main.c (main): Don't use `atexit' to register `done', since
15989 it no longer has to remove tmp files, just call `output_files'
15990 when there are no errors.
15991
15992 2000-11-02 Akim Demaille <akim@epita.fr>
15993
15994 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15995 `unlink': it's no longer used.
15996 * src/files.h: Formatting changes.
15997
15998 2000-11-02 Akim Demaille <akim@epita.fr>
15999
16000 Remove the last uses of mktemp and unlink/delete.
16001
16002 * src/files.c (fdefines, ftable): Removed.
16003 (defines_ostack, table_obstack): New.
16004 Adjust dependencies of the former into uses of the latter.
16005 * src/output.c (output_short_or_char_table, output_short_table):
16006 Convert to using obstacks.
16007 * src/reader.c (copy_comment2): Accept one FILE * and two
16008 obstacks.
16009 (output_token_defines, reader_output_yylsp): Use obstacks.
16010 * src/system.h (obstack_fgrow3): New.
16011 * po/POTFILES.in: Adjust.
16012
16013 2000-11-01 Akim Demaille <akim@epita.fr>
16014
16015 Change each use of `fattrs' into a use of `attrs_obstack'.
16016
16017 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
16018 * src/files.c (fattrs): Remove.
16019 (attrs_obstack): New.
16020 Adjust all dependencies.
16021 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
16022
16023 2000-11-01 Akim Demaille <akim@epita.fr>
16024
16025 Introduce obstacks.
16026 Change each use of `faction' into a use of `action_obstack'.
16027
16028 * lib/obstack.h, lib/obstack.c: New files.
16029 * src/files.c (faction): Remove.
16030 (action_obstack): New.
16031 Adjust all dependencies.
16032
16033 2000-10-20 Akim Demaille <akim@epita.fr>
16034
16035 * lib/quote.h (PARAMS): New macro. Use it.
16036
16037 2000-10-16 Akim Demaille <akim@epita.fr>
16038
16039 * src/output.c (output_short_or_char_table): New function.
16040 (output_short_table, output_token_translations): Use it.
16041 (goto_actions): Use output_short_table.
16042
16043 2000-10-16 Akim Demaille <akim@epita.fr>
16044
16045 * src/symtab.c (bucket_new): New function.
16046 (getsym): Use it.
16047
16048 * src/output.c (output_short_table): New argument to display the
16049 comment associated with the table.
16050 Adjust dependencies.
16051 (output_gram): Use it.
16052 (output_rule_data): Nicer output layout for YYTNAME.
16053
16054 2000-10-16 Akim Demaille <akim@epita.fr>
16055
16056 * src/lex.c (read_typename): New function.
16057 (lex): Use it.
16058 * src/reader.c (copy_dollar): Likewise.
16059
16060 2000-10-16 Akim Demaille <akim@epita.fr>
16061
16062 * src/reader.c (copy_comment2): Expect the input stream to be on
16063 the `/' which is suspected to open a comment, instead of being
16064 called after `//' or `/*' was read.
16065 (copy_comment, copy_definition, parse_union_decl, copy_action)
16066 (copy_guard): Adjust.
16067
16068 2000-10-16 Akim Demaille <akim@epita.fr>
16069
16070 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
16071 `read_signed_integer'.
16072
16073 2000-10-16 Akim Demaille <akim@epita.fr>
16074
16075 * src/reader.c (copy_dollar): New function.
16076 (copy_guard, copy_action): Use it.
16077
16078 2000-10-16 Akim Demaille <akim@epita.fr>
16079
16080 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
16081 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
16082 New files, from Fileutils 4.0.27.
16083 * src/main.c (printable_version): Remove.
16084 * src/lex.c, src/reader.c: Use `quote'.
16085
16086 2000-10-04 Akim Demaille <akim@epita.fr>
16087
16088 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
16089
16090 2000-10-04 Akim Demaille <akim@epita.fr>
16091
16092 * doc/bison.texinfo: Various typos spotted by Neil Booth.
16093
16094 2000-10-04 Akim Demaille <akim@epita.fr>
16095
16096 When a literal string is used to define two different tokens,
16097 `bison -v' segfaults.
16098 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
16099
16100 * tests/regression.m4: New file.
16101 Include the core of the sample provided by Piotr Gackiewicz.
16102 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
16103 properly.
16104
16105 2000-10-04 Akim Demaille <akim@epita.fr>
16106
16107 * src/reader.c (parse_expect_decl): Keep `count' within the size
16108 of `buffer'.
16109 From Neil Booth.
16110
16111 2000-10-02 Paul Eggert <eggert@twinsun.com>
16112
16113 * bison.s1 (yyparse): Assign the default value
16114 unconditionally, to avoid a GCC warning and make the parser a
16115 tad smaller.
16116
16117 2000-10-02 Akim Demaille <akim@epita.fr>
16118
16119 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
16120 options.
16121
16122 2000-10-02 Akim Demaille <akim@epita.fr>
16123
16124 * src/derives.c, src/print.c, src/reduce.c: To ease the
16125 translation, move some `\n' out of the translated strings.
16126
16127 2000-10-02 Akim Demaille <akim@epita.fr>
16128
16129 The location tracking mechanism is precious for parse error
16130 messages. Nevertheless, it is enabled only when `@n' is used in
16131 the grammar, which is a different issue (you can use it in error
16132 message, but not in the grammar per se). Therefore, there should
16133 be another means to enable it.
16134
16135 * src/getargs.c (getargs): Support `--locations'.
16136 (usage): Report it.
16137 * src/getargs.h (locationsflag): Export it.
16138 * src/lex.c (percent_table): Support `%locations'.
16139 * src/reader.c (yylsp_needed): Remove this variable, now replaced
16140 with `locationsflag'.
16141 * doc/bison.texinfo: Document `--locations' and `%locations'.
16142 Sort the options.
16143 * tests/calc.m4: Test it.
16144
16145 For regularity of the names, replace each
16146 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
16147 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
16148 In addition replace each `flag' with `_flag'.
16149
16150 2000-10-02 Akim Demaille <akim@epita.fr>
16151
16152 Also test parse error messages, including with YYERROR_VERBOSE.
16153
16154 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
16155 associative).
16156 Use it to check the computations.
16157 Use it to check `nonassoc' is honored.
16158 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
16159 `--yyerror-verbose'.
16160 (_AT_CHECK_CALC): Adjust to this option.
16161 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
16162
16163 2000-10-02 Akim Demaille <akim@epita.fr>
16164
16165 Test also `--verbose', `--defines' and `--name-prefix'. Testing
16166 the latter demonstrates a flaw in the handling of non debugging
16167 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
16168 was used in order to simplify:
16169
16170 #if YYDEBUG
16171 if (yydebug)
16172 {
16173 ...
16174 }
16175 #endif
16176
16177 into
16178
16179 if (yydebug)
16180 {
16181 ...
16182 }
16183
16184 unfortunately this leads to a CPP conflict when
16185 `--name-prefix=foo' is used since it produces `#define yydebug
16186 foodebug'.
16187
16188 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
16189 (YYDPRINTF): New macro.
16190 Spread its use.
16191 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
16192 the bison options.
16193 Also test `--verbose', `--defines' and `--name-prefix'.
16194
16195 2000-10-02 Akim Demaille <akim@epita.fr>
16196
16197 Improve the readability of the produced parsers.
16198
16199 * src/bison.s1: Formatting changes.
16200 Improve the comment related to the `$' mark.
16201 (yydefault): Don't fall through to `yyresume': `goto' there.
16202 * src/output.c (output_parser): When the `$' is met, skip the end
16203 of its line.
16204 New variable, `number_of_dollar_signs', to check there's exactly
16205 one `$' in the parser skeleton.
16206
16207 2000-10-02 Akim Demaille <akim@epita.fr>
16208
16209 * lib/xstrdup.c: New file, from the fileutils.
16210 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
16211 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
16212 instead of strlen + xmalloc + strcpy.
16213 * src/symtab.c (copys): Remove, use xstrdup instead.
16214
16215 2000-10-02 Akim Demaille <akim@epita.fr>
16216
16217 * src/gram.h (associativity): New enum type which replaces the
16218 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
16219 `right_assoc', `left_assoc' and `non_assoc'.
16220 Adjust all dependencies.
16221 * src/reader.c: Formatting changes.
16222 (LTYPESTR): Don't define it, use it as a literal in
16223 `reader_output_yylsp'.
16224 * src/symtab.h (symbol_class): New enum type which replaces the
16225 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
16226 `sunknown', `stoken and `snterm'.
16227
16228 2000-10-02 Akim Demaille <akim@epita.fr>
16229
16230 * src/getargs.c (fixed_outfiles): Rename as...
16231 (yaccflag): for consistency and accuracy.
16232 Adjust dependencies.
16233
16234 2000-10-02 Akim Demaille <akim@epita.fr>
16235
16236 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
16237 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
16238 difficult and introduced a lot of core dump. It turns out that
16239 Bison used an implementation of `xmalloc' based on `calloc', and
16240 at various places it does depend upon the initialization to 0. I
16241 have not tried to isolate the pertinent places, and all the former
16242 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
16243 someone should address this issue.
16244
16245 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
16246 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
16247 files.
16248 Adjust dependencies.
16249 * src/warshall.h: New file.
16250 Propagate.
16251
16252 2000-10-02 Akim Demaille <akim@epita.fr>
16253
16254 Various anti-`extern in *.c' changes.
16255
16256 * src/system.h: Include `assert.h'.
16257
16258 2000-10-02 Akim Demaille <akim@epita.fr>
16259
16260 * src/state.h (nstates, final_state, first_state, first_shift)
16261 (first_reduction): Move their exportation from here...
16262 * src/LR0.h: to here.
16263 Adjust dependencies.
16264 * src/getargs.c (statisticsflag): New variable.
16265 Add support for `--statistics'.
16266 Adjust dependencies.
16267
16268 Remove a lot of now useless `extern' statements in most files.
16269
16270 2000-10-02 Akim Demaille <akim@epita.fr>
16271
16272 * src/LR0.h: New file.
16273 Propagate its use.
16274
16275 2000-10-02 Akim Demaille <akim@epita.fr>
16276
16277 * src/print.h: New file.
16278 Propagate its use.
16279 * src/print.c: Formatting and ordering changes.
16280 (verbose, terse): Replace with...
16281 (print_results): this new function.
16282 Adjust dependencies.
16283
16284 2000-10-02 Akim Demaille <akim@epita.fr>
16285
16286 * src/conflicts.c (conflict_report): New function.
16287 (conflict_log, verbose_conflict_log): Replace with...
16288 (print_conflicts): this function.
16289 Adjust dependencies.
16290 * src/conflicts.h: New file.
16291 Propagate its inclusion.
16292
16293 2000-10-02 Akim Demaille <akim@epita.fr>
16294
16295 * src/nullable.h: New file.
16296 Propagate its inclusion.
16297 * src/nullable.c: Formatting changes.
16298
16299 2000-10-02 Akim Demaille <akim@epita.fr>
16300
16301 * src/reduce.h: New file.
16302 Propagate its inclusion.
16303 * src/reduce.c: Topological sort and other formatting changes.
16304 (bool, TRUE, FALSE): Move their definition to...
16305 * src/system.h: here.
16306
16307 2000-10-02 Akim Demaille <akim@epita.fr>
16308
16309 * src/files.c: Formatting changes.
16310 (tryopen, tryclose, openfiles): Rename as...
16311 (xfopen, xfclose, open_files): this.
16312 (stringappend): static.
16313 * src/files.h: Complete the list of exported symbols.
16314 Propagate its use.
16315
16316 2000-10-02 Akim Demaille <akim@epita.fr>
16317
16318 * src/reader.h: New file.
16319 Propagate its use instead of tedious list of `extern' and
16320 prototypes.
16321 * src/reader.c: Formatting changes, topological sort,
16322 s/register//.
16323
16324 2000-10-02 Akim Demaille <akim@epita.fr>
16325
16326 * src/lex.h: Prototype `lex.c' exported functions.
16327 * src/reader.c: Adjust.
16328 * src/lex.c: Formatting changes.
16329 (safegetc): Rename as...
16330 (xgetc): this.
16331
16332 2000-10-02 Akim Demaille <akim@epita.fr>
16333
16334 * src/lalr.h: New file.
16335 Propagate its inclusion instead of prototypes and `extern'.
16336 * src/lalr.c: Formatting changes, topological sorting etc.
16337
16338 2000-10-02 Akim Demaille <akim@epita.fr>
16339
16340 * src/output.c (token_actions): Introduce a temporary array,
16341 YYDEFACT, that makes it possible for this function to use
16342 output_short_table.
16343
16344 2000-10-02 Akim Demaille <akim@epita.fr>
16345
16346 `user_toknums' is output as a `short[]' in `output.c', while it is
16347 defined as a `int[]' in `reader.c'. For consistency with the
16348 other output tables, `user_toknums' is now defined as a table of
16349 shorts.
16350
16351 * src/reader.c (user_toknums): Be a short table instead of an int
16352 table.
16353 Adjust dependencies.
16354
16355 Factor the short table outputs.
16356
16357 * src/output.c (output_short_table): New function.
16358 * src/output.c (output_gram, output_stos, output_rule_data)
16359 (output_base, output_table, output_check): Use it.
16360
16361 2000-10-02 Akim Demaille <akim@epita.fr>
16362
16363 * src/output.c (output): Topological sort of the functions, in
16364 order to get rid of the `static' prototypes.
16365 No longer use `register'.
16366 * src/output.h: New file.
16367 Propagate its inclusion in files explicitly prototyping functions
16368 from output.c.
16369
16370 2000-09-21 Akim Demaille <akim@epita.fr>
16371
16372 * src/atgeneral.m4: Update from Autoconf.
16373
16374 2000-09-21 Akim Demaille <akim@epita.fr>
16375
16376 * src/closure.h: New file.
16377 * src/closure.c: Formatting changes, topological sort over the
16378 functions, use of closure.h.
16379 (initialize_closure, finalize_closure): Rename as...
16380 (new_closure, free_closure): these. Adjust dependencies.
16381 * src/LR0.c: Formatting changes, topological sort, use of
16382 cloture.h.
16383 (initialize_states): Rename as...
16384 (new_states): this.
16385 * src/Makefile.am (noinst_HEADERS): Adjust.
16386
16387 2000-09-20 Akim Demaille <akim@epita.fr>
16388
16389 * src/acconfig.h: Don't protect config.h against multiple
16390 inclusion.
16391 Don't define PARAMS.
16392 * src/system.h: Define PARAMS.
16393 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
16394 purpose of config.h. system.h must not try to fix wrong
16395 definitions in config.h.
16396
16397 2000-09-20 Akim Demaille <akim@epita.fr>
16398
16399 * src/derives.h: New file.
16400 * src/main.c, src/derives.h: Use it.
16401 Formatting changes.
16402 * src/Makefile.am (noinst_HEADERS): Adjust.
16403
16404 2000-09-20 Akim Demaille <akim@epita.fr>
16405
16406 * tests/atgeneral.m4: Update from Autoconf.
16407 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
16408 (AT_CHECK_CALC): New macros.
16409 Use these macros to test bison with options `', `--raw',
16410 `--debug', `--yacc', `--yacc --debug'.
16411
16412 2000-09-19 Akim Demaille <akim@epita.fr>
16413
16414 * src/output.c: Formatting changes.
16415 * src/machine.h: Remove, leaving its contents in...
16416 * src/system.h: here.
16417 Include stdio.h.
16418 Adjust all dependencies on stdio.h and machine.h.
16419 * src/getargs.h: New file.
16420 Let all `extern' declarations about getargs.c be replaced with
16421 inclusion of `getargs.h'.
16422 * src/Makefile.am (noinst_HEADERS): Adjust.
16423
16424 * tests/calc.m4 (yyin): Be initialized in main, not on the global
16425 scope.
16426 (yyerror): Returns void, not int.
16427 * doc/bison.texinfo: Formatting changes.
16428
16429 2000-09-19 Akim Demaille <akim@epita.fr>
16430
16431 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
16432 portable.
16433
16434 2000-09-18 Akim Demaille <akim@epita.fr>
16435
16436 * configure.in: Append WARNING_CFLAGS to CFLAGS.
16437 * src/Makefile.am (INCLUDES): Don't.
16438 Be ready to fetch headers in lib/.
16439
16440 2000-09-18 Akim Demaille <akim@epita.fr>
16441
16442 * doc/bison.texinfo: Update the copyright.
16443 ANSIfy and GNUify the examples.
16444 Remove the old menu.
16445
16446 2000-09-18 Akim Demaille <akim@epita.fr>
16447
16448 First set of tests: use the `calc' example from the documentation.
16449
16450 * src/bison.s1 (yyparse): Condition the code using `yytname' which
16451 is defined only when YYDEBUG is.
16452 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
16453 * src/files.c (tryopen, tryclose): Formatting changes.
16454 Move to the top and be static.
16455 * src/reader.c (read_signed_integer): Likewise.
16456 * tests/calc.m4: New file.
16457 * Makefile.am, suite.m4: Adjust.
16458 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
16459
16460 2000-09-18 Akim Demaille <akim@epita.fr>
16461
16462 Add support for an Autotest test suite for Bison.
16463
16464 * m4/m4.m4, m4/atconfig.m4: New files.
16465 * m4/Makefile.am (EXTRA_DIST): Adjust.
16466 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
16467 files.
16468 * src/getargs.c: Display a more standard --version message.
16469 * src/reader.c (reader): Formatting changes.
16470 No longer depend upon VERSION_STRING.
16471 * configure.in: No longer use `dnl'.
16472 Set up the test suite and the new directory `tests/.
16473 (VERSION_STRING): Remove.
16474
16475 2000-04-14 Akim Demaille <akim@epita.fr>
16476
16477 * src/reader.c (copy_comment2): New function, same as former
16478 `copy_comment', but outputs into two FILE *.
16479 (copy_comment): Use it.
16480 (parse_union_decl): Use it.
16481 (get_type, parse_start_decl): Use the same `invalid' message.
16482 (parse_start_decl, parse_union_decl): Use the same `multiple'
16483 message.
16484 (parse_union_decl, copy_guard, copy_action): Use the same
16485 `unmatched' message.
16486 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
16487
16488 2000-03-31 Akim Demaille <akim@epita.fr>
16489
16490 * src/files.c (tryopen, tryclose): Move to the top.
16491 Be static.
16492
16493 2000-03-31 Akim Demaille <akim@epita.fr>
16494
16495 * src/main.c (main): Don't call `done', exit does it.
16496
16497 2000-03-31 Akim Demaille <akim@epita.fr>
16498
16499 * allocate.c: s/return (foo)/return foo/.
16500 * lalr.c: Likewise.
16501 * LR0.c: Likewise.
16502 * output.c: Likewise.
16503 * reader.c: Likewise.
16504 * symtab.c: Likewise.
16505 * vmsgetargs.c: Likewise.
16506
16507 2000-03-31 Akim Demaille <akim@epita.fr>
16508
16509 Clean up the error reporting functions.
16510
16511 * src/report.c: New file.
16512 * src/report.h: Likewise.
16513 * src/Makefile.am: Adjust.
16514 * m4/error.m4: New file.
16515 * m4/Makefile.am: Adjust.
16516 * configure.in (jm_PREREQ_ERROR): Call it.
16517 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
16518 Remove.
16519 (fatal, fatals): Remove. All callers use complain.c::fatal.
16520 (warn, warni, warns, warnss, warnss): Remove. All callers use
16521 complain.c::complain.
16522 (toomany): Remove, use fatal instead.
16523 * src/files.c (done): No argument, use complain_message_count.
16524 * src/main.c (main): Register `done' to `atexit'.
16525
16526 * src/getargs.c (usage): More `fputs', less `fprintf'.
16527
16528 2000-03-28 Akim Demaille <akim@epita.fr>
16529
16530 * lib/: New directory.
16531 * Makefile.am (SUBDIRS): Adjust.
16532 * configure.in: Adjust.
16533 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
16534 useless.
16535 * src/alloca.c: Moved to lib/.
16536 * src/getopt.c: Likewise.
16537 * src/getopt1.c: Likewise.
16538 * src/getopt.h: Likewise.
16539 * src/ansi2knr.c: Likewise.
16540 * src/ansi2knr.1: Likewise.
16541 * src/Makefile.am: Adjust.
16542 * lib/Makefile.am: New file.
16543
16544 2000-03-28 Akim Demaille <akim@epita.fr>
16545
16546 * src/getargs.c (usage): Refresh the help message.
16547
16548 2000-03-17 Akim Demaille <akim@epita.fr>
16549
16550 * src/getopt1.c: Updated from textutils 2.0e
16551 * src/getopt.c: Likewise.
16552 * src/getopt.h: Likewise.
16553
16554 2000-03-17 Akim Demaille <akim@epita.fr>
16555
16556 * src/Makefile.am (bison.simple): Fix the awk program: quote only
16557 the file name, not the whole `#line LINE FILE'.
16558
16559 2000-03-17 Akim Demaille <akim@epita.fr>
16560
16561 On syntax errors, report the token on which we choked.
16562
16563 * src/bison.s1 (yyparse): In the label yyerrlab, when
16564 YYERROR_VERBOSE, add yychar in msg.
16565
16566 2000-03-17 Akim Demaille <akim@epita.fr>
16567
16568 * src/reader.c (copy_at): New function.
16569 (copy_guard): Use it.
16570 (copy_action): Use it.
16571
16572 2000-03-17 Akim Demaille <akim@epita.fr>
16573
16574 Be kind to translators, save some useless translations.
16575
16576 * src/main.c (banner): New function.
16577 (fatal_banner): Use it.
16578 (warn_banner): Use it.
16579
16580 2000-03-17 Akim Demaille <akim@epita.fr>
16581
16582 * src/reader.c (copy_definition): Use copy_string and
16583 copy_comment. Removed now unused `match', `ended',
16584 `cplus_comment'.
16585 (copy_comment, copy_string): Moved, to be visible from
16586 copy_definition.
16587
16588 2000-03-17 Akim Demaille <akim@epita.fr>
16589
16590 * src/reader.c (copy_string): Declare `static inline'. No
16591 problems with inline, since it is checked by configure.
16592 (copy_comment): Likewise.
16593
16594 2000-03-17 Akim Demaille <akim@epita.fr>
16595
16596 * src/reader.c (packsymbols): Formatting changes.
16597
16598 2000-03-17 Akim Demaille <akim@epita.fr>
16599
16600 * src/reader.c (copy_comment): New function, factored out from:
16601 (copy_action): Use it. Removed now unused `match', `ended',
16602 `cplus_comment'.
16603 (copy_guard): Likewise.
16604
16605 2000-03-17 Akim Demaille <akim@epita.fr>
16606
16607 * src/reader.c (copy_string): New function, factored out from:
16608 (copy_action): Use it.
16609 (copy_guard): Likewise.
16610
16611 2000-03-17 Akim Demaille <akim@epita.fr>
16612
16613 Change the handling of @s so that they behave exactly like $s.
16614 There is now a pseudo variable @$ (readble and writable), location
16615 of the lhs of the rule (by default ranging from the location of
16616 the first symbol of the rhs, to the location of the last symbol,
16617 or, if the rhs is empty, YYLLOC).
16618
16619 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
16620 yyval.
16621 (yyparse): When providing a default semantic action, provide a
16622 default location action.
16623 (after the $): No longer change `*YYLSP', just stack YYLOC the
16624 same way you stack YYVAL.
16625 * src/reader.c (read_declarations): Use warns.
16626 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
16627 (copy_action, case '@'): Likewise.
16628 Use a standard error message, to save useless work from
16629 translators.
16630
16631 2000-03-17 Akim Demaille <akim@epita.fr>
16632
16633 * src/bison.s1: Formatting and cosmetics changes.
16634 * src/reader.c: Likewise.
16635 Update the Copyright notice.
16636
16637 2000-03-17 Akim Demaille <akim@epita.fr>
16638
16639 * src/bison.s1 (#line): All set to `#line' only, since the
16640 Makefile now handles them.
16641
16642 2000-03-16 Akim Demaille <akim@epita.fr>
16643
16644 * src/output.c (output_rule_data): Output the documentation of
16645 some of the tables.
16646 (Copyright notice): Update.
16647 Formatting changes.
16648
16649 2000-03-16 Akim Demaille <akim@epita.fr>
16650
16651 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
16652 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
16653 One `#if YYDEBUG' remains, since it uses variables which are
16654 defined only if `YYDEBUG != 0'.
16655
16656 2000-03-16 Akim Demaille <akim@epita.fr>
16657
16658 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
16659 and related variables so that the similarities are highlighted.
16660
16661 2000-03-16 Akim Demaille <akim@epita.fr>
16662
16663 * src/bison.s1: Properly indent CPP directives.
16664
16665 2000-03-16 Akim Demaille <akim@epita.fr>
16666
16667 * src/bison.s1: Properly indent the `alloca' CPP section.
16668
16669 2000-03-16 Akim Demaille <akim@epita.fr>
16670
16671 Do not hard code values of directories in `configure.in'.
16672 Update the `configure' tool chain.
16673
16674 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
16675 src/makefile.am.
16676 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
16677 (AC_OUTPUT): Add m4/Makefile.
16678 Bump to bison 1.28a, 1.29 has never been released.
16679 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
16680 handled via src/Makefile.am.
16681 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
16682 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
16683 autoheader.
16684 * Makefile.am (SUBDIRS): Add m4.
16685 (ACLOCAL_AM_FLAGS): New variable.
16686 (AUTOMAKE_OPTIONS): Add check-news.
16687 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
16688 the proper line number and file name.
16689 (DEFS): Propagate the location of bison library files and of the
16690 locale files.
16691 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
16692 builddir.
16693 * acinclude.m4: Remove, replaced by the directory m4.
16694 * m4/Makefile.am (EXTRA_DIST): New variable.
16695 * m4/gettext.m4: New file, from the fileutils.
16696 * m4/lcmessage.m4: Likewise
16697 * m4/progtest.m4: Likewise.
16698 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
16699
16700 2000-03-10 Akim Demaille <akim@epita.fr>
16701
16702 * src/closure.c:
16703 Formatting changes of various comments.
16704 Respect the GNU coding standards at various places.
16705 Don't use `_()' when no translation is needed.
16706
16707 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16708
16709 * src/files.c:
16710 OS/2 honors TMPDIR environment variable.
16711
16712 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16713
16714 * doc/bison.texinfo: Tweaked spelling and grammar.
16715 Updated ISBN.
16716 Removed reference to price of printed copy.
16717 Mention BISON_SIMPLE and BISON_HAIRY.
16718
16719 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16720
16721 * configure.in, NEWS:
16722 Bison 1.29 released.
16723
16724 1999-10-27 Jesse Thilo <jthilo@gnu.org>
16725
16726 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
16727 Added reference card.
16728
16729 1999-07-26 Jesse Thilo <jthilo@gnu.org>
16730
16731 * po/ru.po: Added Russian translation.
16732
16733 1999-07-26 Jesse Thilo <jthilo@gnu.org>
16734
16735 * configure.in: Added Russian translation.
16736
16737 1999-07-06 Jesse Thilo <jthilo@gnu.org>
16738
16739 * configure.in, NEWS, README:
16740 Released version 1.28.
16741
16742 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16743
16744 * src/system.h:
16745 Squashed redefinition warning on some systems.
16746
16747 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
16748 Have configure build version string instead of relying on ANSI string
16749 concatentation.
16750
16751 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16752
16753 * po/POTFILES.in: Got rid of version.c.
16754
16755 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16756
16757 * acconfig.h, configure.in:
16758 Have configure build version string instead of relying on ANSI string
16759 concatentation.
16760
16761 1999-06-08 Jesse Thilo <jthilo@gnu.org>
16762
16763 * doc/bison.1:
16764 Dropped mention of `+' for long-named options.
16765
16766 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16767
16768 * src/files.c: Added <unistd.h> for unlink().
16769
16770 * src/Makefile.am, src/system.h:
16771 I18n fixes.
16772
16773 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16774
16775 * README: Added a FAQ list.
16776
16777 * configure.in, acconfig.h:
16778 I18n fixes.
16779
16780 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16781
16782 * doc/FAQ, doc/Makefile.am:
16783 Added a FAQ list.
16784
16785 1999-05-19 Jesse Thilo <jthilo@gnu.org>
16786
16787 * src/alloc.h, src/symtab.h, src/version.c:
16788 Protected inclusion of "config.h" with HAVE_CONFIG_H.
16789
16790 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16791
16792 * src/.cvsignore, src/Makefile.am:
16793 Reorganized: sources in `src', documentation in `doc'.
16794
16795 * src/lex.c (literalchar):
16796 fixed the code for escaping double quotes (thanks
16797 Jonathan Czisny.)
16798
16799 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16800
16801 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
16802 Adjusted paths to reflect directory reorganization.
16803
16804 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16805
16806 * doc/.cvsignore, doc/Makefile.am:
16807 Reorganized: sources in `src', documentation in `doc'.
16808
16809 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16810
16811 * configure.in:
16812 Updated AC_INIT file to reflect directory reorganization.
16813
16814 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
16815 Reorganized: sources in `src', documentation in `doc'.
16816
16817 1999-04-13 Jesse Thilo <jthilo@gnu.org>
16818
16819 * src/allocate.c:
16820 Don't declare calloc() and realloc() if not necessary.
16821
16822 1999-04-13 Jesse Thilo <jthilo@gnu.org>
16823
16824 * configure.in, acconfig.h, acinclude.m4:
16825 Don't declare calloc() and realloc() if not necessary.
16826
16827 1999-03-23 Jesse Thilo <jthilo@gnu.org>
16828
16829 * po/.cvsignore: Added i18n support.
16830
16831 1999-03-23 Jesse Thilo <jthilo@gnu.org>
16832
16833 * acconfig.h, configure.in, Makefile.am:
16834 Added i18n support.
16835
16836 1999-03-22 Jesse Thilo <jthilo@gnu.org>
16837
16838 * src/bison.s1: Fixed #line numbers.
16839
16840 1999-03-15 Jesse Thilo <jthilo@gnu.org>
16841
16842 * po/es.po, po/fr.po, po/nl.po, po/de.po:
16843 Added PO files from Translation Project.
16844
16845 1999-03-03 Jesse Thilo <jthilo@gnu.org>
16846
16847 * Makefile.am:
16848 Added support for non-ANSI compilers (ansi2knr).
16849
16850 1999-02-16 Jesse Thilo <jthilo@gnu.org>
16851
16852 * configure.in: Bumped version number to 1.27.
16853
16854 * Makefile.am:
16855 Added `bison.simple' to list of files removed by `make distclean'.
16856
16857 1999-02-12 Jesse Thilo <jthilo@gnu.org>
16858
16859 * src/files.c, src/files.h:
16860 Defined locations of parser files in config.h instead of Makefile.
16861
16862 1999-02-12 Jesse Thilo <jthilo@gnu.org>
16863
16864 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
16865 Defined locations of parser files in config.h instead of Makefile.
16866
16867 1999-02-09 Jesse Thilo <jthilo@gnu.org>
16868
16869 * Makefile.am:
16870 Removed inappropriate use of $< macro.
16871
16872 1999-02-05 Jesse Thilo <jthilo@gnu.org>
16873
16874 * po/Makefile.in.in, po/POTFILES.in:
16875 Add `po' directory skeleton.
16876
16877 1999-01-27 Jesse Thilo <jthilo@gnu.org>
16878
16879 * README: Document help-bison list.
16880
16881 * configure.in: Add check for mkstemp().
16882
16883 1999-01-20 Jesse Thilo <jthilo@gnu.org>
16884
16885 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
16886 Hush a few compiler warnings.
16887
16888 * src/files.c:
16889 Add tryclose(), which verifies that fclose was successful.
16890 Hush a couple of compiler warnings.
16891
16892 1999-01-20 Jesse Thilo <jthilo@gnu.org>
16893
16894 * Makefile.am, OChangeLog:
16895 ChangeLog is now automatically generated. Include the old version as
16896 OChangeLog.
16897
16898 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16899
16900 * 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:
16901 Update FSF address.
16902
16903 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16904
16905 * doc/bison.texinfo: Fix formatting glitch.
16906
16907 * doc/bison.texinfo: Update FSF address.
16908
16909 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16910
16911 * acconfig.h: Update FSF address.
16912
16913 1999-01-08 Jesse Thilo <jthilo@gnu.org>
16914
16915 * src/system.h:
16916 Don't define PACKAGE here, since config.h defines it.
16917
16918 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16919
16920 * src/reader.c: Update copyright date.
16921
16922 * src/main.c:
16923 Ditch sprintf to statically-sized buffers in fatal/warn functions in
16924 favor of output directly to stderr (avoids buffer overruns).
16925
16926 * src/reader.c: Some checks for premature EOF.
16927
16928 * 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:
16929 Use prototypes if the compiler understands them.
16930
16931 * src/files.c: Honor TMPDIR on Unix hosts.
16932 Use prototypes if the compiler understands them.
16933
16934 * src/reader.c:
16935 Fix a couple of buffer overrun bugs.
16936 Use prototypes if the compiler understands them.
16937
16938 * src/system.h: Include unistd.h and ctype.h.
16939 Use #ifdef instead of #if for NLS symbols.
16940
16941 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16942
16943 * doc/bison.texinfo:
16944 Delete comment "consider using @set for edition number, etc..." since
16945 we now are doing so.
16946
16947 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16948
16949 * configure.in:
16950 Use prototypes if the compiler understands them.
16951
16952 * NEWS: Document 1.26 highlights.
16953
16954 * Makefile.am: Require Automake 1.3 or later.
16955
16956 * acconfig.h:
16957 Use prototypes if the compiler understands them.
16958
16959 1998-12-29 Jesse Thilo <jthilo@gnu.org>
16960
16961 * src/version.c:
16962 Use VERSION symbol from automake for version number.
16963
16964 1998-12-29 Jesse Thilo <jthilo@gnu.org>
16965
16966 * acconfig.h, configure.in, version.cin:
16967 Use VERSION symbol from automake for version number.
16968
16969 1998-11-28 Jesse Thilo <jthilo@gnu.org>
16970
16971 * Makefile.am:
16972 Distribute original version of simple parser (bison.s1), not built
16973 version (bison.simple).
16974
16975 1998-11-28 Jesse Thilo <jthilo@gnu.org>
16976
16977 * doc/bison.texinfo: Add info dir entry.
16978
16979 * doc/bison.texinfo:
16980 Let automake put version number into documentation.
16981
16982 1998-11-26 Jesse Thilo <jthilo@gnu.org>
16983
16984 * src/bison.cld, src/build.com, src/vmshlp.mar:
16985 Add non-RCS files from /gd/gnu/bison.
16986
16987 1998-11-26 Jesse Thilo <jthilo@gnu.org>
16988
16989 * doc/bison.1:
16990 Document the BISON_HAIRY and BISON_SIMPLE variables.
16991
16992 1998-11-25 Jesse Thilo <jthilo@gnu.org>
16993
16994 * src/version.c: Build version.c automatically.
16995
16996 * src/reader.c:
16997 Fix token numbering (used to start at 258, not 257).
16998
16999 * src/system.h: Include config.h.
17000
17001 * src/getargs.c: Update bug report address.
17002
17003 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
17004 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
17005
17006 1998-11-25 Jesse Thilo <jthilo@gnu.org>
17007
17008 * Makefile.am:
17009 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17010
17011 * configure.in, version.cin:
17012 Build version.c automatically.
17013
17014 * AUTHORS: Add AUTHORS file.
17015
17016 * README: Update bug report address.
17017
17018 * bison.simple:
17019 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
17020
17021 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
17022 Add automake stuff.
17023
17024 1998-11-25 Jesse Thilo <jthilo@gnu.org>
17025
17026 * doc/bison.texinfo: Clean up some formatting.
17027
17028 1998-05-05 Richard Stallman <rms@gnu.org>
17029
17030 * doc/bison.texinfo:
17031 Explain better why to make a pure parser.
17032
17033 1998-01-05 Richard Stallman <rms@gnu.org>
17034
17035 * src/files.c (openfiles):
17036 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
17037 find a temporary directory, if possible. Do not unlink files while
17038 they are open.
17039
17040 1997-08-25 Richard Stallman <rms@gnu.org>
17041
17042 * src/reader.c (stack_offset;):
17043 Change some warni to warns.
17044
17045 * src/lex.c (literalchar): Use warns, not warni.
17046
17047 1997-06-28 Richard Stallman <rms@gnu.org>
17048
17049 * src/bison.s1: Add a Bison version comment.
17050
17051 * src/main.c (fatal, warn, berror):
17052 Use program_name.
17053
17054 1997-06-28 Richard Stallman <rms@gnu.org>
17055
17056 * Makefile.in (bison_version): New variable.
17057 (dist): Use that variable.
17058 (bison.s1): Substitute the Bison version into bison.simple.
17059
17060 * bison.simple: Add a Bison version comment.
17061
17062 1997-06-18 Richard Stallman <rms@gnu.org>
17063
17064 * src/main.c (fatal, warn, berror):
17065 Make error messages standard.
17066 (toomany): Improve error message text.
17067
17068 * 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:
17069 new.h renamed to alloc.h.
17070
17071 1997-06-18 Richard Stallman <rms@gnu.org>
17072
17073 * Makefile.in: new.h renamed to alloc.h.
17074
17075 1997-05-24 Richard Stallman <rms@gnu.org>
17076
17077 * src/lex.c (literalchar):
17078 Fix the code for escaping \, " and '.
17079
17080 (lex): Avoid trouble when there are many chars
17081 to discard in a char literal with just several chars in it.
17082
17083 1997-05-17 Richard Stallman <rms@gnu.org>
17084
17085 * src/bison.s1:
17086 Use malloc, if using alloca is troublesome.
17087 (YYSTACK_USE_ALLOCA): New flag macro.
17088 Define it for some systems and compilers.
17089 (YYSTACK_ALLOC): New macro.
17090 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17091 If it was malloc'd, free it.
17092
17093 1997-05-17 Richard Stallman <rms@gnu.org>
17094
17095 * bison.simple:
17096 Use malloc, if using alloca is troublesome.
17097 (YYSTACK_USE_ALLOCA): New flag macro.
17098 Define it for some systems and compilers.
17099 (YYSTACK_ALLOC): New macro.
17100 (yyparse): Use YYSTACK_ALLOC to allocate stack.
17101 If it was malloc'd, free it.
17102
17103 1997-04-23 Richard Stallman <rms@gnu.org>
17104
17105 * src/bison.s1:
17106 (alloca) [__hpux]: Always define as __builtin_alloca.
17107
17108 1997-04-23 Richard Stallman <rms@gnu.org>
17109
17110 * bison.simple:
17111 (alloca) [__hpux]: Always define as __builtin_alloca.
17112
17113 1997-04-22 Richard Stallman <rms@gnu.org>
17114
17115 * src/bison.s1:
17116 [__hpux]: Include alloca.h (right for HPUX 10)
17117 instead of declaring alloca (right for HPUX 9).
17118
17119 * src/bison.s1 (__yy_memcpy):
17120 Declare arg `count' as unsigned int.
17121 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17122
17123 1997-04-22 Richard Stallman <rms@gnu.org>
17124
17125 * bison.simple:
17126 [__hpux]: Include alloca.h (right for HPUX 10)
17127 instead of declaring alloca (right for HPUX 9).
17128
17129 * bison.simple (__yy_memcpy):
17130 Declare arg `count' as unsigned int.
17131 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
17132
17133 1997-01-03 Richard Stallman <rms@gnu.org>
17134
17135 * src/allocate.c: [__STDC__ or _MSC_VER]:
17136 Declare calloc and realloc to return void *.
17137
17138 1997-01-02 Richard Stallman <rms@gnu.org>
17139
17140 * src/system.h:
17141 [_MSC_VER]: Include stdlib.h and process.h.
17142 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
17143
17144 * src/main.c (main): Return FAILURE as a value.
17145 (printable_version): Declare arg as int, not char.
17146
17147 1997-01-02 Richard Stallman <rms@gnu.org>
17148
17149 * Makefile.in (dist):
17150 Explicitly check for symlinks, and copy them.
17151
17152 1996-12-19 Richard Stallman <rms@gnu.org>
17153
17154 * src/files.c:
17155 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
17156
17157 1996-12-18 Paul Eggert <eggert@gnu.org>
17158
17159 * src/bison.s1 (yyparse):
17160 If __GNUC__ and YYPARSE_PARAM are both defined,
17161 declare yyparse to have a void * argument.
17162
17163 1996-12-18 Paul Eggert <eggert@gnu.org>
17164
17165 * bison.simple (yyparse):
17166 If __GNUC__ and YYPARSE_PARAM are both defined,
17167 declare yyparse to have a void * argument.
17168
17169 1996-12-17 Richard Stallman <rms@gnu.org>
17170
17171 * src/reduce.c (nbits): Add some casts.
17172
17173 1996-08-12 Richard Stallman <rms@gnu.org>
17174
17175 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
17176
17177 1996-08-12 Richard Stallman <rms@gnu.org>
17178
17179 * bison.simple: Test _MSDOS as well as _MSDOS_.
17180
17181 1996-07-31 Richard Stallman <rms@gnu.org>
17182
17183 * src/bison.s1:
17184 [__sun && __i386]: Include alloca.h.
17185
17186 1996-07-31 Richard Stallman <rms@gnu.org>
17187
17188 * bison.simple:
17189 [__sun && __i386]: Include alloca.h.
17190
17191 1996-07-30 Richard Stallman <rms@gnu.org>
17192
17193 * src/bison.s1: Comment change.
17194
17195 * src/bison.s1: Test _MSDOS_, not MSDOS.
17196
17197 1996-07-30 Richard Stallman <rms@gnu.org>
17198
17199 * bison.simple: Comment change.
17200
17201 * bison.simple: Test _MSDOS_, not MSDOS.
17202
17203 1996-06-01 Richard Stallman <rms@gnu.org>
17204
17205 * 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:
17206 Insert `_' macro around many string constants.
17207
17208 * src/main.c:
17209 Insert `_' macro around many string constants.
17210
17211 (main): Call setlocale, bindtextdomain and textdomain.
17212
17213 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
17214 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
17215 [ENABLE_NLS]: Include libintl.h.
17216 [ENABLE_NLS] (gettext): Define.
17217 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
17218 (N_, PACKAGE, LOCALEDIR): New macros.
17219
17220 1996-06-01 Richard Stallman <rms@gnu.org>
17221
17222 * POTFILES.in: New file.
17223
17224 * Makefile.in (allocate.o):
17225 Define target explicitly.
17226
17227 * Makefile.in (CFLAGS): Set to @CFLAGS@.
17228 (LDFLAGS): Set to @LDFLAGS@.
17229 (configure): Run autoconf only if preceding `cd' succeeds.
17230 (bison.s1): Redirect output to temporary file then move the
17231 temporary to the target, rather than redirecting directly to bison.s1.
17232 (clean): Remove config.status and config.log.
17233 (distclean): Don't remove config.status here.
17234
17235 1996-05-12 Richard Stallman <rms@gnu.org>
17236
17237 * src/bison.s1:
17238 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17239
17240 1996-05-12 Richard Stallman <rms@gnu.org>
17241
17242 * bison.simple:
17243 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
17244
17245 1996-05-11 Richard Stallman <rms@gnu.org>
17246
17247 * src/bison.s1 (__yy_memcpy):
17248 Really reorder the args, as was supposedly done on Feb 14 1995.
17249 (yyparse): Calls changed accordingly.
17250
17251 1996-05-11 Richard Stallman <rms@gnu.org>
17252
17253 * Makefile.in (dist): Don't use $(srcdir).
17254
17255 * bison.simple (__yy_memcpy):
17256 Really reorder the args, as was supposedly done on Feb 14 1995.
17257 (yyparse): Calls changed accordingly.
17258
17259 1996-01-27 Richard Stallman <rms@gnu.org>
17260
17261 * src/output.c (output_rule_data):
17262 Test YYERROR_VERBOSE in the conditional
17263 around the definition of ttyname.
17264
17265 1995-12-29 Richard Stallman <rms@gnu.org>
17266
17267 * src/bison.s1:
17268 Fix line numbers in #line commands.
17269
17270 1995-12-29 Richard Stallman <rms@gnu.org>
17271
17272 * bison.simple:
17273 Fix line numbers in #line commands.
17274
17275 1995-12-27 Richard Stallman <rms@gnu.org>
17276
17277 * src/bison.s1 (YYPARSE_PARAM_DECL):
17278 In C++, make it always null.
17279 (YYPARSE_PARAM_ARG): New macro.
17280 (yyparse): Use YYPARSE_PARAM_ARG.
17281
17282 1995-12-27 Richard Stallman <rms@gnu.org>
17283
17284 * bison.simple (YYPARSE_PARAM_DECL):
17285 In C++, make it always null.
17286 (YYPARSE_PARAM_ARG): New macro.
17287 (yyparse): Use YYPARSE_PARAM_ARG.
17288
17289 1995-11-29 Richard Stallman <rms@gnu.org>
17290
17291 * doc/bison.texinfo:
17292 Describe literal string tokens, %raw, %no_lines, %token_table.
17293
17294 1995-11-29 Daniel Hagerty <hag@gnu.org>
17295
17296 * doc/bison.texinfo: Fixed update date
17297
17298 1995-10-16 Richard Stallman <rms@gnu.org>
17299
17300 * src/version.c: Version 1.25.
17301
17302 1995-10-16 Richard Stallman <rms@gnu.org>
17303
17304 * NEWS: *** empty log message ***
17305
17306 1995-10-16 Richard Stallman <rms@gnu.org>
17307
17308 * doc/bison.1, doc/bison.rnh:
17309 Add new options.
17310
17311 1995-10-15 Richard Stallman <rms@gnu.org>
17312
17313 * src/vmsgetargs.c, src/getargs.c:
17314 Added -n, -k, and -raw switches.
17315 (noparserflag, toknumflag, rawtoknumflag): New variables.
17316
17317 * src/symtab.h (SALIAS):
17318 New #define for adding aliases to %token.
17319 (struct bucket): Added `alias' field.
17320
17321 * src/reduce.c (reduce_grammar):
17322 Revise error message.
17323 (print_notices): Remove final `.' from error message.
17324
17325 * src/reader.c (reader_output_yylsp):
17326 New function.
17327 (readgram): Use `#if 0' around code that accepted %command
17328 inside grammar rules: The documentation doesn't allow it,
17329 and it will fail since the %command processors scan for the next %.
17330 (parse_token_decl): Extended the %token
17331 declaration to allow a multi-character symbol as an alias.
17332 (parse_thong_decl): New function.
17333 (read_declarations): Added %thong declarations.
17334 (read_declarations): Handle NOOP to deal with allowing
17335 % declarations as another means to specify the flags.
17336 (readgram): Allow %prec prior to semantics embedded in a rule.
17337 (skip_to_char, read_declarations, copy_definition)
17338 (parse_token_decl, parse_start_decl, parse_type_decl)
17339 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
17340 (get_type_name, copy_guard, copy_action, readgram)
17341 (get_type, packsymbols): Revised most error messages.
17342 Changed `fatal' to `warnxxx' to avoid aborting for error.
17343 Revised and use multiple warnxxx functions to avoid using VARARGS1.
17344 (read_declarations): Improve the error message for
17345 an invalid character. Do not abort.
17346 (read_declarations, copy_guard, copy_action): Use
17347 printable_version to avoid unprintable characters in printed output.
17348 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
17349 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
17350 Allow the type of a non-terminal can be given
17351 more than once, as long as all specifications give the same type.
17352
17353 * src/output.c:
17354 (output_headers, output_trailers, output, output_gram)
17355 (output_rule_data): Implement noparserflag variable.
17356 Implement toknumflag variable.
17357 (output): Call reader_output_yylsp to output LTYPESTR.
17358
17359 * src/main.c (main):
17360 If reader sees an error, don't process the grammar.
17361 (fatals): Updated to not use VARARGS1.
17362 (printable_version, int_to_string, warn, warni, warns, warnss)
17363 (warnsss): New error reporting functions. Avoid abort for error.
17364
17365 * src/lex.h:
17366 Added THONG and NOOP for alias processing.
17367 Added SETOPT for the new code that allows setting options with %flags.
17368
17369 * src/lex.c:
17370 Include getopt.h. Add some extern decls.
17371 (safegetc): New function to deal with EOF gracefully.
17372 (literalchar); new function to deal with reading \ escapes.
17373 (lex): Use literalchar.
17374 (lex): Implemented "..." tokens.
17375 (literalchar, lex, parse_percent_token): Made tokenbuffer
17376 always contain the token. This includes growing the token
17377 buffer while reading an integer.
17378 (parse_percent_token): Replaced if-else statement with percent_table.
17379 (parse_percent_token): Added % declarations as another
17380 way to specify the flags -n, -l, and -r. Also added hooks for
17381 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
17382 major changes to files.c.
17383 (lex) Retain in the incoming stream a character following
17384 an incorrect '/'.
17385 (skip_white_space, lex): Revised most error messages
17386 and changed fatal to warn to avoid aborting.
17387 (percent_table): Added %thong declarations.
17388
17389 * src/gram.h: Comment changes.
17390
17391 * src/files.c (openfiles, open_extra_files, done):
17392 Add faction flag
17393 and actfile file. Handle noparserflag. Both for -n switch.
17394
17395 * src/conflicts.c (resolve_sr_conflict):
17396 Remove use of alloca.
17397
17398 1995-06-01 Jim Meyering <meyering@gnu.org>
17399
17400 * doc/bison.texinfo: *** empty log message ***
17401
17402 1995-05-06 Richard Stallman <rms@gnu.org>
17403
17404 * src/bison.s1: Comment change.
17405
17406 1995-05-06 Richard Stallman <rms@gnu.org>
17407
17408 * bison.simple: Comment change.
17409
17410 1995-05-03 Richard Stallman <rms@gnu.org>
17411
17412 * src/version.c: Version now 1.24.
17413
17414 * src/bison.s1: Change distribution terms.
17415
17416 * src/version.c: Version now 1.23.
17417
17418 1995-05-03 Richard Stallman <rms@gnu.org>
17419
17420 * doc/bison.texinfo:
17421 Rewrite "Conditions for Using Bison".
17422 Update version to 1.24.
17423
17424 1995-05-03 Richard Stallman <rms@gnu.org>
17425
17426 * bison.simple: Change distribution terms.
17427
17428 1995-02-23 Richard Stallman <rms@gnu.org>
17429
17430 * src/files.c: Test __VMS_POSIX as well as VMS.
17431
17432 1995-02-14 Jim Meyering <meyering@gnu.org>
17433
17434 * src/bison.s1 (__yy_memcpy):
17435 Renamed from __yy_bcopy to avoid
17436 confusion. Reverse FROM and TO arguments to be consistent with
17437 those of memcpy.
17438
17439 1995-02-14 Jim Meyering <meyering@gnu.org>
17440
17441 * bison.simple (__yy_memcpy):
17442 Renamed from __yy_bcopy to avoid
17443 confusion. Reverse FROM and TO arguments to be consistent with
17444 those of memcpy.
17445
17446 1994-11-10 David J. MacKenzie <djm@gnu.org>
17447
17448 * NEWS: reformat
17449
17450 * NEWS: New file.
17451
17452 * Makefile.in (DISTFILES): Include NEWS.
17453
17454 * Makefile.in (DISTFILES):
17455 Include install-sh, not install.sh.
17456
17457 * configure.in: Update to Autoconf v2 macro names.
17458
17459 1994-10-05 David J. MacKenzie <djm@gnu.org>
17460
17461 * Makefile.in: fix typo
17462
17463 * Makefile.in (prefix, exec_prefix):
17464 Let configure set them.
17465
17466 1994-09-28 David J. MacKenzie <djm@gnu.org>
17467
17468 * Makefile.in: Set datadir to $(prefix)/share.
17469
17470 1994-09-15 Richard Stallman <rms@gnu.org>
17471
17472 * src/bison.s1:
17473 Update copyright notice and GPL version.
17474
17475 1994-09-15 Richard Stallman <rms@gnu.org>
17476
17477 * bison.simple:
17478 Update copyright notice and GPL version.
17479
17480 1994-07-12 Richard Stallman <rms@gnu.org>
17481
17482 * src/reduce.c, src/reader.c:
17483 entered into RCS
17484
17485 1994-05-05 David J. MacKenzie <djm@gnu.org>
17486
17487 * Makefile.in: entered into RCS
17488
17489 1994-03-26 Richard Stallman <rms@gnu.org>
17490
17491 * src/bison.s1: entered into RCS
17492
17493 1994-03-26 Richard Stallman <rms@gnu.org>
17494
17495 * bison.simple: entered into RCS
17496
17497 1994-03-25 Richard Stallman <rms@gnu.org>
17498
17499 * src/main.c: entered into RCS
17500
17501 1994-03-24 Richard Stallman <rms@gnu.org>
17502
17503 * src/conflicts.c: entered into RCS
17504
17505 1994-01-02 Richard Stallman <rms@gnu.org>
17506
17507 * Makefile.in: *** empty log message ***
17508
17509 1993-11-21 Richard Stallman <rms@gnu.org>
17510
17511 * src/bison.s1: *** empty log message ***
17512
17513 1993-11-21 Richard Stallman <rms@gnu.org>
17514
17515 * doc/bison.texinfo: entered into RCS
17516
17517 * doc/bison.texinfo: *** empty log message ***
17518
17519 1993-11-21 Richard Stallman <rms@gnu.org>
17520
17521 * bison.simple: *** empty log message ***
17522
17523 1993-10-25 David J. MacKenzie <djm@gnu.org>
17524
17525 * doc/bison.texinfo: *** empty log message ***
17526
17527 1993-10-19 Richard Stallman <rms@gnu.org>
17528
17529 * src/bison.s1: *** empty log message ***
17530
17531 1993-10-19 Richard Stallman <rms@gnu.org>
17532
17533 * bison.simple: *** empty log message ***
17534
17535 1993-10-14 Richard Stallman <rms@gnu.org>
17536
17537 * src/bison.s1: *** empty log message ***
17538
17539 1993-10-14 Richard Stallman <rms@gnu.org>
17540
17541 * bison.simple: *** empty log message ***
17542
17543 1993-09-14 David J. MacKenzie <djm@gnu.org>
17544
17545 * doc/bison.texinfo: *** empty log message ***
17546
17547 1993-09-13 Noah Friedman <friedman@gnu.org>
17548
17549 * Makefile.in: *** empty log message ***
17550
17551 1993-09-10 Richard Stallman <rms@gnu.org>
17552
17553 * src/conflicts.c: *** empty log message ***
17554
17555 * src/system.h: entered into RCS
17556
17557 1993-09-10 Richard Stallman <rms@gnu.org>
17558
17559 * doc/bison.1: entered into RCS
17560
17561 1993-09-06 Noah Friedman <friedman@gnu.org>
17562
17563 * src/version.c: entered into RCS
17564
17565 1993-09-06 Noah Friedman <friedman@gnu.org>
17566
17567 * Makefile.in: *** empty log message ***
17568
17569 1993-07-30 David J. MacKenzie <djm@gnu.org>
17570
17571 * Makefile.in: *** empty log message ***
17572
17573 1993-07-24 Richard Stallman <rms@gnu.org>
17574
17575 * src/bison.s1: *** empty log message ***
17576
17577 1993-07-24 Richard Stallman <rms@gnu.org>
17578
17579 * bison.simple: *** empty log message ***
17580
17581 1993-07-08 David J. MacKenzie <djm@gnu.org>
17582
17583 * Makefile.in: *** empty log message ***
17584
17585 1993-07-04 Richard Stallman <rms@gnu.org>
17586
17587 * src/bison.s1: *** empty log message ***
17588
17589 1993-07-04 Richard Stallman <rms@gnu.org>
17590
17591 * bison.simple: *** empty log message ***
17592
17593 1993-06-26 David J. MacKenzie <djm@gnu.org>
17594
17595 * src/getargs.c: entered into RCS
17596
17597 1993-06-26 David J. MacKenzie <djm@gnu.org>
17598
17599 * doc/bison.texinfo: *** empty log message ***
17600
17601 * doc/bison.1: New file.
17602
17603 1993-06-25 Richard Stallman <rms@gnu.org>
17604
17605 * src/getargs.c: New file.
17606
17607 1993-06-16 Richard Stallman <rms@gnu.org>
17608
17609 * src/bison.s1: *** empty log message ***
17610
17611 1993-06-16 Richard Stallman <rms@gnu.org>
17612
17613 * bison.simple: *** empty log message ***
17614
17615 1993-06-03 Richard Stallman <rms@gnu.org>
17616
17617 * src/bison.s1: New file.
17618
17619 1993-06-03 Richard Stallman <rms@gnu.org>
17620
17621 * doc/bison.texinfo: *** empty log message ***
17622
17623 1993-06-03 Richard Stallman <rms@gnu.org>
17624
17625 * bison.simple: New file.
17626
17627 1993-05-19 Richard Stallman <rms@gnu.org>
17628
17629 * doc/bison.texinfo: New file.
17630
17631 1993-05-07 Noah Friedman <friedman@gnu.org>
17632
17633 * Makefile.in: *** empty log message ***
17634
17635 1993-04-28 Noah Friedman <friedman@gnu.org>
17636
17637 * src/reader.c: *** empty log message ***
17638
17639 1993-04-23 Noah Friedman <friedman@gnu.org>
17640
17641 * src/alloc.h: entered into RCS
17642
17643 1993-04-20 David J. MacKenzie <djm@gnu.org>
17644
17645 * src/version.c: *** empty log message ***
17646
17647 * src/files.c, src/allocate.c:
17648 entered into RCS
17649
17650 * src/reader.c: *** empty log message ***
17651
17652 * src/lex.c: entered into RCS
17653
17654 * src/conflicts.c: New file.
17655
17656 * src/symtab.c: entered into RCS
17657
17658 * src/alloc.h: New file.
17659
17660 * src/LR0.c: entered into RCS
17661
17662 1993-04-18 Noah Friedman <friedman@gnu.org>
17663
17664 * src/reader.c: New file.
17665
17666 * src/version.c: *** empty log message ***
17667
17668 1993-04-18 Noah Friedman <friedman@gnu.org>
17669
17670 * Makefile.in: *** empty log message ***
17671
17672 1993-04-17 Noah Friedman <friedman@gnu.org>
17673
17674 * Makefile.in: *** empty log message ***
17675
17676 1993-04-15 Richard Stallman <rms@gnu.org>
17677
17678 * src/main.c, src/files.c:
17679 New file.
17680
17681 1993-04-15 Noah Friedman <friedman@gnu.org>
17682
17683 * configure.in: entered into RCS
17684
17685 * configure.in: *** empty log message ***
17686
17687 * configure.in: New file.
17688
17689 1993-04-14 Richard Stallman <rms@gnu.org>
17690
17691 * Makefile.in: New file.
17692
17693 1993-04-13 Richard Stallman <rms@gnu.org>
17694
17695 * src/version.c: New file.
17696
17697 1993-03-25 Richard Stallman <rms@gnu.org>
17698
17699 * src/output.c: entered into RCS
17700
17701 1992-09-25 Richard Stallman <rms@gnu.org>
17702
17703 * configure.bat: entered into RCS
17704
17705 1992-06-22 Richard Stallman <rms@gnu.org>
17706
17707 * src/vmsgetargs.c: entered into RCS
17708
17709 1992-06-22 Richard Stallman <rms@gnu.org>
17710
17711 * doc/bison.rnh: entered into RCS
17712
17713 1992-04-20 David J. MacKenzie <djm@gnu.org>
17714
17715 * README: entered into RCS
17716
17717 1992-01-22 Richard Stallman <rms@gnu.org>
17718
17719 * src/machine.h: entered into RCS
17720
17721 1991-12-21 Richard Stallman <rms@gnu.org>
17722
17723 * src/lalr.c, src/closure.c:
17724 entered into RCS
17725
17726 1991-12-20 Richard Stallman <rms@gnu.org>
17727
17728 * src/state.h: entered into RCS
17729
17730 1991-12-18 Richard Stallman <rms@gnu.org>
17731
17732 * src/print.c, src/nullable.c, src/derives.c:
17733 entered into RCS
17734
17735 1991-11-03 David J. MacKenzie <djm@gnu.org>
17736
17737 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
17738 entered into RCS
17739
17740 1988-09-09 Richard Stallman <rms@gnu.org>
17741
17742 * src/bison.hairy: entered into RCS
17743
17744 1987-12-16 Richard Stallman <rms@gnu.org>
17745
17746 * REFERENCES: entered into RCS
17747
17748
17749 -----
17750
17751 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
17752 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
17753 Software Foundation, Inc.
17754
17755 Copying and distribution of this file, with or without
17756 modification, are permitted provided the copyright notice and this
17757 notice are preserved.
17758
17759 $Id$